2010-07-01 23:48:07 +00:00
|
|
|
<?php
|
2017-12-01 23:13:39 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:18:46 +00: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/>.
|
|
|
|
*
|
2011-02-04 21:37:04 +00:00
|
|
|
* This is the POST destination for most all locally posted
|
2013-12-27 00:58:21 +00:00
|
|
|
* text stuff. This function handles status, wall-to-wall status,
|
|
|
|
* local comments, and remote coments that are posted on this site
|
2011-02-04 21:37:04 +00:00
|
|
|
* (as opposed to being delivered in a feed).
|
2013-12-27 00:58:21 +00:00
|
|
|
* Also processed here are posts and comments coming through the
|
|
|
|
* statusnet/twitter API.
|
2017-03-30 19:32:12 +00:00
|
|
|
*
|
2013-12-27 00:58:21 +00:00
|
|
|
* All of these become an "item" which is our basic unit of
|
2011-02-04 21:37:04 +00:00
|
|
|
* information.
|
2013-12-27 00:58:21 +00:00
|
|
|
*/
|
2018-01-25 02:08:45 +00:00
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2020-06-10 14:13:32 +00:00
|
|
|
use Friendica\Content\Item as ItemHelper;
|
2020-07-14 14:15:04 +00:00
|
|
|
use Friendica\Content\PageInfo;
|
2018-01-27 01:01:32 +00:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2018-12-26 06:06:24 +00:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 21:20:46 +00:00
|
|
|
use Friendica\Core\Logger;
|
2018-08-11 20:40:44 +00:00
|
|
|
use Friendica\Core\Protocol;
|
2019-09-28 18:09:11 +00:00
|
|
|
use Friendica\Core\Session;
|
2019-10-22 22:14:47 +00:00
|
|
|
use Friendica\Core\System;
|
2017-11-05 12:15:53 +00:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 22:28:01 +00:00
|
|
|
use Friendica\DI;
|
2021-06-05 06:13:10 +00:00
|
|
|
use Friendica\Model\APContact;
|
2019-05-30 11:54:17 +00:00
|
|
|
use Friendica\Model\Attach;
|
2017-12-07 14:04:24 +00:00
|
|
|
use Friendica\Model\Contact;
|
2018-08-05 10:23:57 +00:00
|
|
|
use Friendica\Model\Conversation;
|
2018-10-30 18:51:45 +00:00
|
|
|
use Friendica\Model\FileTag;
|
2018-01-09 21:13:45 +00:00
|
|
|
use Friendica\Model\Item;
|
2021-04-26 10:49:57 +00:00
|
|
|
use Friendica\Model\ItemURI;
|
2021-01-23 09:53:44 +00:00
|
|
|
use Friendica\Model\Notification;
|
2018-12-11 19:03:29 +00:00
|
|
|
use Friendica\Model\Photo;
|
2020-10-31 13:26:08 +00:00
|
|
|
use Friendica\Model\Post;
|
2020-04-15 19:46:47 +00:00
|
|
|
use Friendica\Model\Tag;
|
2020-12-21 05:26:48 +00:00
|
|
|
use Friendica\Model\User;
|
2020-01-30 03:43:37 +00:00
|
|
|
use Friendica\Network\HTTPException;
|
2020-01-26 19:23:58 +00:00
|
|
|
use Friendica\Object\EMail\ItemCCEMail;
|
2019-10-23 22:25:43 +00:00
|
|
|
use Friendica\Protocol\Activity;
|
2020-09-30 09:14:01 +00:00
|
|
|
use Friendica\Security\Security;
|
2021-01-23 09:53:44 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2021-03-16 06:37:43 +00:00
|
|
|
use Friendica\Util\ParseUrl;
|
2019-06-06 04:26:02 +00:00
|
|
|
use Friendica\Worker\Delivery;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2017-01-09 12:14:25 +00:00
|
|
|
function item_post(App $a) {
|
2019-09-28 18:09:11 +00:00
|
|
|
if (!Session::isAuthenticated()) {
|
2020-01-30 03:43:37 +00:00
|
|
|
throw new HTTPException\ForbiddenException();
|
2017-03-30 19:32:12 +00:00
|
|
|
}
|
2010-07-01 23:48:07 +00:00
|
|
|
|
2010-11-01 03:36:59 +00:00
|
|
|
$uid = local_user();
|
2010-07-26 11:22:19 +00:00
|
|
|
|
2018-07-24 21:48:47 +00:00
|
|
|
if (!empty($_REQUEST['dropitems'])) {
|
2017-03-30 19:32:12 +00:00
|
|
|
$arr_drop = explode(',', $_REQUEST['dropitems']);
|
2020-06-17 08:50:28 +00:00
|
|
|
foreach ($arr_drop as $item) {
|
|
|
|
Item::deleteForUser(['id' => $item], $uid);
|
|
|
|
}
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$json = ['success' => 1];
|
2020-01-30 03:31:13 +00:00
|
|
|
System::jsonExit($json);
|
2011-06-16 03:43:39 +00:00
|
|
|
}
|
|
|
|
|
2018-12-26 06:06:24 +00:00
|
|
|
Hook::callAll('post_local_start', $_REQUEST);
|
2018-01-20 19:51:23 +00:00
|
|
|
|
2020-01-30 03:42:49 +00:00
|
|
|
Logger::debug('postvars', ['_REQUEST' => $_REQUEST]);
|
2012-01-10 02:52:49 +00:00
|
|
|
|
2019-10-15 13:01:17 +00:00
|
|
|
$api_source = $_REQUEST['api_source'] ?? false;
|
2013-05-09 08:15:22 +00:00
|
|
|
|
2019-10-15 13:01:17 +00:00
|
|
|
$return_path = $_REQUEST['return'] ?? '';
|
|
|
|
$preview = intval($_REQUEST['preview'] ?? 0);
|
2011-08-01 03:01:00 +00:00
|
|
|
|
2017-03-30 19:32:12 +00:00
|
|
|
/*
|
|
|
|
* Check for doubly-submitted posts, and reject duplicates
|
|
|
|
* Note that we have to ignore previews, otherwise nothing will post
|
|
|
|
* after it's been previewed
|
|
|
|
*/
|
2018-07-24 21:48:47 +00:00
|
|
|
if (!$preview && !empty($_REQUEST['post_id_random'])) {
|
|
|
|
if (!empty($_SESSION['post-random']) && $_SESSION['post-random'] == $_REQUEST['post_id_random']) {
|
2020-01-30 03:42:49 +00:00
|
|
|
Logger::info('item post: duplicate post');
|
2019-12-30 22:00:08 +00:00
|
|
|
item_post_return(DI::baseUrl(), $api_source, $return_path);
|
2017-03-30 19:32:12 +00:00
|
|
|
} else {
|
2012-11-01 23:14:42 +00:00
|
|
|
$_SESSION['post-random'] = $_REQUEST['post_id_random'];
|
2016-12-20 20:15:53 +00:00
|
|
|
}
|
2012-11-01 23:14:42 +00:00
|
|
|
}
|
|
|
|
|
2017-03-30 19:32:12 +00:00
|
|
|
// Is this a reply to something?
|
2020-11-12 03:58:34 +00:00
|
|
|
$parent_item_id = intval($_REQUEST['parent'] ?? 0);
|
2019-10-15 13:01:17 +00:00
|
|
|
$thr_parent_uri = trim($_REQUEST['parent_uri'] ?? '');
|
2010-07-13 23:09:53 +00:00
|
|
|
|
2020-11-12 03:58:34 +00:00
|
|
|
$parent_item = null;
|
2019-02-23 04:28:39 +00:00
|
|
|
$toplevel_item = null;
|
2020-11-12 14:29:37 +00:00
|
|
|
$toplevel_item_id = 0;
|
2020-11-12 03:58:34 +00:00
|
|
|
$toplevel_user_id = null;
|
2018-01-20 13:54:14 +00:00
|
|
|
|
2014-08-07 06:02:24 +00:00
|
|
|
$objecttype = null;
|
2019-10-15 13:01:17 +00:00
|
|
|
$profile_uid = ($_REQUEST['profile_uid'] ?? 0) ?: local_user();
|
|
|
|
$posttype = ($_REQUEST['post_type'] ?? '') ?: Item::PT_ARTICLE;
|
2010-07-13 23:09:53 +00:00
|
|
|
|
2020-11-12 03:58:34 +00:00
|
|
|
if ($parent_item_id || $thr_parent_uri) {
|
|
|
|
if ($parent_item_id) {
|
2021-02-13 19:56:03 +00:00
|
|
|
$parent_item = Post::selectFirst(Item::ITEM_FIELDLIST, ['id' => $parent_item_id]);
|
2018-01-20 13:54:14 +00:00
|
|
|
} elseif ($thr_parent_uri) {
|
2021-02-13 19:56:03 +00:00
|
|
|
$parent_item = Post::selectFirst(Item::ITEM_FIELDLIST, ['uri' => $thr_parent_uri, 'uid' => $profile_uid]);
|
2018-01-20 13:54:14 +00:00
|
|
|
}
|
2011-08-03 23:29:25 +00:00
|
|
|
|
2019-02-23 04:28:39 +00:00
|
|
|
// if this isn't the top-level parent of the conversation, find it
|
2020-11-12 03:58:34 +00:00
|
|
|
if (DBA::isResult($parent_item)) {
|
2018-01-20 13:54:14 +00:00
|
|
|
// The URI and the contact is taken from the direct parent which needn't to be the top parent
|
2020-11-12 03:58:34 +00:00
|
|
|
$thr_parent_uri = $parent_item['uri'];
|
|
|
|
$toplevel_item = $parent_item;
|
2011-08-03 23:29:25 +00:00
|
|
|
|
2020-11-12 03:58:34 +00:00
|
|
|
if ($parent_item['gravity'] != GRAVITY_PARENT) {
|
2021-02-13 19:56:03 +00:00
|
|
|
$toplevel_item = Post::selectFirst(Item::ITEM_FIELDLIST, ['id' => $toplevel_item['parent']]);
|
2011-08-01 03:01:00 +00:00
|
|
|
}
|
2012-07-23 11:58:47 +00:00
|
|
|
}
|
2011-08-01 00:52:36 +00:00
|
|
|
|
2019-02-23 04:28:39 +00:00
|
|
|
if (!DBA::isResult($toplevel_item)) {
|
2020-01-30 03:44:09 +00:00
|
|
|
notice(DI::l10n()->t('Unable to locate original post.'));
|
2020-01-30 03:34:32 +00:00
|
|
|
if ($return_path) {
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2016-12-20 20:15:53 +00:00
|
|
|
}
|
2020-01-30 03:43:37 +00:00
|
|
|
throw new HTTPException\NotFoundException(DI::l10n()->t('Unable to locate original post.'));
|
2010-07-13 23:09:53 +00:00
|
|
|
}
|
2018-01-20 13:54:14 +00:00
|
|
|
|
2020-07-21 23:26:01 +00:00
|
|
|
// When commenting on a public post then store the post for the current user
|
|
|
|
// This enables interaction like starring and saving into folders
|
|
|
|
if ($toplevel_item['uid'] == 0) {
|
2020-07-23 03:26:54 +00:00
|
|
|
$stored = Item::storeForUserByUriId($toplevel_item['uri-id'], local_user());
|
2020-07-21 23:26:01 +00:00
|
|
|
Logger::info('Public item stored for user', ['uri-id' => $toplevel_item['uri-id'], 'uid' => $uid, 'stored' => $stored]);
|
|
|
|
if ($stored) {
|
2021-02-13 19:56:03 +00:00
|
|
|
$toplevel_item = Post::selectFirst(Item::ITEM_FIELDLIST, ['id' => $stored]);
|
2020-07-21 23:26:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-23 04:28:39 +00:00
|
|
|
$toplevel_item_id = $toplevel_item['id'];
|
2020-11-12 03:58:34 +00:00
|
|
|
$toplevel_user_id = $toplevel_item['uid'];
|
2011-08-01 03:01:00 +00:00
|
|
|
|
2019-10-24 22:10:20 +00:00
|
|
|
$objecttype = Activity\ObjectType::COMMENT;
|
2010-07-13 23:09:53 +00:00
|
|
|
}
|
|
|
|
|
2019-02-23 04:28:39 +00:00
|
|
|
if ($toplevel_item_id) {
|
2020-01-30 03:42:49 +00:00
|
|
|
Logger::info('mod_item: item_post', ['parent' => $toplevel_item_id]);
|
2017-03-30 19:32:12 +00:00
|
|
|
}
|
2011-08-01 00:52:36 +00:00
|
|
|
|
2019-10-15 13:01:17 +00:00
|
|
|
$post_id = intval($_REQUEST['post_id'] ?? 0);
|
|
|
|
$app = strip_tags($_REQUEST['source'] ?? '');
|
|
|
|
$extid = strip_tags($_REQUEST['extid'] ?? '');
|
|
|
|
$object = $_REQUEST['object'] ?? '';
|
2018-08-04 14:06:36 +00:00
|
|
|
|
|
|
|
// Don't use "defaults" here. It would turn 0 to 1
|
|
|
|
if (!isset($_REQUEST['wall'])) {
|
|
|
|
$wall = 1;
|
|
|
|
} else {
|
|
|
|
$wall = $_REQUEST['wall'];
|
|
|
|
}
|
2010-08-14 14:55:18 +00:00
|
|
|
|
2018-01-19 07:02:43 +00:00
|
|
|
// Ensure that the user id in a thread always stay the same
|
2020-11-12 03:58:34 +00:00
|
|
|
if (!is_null($toplevel_user_id) && in_array($toplevel_user_id, [local_user(), 0])) {
|
|
|
|
$profile_uid = $toplevel_user_id;
|
2018-01-19 07:02:43 +00:00
|
|
|
}
|
|
|
|
|
2017-12-19 23:12:37 +00:00
|
|
|
// Allow commenting if it is an answer to a public post
|
2021-09-28 18:52:11 +00:00
|
|
|
$allow_comment = local_user() && $toplevel_item_id && in_array($toplevel_item['private'], [Item::PUBLIC, Item::UNLISTED]) && in_array($toplevel_item['network'], Protocol::FEDERATED);
|
2017-12-19 23:12:37 +00:00
|
|
|
|
2018-01-19 07:02:43 +00:00
|
|
|
// Now check that valid personal details have been provided
|
2018-10-17 19:30:41 +00:00
|
|
|
if (!Security::canWriteToUserWall($profile_uid) && !$allow_comment) {
|
2021-09-28 18:52:11 +00:00
|
|
|
Logger::notice('Permission denied.', ['local' => local_user(), 'profile_uid' => $profile_uid, 'toplevel_item_id' => $toplevel_item_id, 'network' => $toplevel_item['network']]);
|
2020-01-30 03:44:09 +00:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2020-01-30 03:34:32 +00:00
|
|
|
if ($return_path) {
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2017-03-30 19:32:12 +00:00
|
|
|
}
|
2018-07-17 22:18:42 +00:00
|
|
|
|
2020-01-30 03:43:37 +00:00
|
|
|
throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
|
2010-07-01 23:48:07 +00:00
|
|
|
}
|
2010-08-14 14:55:18 +00:00
|
|
|
|
2018-07-17 22:18:42 +00:00
|
|
|
// Init post instance
|
2011-03-18 12:06:16 +00:00
|
|
|
$orig_post = null;
|
|
|
|
|
2018-07-17 22:18:42 +00:00
|
|
|
// is this an edited post?
|
|
|
|
if ($post_id > 0) {
|
2021-01-16 04:11:28 +00:00
|
|
|
$orig_post = Post::selectFirst(Item::ITEM_FIELDLIST, ['id' => $post_id]);
|
2011-03-18 12:06:16 +00:00
|
|
|
}
|
|
|
|
|
2020-12-21 05:26:48 +00:00
|
|
|
$user = User::getById($profile_uid, ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid']);
|
2019-02-23 04:28:39 +00:00
|
|
|
if (!DBA::isResult($user) && !$toplevel_item_id) {
|
2018-09-02 07:20:04 +00:00
|
|
|
return 0;
|
2017-03-30 19:32:12 +00:00
|
|
|
}
|
2011-11-29 04:09:10 +00:00
|
|
|
|
2018-07-01 08:03:57 +00:00
|
|
|
$categories = '';
|
2018-07-17 22:18:42 +00:00
|
|
|
$postopts = '';
|
2018-07-18 21:26:14 +00:00
|
|
|
$emailcc = '';
|
2019-10-15 13:01:17 +00:00
|
|
|
$body = $_REQUEST['body'] ?? '';
|
|
|
|
$has_attachment = $_REQUEST['has_attachment'] ?? 0;
|
2019-02-01 22:42:36 +00:00
|
|
|
|
|
|
|
// If we have a speparate attachment, we need to add it to the body.
|
|
|
|
if (!empty($has_attachment)) {
|
2019-10-15 13:01:17 +00:00
|
|
|
$attachment_type = $_REQUEST['attachment_type'] ?? '';
|
|
|
|
$attachment_title = $_REQUEST['attachment_title'] ?? '';
|
|
|
|
$attachment_text = $_REQUEST['attachment_text'] ?? '';
|
2019-02-01 22:42:36 +00:00
|
|
|
|
2019-10-15 13:01:17 +00:00
|
|
|
$attachment_url = hex2bin($_REQUEST['attachment_url'] ?? '');
|
|
|
|
$attachment_img_src = hex2bin($_REQUEST['attachment_img_src'] ?? '');
|
2019-02-01 22:42:36 +00:00
|
|
|
|
2019-10-15 13:01:17 +00:00
|
|
|
$attachment_img_width = $_REQUEST['attachment_img_width'] ?? 0;
|
|
|
|
$attachment_img_height = $_REQUEST['attachment_img_height'] ?? 0;
|
2021-03-16 06:37:43 +00:00
|
|
|
|
|
|
|
// Fetch the basic attachment data
|
|
|
|
$attachment = ParseUrl::getSiteinfoCached($attachment_url);
|
2021-03-24 19:49:20 +00:00
|
|
|
unset($attachment['keywords']);
|
2021-03-16 06:37:43 +00:00
|
|
|
|
|
|
|
// Overwrite the basic data with possible changes from the frontend
|
|
|
|
$attachment['type'] = $attachment_type;
|
|
|
|
$attachment['title'] = $attachment_title;
|
|
|
|
$attachment['text'] = $attachment_text;
|
|
|
|
$attachment['url'] = $attachment_url;
|
2019-02-01 22:42:36 +00:00
|
|
|
|
|
|
|
if (!empty($attachment_img_src)) {
|
|
|
|
$attachment['images'] = [
|
|
|
|
0 => [
|
|
|
|
'src' => $attachment_img_src,
|
|
|
|
'width' => $attachment_img_width,
|
|
|
|
'height' => $attachment_img_height
|
|
|
|
]
|
|
|
|
];
|
2021-03-16 06:37:43 +00:00
|
|
|
} else {
|
|
|
|
unset($attachment['images']);
|
2019-02-01 22:42:36 +00:00
|
|
|
}
|
|
|
|
|
2020-07-14 14:15:04 +00:00
|
|
|
$att_bbcode = "\n" . PageInfo::getFooterFromData($attachment);
|
2019-02-01 22:42:36 +00:00
|
|
|
$body .= $att_bbcode;
|
|
|
|
}
|
2018-07-01 08:03:57 +00:00
|
|
|
|
2019-10-13 15:52:33 +00:00
|
|
|
// Convert links with empty descriptions to links without an explicit description
|
2019-10-16 17:53:16 +00:00
|
|
|
$body = preg_replace('#\[url=([^\]]*?)\]\[/url\]#ism', '[url]$1[/url]', $body);
|
2019-10-13 15:52:33 +00:00
|
|
|
|
2018-07-17 22:18:42 +00:00
|
|
|
if (!empty($orig_post)) {
|
2020-03-21 18:30:40 +00:00
|
|
|
$str_group_allow = $orig_post['allow_gid'];
|
|
|
|
$str_contact_allow = $orig_post['allow_cid'];
|
|
|
|
$str_group_deny = $orig_post['deny_gid'];
|
|
|
|
$str_contact_deny = $orig_post['deny_cid'];
|
2011-03-18 12:06:16 +00:00
|
|
|
$location = $orig_post['location'];
|
|
|
|
$coord = $orig_post['coord'];
|
|
|
|
$verb = $orig_post['verb'];
|
2014-08-07 06:02:24 +00:00
|
|
|
$objecttype = $orig_post['object-type'];
|
2014-10-20 06:21:23 +00:00
|
|
|
$app = $orig_post['app'];
|
2021-01-21 07:16:41 +00:00
|
|
|
$categories = Post\Category::getTextByURIId($orig_post['uri-id'], $orig_post['uid']);
|
2020-09-13 23:51:03 +00:00
|
|
|
$title = trim($_REQUEST['title'] ?? '');
|
2020-01-03 01:38:07 +00:00
|
|
|
$body = trim($body);
|
2011-03-18 12:06:16 +00:00
|
|
|
$private = $orig_post['private'];
|
2018-01-20 13:54:14 +00:00
|
|
|
$pubmail_enabled = $orig_post['pubmail'];
|
2013-12-27 00:58:21 +00:00
|
|
|
$network = $orig_post['network'];
|
2014-07-21 22:36:20 +00:00
|
|
|
$guid = $orig_post['guid'];
|
2014-10-20 06:21:23 +00:00
|
|
|
$extid = $orig_post['extid'];
|
2014-07-21 22:36:20 +00:00
|
|
|
} else {
|
2020-12-22 03:23:13 +00:00
|
|
|
$aclFormatter = DI::aclFormatter();
|
|
|
|
$str_contact_allow = isset($_REQUEST['contact_allow']) ? $aclFormatter->toString($_REQUEST['contact_allow']) : $user['allow_cid'] ?? '';
|
|
|
|
$str_group_allow = isset($_REQUEST['group_allow']) ? $aclFormatter->toString($_REQUEST['group_allow']) : $user['allow_gid'] ?? '';
|
|
|
|
$str_contact_deny = isset($_REQUEST['contact_deny']) ? $aclFormatter->toString($_REQUEST['contact_deny']) : $user['deny_cid'] ?? '';
|
|
|
|
$str_group_deny = isset($_REQUEST['group_deny']) ? $aclFormatter->toString($_REQUEST['group_deny']) : $user['deny_gid'] ?? '';
|
|
|
|
|
|
|
|
$visibility = $_REQUEST['visibility'] ?? '';
|
|
|
|
if ($visibility === 'public') {
|
|
|
|
// The ACL selector introduced in version 2019.12 sends ACL input data even when the Public visibility is selected
|
|
|
|
$str_contact_allow = $str_group_allow = $str_contact_deny = $str_group_deny = '';
|
|
|
|
} else if ($visibility === 'custom') {
|
|
|
|
// Since we know from the visibility parameter the item should be private, we have to prevent the empty ACL
|
|
|
|
// case that would make it public. So we always append the author's contact id to the allowed contacts.
|
2020-12-21 05:26:48 +00:00
|
|
|
// See https://github.com/friendica/friendica/issues/9672
|
|
|
|
$str_contact_allow .= $aclFormatter->toString(Contact::getPublicIdByUserId($uid));
|
2020-03-24 20:34:19 +00:00
|
|
|
}
|
2012-01-12 22:20:21 +00:00
|
|
|
|
2020-09-13 23:51:03 +00:00
|
|
|
$title = trim($_REQUEST['title'] ?? '');
|
|
|
|
$location = trim($_REQUEST['location'] ?? '');
|
|
|
|
$coord = trim($_REQUEST['coord'] ?? '');
|
|
|
|
$verb = trim($_REQUEST['verb'] ?? '');
|
|
|
|
$emailcc = trim($_REQUEST['emailcc'] ?? '');
|
2020-01-03 01:38:07 +00:00
|
|
|
$body = trim($body);
|
2020-09-13 23:51:03 +00:00
|
|
|
$network = trim(($_REQUEST['network'] ?? '') ?: Protocol::DFRN);
|
2018-11-08 15:20:03 +00:00
|
|
|
$guid = System::createUUID();
|
2012-03-22 23:17:10 +00:00
|
|
|
|
2019-10-15 13:01:17 +00:00
|
|
|
$postopts = $_REQUEST['postopts'] ?? '';
|
2012-07-12 05:45:14 +00:00
|
|
|
|
2020-03-02 07:57:23 +00:00
|
|
|
if (strlen($str_group_allow) || strlen($str_contact_allow) || strlen($str_group_deny) || strlen($str_contact_deny)) {
|
|
|
|
$private = Item::PRIVATE;
|
2020-03-02 12:29:08 +00:00
|
|
|
} elseif (DI::pConfig()->get($profile_uid, 'system', 'unlisted')) {
|
2020-03-02 14:51:53 +00:00
|
|
|
$private = Item::UNLISTED;
|
2020-03-02 07:57:23 +00:00
|
|
|
} else {
|
2020-03-02 14:51:53 +00:00
|
|
|
$private = Item::PUBLIC;
|
2020-03-02 07:57:23 +00:00
|
|
|
}
|
2011-03-18 12:06:16 +00:00
|
|
|
|
2012-05-19 23:42:24 +00:00
|
|
|
// If this is a comment, set the permissions from the parent.
|
|
|
|
|
2019-02-23 04:28:39 +00:00
|
|
|
if ($toplevel_item) {
|
2013-12-27 00:58:21 +00:00
|
|
|
// for non native networks use the network of the original post as network of the item
|
2019-02-23 04:28:39 +00:00
|
|
|
if (($toplevel_item['network'] != Protocol::DIASPORA)
|
|
|
|
&& ($toplevel_item['network'] != Protocol::OSTATUS)
|
2017-06-08 02:00:59 +00:00
|
|
|
&& ($network == "")) {
|
2019-02-23 04:28:39 +00:00
|
|
|
$network = $toplevel_item['network'];
|
2017-03-30 19:32:12 +00:00
|
|
|
}
|
2013-12-27 00:58:21 +00:00
|
|
|
|
2020-03-20 04:52:04 +00:00
|
|
|
$str_contact_allow = $toplevel_item['allow_cid'] ?? '';
|
|
|
|
$str_group_allow = $toplevel_item['allow_gid'] ?? '';
|
|
|
|
$str_contact_deny = $toplevel_item['deny_cid'] ?? '';
|
|
|
|
$str_group_deny = $toplevel_item['deny_gid'] ?? '';
|
2019-02-23 04:28:39 +00:00
|
|
|
$private = $toplevel_item['private'];
|
2018-07-19 13:52:05 +00:00
|
|
|
|
2019-02-23 04:28:39 +00:00
|
|
|
$wall = $toplevel_item['wall'];
|
2011-03-18 12:06:16 +00:00
|
|
|
}
|
2016-10-06 21:24:29 +00:00
|
|
|
|
2019-10-15 13:01:17 +00:00
|
|
|
$pubmail_enabled = ($_REQUEST['pubmail_enable'] ?? false) && !$private;
|
2010-12-19 21:41:55 +00:00
|
|
|
|
2011-08-14 11:26:41 +00:00
|
|
|
// if using the API, we won't see pubmail_enable - figure out if it should be set
|
2018-01-09 20:03:00 +00:00
|
|
|
if ($api_source && $profile_uid && $profile_uid == local_user() && !$private) {
|
2020-01-19 20:21:13 +00:00
|
|
|
if (function_exists('imap_open') && !DI::config()->get('system', 'imap_disabled')) {
|
2018-07-20 12:19:26 +00:00
|
|
|
$pubmail_enabled = DBA::exists('mailacct', ["`uid` = ? AND `server` != ? AND `pubmail`", local_user(), '']);
|
2011-08-14 11:26:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-09 20:03:00 +00:00
|
|
|
if (!strlen($body)) {
|
2017-03-30 19:32:12 +00:00
|
|
|
if ($preview) {
|
2020-01-30 03:31:13 +00:00
|
|
|
System::jsonExit(['preview' => '']);
|
2017-03-30 19:32:12 +00:00
|
|
|
}
|
2020-01-30 03:44:09 +00:00
|
|
|
|
2020-07-23 06:11:21 +00:00
|
|
|
notice(DI::l10n()->t('Empty post discarded.'));
|
2020-01-30 03:34:32 +00:00
|
|
|
if ($return_path) {
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2017-03-30 19:32:12 +00:00
|
|
|
}
|
2020-01-30 03:43:37 +00:00
|
|
|
|
|
|
|
throw new HTTPException\BadRequestException(DI::l10n()->t('Empty post discarded.'));
|
2011-03-18 12:06:16 +00:00
|
|
|
}
|
2010-07-12 23:43:59 +00:00
|
|
|
}
|
|
|
|
|
2019-05-27 21:17:53 +00:00
|
|
|
if (!empty($categories)) {
|
2012-05-30 05:57:15 +00:00
|
|
|
// get the "fileas" tags for this post
|
2019-05-27 21:17:53 +00:00
|
|
|
$filedas = FileTag::fileToArray($categories);
|
2012-04-02 01:28:31 +00:00
|
|
|
}
|
2018-10-30 18:51:45 +00:00
|
|
|
|
2021-11-07 14:00:47 +00:00
|
|
|
$list_array = explode(',', trim($_REQUEST['category'] ?? ''));
|
|
|
|
$categories = FileTag::arrayToFile($list_array, 'category');
|
2018-10-30 18:51:45 +00:00
|
|
|
|
2019-05-30 11:54:17 +00:00
|
|
|
if (!empty($filedas) && is_array($filedas)) {
|
2012-05-30 05:57:15 +00:00
|
|
|
// append the fileas stuff to the new categories list
|
2019-05-27 21:17:53 +00:00
|
|
|
$categories .= FileTag::arrayToFile($filedas);
|
2012-04-02 01:28:31 +00:00
|
|
|
}
|
|
|
|
|
2010-07-17 06:14:37 +00:00
|
|
|
// get contact info for poster
|
2010-07-18 02:26:00 +00:00
|
|
|
|
2010-08-14 14:55:18 +00:00
|
|
|
$author = null;
|
2010-12-22 22:16:22 +00:00
|
|
|
$self = false;
|
2012-09-05 05:50:28 +00:00
|
|
|
$contact_id = 0;
|
2010-08-14 14:55:18 +00:00
|
|
|
|
2017-12-19 23:12:37 +00:00
|
|
|
if (local_user() && ((local_user() == $profile_uid) || $allow_comment)) {
|
2010-12-22 22:16:22 +00:00
|
|
|
$self = true;
|
2018-07-20 12:19:26 +00:00
|
|
|
$author = DBA::selectFirst('contact', [], ['uid' => local_user(), 'self' => true]);
|
2019-09-28 09:59:08 +00:00
|
|
|
} elseif (!empty(Session::getRemoteContactID($profile_uid))) {
|
|
|
|
$author = DBA::selectFirst('contact', [], ['id' => Session::getRemoteContactID($profile_uid)]);
|
2010-08-14 14:55:18 +00:00
|
|
|
}
|
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($author)) {
|
2010-08-14 14:55:18 +00:00
|
|
|
$contact_id = $author['id'];
|
2010-07-17 06:14:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// get contact info for owner
|
2017-12-19 23:12:37 +00:00
|
|
|
if ($profile_uid == local_user() || $allow_comment) {
|
2020-07-04 19:33:54 +00:00
|
|
|
$contact_record = $author ?: [];
|
2017-03-30 19:32:12 +00:00
|
|
|
} else {
|
2020-07-04 19:33:54 +00:00
|
|
|
$contact_record = DBA::selectFirst('contact', [], ['uid' => $profile_uid, 'self' => true]) ?: [];
|
2010-08-14 14:55:18 +00:00
|
|
|
}
|
2010-07-17 06:14:37 +00:00
|
|
|
|
2017-11-26 02:03:59 +00:00
|
|
|
// Look for any tags and linkify them
|
|
|
|
$inform = '';
|
|
|
|
$private_forum = false;
|
2020-06-05 00:57:27 +00:00
|
|
|
$private_id = null;
|
2017-11-26 02:03:59 +00:00
|
|
|
$only_to_forum = false;
|
2018-01-15 13:05:12 +00:00
|
|
|
$forum_contact = [];
|
2017-11-26 02:03:59 +00:00
|
|
|
|
2020-06-16 20:34:16 +00:00
|
|
|
$body = BBCode::performWithEscapedTags($body, ['noparse', 'pre', 'code', 'img'], function ($body) use ($profile_uid, $network, $str_contact_allow, &$inform, &$private_forum, &$private_id, &$only_to_forum, &$forum_contact) {
|
2020-06-05 00:57:27 +00:00
|
|
|
$tags = BBCode::getTags($body);
|
|
|
|
|
|
|
|
$tagged = [];
|
|
|
|
|
2017-11-26 02:03:59 +00:00
|
|
|
foreach ($tags as $tag) {
|
|
|
|
$tag_type = substr($tag, 0, 1);
|
|
|
|
|
2020-04-26 16:15:39 +00:00
|
|
|
if ($tag_type == Tag::TAG_CHARACTER[Tag::HASHTAG]) {
|
2017-11-26 02:03:59 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-06-05 00:57:27 +00:00
|
|
|
/* If we already tagged 'Robert Johnson', don't try and tag 'Robert'.
|
2017-11-26 02:03:59 +00:00
|
|
|
* Robert Johnson should be first in the $tags array
|
|
|
|
*/
|
|
|
|
foreach ($tagged as $nextTag) {
|
|
|
|
if (stristr($nextTag, $tag . ' ')) {
|
2020-06-05 00:57:27 +00:00
|
|
|
continue 2;
|
2017-11-26 02:03:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-31 05:35:49 +00:00
|
|
|
if ($success = ItemHelper::replaceTag($body, $inform, local_user() ? local_user() : $profile_uid, $tag, $network)) {
|
|
|
|
if ($success['replaced']) {
|
|
|
|
$tagged[] = $tag;
|
|
|
|
}
|
|
|
|
// When the forum is private or the forum is addressed with a "!" make the post private
|
|
|
|
if (!empty($success['contact']['prv']) || ($tag_type == Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION])) {
|
|
|
|
$private_forum = $success['contact']['prv'];
|
|
|
|
$only_to_forum = ($tag_type == Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION]);
|
|
|
|
$private_id = $success['contact']['id'];
|
|
|
|
$forum_contact = $success['contact'];
|
|
|
|
} elseif (!empty($success['contact']['forum']) && ($str_contact_allow == '<' . $success['contact']['id'] . '>')) {
|
|
|
|
$private_forum = false;
|
|
|
|
$only_to_forum = true;
|
|
|
|
$private_id = $success['contact']['id'];
|
|
|
|
$forum_contact = $success['contact'];
|
|
|
|
}
|
2017-11-26 02:03:59 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-05 00:57:27 +00:00
|
|
|
|
|
|
|
return $body;
|
|
|
|
});
|
|
|
|
|
2017-11-26 22:28:46 +00:00
|
|
|
$original_contact_id = $contact_id;
|
|
|
|
|
2020-07-04 19:33:35 +00:00
|
|
|
if (!$toplevel_item_id && !empty($forum_contact) && ($private_forum || $only_to_forum)) {
|
2021-08-01 13:01:31 +00:00
|
|
|
// we tagged a forum in a top level post. Now we change the post
|
2021-06-05 18:38:21 +00:00
|
|
|
$private = $private_forum ? Item::PRIVATE : Item::UNLISTED;
|
2017-11-26 02:03:59 +00:00
|
|
|
|
2021-06-05 06:13:10 +00:00
|
|
|
if ($only_to_forum) {
|
|
|
|
$postopts = '';
|
|
|
|
}
|
|
|
|
|
2021-06-22 22:33:56 +00:00
|
|
|
if (!$private_forum) {
|
|
|
|
$str_contact_allow = '';
|
|
|
|
$str_group_allow = '';
|
|
|
|
$str_contact_deny = '';
|
|
|
|
$str_group_deny = '';
|
|
|
|
}
|
|
|
|
|
2021-06-05 06:13:10 +00:00
|
|
|
if ($private_forum || !APContact::getByURL($forum_contact['url'])) {
|
|
|
|
$str_group_allow = '';
|
|
|
|
$str_contact_deny = '';
|
|
|
|
$str_group_deny = '';
|
|
|
|
if ($private_forum) {
|
|
|
|
$str_contact_allow = '<' . $private_id . '>';
|
|
|
|
} else {
|
|
|
|
$str_contact_allow = '';
|
|
|
|
}
|
|
|
|
$contact_id = $private_id;
|
|
|
|
$contact_record = $forum_contact;
|
|
|
|
$_REQUEST['origin'] = false;
|
|
|
|
$wall = 0;
|
2017-11-26 02:03:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-30 19:32:12 +00:00
|
|
|
/*
|
2013-11-03 01:07:44 +00:00
|
|
|
* When a photo was uploaded into the message using the (profile wall) ajax
|
2011-01-04 10:01:07 +00:00
|
|
|
* uploader, The permissions are initially set to disallow anybody but the
|
|
|
|
* owner from seeing it. This is because the permissions may not yet have been
|
|
|
|
* set for the post. If it's private, the photo permissions should be set
|
|
|
|
* appropriately. But we didn't know the final permissions on the post until
|
|
|
|
* now. So now we'll look for links of uploaded messages that are in the
|
|
|
|
* post and set them to the same permissions as the post itself.
|
2011-01-04 07:05:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
$match = null;
|
|
|
|
|
2020-03-22 14:07:34 +00:00
|
|
|
if (!$preview && Photo::setPermissionFromBody($body, $uid, $original_contact_id, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny)) {
|
2019-10-24 22:10:20 +00:00
|
|
|
$objecttype = Activity\ObjectType::IMAGE;
|
2011-01-04 07:05:20 +00:00
|
|
|
}
|
|
|
|
|
2017-03-30 19:32:12 +00:00
|
|
|
/*
|
2011-06-30 01:59:05 +00:00
|
|
|
* Next link in any attachment references we find in the post.
|
|
|
|
*/
|
2021-02-13 19:56:03 +00:00
|
|
|
$match = [];
|
2011-05-25 09:08:15 +00:00
|
|
|
|
2018-01-20 19:48:51 +00:00
|
|
|
/// @todo these lines should be moved to Model/Attach (Once it exists)
|
2018-01-09 20:03:00 +00:00
|
|
|
if (!$preview && preg_match_all("/\[attachment\](.*?)\[\/attachment\]/", $body, $match)) {
|
2011-05-25 09:08:15 +00:00
|
|
|
$attaches = $match[1];
|
2017-03-30 19:32:12 +00:00
|
|
|
if (count($attaches)) {
|
|
|
|
foreach ($attaches as $attach) {
|
2018-01-20 19:48:51 +00:00
|
|
|
// Ensure to only modify attachments that you own
|
|
|
|
$srch = '<' . intval($original_contact_id) . '>';
|
|
|
|
|
|
|
|
$condition = ['allow_cid' => $srch, 'allow_gid' => '', 'deny_cid' => '', 'deny_gid' => '',
|
|
|
|
'id' => $attach];
|
2019-01-03 17:39:55 +00:00
|
|
|
if (!Attach::exists($condition)) {
|
2018-01-20 19:48:51 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-01-20 13:54:14 +00:00
|
|
|
$fields = ['allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow,
|
|
|
|
'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny];
|
|
|
|
$condition = ['id' => $attach];
|
2019-01-03 17:39:55 +00:00
|
|
|
Attach::update($fields, $condition);
|
2011-05-25 09:08:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-24 15:00:19 +00:00
|
|
|
// embedded bookmark or attachment in post? set bookmark flag
|
2011-09-05 02:58:03 +00:00
|
|
|
|
2018-01-27 01:01:32 +00:00
|
|
|
$data = BBCode::getAttachmentData($body);
|
2021-02-13 19:56:03 +00:00
|
|
|
$match = [];
|
2018-07-19 13:52:05 +00:00
|
|
|
if ((preg_match_all("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/ism", $body, $match, PREG_SET_ORDER) || isset($data["type"]))
|
|
|
|
&& ($posttype != Item::PT_PERSONAL_NOTE)) {
|
|
|
|
$posttype = Item::PT_PAGE;
|
2019-10-24 22:10:20 +00:00
|
|
|
$objecttype = Activity\ObjectType::BOOKMARK;
|
2011-09-05 02:58:03 +00:00
|
|
|
}
|
|
|
|
|
2019-12-15 22:28:01 +00:00
|
|
|
$body = DI::bbCodeVideo()->transform($body);
|
2012-08-04 01:33:11 +00:00
|
|
|
|
2020-01-03 01:44:15 +00:00
|
|
|
$body = BBCode::scaleExternalImages($body);
|
2012-02-25 22:22:51 +00:00
|
|
|
|
2014-08-07 06:02:24 +00:00
|
|
|
// Setting the object type if not defined before
|
|
|
|
if (!$objecttype) {
|
2019-10-24 22:10:20 +00:00
|
|
|
$objecttype = Activity\ObjectType::NOTE; // Default value
|
2018-01-27 01:01:32 +00:00
|
|
|
$objectdata = BBCode::getAttachedData($body);
|
2014-08-07 06:02:24 +00:00
|
|
|
|
2017-11-26 02:03:59 +00:00
|
|
|
if ($objectdata["type"] == "link") {
|
2019-10-24 22:10:20 +00:00
|
|
|
$objecttype = Activity\ObjectType::BOOKMARK;
|
2017-11-26 02:03:59 +00:00
|
|
|
} elseif ($objectdata["type"] == "video") {
|
2019-10-24 22:10:20 +00:00
|
|
|
$objecttype = Activity\ObjectType::VIDEO;
|
2017-11-26 02:03:59 +00:00
|
|
|
} elseif ($objectdata["type"] == "photo") {
|
2019-10-24 22:10:20 +00:00
|
|
|
$objecttype = Activity\ObjectType::IMAGE;
|
2017-03-30 19:32:12 +00:00
|
|
|
}
|
2014-08-07 06:02:24 +00:00
|
|
|
|
|
|
|
}
|
2012-08-04 01:33:11 +00:00
|
|
|
|
2011-05-25 09:08:15 +00:00
|
|
|
$attachments = '';
|
2021-02-13 19:56:03 +00:00
|
|
|
$match = [];
|
2011-05-25 09:08:15 +00:00
|
|
|
|
2016-12-19 13:26:13 +00:00
|
|
|
if (preg_match_all('/(\[attachment\]([0-9]+)\[\/attachment\])/',$body,$match)) {
|
|
|
|
foreach ($match[2] as $mtch) {
|
2018-01-20 13:54:14 +00:00
|
|
|
$fields = ['id', 'filename', 'filesize', 'filetype'];
|
2019-01-03 17:39:55 +00:00
|
|
|
$attachment = Attach::selectFirst($fields, ['id' => $mtch]);
|
|
|
|
if ($attachment !== false) {
|
2016-12-20 20:31:05 +00:00
|
|
|
if (strlen($attachments)) {
|
2011-05-25 09:08:15 +00:00
|
|
|
$attachments .= ',';
|
2016-12-20 20:31:05 +00:00
|
|
|
}
|
2020-10-31 13:26:08 +00:00
|
|
|
$attachments .= Post\Media::getAttachElement(DI::baseUrl() . '/attach/' . $attachment['id'],
|
|
|
|
$attachment['filesize'], $attachment['filetype'], $attachment['filename'] ?? '');
|
2011-05-25 09:08:15 +00:00
|
|
|
}
|
|
|
|
$body = str_replace($match[1],'',$body);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-09 20:03:00 +00:00
|
|
|
if (!strlen($verb)) {
|
2019-10-23 22:25:43 +00:00
|
|
|
$verb = Activity::POST;
|
2016-12-20 20:31:05 +00:00
|
|
|
}
|
2010-09-10 05:02:28 +00:00
|
|
|
|
2016-12-20 20:31:05 +00:00
|
|
|
if ($network == "") {
|
2018-08-11 20:40:44 +00:00
|
|
|
$network = Protocol::DFRN;
|
2016-12-20 20:31:05 +00:00
|
|
|
}
|
2013-12-27 00:58:21 +00:00
|
|
|
|
2019-02-23 04:28:39 +00:00
|
|
|
$gravity = ($toplevel_item_id ? GRAVITY_COMMENT : GRAVITY_PARENT);
|
2011-10-17 21:52:03 +00:00
|
|
|
|
2015-03-22 09:12:16 +00:00
|
|
|
// even if the post arrived via API we are considering that it
|
2011-10-17 21:52:03 +00:00
|
|
|
// originated on this site by default for determining relayability.
|
|
|
|
|
2018-08-04 14:06:36 +00:00
|
|
|
// Don't use "defaults" here. It would turn 0 to 1
|
|
|
|
if (!isset($_REQUEST['origin'])) {
|
|
|
|
$origin = 1;
|
|
|
|
} else {
|
|
|
|
$origin = $_REQUEST['origin'];
|
|
|
|
}
|
2013-12-27 00:58:21 +00:00
|
|
|
|
2020-11-29 09:01:51 +00:00
|
|
|
$uri = Item::newURI($api_source ? $profile_uid : $uid, $guid);
|
2010-08-10 08:21:38 +00:00
|
|
|
|
2018-01-11 19:17:40 +00:00
|
|
|
// Fallback so that we alway have a parent uri
|
2019-02-23 04:28:39 +00:00
|
|
|
if (!$thr_parent_uri || !$toplevel_item_id) {
|
2018-01-20 13:54:14 +00:00
|
|
|
$thr_parent_uri = $uri;
|
2016-12-20 20:31:05 +00:00
|
|
|
}
|
2012-08-07 08:04:47 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$datarray = [];
|
2010-12-22 22:16:22 +00:00
|
|
|
$datarray['uid'] = $profile_uid;
|
|
|
|
$datarray['wall'] = $wall;
|
|
|
|
$datarray['gravity'] = $gravity;
|
2013-12-27 00:58:21 +00:00
|
|
|
$datarray['network'] = $network;
|
2010-12-22 22:16:22 +00:00
|
|
|
$datarray['contact-id'] = $contact_id;
|
2020-07-04 19:33:54 +00:00
|
|
|
$datarray['owner-name'] = $contact_record['name'] ?? '';
|
|
|
|
$datarray['owner-link'] = $contact_record['url'] ?? '';
|
|
|
|
$datarray['owner-avatar'] = $contact_record['thumb'] ?? '';
|
2018-03-02 00:53:47 +00:00
|
|
|
$datarray['owner-id'] = Contact::getIdForURL($datarray['owner-link']);
|
2010-12-22 22:16:22 +00:00
|
|
|
$datarray['author-name'] = $author['name'];
|
|
|
|
$datarray['author-link'] = $author['url'];
|
|
|
|
$datarray['author-avatar'] = $author['thumb'];
|
2018-03-02 00:53:47 +00:00
|
|
|
$datarray['author-id'] = Contact::getIdForURL($datarray['author-link']);
|
2018-01-27 02:38:34 +00:00
|
|
|
$datarray['created'] = DateTimeFormat::utcNow();
|
|
|
|
$datarray['edited'] = DateTimeFormat::utcNow();
|
|
|
|
$datarray['commented'] = DateTimeFormat::utcNow();
|
|
|
|
$datarray['received'] = DateTimeFormat::utcNow();
|
|
|
|
$datarray['changed'] = DateTimeFormat::utcNow();
|
2014-10-20 06:21:23 +00:00
|
|
|
$datarray['extid'] = $extid;
|
2014-07-21 22:36:20 +00:00
|
|
|
$datarray['guid'] = $guid;
|
2010-12-22 22:16:22 +00:00
|
|
|
$datarray['uri'] = $uri;
|
|
|
|
$datarray['title'] = $title;
|
|
|
|
$datarray['body'] = $body;
|
2011-06-21 02:08:40 +00:00
|
|
|
$datarray['app'] = $app;
|
2010-12-22 22:16:22 +00:00
|
|
|
$datarray['location'] = $location;
|
|
|
|
$datarray['coord'] = $coord;
|
2012-03-22 23:17:10 +00:00
|
|
|
$datarray['file'] = $categories;
|
2010-12-22 22:16:22 +00:00
|
|
|
$datarray['inform'] = $inform;
|
|
|
|
$datarray['verb'] = $verb;
|
2018-07-19 13:52:05 +00:00
|
|
|
$datarray['post-type'] = $posttype;
|
2014-08-07 06:02:24 +00:00
|
|
|
$datarray['object-type'] = $objecttype;
|
2010-12-22 22:16:22 +00:00
|
|
|
$datarray['allow_cid'] = $str_contact_allow;
|
|
|
|
$datarray['allow_gid'] = $str_group_allow;
|
|
|
|
$datarray['deny_cid'] = $str_contact_deny;
|
|
|
|
$datarray['deny_gid'] = $str_group_deny;
|
|
|
|
$datarray['private'] = $private;
|
2018-01-20 13:54:14 +00:00
|
|
|
$datarray['pubmail'] = $pubmail_enabled;
|
2011-05-25 09:08:15 +00:00
|
|
|
$datarray['attach'] = $attachments;
|
2018-01-20 14:10:37 +00:00
|
|
|
|
2020-11-11 07:47:48 +00:00
|
|
|
$datarray['thr-parent'] = $thr_parent_uri;
|
2018-01-20 14:10:37 +00:00
|
|
|
|
2012-07-12 05:45:14 +00:00
|
|
|
$datarray['postopts'] = $postopts;
|
2011-10-17 21:52:03 +00:00
|
|
|
$datarray['origin'] = $origin;
|
2016-12-09 09:57:02 +00:00
|
|
|
$datarray['object'] = $object;
|
2016-06-21 05:54:45 +00:00
|
|
|
|
2021-05-01 15:48:19 +00:00
|
|
|
$datarray['attachments'] = $_REQUEST['attachments'] ?? [];
|
2021-04-26 10:49:57 +00:00
|
|
|
|
2017-03-30 19:32:12 +00:00
|
|
|
/*
|
2018-01-17 19:22:38 +00:00
|
|
|
* These fields are for the convenience of addons...
|
2010-12-22 22:16:22 +00:00
|
|
|
* 'self' if true indicates the owner is posting on their own wall
|
|
|
|
* If parent is 0 it is a top-level post.
|
|
|
|
*/
|
2019-02-23 04:28:39 +00:00
|
|
|
$datarray['parent'] = $toplevel_item_id;
|
2010-12-22 22:16:22 +00:00
|
|
|
$datarray['self'] = $self;
|
|
|
|
|
2017-09-06 16:20:14 +00:00
|
|
|
// This triggers posts via API and the mirror functions
|
|
|
|
$datarray['api_source'] = $api_source;
|
|
|
|
|
2018-01-11 19:17:40 +00:00
|
|
|
// This field is for storing the raw conversation data
|
2020-11-29 09:01:51 +00:00
|
|
|
$datarray['protocol'] = Conversation::PARCEL_DIRECT;
|
2021-01-09 12:59:30 +00:00
|
|
|
$datarray['direction'] = Conversation::PUSH;
|
2017-04-29 05:44:13 +00:00
|
|
|
|
2020-11-11 07:47:48 +00:00
|
|
|
$conversation = DBA::selectFirst('conversation', ['conversation-uri', 'conversation-href'], ['item-uri' => $datarray['thr-parent']]);
|
2018-07-21 12:46:04 +00:00
|
|
|
if (DBA::isResult($conversation)) {
|
2018-07-10 12:27:56 +00:00
|
|
|
if ($conversation['conversation-uri'] != '') {
|
2018-06-19 21:33:07 +00:00
|
|
|
$datarray['conversation-uri'] = $conversation['conversation-uri'];
|
2017-04-29 05:44:13 +00:00
|
|
|
}
|
2018-07-10 12:27:56 +00:00
|
|
|
if ($conversation['conversation-href'] != '') {
|
2018-06-19 21:33:07 +00:00
|
|
|
$datarray['conversation-href'] = $conversation['conversation-href'];
|
2017-04-29 05:44:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-30 19:32:12 +00:00
|
|
|
if ($orig_post) {
|
|
|
|
$datarray['edit'] = true;
|
2018-07-10 12:27:56 +00:00
|
|
|
} else {
|
2019-12-07 21:05:14 +00:00
|
|
|
// If this was a share, add missing data here
|
|
|
|
$datarray = Item::addShareDataFromOriginal($datarray);
|
|
|
|
|
2018-07-10 12:27:56 +00:00
|
|
|
$datarray['edit'] = false;
|
2017-03-30 19:32:12 +00:00
|
|
|
}
|
2011-08-08 00:29:26 +00:00
|
|
|
|
2018-05-19 14:55:27 +00:00
|
|
|
// Check for hashtags in the body and repair or add hashtag links
|
|
|
|
if ($preview || $orig_post) {
|
2020-06-05 00:56:50 +00:00
|
|
|
$datarray['body'] = Item::setHashtags($datarray['body']);
|
2018-05-19 14:55:27 +00:00
|
|
|
}
|
|
|
|
|
2012-01-05 23:02:44 +00:00
|
|
|
// preview mode - prepare the body for display and send it via json
|
2017-03-30 19:32:12 +00:00
|
|
|
if ($preview) {
|
2016-11-20 15:19:55 +00:00
|
|
|
// We set the datarray ID to -1 because in preview mode the dataray
|
|
|
|
// doesn't have an ID.
|
|
|
|
$datarray["id"] = -1;
|
2020-05-14 20:44:03 +00:00
|
|
|
$datarray["uri-id"] = -1;
|
2018-08-11 20:40:44 +00:00
|
|
|
$datarray["author-network"] = Protocol::DFRN;
|
2018-07-10 12:27:56 +00:00
|
|
|
|
2021-09-23 21:18:36 +00:00
|
|
|
$o = DI::conversation()->create([array_merge($contact_record, $datarray)], 'search', false, true);
|
2020-01-30 03:31:13 +00:00
|
|
|
|
|
|
|
System::jsonExit(['preview' => $o]);
|
2021-08-06 18:49:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Hook::callAll('post_local',$datarray);
|
|
|
|
|
|
|
|
if (!empty($_REQUEST['scheduled_at'])) {
|
2021-10-03 16:38:47 +00:00
|
|
|
$scheduled_at = DateTimeFormat::convert($_REQUEST['scheduled_at'], 'UTC', $a->getTimeZone());
|
2021-08-01 13:01:31 +00:00
|
|
|
if ($scheduled_at > DateTimeFormat::utcNow()) {
|
|
|
|
unset($datarray['created']);
|
|
|
|
unset($datarray['edited']);
|
|
|
|
unset($datarray['commented']);
|
|
|
|
unset($datarray['received']);
|
|
|
|
unset($datarray['changed']);
|
|
|
|
unset($datarray['edit']);
|
|
|
|
unset($datarray['self']);
|
|
|
|
unset($datarray['api_source']);
|
2021-08-06 18:49:17 +00:00
|
|
|
|
|
|
|
Post\Delayed::add($datarray['uri'], $datarray, PRIORITY_HIGH, Post\Delayed::PREPARED_NO_HOOK, $scheduled_at);
|
2021-08-01 13:01:31 +00:00
|
|
|
item_post_return(DI::baseUrl(), $api_source, $return_path);
|
|
|
|
}
|
2012-01-05 23:02:44 +00:00
|
|
|
}
|
|
|
|
|
2018-07-24 21:48:47 +00:00
|
|
|
if (!empty($datarray['cancel'])) {
|
2020-01-30 03:42:49 +00:00
|
|
|
Logger::info('mod_item: post cancelled by addon.');
|
2017-03-30 19:32:12 +00:00
|
|
|
if ($return_path) {
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2012-01-31 04:49:54 +00:00
|
|
|
}
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$json = ['cancel' => 1];
|
2018-11-30 14:06:22 +00:00
|
|
|
if (!empty($_REQUEST['jsreload'])) {
|
2019-12-30 22:00:08 +00:00
|
|
|
$json['reload'] = DI::baseUrl() . '/' . $_REQUEST['jsreload'];
|
2016-12-20 10:18:54 +00:00
|
|
|
}
|
2012-01-31 04:49:54 +00:00
|
|
|
|
2020-01-30 03:31:13 +00:00
|
|
|
System::jsonExit($json);
|
2012-01-31 04:49:54 +00:00
|
|
|
}
|
|
|
|
|
2021-08-06 18:49:17 +00:00
|
|
|
$datarray['uri-id'] = ItemURI::getIdByURI($datarray['uri']);
|
|
|
|
|
2018-11-07 02:16:27 +00:00
|
|
|
if ($orig_post) {
|
2018-01-09 22:35:50 +00:00
|
|
|
// Fill the cache field
|
2018-01-10 06:58:20 +00:00
|
|
|
// This could be done in Item::update as well - but we have to check for the existance of some fields.
|
2018-11-07 02:16:27 +00:00
|
|
|
Item::putInCache($datarray);
|
2018-01-09 22:35:50 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$fields = [
|
2018-01-09 20:03:00 +00:00
|
|
|
'title' => $datarray['title'],
|
|
|
|
'body' => $datarray['body'],
|
|
|
|
'attach' => $datarray['attach'],
|
|
|
|
'file' => $datarray['file'],
|
|
|
|
'rendered-html' => $datarray['rendered-html'],
|
|
|
|
'rendered-hash' => $datarray['rendered-hash'],
|
2018-01-27 02:38:34 +00:00
|
|
|
'edited' => DateTimeFormat::utcNow(),
|
|
|
|
'changed' => DateTimeFormat::utcNow()];
|
2018-01-09 20:03:00 +00:00
|
|
|
|
2018-01-09 21:13:45 +00:00
|
|
|
Item::update($fields, ['id' => $post_id]);
|
2014-03-20 17:48:08 +00:00
|
|
|
|
2020-01-30 03:34:32 +00:00
|
|
|
if ($return_path) {
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2011-03-18 12:06:16 +00:00
|
|
|
}
|
2020-01-30 03:43:37 +00:00
|
|
|
|
|
|
|
throw new HTTPException\OKException(DI::l10n()->t('Post updated.'));
|
2017-03-30 19:32:12 +00:00
|
|
|
}
|
2011-03-18 12:06:16 +00:00
|
|
|
|
2018-01-09 20:50:06 +00:00
|
|
|
unset($datarray['edit']);
|
|
|
|
unset($datarray['self']);
|
|
|
|
unset($datarray['api_source']);
|
|
|
|
|
2018-01-28 11:18:08 +00:00
|
|
|
$post_id = Item::insert($datarray);
|
2014-03-09 08:19:14 +00:00
|
|
|
|
2018-01-18 19:38:51 +00:00
|
|
|
if (!$post_id) {
|
2020-07-23 06:11:21 +00:00
|
|
|
notice(DI::l10n()->t('Item wasn\'t stored.'));
|
2020-01-30 03:34:32 +00:00
|
|
|
if ($return_path) {
|
|
|
|
DI::baseUrl()->redirect($return_path);
|
|
|
|
}
|
2020-01-30 03:43:37 +00:00
|
|
|
|
|
|
|
throw new HTTPException\InternalServerErrorException(DI::l10n()->t('Item wasn\'t stored.'));
|
2018-01-18 19:38:51 +00:00
|
|
|
}
|
|
|
|
|
2021-01-16 04:11:28 +00:00
|
|
|
$datarray = Post::selectFirst(Item::ITEM_FIELDLIST, ['id' => $post_id]);
|
2018-01-18 19:38:51 +00:00
|
|
|
|
2018-07-21 12:46:04 +00:00
|
|
|
if (!DBA::isResult($datarray)) {
|
2020-01-30 03:42:49 +00:00
|
|
|
Logger::error('Item couldn\'t be fetched.', ['post_id' => $post_id]);
|
2020-01-30 03:34:32 +00:00
|
|
|
if ($return_path) {
|
|
|
|
DI::baseUrl()->redirect($return_path);
|
|
|
|
}
|
2020-01-30 03:43:37 +00:00
|
|
|
|
|
|
|
throw new HTTPException\InternalServerErrorException(DI::l10n()->t('Item couldn\'t be fetched.'));
|
2018-01-18 19:38:51 +00:00
|
|
|
}
|
2011-08-29 02:22:27 +00:00
|
|
|
|
2020-04-15 19:46:47 +00:00
|
|
|
Tag::storeFromBody($datarray['uri-id'], $datarray['body']);
|
2020-05-09 08:08:33 +00:00
|
|
|
|
2020-05-09 15:50:49 +00:00
|
|
|
if (!\Friendica\Content\Feature::isEnabled($uid, 'explicit_mentions') && ($datarray['gravity'] == GRAVITY_COMMENT)) {
|
2020-05-09 08:08:33 +00:00
|
|
|
Tag::createImplicitMentions($datarray['uri-id'], $datarray['thr-parent-id']);
|
|
|
|
}
|
2020-04-15 19:46:47 +00:00
|
|
|
|
2018-01-09 20:03:00 +00:00
|
|
|
// These notifications are sent if someone else is commenting other your wall
|
2020-07-04 19:33:35 +00:00
|
|
|
if ($contact_record != $author) {
|
|
|
|
if ($toplevel_item_id) {
|
2021-10-19 19:45:36 +00:00
|
|
|
DI::notify()->createFromArray([
|
2021-01-23 09:53:44 +00:00
|
|
|
'type' => Notification\Type::COMMENT,
|
|
|
|
'otype' => Notification\ObjectType::ITEM,
|
2020-11-25 19:56:39 +00:00
|
|
|
'verb' => Activity::POST,
|
2020-12-21 05:26:48 +00:00
|
|
|
'uid' => $profile_uid,
|
2020-11-25 19:56:39 +00:00
|
|
|
'cid' => $datarray['author-id'],
|
|
|
|
'item' => $datarray,
|
|
|
|
'link' => DI::baseUrl() . '/display/' . urlencode($datarray['guid']),
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2020-07-04 19:33:35 +00:00
|
|
|
} elseif (empty($forum_contact)) {
|
2021-10-19 19:45:36 +00:00
|
|
|
DI::notify()->createFromArray([
|
2021-01-23 09:53:44 +00:00
|
|
|
'type' => Notification\Type::WALL,
|
|
|
|
'otype' => Notification\ObjectType::ITEM,
|
2020-11-25 19:56:39 +00:00
|
|
|
'verb' => Activity::POST,
|
2020-12-21 05:26:48 +00:00
|
|
|
'uid' => $profile_uid,
|
2020-11-25 19:56:39 +00:00
|
|
|
'cid' => $datarray['author-id'],
|
|
|
|
'item' => $datarray,
|
|
|
|
'link' => DI::baseUrl() . '/display/' . urlencode($datarray['guid']),
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2010-08-10 08:21:38 +00:00
|
|
|
}
|
|
|
|
}
|
2015-03-07 20:24:39 +00:00
|
|
|
|
2018-12-26 06:06:24 +00:00
|
|
|
Hook::callAll('post_local_end', $datarray);
|
2011-02-01 02:18:28 +00:00
|
|
|
|
2017-03-30 19:32:12 +00:00
|
|
|
if (strlen($emailcc) && $profile_uid == local_user()) {
|
2020-01-26 19:23:58 +00:00
|
|
|
$recipients = explode(',', $emailcc);
|
|
|
|
if (count($recipients)) {
|
|
|
|
foreach ($recipients as $recipient) {
|
|
|
|
$address = trim($recipient);
|
|
|
|
if (!strlen($address)) {
|
2011-02-01 02:18:28 +00:00
|
|
|
continue;
|
2017-03-30 19:32:12 +00:00
|
|
|
}
|
2020-01-26 19:23:58 +00:00
|
|
|
DI::emailer()->send(new ItemCCEMail(DI::app(), DI::l10n(), DI::baseUrl(),
|
|
|
|
$datarray, $address, $author['thumb'] ?? ''));
|
2011-02-01 02:18:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-01 23:52:06 +00:00
|
|
|
// When we are doing some forum posting via ! we have to start the notifier manually.
|
|
|
|
// These kind of posts don't initiate the notifier call in the item class.
|
|
|
|
if ($only_to_forum) {
|
2021-02-14 14:24:48 +00:00
|
|
|
Worker::add(['priority' => PRIORITY_HIGH, 'dont_fork' => false], "Notifier", Delivery::POST, (int)$datarray['uri-id'], (int)$datarray['uid']);
|
2018-11-01 23:52:06 +00:00
|
|
|
}
|
|
|
|
|
2020-01-30 03:42:49 +00:00
|
|
|
Logger::info('post_complete');
|
2011-08-03 23:29:25 +00:00
|
|
|
|
2018-09-02 07:20:04 +00:00
|
|
|
if ($api_source) {
|
|
|
|
return $post_id;
|
|
|
|
}
|
|
|
|
|
2019-12-30 22:00:08 +00:00
|
|
|
item_post_return(DI::baseUrl(), $api_source, $return_path);
|
2012-11-01 23:14:42 +00:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
2018-01-20 17:34:53 +00:00
|
|
|
|
2018-07-24 21:48:47 +00:00
|
|
|
function item_post_return($baseurl, $api_source, $return_path)
|
|
|
|
{
|
2017-03-30 19:32:12 +00:00
|
|
|
if ($api_source) {
|
2011-08-03 23:29:25 +00:00
|
|
|
return;
|
2017-03-30 19:32:12 +00:00
|
|
|
}
|
2011-08-03 23:29:25 +00:00
|
|
|
|
2016-12-20 10:18:54 +00:00
|
|
|
if ($return_path) {
|
2019-12-15 23:28:31 +00:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2011-02-17 05:17:49 +00:00
|
|
|
}
|
2011-09-12 04:52:50 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$json = ['success' => 1];
|
2018-11-30 14:06:22 +00:00
|
|
|
if (!empty($_REQUEST['jsreload'])) {
|
2012-11-01 23:14:42 +00:00
|
|
|
$json['reload'] = $baseurl . '/' . $_REQUEST['jsreload'];
|
2016-12-20 10:18:54 +00:00
|
|
|
}
|
2011-02-17 05:17:49 +00:00
|
|
|
|
2020-01-30 03:42:49 +00:00
|
|
|
Logger::info('post_json', ['json' => $json]);
|
2011-02-17 05:17:49 +00:00
|
|
|
|
2020-01-30 03:31:13 +00:00
|
|
|
System::jsonExit($json);
|
2010-07-27 00:01:37 +00:00
|
|
|
}
|
|
|
|
|
2018-07-24 21:48:47 +00:00
|
|
|
function item_content(App $a)
|
|
|
|
{
|
2019-09-28 18:09:11 +00:00
|
|
|
if (!Session::isAuthenticated()) {
|
2021-01-20 23:44:02 +00:00
|
|
|
throw new HTTPException\UnauthorizedException();
|
|
|
|
}
|
|
|
|
|
|
|
|
$args = DI::args();
|
|
|
|
|
|
|
|
if (!$args->has(3)) {
|
|
|
|
throw new HTTPException\BadRequestException();
|
2016-12-20 10:18:54 +00:00
|
|
|
}
|
2010-07-27 00:01:37 +00:00
|
|
|
|
2013-01-26 19:52:21 +00:00
|
|
|
$o = '';
|
2021-01-20 23:44:02 +00:00
|
|
|
switch ($args->get(1)) {
|
|
|
|
case 'drop':
|
|
|
|
if (DI::mode()->isAjax()) {
|
|
|
|
Item::deleteForUser(['id' => $args->get(2)], local_user());
|
|
|
|
// ajax return: [<item id>, 0 (no perm) | <owner id>]
|
|
|
|
System::jsonExit([intval($args->get(2)), local_user()]);
|
|
|
|
} else {
|
|
|
|
if (!empty($args->get(3))) {
|
|
|
|
$o = drop_item($args->get(2), $args->get(3));
|
|
|
|
} else {
|
|
|
|
$o = drop_item($args->get(2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'block':
|
|
|
|
$item = Post::selectFirstForUser(local_user(), ['guid', 'author-id', 'parent', 'gravity'], ['id' => $args->get(2)]);
|
|
|
|
if (empty($item['author-id'])) {
|
|
|
|
throw new HTTPException\NotFoundException('Item not found');
|
|
|
|
}
|
2018-07-24 21:48:47 +00:00
|
|
|
|
2021-02-18 23:05:23 +00:00
|
|
|
Contact\User::setBlocked($item['author-id'], local_user(), true);
|
2021-01-20 23:44:02 +00:00
|
|
|
|
|
|
|
if (DI::mode()->isAjax()) {
|
|
|
|
// ajax return: [<item id>, 0 (no perm) | <owner id>]
|
|
|
|
System::jsonExit([intval($args->get(2)), local_user()]);
|
|
|
|
} else {
|
|
|
|
item_redirect_after_action($item, $args->get(3));
|
2018-10-26 12:05:59 +00:00
|
|
|
}
|
2021-01-20 23:44:02 +00:00
|
|
|
break;
|
2020-06-17 08:50:28 +00:00
|
|
|
}
|
2018-07-24 21:48:47 +00:00
|
|
|
|
2020-06-17 08:50:28 +00:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $id
|
|
|
|
* @param string $return
|
|
|
|
* @return string
|
|
|
|
* @throws HTTPException\InternalServerErrorException
|
|
|
|
*/
|
|
|
|
function drop_item(int $id, string $return = '')
|
|
|
|
{
|
|
|
|
// locate item to be deleted
|
|
|
|
$fields = ['id', 'uid', 'guid', 'contact-id', 'deleted', 'gravity', 'parent'];
|
2021-01-16 22:37:27 +00:00
|
|
|
$item = Post::selectFirstForUser(local_user(), $fields, ['id' => $id]);
|
2020-06-17 08:50:28 +00:00
|
|
|
|
|
|
|
if (!DBA::isResult($item)) {
|
2020-07-23 06:25:01 +00:00
|
|
|
notice(DI::l10n()->t('Item not found.'));
|
2020-06-17 08:50:28 +00:00
|
|
|
DI::baseUrl()->redirect('network');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($item['deleted']) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$contact_id = 0;
|
|
|
|
|
|
|
|
// check if logged in user is either the author or owner of this item
|
|
|
|
if (Session::getRemoteContactID($item['uid']) == $item['contact-id']) {
|
|
|
|
$contact_id = $item['contact-id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((local_user() == $item['uid']) || $contact_id) {
|
|
|
|
// delete the item
|
|
|
|
Item::deleteForUser(['id' => $item['id']], local_user());
|
|
|
|
|
2021-01-20 23:44:02 +00:00
|
|
|
item_redirect_after_action($item, $return);
|
2020-06-17 08:50:28 +00:00
|
|
|
} else {
|
2021-09-28 18:52:11 +00:00
|
|
|
Logger::notice('Permission denied.', ['local' => local_user(), 'uid' => $item['uid'], 'cid' => $contact_id]);
|
2020-06-17 08:50:28 +00:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
|
|
|
DI::baseUrl()->redirect('display/' . $item['guid']);
|
|
|
|
//NOTREACHED
|
2010-07-27 00:01:37 +00:00
|
|
|
}
|
2018-07-24 21:48:47 +00:00
|
|
|
|
2020-06-17 08:50:28 +00:00
|
|
|
return '';
|
2011-05-22 04:40:16 +00:00
|
|
|
}
|
2021-01-20 23:44:02 +00:00
|
|
|
|
|
|
|
function item_redirect_after_action($item, $returnUrlHex)
|
|
|
|
{
|
|
|
|
$return_url = hex2bin($returnUrlHex);
|
|
|
|
|
|
|
|
// removes update_* from return_url to ignore Ajax refresh
|
|
|
|
$return_url = str_replace("update_", "", $return_url);
|
|
|
|
|
|
|
|
// Check if delete a comment
|
|
|
|
if ($item['gravity'] == GRAVITY_COMMENT) {
|
|
|
|
if (!empty($item['parent'])) {
|
|
|
|
$parentitem = Post::selectFirstForUser(local_user(), ['guid'], ['id' => $item['parent']]);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return to parent guid
|
|
|
|
if (!empty($parentitem)) {
|
|
|
|
DI::baseUrl()->redirect('display/' . $parentitem['guid']);
|
|
|
|
//NOTREACHED
|
|
|
|
} // In case something goes wrong
|
|
|
|
else {
|
|
|
|
DI::baseUrl()->redirect('network');
|
|
|
|
//NOTREACHED
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// if unknown location or deleting top level post called from display
|
|
|
|
if (empty($return_url) || strpos($return_url, 'display') !== false) {
|
|
|
|
DI::baseUrl()->redirect('network');
|
|
|
|
//NOTREACHED
|
|
|
|
} else {
|
|
|
|
DI::baseUrl()->redirect($return_url);
|
|
|
|
//NOTREACHED
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|