2010-07-23 05:22:03 +02:00
|
|
|
<?php
|
2017-03-25 19:12:16 +01:00
|
|
|
/**
|
|
|
|
* @file mod/wall_upload.php
|
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
|
|
|
|
*/
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2019-09-28 11:59:08 +02:00
|
|
|
use Friendica\Core\Session;
|
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;
|
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)
|
|
|
|
{
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("wall upload: starting new upload", Logger::DEBUG);
|
2012-11-06 16:43:19 +01:00
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
$r_json = (!empty($_GET['response']) && $_GET['response'] == 'json');
|
|
|
|
$album = (!empty($_GET['album']) ? Strings::escapeTags(trim($_GET['album'])) : '');
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2017-03-25 19:12:16 +01:00
|
|
|
if ($a->argc > 1) {
|
2018-11-30 15:06:22 +01:00
|
|
|
if (empty($_FILES['media'])) {
|
2015-08-24 13:54:41 +02:00
|
|
|
$nick = $a->argv[1];
|
2017-03-25 19:12:16 +01:00
|
|
|
$r = q("SELECT `user`.*, `contact`.`id` FROM `user`
|
|
|
|
INNER JOIN `contact` on `user`.`uid` = `contact`.`uid`
|
|
|
|
WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0
|
|
|
|
AND `contact`.`self` = 1 LIMIT 1",
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($nick)
|
2015-08-24 13:54:41 +02:00
|
|
|
);
|
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2015-11-12 23:34:33 +01:00
|
|
|
if ($r_json) {
|
2020-01-18 20:52:34 +01:00
|
|
|
echo json_encode(['error' => DI::l10n()->t('Invalid request.')]);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2015-11-12 23:34:33 +01:00
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else {
|
2012-04-22 19:37:25 +02:00
|
|
|
$user_info = api_get_user($a);
|
2017-03-25 19:12:16 +01:00
|
|
|
$r = q("SELECT `user`.*, `contact`.`id` FROM `user`
|
|
|
|
INNER JOIN `contact` on `user`.`uid` = `contact`.`uid`
|
|
|
|
WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0
|
|
|
|
AND `contact`.`self` = 1 LIMIT 1",
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($user_info['screen_name'])
|
2015-08-24 13:54:41 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
2015-11-12 23:34:33 +01:00
|
|
|
if ($r_json) {
|
2020-01-18 20:52:34 +01:00
|
|
|
echo json_encode(['error' => DI::l10n()->t('Invalid request.')]);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
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
|
|
|
|
*/
|
2010-12-06 03:08:36 +01:00
|
|
|
$can_post = false;
|
|
|
|
$visitor = 0;
|
|
|
|
|
2010-12-10 14:19:04 +01:00
|
|
|
$page_owner_uid = $r[0]['uid'];
|
2012-04-09 01:19:45 +02:00
|
|
|
$default_cid = $r[0]['id'];
|
2010-12-10 14:19:04 +01:00
|
|
|
$page_owner_nick = $r[0]['nickname'];
|
2019-01-06 18:37:48 +01:00
|
|
|
$community_page = (($r[0]['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? true : false);
|
2010-12-06 03:08:36 +01:00
|
|
|
|
2017-03-25 19:12:16 +01:00
|
|
|
if ((local_user()) && (local_user() == $page_owner_uid)) {
|
2010-12-06 03:08:36 +01:00
|
|
|
$can_post = true;
|
2019-09-28 11:59:08 +02:00
|
|
|
} elseif ($community_page && !empty(Session::getRemoteContactID($page_owner_uid))) {
|
|
|
|
$contact_id = Session::getRemoteContactID($page_owner_uid);
|
2012-09-05 07:50:28 +02:00
|
|
|
|
2019-09-26 00:24:17 +02:00
|
|
|
$r = q("SELECT `uid` FROM `contact`
|
|
|
|
WHERE `blocked` = 0 AND `pending` = 0
|
|
|
|
AND `id` = %d AND `uid` = %d LIMIT 1",
|
|
|
|
intval($contact_id),
|
|
|
|
intval($page_owner_uid)
|
|
|
|
);
|
|
|
|
if (DBA::isResult($r)) {
|
|
|
|
$can_post = true;
|
|
|
|
$visitor = $contact_id;
|
2010-12-06 03:08:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-05 07:42:26 +02:00
|
|
|
if (!$can_post) {
|
2015-11-12 23:34:33 +01:00
|
|
|
if ($r_json) {
|
2020-01-18 20:52:34 +01:00
|
|
|
echo json_encode(['error' => DI::l10n()->t('Permission denied.')]);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2015-11-12 23:34:33 +01:00
|
|
|
}
|
2020-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t('Permission denied.') . EOL);
|
2018-12-26 06:40:12 +01:00
|
|
|
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'])) {
|
2015-11-12 23:34:33 +01:00
|
|
|
if ($r_json) {
|
2020-01-18 20:52:34 +01:00
|
|
|
echo json_encode(['error' => DI::l10n()->t('Invalid request.')]);
|
2015-11-12 23:34:33 +01:00
|
|
|
}
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2015-08-24 13:54:41 +02:00
|
|
|
}
|
2010-08-03 04:06:36 +02:00
|
|
|
|
2018-02-14 06:07:26 +01:00
|
|
|
$src = '';
|
|
|
|
$filename = '';
|
|
|
|
$filesize = 0;
|
|
|
|
$filetype = '';
|
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'];
|
2017-03-25 19:12:16 +01:00
|
|
|
|
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
|
|
|
|
2018-06-05 07:42:26 +02:00
|
|
|
if ($src == "") {
|
2015-11-12 23:34:33 +01:00
|
|
|
if ($r_json) {
|
2020-01-18 20:52:34 +01:00
|
|
|
echo json_encode(['error' => DI::l10n()->t('Invalid request.')]);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2015-11-12 23:34:33 +01:00
|
|
|
}
|
2020-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t('Invalid request.').EOL);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2015-08-24 13:54:41 +02:00
|
|
|
}
|
|
|
|
|
2014-09-06 15:47:45 +02:00
|
|
|
// This is a special treatment for picture upload from Twidere
|
2017-03-25 19:12:16 +01:00
|
|
|
if (($filename == "octet-stream") && ($filetype != "")) {
|
2014-09-06 15:47:45 +02:00
|
|
|
$filename = $filetype;
|
|
|
|
$filetype = "";
|
|
|
|
}
|
|
|
|
|
2017-12-07 14:56:11 +01:00
|
|
|
if ($filetype == "") {
|
2019-10-18 03:26:15 +02:00
|
|
|
$filetype = Images::guessType($filename);
|
2017-03-25 19:12:16 +01:00
|
|
|
}
|
2014-09-06 15:47:45 +02:00
|
|
|
|
|
|
|
// If there is a temp name, then do a manual check
|
|
|
|
// This is more reliable than the provided value
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2014-09-06 15:47:45 +02:00
|
|
|
$imagedata = getimagesize($src);
|
2017-03-25 19:12:16 +01:00
|
|
|
if ($imagedata) {
|
2014-09-06 15:47:45 +02:00
|
|
|
$filetype = $imagedata['mime'];
|
2017-03-25 19:12:16 +01:00
|
|
|
}
|
2014-09-06 15:47:45 +02:00
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log("File upload src: " . $src . " - filename: " . $filename .
|
2018-10-30 14:58:45 +01:00
|
|
|
" - size: " . $filesize . " - type: " . $filetype, Logger::DEBUG);
|
2014-09-06 15:47:45 +02:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
$maximagesize = DI::config()->get('system', 'maximagesize');
|
2010-12-06 03:08:36 +01:00
|
|
|
|
2017-03-25 19:12:16 +01:00
|
|
|
if (($maximagesize) && ($filesize > $maximagesize)) {
|
2020-01-18 20:52:34 +01:00
|
|
|
$msg = DI::l10n()->t('Image exceeds size limit of %s', Strings::formatBytes($maximagesize));
|
2015-08-24 13:54:41 +02:00
|
|
|
if ($r_json) {
|
2018-06-05 07:42:26 +02:00
|
|
|
echo json_encode(['error' => $msg]);
|
2015-08-24 13:54:41 +02:00
|
|
|
} else {
|
|
|
|
echo $msg. EOL;
|
|
|
|
}
|
2010-12-06 03:08:36 +01:00
|
|
|
@unlink($src);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2010-12-06 03:08:36 +01:00
|
|
|
}
|
|
|
|
|
2010-07-23 07:41:45 +02:00
|
|
|
$imagedata = @file_get_contents($src);
|
2017-12-07 14:56:11 +01:00
|
|
|
$Image = new Image($imagedata, $filetype);
|
2010-07-23 05:22:03 +02:00
|
|
|
|
2018-06-05 07:42:26 +02:00
|
|
|
if (!$Image->isValid()) {
|
2020-01-18 20:52:34 +01:00
|
|
|
$msg = DI::l10n()->t('Unable to process image.');
|
2015-08-24 13:54:41 +02:00
|
|
|
if ($r_json) {
|
2018-06-05 07:42:26 +02:00
|
|
|
echo json_encode(['error' => $msg]);
|
2015-08-24 13:54:41 +02:00
|
|
|
} else {
|
|
|
|
echo $msg. EOL;
|
|
|
|
}
|
2010-07-23 07:41:45 +02:00
|
|
|
@unlink($src);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2010-07-23 07:41:45 +02:00
|
|
|
}
|
2010-07-23 05:22:03 +02:00
|
|
|
|
2017-12-07 14:56:11 +01: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');
|
2018-06-05 07:42:26 +02:00
|
|
|
if (!$max_length) {
|
2012-07-08 17:18:05 +02:00
|
|
|
$max_length = MAX_IMAGE_LENGTH;
|
2017-03-25 19:12:16 +01:00
|
|
|
}
|
|
|
|
if ($max_length > 0) {
|
2017-12-07 14:56:11 +01:00
|
|
|
$Image->scaleDown($max_length);
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("File upload: Scaling picture to new size " . $max_length, Logger::DEBUG);
|
2014-09-06 15:47:45 +02:00
|
|
|
}
|
2012-07-08 17:18:05 +02:00
|
|
|
|
2017-12-07 14:56:11 +01:00
|
|
|
$width = $Image->getWidth();
|
|
|
|
$height = $Image->getHeight();
|
2010-07-23 07:41:45 +02: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
|
|
|
|
2019-10-26 15:05:35 +02:00
|
|
|
$r = Photo::store($Image, $page_owner_uid, $visitor, $resource_id, $filename, $album, 0, 0, $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.');
|
2015-08-24 13:54:41 +02:00
|
|
|
if ($r_json) {
|
2018-06-05 07:42:26 +02:00
|
|
|
echo json_encode(['error' => $msg]);
|
2015-08-24 13:54:41 +02:00
|
|
|
} else {
|
|
|
|
echo $msg. EOL;
|
|
|
|
}
|
2018-12-26 06:40:12 +01:00
|
|
|
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) {
|
2017-12-07 14:56:11 +01:00
|
|
|
$Image->scaleDown(640);
|
2019-10-26 15:05:35 +02:00
|
|
|
$r = Photo::store($Image, $page_owner_uid, $visitor, $resource_id, $filename, $album, 1, 0, $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) {
|
2017-12-07 14:56:11 +01:00
|
|
|
$Image->scaleDown(320);
|
2019-10-26 15:05:35 +02:00
|
|
|
$r = Photo::store($Image, $page_owner_uid, $visitor, $resource_id, $filename, $album, 2, 0, $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) {
|
2017-03-25 19:12:16 +01:00
|
|
|
$r = q("SELECT `id`, `datasize`, `width`, `height`, `type` FROM `photo`
|
|
|
|
WHERE `resource-id` = '%s'
|
|
|
|
ORDER BY `width` DESC LIMIT 1",
|
2019-10-26 15:05:35 +02:00
|
|
|
$resource_id
|
2017-03-25 19:12:16 +01:00
|
|
|
);
|
|
|
|
if (!$r) {
|
2015-11-07 16:24:59 +01:00
|
|
|
if ($r_json) {
|
2018-06-05 07:42:26 +02:00
|
|
|
echo json_encode(['error' => '']);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
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
|
|
|
}
|
2018-01-15 14:05:12 +01:00
|
|
|
$picture = [];
|
2015-04-06 03:19:12 +02:00
|
|
|
|
2017-03-25 19:12:16 +01:00
|
|
|
$picture["id"] = $r[0]["id"];
|
|
|
|
$picture["size"] = $r[0]["datasize"];
|
|
|
|
$picture["width"] = $r[0]["width"];
|
|
|
|
$picture["height"] = $r[0]["height"];
|
|
|
|
$picture["type"] = $r[0]["type"];
|
2019-12-30 23:00:08 +01:00
|
|
|
$picture["albumpage"] = DI::baseUrl() . '/photos/' . $page_owner_nick . '/image/' . $resource_id;
|
|
|
|
$picture["picture"] = DI::baseUrl() . "/photo/{$resource_id}-0." . $Image->getExt();
|
|
|
|
$picture["preview"] = DI::baseUrl() . "/photo/{$resource_id}-{$smallest}." . $Image->getExt();
|
2015-04-06 03:19:12 +02:00
|
|
|
|
2015-11-07 16:24:59 +01:00
|
|
|
if ($r_json) {
|
2018-06-05 07:42:26 +02:00
|
|
|
echo json_encode(['picture' => $picture]);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2015-11-12 23:34:33 +01:00
|
|
|
}
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("upload done", Logger::DEBUG);
|
2015-04-06 03:19:12 +02:00
|
|
|
return $picture;
|
|
|
|
}
|
2012-02-22 08:35:50 +01:00
|
|
|
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("upload done", Logger::DEBUG);
|
2016-01-28 01:26:19 +01:00
|
|
|
|
2015-11-07 16:24:59 +01:00
|
|
|
if ($r_json) {
|
2018-06-05 07:42:26 +02:00
|
|
|
echo json_encode(['ok' => true]);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2015-11-12 23:34:33 +01:00
|
|
|
}
|
2015-08-24 13:54:41 +02:00
|
|
|
|
2019-12-30 23:00:08 +01: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";
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2011-03-05 05:55:32 +01:00
|
|
|
// NOTREACHED
|
|
|
|
}
|