2010-07-23 05:22:03 +02:00
|
|
|
<?php
|
2017-03-25 19:12:16 +01:00
|
|
|
/**
|
2022-01-02 08:27:47 +01:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 16:18:46 +01:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2020-01-19 07:05:23 +01:00
|
|
|
* Module for uploading a picture to the profile wall
|
2017-04-30 06:01:26 +02:00
|
|
|
*
|
2017-03-25 19:12:16 +01:00
|
|
|
* By default the picture will be stored in the photo album with the name Wall Photos.
|
|
|
|
* You can specify a different album by adding an optional query string "album="
|
|
|
|
* to the url
|
2020-02-09 16:18:46 +01:00
|
|
|
*
|
2017-03-25 19:12:16 +01:00
|
|
|
*/
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2022-04-09 13:58:01 +02:00
|
|
|
use Friendica\Core\System;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-30 23:00:08 +01:00
|
|
|
use Friendica\DI;
|
2017-12-07 14:56:11 +01:00
|
|
|
use Friendica\Model\Photo;
|
2019-01-07 05:49:13 +01:00
|
|
|
use Friendica\Model\User;
|
2021-11-17 22:28:51 +01:00
|
|
|
use Friendica\Module\BaseApi;
|
2017-12-07 14:56:11 +01:00
|
|
|
use Friendica\Object\Image;
|
2019-10-18 03:26:15 +02:00
|
|
|
use Friendica\Util\Images;
|
2018-11-08 16:14:37 +01:00
|
|
|
use Friendica\Util\Strings;
|
2010-07-23 05:22:03 +02:00
|
|
|
|
2018-06-05 07:42:26 +02:00
|
|
|
function wall_upload_post(App $a, $desktopmode = true)
|
|
|
|
{
|
2022-09-25 18:43:00 +02:00
|
|
|
Logger::info('wall upload: starting new upload');
|
2012-11-06 16:43:19 +01:00
|
|
|
|
2022-09-25 18:43:00 +02:00
|
|
|
$isJson = (!empty($_GET['response']) && $_GET['response'] == 'json');
|
2022-10-25 23:07:49 +02:00
|
|
|
$album = trim($_GET['album'] ?? '');
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2021-07-25 16:27:13 +02:00
|
|
|
if (DI::args()->getArgc() > 1) {
|
2018-11-30 15:06:22 +01:00
|
|
|
if (empty($_FILES['media'])) {
|
2022-09-25 18:43:00 +02:00
|
|
|
$nick = DI::args()->getArgv()[1];
|
2020-04-24 14:09:51 +02:00
|
|
|
$user = DBA::selectFirst('owner-view', ['id', 'uid', 'nickname', 'page-flags'], ['nickname' => $nick, 'blocked' => false]);
|
|
|
|
if (!DBA::isResult($user)) {
|
2022-09-25 18:43:00 +02:00
|
|
|
Logger::warning('wall upload: user instance is not valid', ['user' => $user, 'nickname' => $nick]);
|
|
|
|
if ($isJson) {
|
2022-04-09 13:58:01 +02:00
|
|
|
System::jsonExit(['error' => DI::l10n()->t('Invalid request.')]);
|
2015-11-12 23:34:33 +01:00
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
2021-11-17 23:37:02 +01:00
|
|
|
$user = DBA::selectFirst('owner-view', ['id', 'uid', 'nickname', 'page-flags'], ['uid' => BaseApi::getCurrentUserID(), 'blocked' => false]);
|
2015-08-24 13:54:41 +02:00
|
|
|
}
|
|
|
|
} else {
|
2022-09-25 18:43:00 +02:00
|
|
|
Logger:warning('Argument count is zero or one (invalid)');
|
|
|
|
if ($isJson) {
|
2022-04-09 13:58:01 +02:00
|
|
|
System::jsonExit(['error' => DI::l10n()->t('Invalid request.')]);
|
2015-11-12 23:34:33 +01:00
|
|
|
}
|
2010-12-06 03:08:36 +01:00
|
|
|
return;
|
2015-08-24 13:54:41 +02:00
|
|
|
}
|
2012-04-09 01:19:45 +02:00
|
|
|
|
2017-03-25 19:12:16 +01:00
|
|
|
/*
|
|
|
|
* Setup permissions structures
|
|
|
|
*/
|
2022-10-25 23:07:49 +02:00
|
|
|
$can_post = false;
|
|
|
|
$visitor = 0;
|
2010-12-06 03:08:36 +01:00
|
|
|
|
2022-10-25 23:07:49 +02:00
|
|
|
$page_owner_uid = $user['uid'];
|
|
|
|
$default_cid = $user['id'];
|
|
|
|
$page_owner_nick = $user['nickname'];
|
|
|
|
$community_page = ($user['page-flags'] == User::PAGE_FLAGS_COMMUNITY);
|
2010-12-06 03:08:36 +01:00
|
|
|
|
2022-10-20 21:02:49 +02:00
|
|
|
if ((DI::userSession()->getLocalUserId()) && (DI::userSession()->getLocalUserId() == $page_owner_uid)) {
|
2010-12-06 03:08:36 +01:00
|
|
|
$can_post = true;
|
2022-10-20 21:02:49 +02:00
|
|
|
} elseif ($community_page && !empty(DI::userSession()->getRemoteContactID($page_owner_uid))) {
|
|
|
|
$contact_id = DI::userSession()->getRemoteContactID($page_owner_uid);
|
2022-10-25 23:07:49 +02:00
|
|
|
$can_post = DBA::exists('contact', ['blocked' => false, 'pending' => false, 'id' => $contact_id, 'uid' => $page_owner_uid]);
|
|
|
|
$visitor = $contact_id;
|
2010-12-06 03:08:36 +01:00
|
|
|
}
|
|
|
|
|
2018-06-05 07:42:26 +02:00
|
|
|
if (!$can_post) {
|
2022-09-25 18:43:00 +02:00
|
|
|
Logger::warning('No permission to upload files', ['contact_id' => $contact_id, 'page_owner_uid' => $page_owner_uid]);
|
|
|
|
$msg = DI::l10n()->t('Permission denied.');
|
|
|
|
if ($isJson) {
|
|
|
|
System::jsonExit(['error' => $msg]);
|
2015-11-12 23:34:33 +01:00
|
|
|
}
|
2022-09-25 18:43:00 +02:00
|
|
|
DI::sysmsg()->addNotice($msg);
|
2022-05-18 04:13:54 +02:00
|
|
|
System::exit();
|
2010-10-05 01:04:52 +02:00
|
|
|
}
|
2010-07-23 05:22:03 +02:00
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
if (empty($_FILES['userfile']) && empty($_FILES['media'])) {
|
2022-09-25 18:43:00 +02:00
|
|
|
Logger::warning('Empty "userfile" and "media" field');
|
|
|
|
if ($isJson) {
|
2022-04-09 13:58:01 +02:00
|
|
|
System::jsonExit(['error' => DI::l10n()->t('Invalid request.')]);
|
2015-11-12 23:34:33 +01:00
|
|
|
}
|
2022-05-18 04:13:54 +02:00
|
|
|
System::exit();
|
2015-08-24 13:54:41 +02:00
|
|
|
}
|
2010-08-03 04:06:36 +02:00
|
|
|
|
2022-10-25 23:07:49 +02:00
|
|
|
$src = '';
|
2018-02-14 06:07:26 +01:00
|
|
|
$filename = '';
|
|
|
|
$filesize = 0;
|
|
|
|
$filetype = '';
|
2022-09-25 18:43:00 +02:00
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
if (!empty($_FILES['userfile'])) {
|
2012-06-07 17:42:13 +02:00
|
|
|
$src = $_FILES['userfile']['tmp_name'];
|
|
|
|
$filename = basename($_FILES['userfile']['name']);
|
|
|
|
$filesize = intval($_FILES['userfile']['size']);
|
|
|
|
$filetype = $_FILES['userfile']['type'];
|
2018-11-30 15:06:22 +01:00
|
|
|
} elseif (!empty($_FILES['media'])) {
|
2018-07-01 10:03:57 +02:00
|
|
|
if (!empty($_FILES['media']['tmp_name'])) {
|
|
|
|
if (is_array($_FILES['media']['tmp_name'])) {
|
|
|
|
$src = $_FILES['media']['tmp_name'][0];
|
|
|
|
} else {
|
|
|
|
$src = $_FILES['media']['tmp_name'];
|
|
|
|
}
|
2017-03-25 19:12:16 +01:00
|
|
|
}
|
2014-09-06 15:47:45 +02:00
|
|
|
|
2018-07-01 10:03:57 +02:00
|
|
|
if (!empty($_FILES['media']['name'])) {
|
|
|
|
if (is_array($_FILES['media']['name'])) {
|
|
|
|
$filename = basename($_FILES['media']['name'][0]);
|
|
|
|
} else {
|
|
|
|
$filename = basename($_FILES['media']['name']);
|
|
|
|
}
|
2017-03-25 19:12:16 +01:00
|
|
|
}
|
2014-09-06 15:47:45 +02:00
|
|
|
|
2018-07-01 10:03:57 +02:00
|
|
|
if (!empty($_FILES['media']['size'])) {
|
|
|
|
if (is_array($_FILES['media']['size'])) {
|
|
|
|
$filesize = intval($_FILES['media']['size'][0]);
|
|
|
|
} else {
|
|
|
|
$filesize = intval($_FILES['media']['size']);
|
|
|
|
}
|
2017-03-25 19:12:16 +01:00
|
|
|
}
|
2014-09-06 15:47:45 +02:00
|
|
|
|
2018-07-01 10:03:57 +02:00
|
|
|
if (!empty($_FILES['media']['type'])) {
|
|
|
|
if (is_array($_FILES['media']['type'])) {
|
|
|
|
$filetype = $_FILES['media']['type'][0];
|
|
|
|
} else {
|
|
|
|
$filetype = $_FILES['media']['type'];
|
|
|
|
}
|
2017-03-25 19:12:16 +01:00
|
|
|
}
|
2012-06-07 17:42:13 +02:00
|
|
|
}
|
2014-09-06 15:47:45 +02:00
|
|
|
|
2022-09-25 18:43:00 +02:00
|
|
|
if ($src == '') {
|
|
|
|
Logger::warning('File source (temporary file) cannot be determined');
|
|
|
|
$msg = DI::l10n()->t('Invalid request.');
|
|
|
|
if ($isJson) {
|
|
|
|
System::jsonExit(['error' => $msg]);
|
2015-11-12 23:34:33 +01:00
|
|
|
}
|
2022-09-25 18:43:00 +02:00
|
|
|
DI::sysmsg()->addNotice($msg);
|
2022-05-18 04:13:54 +02:00
|
|
|
System::exit();
|
2015-08-24 13:54:41 +02:00
|
|
|
}
|
|
|
|
|
2020-04-01 07:42:44 +02:00
|
|
|
$filetype = Images::getMimeTypeBySource($src, $filename, $filetype);
|
2014-09-06 15:47:45 +02:00
|
|
|
|
2022-09-25 18:43:00 +02:00
|
|
|
Logger::info('File upload:', [
|
2022-10-25 23:07:49 +02:00
|
|
|
'src' => $src,
|
2022-09-25 18:43:00 +02:00
|
|
|
'filename' => $filename,
|
|
|
|
'filesize' => $filesize,
|
|
|
|
'filetype' => $filetype,
|
|
|
|
]);
|
2014-09-06 15:47:45 +02:00
|
|
|
|
2010-07-23 07:41:45 +02:00
|
|
|
$imagedata = @file_get_contents($src);
|
2022-10-25 23:07:49 +02:00
|
|
|
$image = new Image($imagedata, $filetype);
|
2010-07-23 05:22:03 +02:00
|
|
|
|
2022-06-18 23:16:07 +02:00
|
|
|
if (!$image->isValid()) {
|
2020-01-18 20:52:34 +01:00
|
|
|
$msg = DI::l10n()->t('Unable to process image.');
|
2022-09-25 18:43:00 +02:00
|
|
|
Logger::warning($msg, ['imagedata[]' => gettype($imagedata), 'filetype' => $filetype]);
|
2022-04-09 13:58:01 +02:00
|
|
|
@unlink($src);
|
2022-09-25 18:43:00 +02:00
|
|
|
if ($isJson) {
|
2022-04-09 13:58:01 +02:00
|
|
|
System::jsonExit(['error' => $msg]);
|
2015-08-24 13:54:41 +02:00
|
|
|
} else {
|
2022-09-25 18:43:00 +02:00
|
|
|
echo $msg . '<br />';
|
2015-08-24 13:54:41 +02:00
|
|
|
}
|
2022-05-18 04:13:54 +02:00
|
|
|
System::exit();
|
2010-07-23 07:41:45 +02:00
|
|
|
}
|
2010-07-23 05:22:03 +02:00
|
|
|
|
2022-06-18 23:16:07 +02:00
|
|
|
$image->orient($src);
|
2010-07-23 07:41:45 +02:00
|
|
|
@unlink($src);
|
2010-07-23 05:22:03 +02:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
$max_length = DI::config()->get('system', 'max_image_length');
|
2017-03-25 19:12:16 +01:00
|
|
|
if ($max_length > 0) {
|
2022-06-18 23:16:07 +02:00
|
|
|
$image->scaleDown($max_length);
|
|
|
|
$filesize = strlen($image->asString());
|
2022-09-25 18:43:00 +02:00
|
|
|
Logger::info('File upload: Scaling picture to new size', ['max_length' => $max_length]);
|
2014-09-06 15:47:45 +02:00
|
|
|
}
|
2012-07-08 17:18:05 +02:00
|
|
|
|
2022-10-25 23:07:49 +02:00
|
|
|
$width = $image->getWidth();
|
2022-06-18 23:16:07 +02:00
|
|
|
$height = $image->getHeight();
|
2010-07-23 07:41:45 +02:00
|
|
|
|
2021-03-07 15:13:46 +01:00
|
|
|
$maximagesize = DI::config()->get('system', 'maximagesize');
|
|
|
|
|
|
|
|
if (!empty($maximagesize) && ($filesize > $maximagesize)) {
|
|
|
|
// Scale down to multiples of 640 until the maximum size isn't exceeded anymore
|
|
|
|
foreach ([5120, 2560, 1280, 640] as $pixels) {
|
|
|
|
if (($filesize > $maximagesize) && (max($width, $height) > $pixels)) {
|
|
|
|
Logger::info('Resize', ['size' => $filesize, 'width' => $width, 'height' => $height, 'max' => $maximagesize, 'pixels' => $pixels]);
|
2022-06-18 23:16:07 +02:00
|
|
|
$image->scaleDown($pixels);
|
|
|
|
$filesize = strlen($image->asString());
|
2022-10-25 23:07:49 +02:00
|
|
|
$width = $image->getWidth();
|
|
|
|
$height = $image->getHeight();
|
2021-03-07 15:13:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($filesize > $maximagesize) {
|
|
|
|
Logger::notice('Image size is too big', ['size' => $filesize, 'max' => $maximagesize]);
|
|
|
|
$msg = DI::l10n()->t('Image exceeds size limit of %s', Strings::formatBytes($maximagesize));
|
2022-04-09 13:58:01 +02:00
|
|
|
@unlink($src);
|
2022-09-25 18:43:00 +02:00
|
|
|
if ($isJson) {
|
2022-04-09 13:58:01 +02:00
|
|
|
System::jsonExit(['error' => $msg]);
|
2021-03-07 15:13:46 +01:00
|
|
|
} else {
|
2022-10-18 14:29:50 +02:00
|
|
|
echo $msg . '<br />';
|
2021-03-07 15:13:46 +01:00
|
|
|
}
|
2022-05-18 04:13:54 +02:00
|
|
|
System::exit();
|
2021-03-07 15:13:46 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-26 15:05:35 +02:00
|
|
|
$resource_id = Photo::newResource();
|
2014-09-06 15:47:45 +02:00
|
|
|
|
2010-07-23 07:41:45 +02:00
|
|
|
$smallest = 0;
|
|
|
|
|
2017-03-21 23:08:37 +01:00
|
|
|
// If we don't have an album name use the Wall Photos album
|
2018-06-05 07:42:26 +02:00
|
|
|
if (!strlen($album)) {
|
2020-01-18 20:52:34 +01:00
|
|
|
$album = DI::l10n()->t('Wall Photos');
|
2017-03-21 23:08:37 +01:00
|
|
|
}
|
|
|
|
|
2012-04-09 01:19:45 +02:00
|
|
|
$defperm = '<' . $default_cid . '>';
|
2011-06-08 07:47:15 +02:00
|
|
|
|
2022-06-18 23:16:07 +02:00
|
|
|
$r = Photo::store($image, $page_owner_uid, $visitor, $resource_id, $filename, $album, 0, Photo::DEFAULT, $defperm);
|
2010-08-05 05:03:38 +02:00
|
|
|
|
2018-06-05 07:42:26 +02:00
|
|
|
if (!$r) {
|
2020-01-18 20:52:34 +01:00
|
|
|
$msg = DI::l10n()->t('Image upload failed.');
|
2022-09-25 18:43:00 +02:00
|
|
|
Logger::warning('Photo::store() failed', ['r' => $r]);
|
|
|
|
if ($isJson) {
|
2022-04-09 13:58:01 +02:00
|
|
|
System::jsonExit(['error' => $msg]);
|
2015-08-24 13:54:41 +02:00
|
|
|
} else {
|
2022-10-18 14:29:50 +02:00
|
|
|
echo $msg . '<br />';
|
2015-08-24 13:54:41 +02:00
|
|
|
}
|
2022-05-18 04:13:54 +02:00
|
|
|
System::exit();
|
2010-07-23 08:17:41 +02:00
|
|
|
}
|
2010-07-23 07:41:45 +02:00
|
|
|
|
2017-03-25 19:12:16 +01:00
|
|
|
if ($width > 640 || $height > 640) {
|
2022-06-18 23:16:07 +02:00
|
|
|
$image->scaleDown(640);
|
|
|
|
$r = Photo::store($image, $page_owner_uid, $visitor, $resource_id, $filename, $album, 1, Photo::DEFAULT, $defperm);
|
2017-03-25 19:12:16 +01:00
|
|
|
if ($r) {
|
2010-07-23 07:41:45 +02:00
|
|
|
$smallest = 1;
|
2017-03-25 19:12:16 +01:00
|
|
|
}
|
2010-07-23 07:41:45 +02:00
|
|
|
}
|
|
|
|
|
2017-03-25 19:12:16 +01:00
|
|
|
if ($width > 320 || $height > 320) {
|
2022-06-18 23:16:07 +02:00
|
|
|
$image->scaleDown(320);
|
|
|
|
$r = Photo::store($image, $page_owner_uid, $visitor, $resource_id, $filename, $album, 2, Photo::DEFAULT, $defperm);
|
2017-03-25 19:12:16 +01:00
|
|
|
if ($r && ($smallest == 0)) {
|
2010-07-23 07:41:45 +02:00
|
|
|
$smallest = 2;
|
2017-03-25 19:12:16 +01:00
|
|
|
}
|
2010-07-23 07:41:45 +02:00
|
|
|
}
|
|
|
|
|
2015-04-06 03:19:12 +02:00
|
|
|
if (!$desktopmode) {
|
2021-10-03 17:02:20 +02:00
|
|
|
$photo = Photo::selectFirst(['id', 'datasize', 'width', 'height', 'type'], ['resource-id' => $resource_id], ['order' => ['width']]);
|
|
|
|
if (!$photo) {
|
2022-09-25 18:43:00 +02:00
|
|
|
Logger::warning('Cannot find photo in database', ['resource-id' => $resource_id]);
|
|
|
|
if ($isJson) {
|
|
|
|
System::jsonExit(['error' => 'Cannot find photo']);
|
2015-11-12 23:34:33 +01:00
|
|
|
}
|
2015-04-06 03:19:12 +02:00
|
|
|
return false;
|
2015-08-24 13:54:41 +02:00
|
|
|
}
|
2022-09-25 18:43:00 +02:00
|
|
|
|
|
|
|
$picture = [
|
|
|
|
'id' => $photo['id'],
|
|
|
|
'size' => $photo['datasize'],
|
|
|
|
'width' => $photo['width'],
|
|
|
|
'height' => $photo['height'],
|
|
|
|
'type' => $photo['type'],
|
|
|
|
'albumpage' => DI::baseUrl() . '/photos/' . $page_owner_nick . '/image/' . $resource_id,
|
|
|
|
'picture' => DI::baseUrl() . "/photo/{$resource_id}-0." . $image->getExt(),
|
|
|
|
'preview' => DI::baseUrl() . "/photo/{$resource_id}-{$smallest}." . $image->getExt(),
|
|
|
|
];
|
|
|
|
|
|
|
|
if ($isJson) {
|
2022-04-09 13:58:01 +02:00
|
|
|
System::jsonExit(['picture' => $picture]);
|
2015-11-12 23:34:33 +01:00
|
|
|
}
|
2022-09-25 18:43:00 +02:00
|
|
|
Logger::info('upload done');
|
2015-04-06 03:19:12 +02:00
|
|
|
return $picture;
|
|
|
|
}
|
2012-02-22 08:35:50 +01:00
|
|
|
|
2022-09-25 18:43:00 +02:00
|
|
|
Logger::info('upload done');
|
2016-01-28 01:26:19 +01:00
|
|
|
|
2022-09-25 18:43:00 +02:00
|
|
|
if ($isJson) {
|
2022-04-09 13:58:01 +02:00
|
|
|
System::jsonExit(['ok' => true]);
|
2015-11-12 23:34:33 +01:00
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2022-06-18 23:16:07 +02:00
|
|
|
echo "\n\n" . '[url=' . DI::baseUrl() . '/photos/' . $page_owner_nick . '/image/' . $resource_id . '][img]' . DI::baseUrl() . "/photo/{$resource_id}-{$smallest}." . $image->getExt() . "[/img][/url]\n\n";
|
2022-05-18 04:13:54 +02:00
|
|
|
System::exit();
|
2011-03-05 05:55:32 +01:00
|
|
|
// NOTREACHED
|
|
|
|
}
|