2010-07-02 01:48:07 +02:00
|
|
|
<?php
|
2017-12-02 00:13:39 +01:00
|
|
|
/**
|
|
|
|
* @file mod/item.php
|
|
|
|
*/
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2017-03-30 21:32:12 +02:00
|
|
|
/*
|
2011-02-04 22:37:04 +01:00
|
|
|
* This is the POST destination for most all locally posted
|
2013-12-27 01:58:21 +01: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 22:37:04 +01:00
|
|
|
* (as opposed to being delivered in a feed).
|
2013-12-27 01:58:21 +01:00
|
|
|
* Also processed here are posts and comments coming through the
|
|
|
|
* statusnet/twitter API.
|
2017-03-30 21:32:12 +02:00
|
|
|
*
|
2013-12-27 01:58:21 +01:00
|
|
|
* All of these become an "item" which is our basic unit of
|
2011-02-04 22:37:04 +01:00
|
|
|
* information.
|
2013-12-27 01:58:21 +01:00
|
|
|
*/
|
2018-01-25 03:08:45 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-10-24 08:15:24 +02:00
|
|
|
use Friendica\Content\Pager;
|
2018-01-27 02:01:32 +01:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2018-07-20 04:15:21 +02:00
|
|
|
use Friendica\Content\Text\HTML;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-12-26 07:06:24 +01:00
|
|
|
use Friendica\Core\Hook;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2018-08-11 22:40:44 +02:00
|
|
|
use Friendica\Core\Protocol;
|
2019-09-28 20:09:11 +02:00
|
|
|
use Friendica\Core\Session;
|
2019-10-23 00:14:47 +02:00
|
|
|
use Friendica\Core\System;
|
2017-11-05 13:15:53 +01:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 23:28:01 +01:00
|
|
|
use Friendica\DI;
|
2019-05-30 13:54:17 +02:00
|
|
|
use Friendica\Model\Attach;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2018-08-05 12:23:57 +02:00
|
|
|
use Friendica\Model\Conversation;
|
2018-10-30 19:51:45 +01:00
|
|
|
use Friendica\Model\FileTag;
|
2018-01-09 22:13:45 +01:00
|
|
|
use Friendica\Model\Item;
|
2018-12-11 20:03:29 +01:00
|
|
|
use Friendica\Model\Photo;
|
2019-02-23 05:28:39 +01:00
|
|
|
use Friendica\Model\Term;
|
2019-10-24 00:25:43 +02:00
|
|
|
use Friendica\Protocol\Activity;
|
2017-11-08 01:37:53 +01:00
|
|
|
use Friendica\Protocol\Diaspora;
|
2017-12-01 20:41:27 +01:00
|
|
|
use Friendica\Protocol\Email;
|
2018-01-27 03:38:34 +01:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2017-11-20 21:37:30 +01:00
|
|
|
use Friendica\Util\Emailer;
|
2018-10-17 14:19:58 +02:00
|
|
|
use Friendica\Util\Security;
|
2018-11-08 16:14:37 +01:00
|
|
|
use Friendica\Util\Strings;
|
2019-06-06 06:26:02 +02:00
|
|
|
use Friendica\Worker\Delivery;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2019-09-16 14:47:49 +02:00
|
|
|
require_once __DIR__ . '/../include/items.php';
|
2019-02-01 23:42:36 +01:00
|
|
|
|
2017-01-09 13:14:25 +01:00
|
|
|
function item_post(App $a) {
|
2019-09-28 20:09:11 +02:00
|
|
|
if (!Session::isAuthenticated()) {
|
2018-09-02 09:20:04 +02:00
|
|
|
return 0;
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2010-07-02 01:48:07 +02:00
|
|
|
|
2010-11-01 04:36:59 +01:00
|
|
|
$uid = local_user();
|
2010-07-26 13:22:19 +02:00
|
|
|
|
2018-07-24 23:48:47 +02:00
|
|
|
if (!empty($_REQUEST['dropitems'])) {
|
2017-03-30 21:32:12 +02:00
|
|
|
$arr_drop = explode(',', $_REQUEST['dropitems']);
|
2011-06-16 05:43:39 +02:00
|
|
|
drop_items($arr_drop);
|
2018-01-15 14:05:12 +01:00
|
|
|
$json = ['success' => 1];
|
2011-06-16 09:38:41 +02:00
|
|
|
echo json_encode($json);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2011-06-16 05:43:39 +02:00
|
|
|
}
|
|
|
|
|
2018-12-26 07:06:24 +01:00
|
|
|
Hook::callAll('post_local_start', $_REQUEST);
|
2018-01-20 20:51:23 +01:00
|
|
|
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log('postvars ' . print_r($_REQUEST, true), Logger::DATA);
|
2012-01-10 03:52:49 +01:00
|
|
|
|
2019-10-15 15:01:17 +02:00
|
|
|
$api_source = $_REQUEST['api_source'] ?? false;
|
2013-05-09 10:15:22 +02:00
|
|
|
|
2018-07-24 23:48:47 +02:00
|
|
|
$message_id = ((!empty($_REQUEST['message_id']) && $api_source) ? strip_tags($_REQUEST['message_id']) : '');
|
2013-05-09 10:15:22 +02:00
|
|
|
|
2019-10-15 15:01:17 +02:00
|
|
|
$return_path = $_REQUEST['return'] ?? '';
|
|
|
|
$preview = intval($_REQUEST['preview'] ?? 0);
|
2011-08-01 05:01:00 +02:00
|
|
|
|
2017-03-30 21:32:12 +02: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 23:48:47 +02:00
|
|
|
if (!$preview && !empty($_REQUEST['post_id_random'])) {
|
|
|
|
if (!empty($_SESSION['post-random']) && $_SESSION['post-random'] == $_REQUEST['post_id_random']) {
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("item post: duplicate post", Logger::DEBUG);
|
2019-12-30 23:00:08 +01:00
|
|
|
item_post_return(DI::baseUrl(), $api_source, $return_path);
|
2017-03-30 21:32:12 +02:00
|
|
|
} else {
|
2012-11-02 00:14:42 +01:00
|
|
|
$_SESSION['post-random'] = $_REQUEST['post_id_random'];
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
2012-11-02 00:14:42 +01:00
|
|
|
}
|
|
|
|
|
2017-03-30 21:32:12 +02:00
|
|
|
// Is this a reply to something?
|
2019-10-15 15:01:17 +02:00
|
|
|
$toplevel_item_id = intval($_REQUEST['parent'] ?? 0);
|
|
|
|
$thr_parent_uri = trim($_REQUEST['parent_uri'] ?? '');
|
2010-07-14 01:09:53 +02:00
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
$thread_parent_id = 0;
|
|
|
|
$thread_parent_contact = null;
|
2018-01-20 14:54:14 +01:00
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
$toplevel_item = null;
|
2018-01-20 14:54:14 +01:00
|
|
|
$parent_user = null;
|
|
|
|
|
2011-02-09 00:08:07 +01:00
|
|
|
$parent_contact = null;
|
2018-01-20 14:54:14 +01:00
|
|
|
|
2014-08-07 08:02:24 +02:00
|
|
|
$objecttype = null;
|
2019-10-15 15:01:17 +02:00
|
|
|
$profile_uid = ($_REQUEST['profile_uid'] ?? 0) ?: local_user();
|
|
|
|
$posttype = ($_REQUEST['post_type'] ?? '') ?: Item::PT_ARTICLE;
|
2010-07-14 01:09:53 +02:00
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
if ($toplevel_item_id || $thr_parent_uri) {
|
|
|
|
if ($toplevel_item_id) {
|
|
|
|
$toplevel_item = Item::selectFirst([], ['id' => $toplevel_item_id]);
|
2018-01-20 14:54:14 +01:00
|
|
|
} elseif ($thr_parent_uri) {
|
2019-02-23 05:28:39 +01:00
|
|
|
$toplevel_item = Item::selectFirst([], ['uri' => $thr_parent_uri, 'uid' => $profile_uid]);
|
2018-01-20 14:54:14 +01:00
|
|
|
}
|
2011-08-04 01:29:25 +02:00
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
// if this isn't the top-level parent of the conversation, find it
|
|
|
|
if (DBA::isResult($toplevel_item)) {
|
2018-01-20 14:54:14 +01:00
|
|
|
// The URI and the contact is taken from the direct parent which needn't to be the top parent
|
2019-02-23 05:28:39 +01:00
|
|
|
$thread_parent_id = $toplevel_item['id'];
|
|
|
|
$thr_parent_uri = $toplevel_item['uri'];
|
|
|
|
$thread_parent_contact = Contact::getDetailsByURL($toplevel_item["author-link"]);
|
2011-08-04 01:29:25 +02:00
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
if ($toplevel_item['id'] != $toplevel_item['parent']) {
|
|
|
|
$toplevel_item = Item::selectFirst(Item::ITEM_FIELDLIST, ['id' => $toplevel_item['parent']]);
|
2011-08-01 05:01:00 +02:00
|
|
|
}
|
2012-07-23 13:58:47 +02:00
|
|
|
}
|
2011-08-01 02:52:36 +02:00
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
if (!DBA::isResult($toplevel_item)) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Unable to locate original post.') . EOL);
|
2018-07-24 23:48:47 +02:00
|
|
|
if (!empty($_REQUEST['return'])) {
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2016-12-20 21:15:53 +01:00
|
|
|
}
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2010-07-14 01:09:53 +02:00
|
|
|
}
|
2018-01-20 14:54:14 +01:00
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
$toplevel_item_id = $toplevel_item['id'];
|
|
|
|
$parent_user = $toplevel_item['uid'];
|
2011-08-01 05:01:00 +02:00
|
|
|
|
2019-10-25 00:10:20 +02:00
|
|
|
$objecttype = Activity\ObjectType::COMMENT;
|
2010-07-14 01:09:53 +02:00
|
|
|
}
|
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
if ($toplevel_item_id) {
|
2019-02-23 05:00:16 +01:00
|
|
|
Logger::info('mod_item: item_post parent=' . $toplevel_item_id);
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2011-08-01 02:52:36 +02:00
|
|
|
|
2019-10-15 15:01:17 +02:00
|
|
|
$post_id = intval($_REQUEST['post_id'] ?? 0);
|
|
|
|
$app = strip_tags($_REQUEST['source'] ?? '');
|
|
|
|
$extid = strip_tags($_REQUEST['extid'] ?? '');
|
|
|
|
$object = $_REQUEST['object'] ?? '';
|
2018-08-04 16:06:36 +02: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 16:55:18 +02:00
|
|
|
|
2018-01-19 08:02:43 +01:00
|
|
|
// Ensure that the user id in a thread always stay the same
|
2018-01-19 08:50:11 +01:00
|
|
|
if (!is_null($parent_user) && in_array($parent_user, [local_user(), 0])) {
|
2018-01-19 08:02:43 +01:00
|
|
|
$profile_uid = $parent_user;
|
|
|
|
}
|
|
|
|
|
2016-10-17 21:17:11 +02:00
|
|
|
// Check for multiple posts with the same message id (when the post was created via API)
|
2017-06-08 04:00:59 +02:00
|
|
|
if (($message_id != '') && ($profile_uid != 0)) {
|
2018-08-15 06:41:49 +02:00
|
|
|
if (Item::exists(['uri' => $message_id, 'uid' => $profile_uid])) {
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("Message with URI ".$message_id." already exists for user ".$profile_uid, Logger::DEBUG);
|
2018-09-02 09:20:04 +02:00
|
|
|
return 0;
|
2016-10-17 21:17:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-20 00:12:37 +01:00
|
|
|
// Allow commenting if it is an answer to a public post
|
2019-07-01 20:00:55 +02:00
|
|
|
$allow_comment = local_user() && ($profile_uid == 0) && $toplevel_item_id && in_array($toplevel_item['network'], Protocol::FEDERATED);
|
2017-12-20 00:12:37 +01:00
|
|
|
|
2018-01-19 08:02:43 +01:00
|
|
|
// Now check that valid personal details have been provided
|
2018-10-17 21:30:41 +02:00
|
|
|
if (!Security::canWriteToUserWall($profile_uid) && !$allow_comment) {
|
2018-11-30 15:06:22 +01:00
|
|
|
notice(L10n::t('Permission denied.') . EOL);
|
2018-07-18 00:18:42 +02:00
|
|
|
|
2018-07-24 23:48:47 +02:00
|
|
|
if (!empty($_REQUEST['return'])) {
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2018-07-18 00:18:42 +02:00
|
|
|
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2010-07-02 01:48:07 +02:00
|
|
|
}
|
2010-08-14 16:55:18 +02:00
|
|
|
|
2018-07-18 00:18:42 +02:00
|
|
|
// Init post instance
|
2011-03-18 13:06:16 +01:00
|
|
|
$orig_post = null;
|
|
|
|
|
2018-07-18 00:18:42 +02:00
|
|
|
// is this an edited post?
|
|
|
|
if ($post_id > 0) {
|
2018-07-07 20:14:16 +02:00
|
|
|
$orig_post = Item::selectFirst(Item::ITEM_FIELDLIST, ['id' => $post_id]);
|
2011-03-18 13:06:16 +01:00
|
|
|
}
|
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$user = DBA::selectFirst('user', [], ['uid' => $profile_uid]);
|
2018-07-18 00:18:42 +02:00
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
if (!DBA::isResult($user) && !$toplevel_item_id) {
|
2018-09-02 09:20:04 +02:00
|
|
|
return 0;
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2011-11-29 05:09:10 +01:00
|
|
|
|
2018-07-01 10:03:57 +02:00
|
|
|
$categories = '';
|
2018-07-18 00:18:42 +02:00
|
|
|
$postopts = '';
|
2018-07-18 23:26:14 +02:00
|
|
|
$emailcc = '';
|
2019-10-15 15:01:17 +02:00
|
|
|
$body = $_REQUEST['body'] ?? '';
|
|
|
|
$has_attachment = $_REQUEST['has_attachment'] ?? 0;
|
2019-02-01 23:42:36 +01:00
|
|
|
|
|
|
|
// If we have a speparate attachment, we need to add it to the body.
|
|
|
|
if (!empty($has_attachment)) {
|
2019-10-15 15:01:17 +02:00
|
|
|
$attachment_type = $_REQUEST['attachment_type'] ?? '';
|
|
|
|
$attachment_title = $_REQUEST['attachment_title'] ?? '';
|
|
|
|
$attachment_text = $_REQUEST['attachment_text'] ?? '';
|
2019-02-01 23:42:36 +01:00
|
|
|
|
2019-10-15 15:01:17 +02:00
|
|
|
$attachment_url = hex2bin($_REQUEST['attachment_url'] ?? '');
|
|
|
|
$attachment_img_src = hex2bin($_REQUEST['attachment_img_src'] ?? '');
|
2019-02-01 23:42:36 +01:00
|
|
|
|
2019-10-15 15:01:17 +02:00
|
|
|
$attachment_img_width = $_REQUEST['attachment_img_width'] ?? 0;
|
|
|
|
$attachment_img_height = $_REQUEST['attachment_img_height'] ?? 0;
|
2019-02-01 23:42:36 +01:00
|
|
|
$attachment = [
|
|
|
|
'type' => $attachment_type,
|
|
|
|
'title' => $attachment_title,
|
|
|
|
'text' => $attachment_text,
|
|
|
|
'url' => $attachment_url,
|
|
|
|
];
|
|
|
|
|
|
|
|
if (!empty($attachment_img_src)) {
|
|
|
|
$attachment['images'] = [
|
|
|
|
0 => [
|
|
|
|
'src' => $attachment_img_src,
|
|
|
|
'width' => $attachment_img_width,
|
|
|
|
'height' => $attachment_img_height
|
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
$att_bbcode = add_page_info_data($attachment);
|
|
|
|
$body .= $att_bbcode;
|
|
|
|
}
|
2018-07-01 10:03:57 +02:00
|
|
|
|
2019-10-13 17:52:33 +02:00
|
|
|
// Convert links with empty descriptions to links without an explicit description
|
2019-10-16 19:53:16 +02:00
|
|
|
$body = preg_replace('#\[url=([^\]]*?)\]\[/url\]#ism', '[url]$1[/url]', $body);
|
2019-10-13 17:52:33 +02:00
|
|
|
|
2018-07-18 00:18:42 +02:00
|
|
|
if (!empty($orig_post)) {
|
2011-03-18 13:06:16 +01: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'];
|
|
|
|
$location = $orig_post['location'];
|
|
|
|
$coord = $orig_post['coord'];
|
|
|
|
$verb = $orig_post['verb'];
|
2014-08-07 08:02:24 +02:00
|
|
|
$objecttype = $orig_post['object-type'];
|
2014-10-20 08:21:23 +02:00
|
|
|
$app = $orig_post['app'];
|
2012-03-23 00:17:10 +01:00
|
|
|
$categories = $orig_post['file'];
|
2018-11-09 19:29:42 +01:00
|
|
|
$title = Strings::escapeTags(trim($_REQUEST['title']));
|
2020-01-03 02:38:07 +01:00
|
|
|
$body = trim($body);
|
2011-03-18 13:06:16 +01:00
|
|
|
$private = $orig_post['private'];
|
2018-01-20 14:54:14 +01:00
|
|
|
$pubmail_enabled = $orig_post['pubmail'];
|
2013-12-27 01:58:21 +01:00
|
|
|
$network = $orig_post['network'];
|
2014-07-22 00:36:20 +02:00
|
|
|
$guid = $orig_post['guid'];
|
2014-10-20 08:21:23 +02:00
|
|
|
$extid = $orig_post['extid'];
|
2012-03-23 00:17:10 +01:00
|
|
|
|
2014-07-22 00:36:20 +02:00
|
|
|
} else {
|
2012-01-12 23:20:21 +01:00
|
|
|
|
2017-03-30 21:32:12 +02:00
|
|
|
/*
|
|
|
|
* if coming from the API and no privacy settings are set,
|
|
|
|
* use the user default permissions - as they won't have
|
|
|
|
* been supplied via a form.
|
|
|
|
*/
|
2018-01-09 21:50:06 +01:00
|
|
|
if ($api_source
|
2018-01-09 21:03:00 +01:00
|
|
|
&& !array_key_exists('contact_allow', $_REQUEST)
|
|
|
|
&& !array_key_exists('group_allow', $_REQUEST)
|
|
|
|
&& !array_key_exists('contact_deny', $_REQUEST)
|
|
|
|
&& !array_key_exists('group_deny', $_REQUEST)) {
|
2012-01-12 23:20:21 +01:00
|
|
|
$str_group_allow = $user['allow_gid'];
|
|
|
|
$str_contact_allow = $user['allow_cid'];
|
|
|
|
$str_group_deny = $user['deny_gid'];
|
|
|
|
$str_contact_deny = $user['deny_cid'];
|
2017-03-30 21:32:12 +02:00
|
|
|
} else {
|
2012-01-12 23:20:21 +01:00
|
|
|
// use the posted permissions
|
2019-10-23 00:54:34 +02:00
|
|
|
|
2019-12-15 23:28:01 +01:00
|
|
|
$aclFormatter = DI::aclFormatter();
|
2019-10-23 00:54:34 +02:00
|
|
|
|
2019-10-23 21:38:51 +02:00
|
|
|
$str_group_allow = $aclFormatter->toString($_REQUEST['group_allow'] ?? '');
|
|
|
|
$str_contact_allow = $aclFormatter->toString($_REQUEST['contact_allow'] ?? '');
|
|
|
|
$str_group_deny = $aclFormatter->toString($_REQUEST['group_deny'] ?? '');
|
|
|
|
$str_contact_deny = $aclFormatter->toString($_REQUEST['contact_deny'] ?? '');
|
2012-01-12 23:20:21 +01:00
|
|
|
}
|
|
|
|
|
2019-10-15 15:01:17 +02:00
|
|
|
$title = Strings::escapeTags(trim($_REQUEST['title'] ?? ''));
|
|
|
|
$location = Strings::escapeTags(trim($_REQUEST['location'] ?? ''));
|
|
|
|
$coord = Strings::escapeTags(trim($_REQUEST['coord'] ?? ''));
|
|
|
|
$verb = Strings::escapeTags(trim($_REQUEST['verb'] ?? ''));
|
|
|
|
$emailcc = Strings::escapeTags(trim($_REQUEST['emailcc'] ?? ''));
|
2020-01-03 02:38:07 +01:00
|
|
|
$body = trim($body);
|
2019-10-15 15:01:17 +02:00
|
|
|
$network = Strings::escapeTags(trim(($_REQUEST['network'] ?? '') ?: Protocol::DFRN));
|
2018-11-08 16:20:03 +01:00
|
|
|
$guid = System::createUUID();
|
2012-03-23 00:17:10 +01:00
|
|
|
|
2019-10-15 15:01:17 +02:00
|
|
|
$postopts = $_REQUEST['postopts'] ?? '';
|
2012-07-12 07:45:14 +02:00
|
|
|
|
2011-03-18 13:06:16 +01:00
|
|
|
$private = ((strlen($str_group_allow) || strlen($str_contact_allow) || strlen($str_group_deny) || strlen($str_contact_deny)) ? 1 : 0);
|
|
|
|
|
2012-05-20 01:42:24 +02:00
|
|
|
// If this is a comment, set the permissions from the parent.
|
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
if ($toplevel_item) {
|
2013-12-27 01:58:21 +01:00
|
|
|
// for non native networks use the network of the original post as network of the item
|
2019-02-23 05:28:39 +01:00
|
|
|
if (($toplevel_item['network'] != Protocol::DIASPORA)
|
|
|
|
&& ($toplevel_item['network'] != Protocol::OSTATUS)
|
2017-06-08 04:00:59 +02:00
|
|
|
&& ($network == "")) {
|
2019-02-23 05:28:39 +01:00
|
|
|
$network = $toplevel_item['network'];
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2013-12-27 01:58:21 +01:00
|
|
|
|
2019-02-23 05:28:39 +01: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'];
|
|
|
|
$private = $toplevel_item['private'];
|
2018-07-19 15:52:05 +02:00
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
$wall = $toplevel_item['wall'];
|
2011-03-18 13:06:16 +01:00
|
|
|
}
|
2016-10-06 23:24:29 +02:00
|
|
|
|
2019-10-15 15:01:17 +02:00
|
|
|
$pubmail_enabled = ($_REQUEST['pubmail_enable'] ?? false) && !$private;
|
2010-12-19 22:41:55 +01:00
|
|
|
|
2011-08-14 13:26:41 +02:00
|
|
|
// if using the API, we won't see pubmail_enable - figure out if it should be set
|
2018-01-09 21:03:00 +01:00
|
|
|
if ($api_source && $profile_uid && $profile_uid == local_user() && !$private) {
|
2018-01-20 14:54:14 +01:00
|
|
|
if (function_exists('imap_open') && !Config::get('system', 'imap_disabled')) {
|
2018-07-20 14:19:26 +02:00
|
|
|
$pubmail_enabled = DBA::exists('mailacct', ["`uid` = ? AND `server` != ? AND `pubmail`", local_user(), '']);
|
2011-08-14 13:26:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-09 21:03:00 +01:00
|
|
|
if (!strlen($body)) {
|
2017-03-30 21:32:12 +02:00
|
|
|
if ($preview) {
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2018-01-22 22:59:31 +01:00
|
|
|
info(L10n::t('Empty post discarded.') . EOL);
|
2018-07-24 23:48:47 +02:00
|
|
|
if (!empty($_REQUEST['return'])) {
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2011-03-18 13:06:16 +01:00
|
|
|
}
|
2010-07-13 01:43:59 +02:00
|
|
|
}
|
|
|
|
|
2019-05-27 23:17:53 +02:00
|
|
|
if (!empty($categories)) {
|
2012-05-30 07:57:15 +02:00
|
|
|
// get the "fileas" tags for this post
|
2019-05-27 23:17:53 +02:00
|
|
|
$filedas = FileTag::fileToArray($categories);
|
2012-04-02 03:28:31 +02:00
|
|
|
}
|
2018-10-30 19:51:45 +01:00
|
|
|
|
2012-05-30 07:57:15 +02:00
|
|
|
// save old and new categories, so we can determine what needs to be deleted from pconfig
|
|
|
|
$categories_old = $categories;
|
2019-10-15 15:01:17 +02:00
|
|
|
$categories = FileTag::listToFile(trim($_REQUEST['category'] ?? ''), 'category');
|
2012-05-30 07:57:15 +02:00
|
|
|
$categories_new = $categories;
|
2018-10-30 19:51:45 +01:00
|
|
|
|
2019-05-30 13:54:17 +02:00
|
|
|
if (!empty($filedas) && is_array($filedas)) {
|
2012-05-30 07:57:15 +02:00
|
|
|
// append the fileas stuff to the new categories list
|
2019-05-27 23:17:53 +02:00
|
|
|
$categories .= FileTag::arrayToFile($filedas);
|
2012-04-02 03:28:31 +02:00
|
|
|
}
|
|
|
|
|
2010-07-17 08:14:37 +02:00
|
|
|
// get contact info for poster
|
2010-07-18 04:26:00 +02:00
|
|
|
|
2010-08-14 16:55:18 +02:00
|
|
|
$author = null;
|
2010-12-22 23:16:22 +01:00
|
|
|
$self = false;
|
2012-09-05 07:50:28 +02:00
|
|
|
$contact_id = 0;
|
2010-08-14 16:55:18 +02:00
|
|
|
|
2017-12-20 00:12:37 +01:00
|
|
|
if (local_user() && ((local_user() == $profile_uid) || $allow_comment)) {
|
2010-12-22 23:16:22 +01:00
|
|
|
$self = true;
|
2018-07-20 14:19:26 +02:00
|
|
|
$author = DBA::selectFirst('contact', [], ['uid' => local_user(), 'self' => true]);
|
2019-09-28 11:59:08 +02:00
|
|
|
} elseif (!empty(Session::getRemoteContactID($profile_uid))) {
|
|
|
|
$author = DBA::selectFirst('contact', [], ['id' => Session::getRemoteContactID($profile_uid)]);
|
2010-08-14 16:55:18 +02:00
|
|
|
}
|
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($author)) {
|
2010-08-14 16:55:18 +02:00
|
|
|
$contact_id = $author['id'];
|
2010-07-17 08:14:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// get contact info for owner
|
2017-12-20 00:12:37 +01:00
|
|
|
if ($profile_uid == local_user() || $allow_comment) {
|
2010-08-14 16:55:18 +02:00
|
|
|
$contact_record = $author;
|
2017-03-30 21:32:12 +02:00
|
|
|
} else {
|
2018-07-20 14:19:26 +02:00
|
|
|
$contact_record = DBA::selectFirst('contact', [], ['uid' => $profile_uid, 'self' => true]);
|
2010-08-14 16:55:18 +02:00
|
|
|
}
|
2010-07-17 08:14:37 +02:00
|
|
|
|
2017-11-26 03:03:59 +01:00
|
|
|
// Look for any tags and linkify them
|
|
|
|
$str_tags = '';
|
|
|
|
$inform = '';
|
|
|
|
|
2018-11-09 19:24:19 +01:00
|
|
|
$tags = BBCode::getTags($body);
|
2017-11-26 03:03:59 +01:00
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
if ($thread_parent_id && !\Friendica\Content\Feature::isEnabled($uid, 'explicit_mentions')) {
|
|
|
|
$tags = item_add_implicit_mentions($tags, $thread_parent_contact, $thread_parent_id);
|
2017-11-26 03:03:59 +01:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$tagged = [];
|
2017-11-26 03:03:59 +01:00
|
|
|
|
|
|
|
$private_forum = false;
|
|
|
|
$only_to_forum = false;
|
2018-01-15 14:05:12 +01:00
|
|
|
$forum_contact = [];
|
2017-11-26 03:03:59 +01:00
|
|
|
|
|
|
|
if (count($tags)) {
|
|
|
|
foreach ($tags as $tag) {
|
|
|
|
$tag_type = substr($tag, 0, 1);
|
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
if ($tag_type == Term::TAG_CHARACTER[Term::HASHTAG]) {
|
2017-11-26 03:03:59 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If we already tagged 'Robert Johnson', don't try and tag 'Robert'.
|
|
|
|
* Robert Johnson should be first in the $tags array
|
|
|
|
*/
|
|
|
|
$fullnametagged = false;
|
2018-01-09 21:50:06 +01:00
|
|
|
/// @TODO $tagged is initialized above if () block and is not filled, maybe old-lost code?
|
2017-11-26 03:03:59 +01:00
|
|
|
foreach ($tagged as $nextTag) {
|
|
|
|
if (stristr($nextTag, $tag . ' ')) {
|
|
|
|
$fullnametagged = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($fullnametagged) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-01-07 07:23:49 +01:00
|
|
|
$success = handle_tag($body, $inform, $str_tags, local_user() ? local_user() : $profile_uid, $tag, $network);
|
2017-11-26 03:03:59 +01:00
|
|
|
if ($success['replaced']) {
|
|
|
|
$tagged[] = $tag;
|
|
|
|
}
|
|
|
|
// When the forum is private or the forum is addressed with a "!" make the post private
|
2019-02-23 05:28:39 +01:00
|
|
|
if (is_array($success['contact']) && (!empty($success['contact']['prv']) || ($tag_type == Term::TAG_CHARACTER[Term::EXCLUSIVE_MENTION]))) {
|
2017-11-26 03:03:59 +01:00
|
|
|
$private_forum = $success['contact']['prv'];
|
2019-02-23 05:28:39 +01:00
|
|
|
$only_to_forum = ($tag_type == Term::TAG_CHARACTER[Term::EXCLUSIVE_MENTION]);
|
2017-11-26 03:03:59 +01:00
|
|
|
$private_id = $success['contact']['id'];
|
|
|
|
$forum_contact = $success['contact'];
|
2018-08-11 23:05:42 +02:00
|
|
|
} elseif (is_array($success['contact']) && !empty($success['contact']['forum']) &&
|
2017-11-26 03:03:59 +01:00
|
|
|
($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 23:28:46 +01:00
|
|
|
$original_contact_id = $contact_id;
|
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
if (!$toplevel_item_id && count($forum_contact) && ($private_forum || $only_to_forum)) {
|
2017-11-26 03:03:59 +01:00
|
|
|
// we tagged a forum in a top level post. Now we change the post
|
|
|
|
$private = $private_forum;
|
|
|
|
|
|
|
|
$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;
|
2018-07-19 15:52:05 +02:00
|
|
|
$wall = 0;
|
2017-11-26 03:03:59 +01:00
|
|
|
}
|
|
|
|
|
2017-03-30 21:32:12 +02:00
|
|
|
/*
|
2013-11-03 02:07:44 +01:00
|
|
|
* When a photo was uploaded into the message using the (profile wall) ajax
|
2011-01-04 11:01:07 +01: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 08:05:20 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
$match = null;
|
|
|
|
|
2019-08-02 18:38:50 +02:00
|
|
|
if (!$preview && Photo::setPermissionFromBody($body, $profile_uid, $original_contact_id, $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny)) {
|
2019-10-25 00:10:20 +02:00
|
|
|
$objecttype = Activity\ObjectType::IMAGE;
|
2011-01-04 08:05:20 +01:00
|
|
|
}
|
|
|
|
|
2017-03-30 21:32:12 +02:00
|
|
|
/*
|
2011-06-30 03:59:05 +02:00
|
|
|
* Next link in any attachment references we find in the post.
|
|
|
|
*/
|
2011-05-30 00:47:26 +02:00
|
|
|
$match = false;
|
2011-05-25 11:08:15 +02:00
|
|
|
|
2018-01-20 20:48:51 +01:00
|
|
|
/// @todo these lines should be moved to Model/Attach (Once it exists)
|
2018-01-09 21:03:00 +01:00
|
|
|
if (!$preview && preg_match_all("/\[attachment\](.*?)\[\/attachment\]/", $body, $match)) {
|
2011-05-25 11:08:15 +02:00
|
|
|
$attaches = $match[1];
|
2017-03-30 21:32:12 +02:00
|
|
|
if (count($attaches)) {
|
|
|
|
foreach ($attaches as $attach) {
|
2018-01-20 20:48:51 +01: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 18:39:55 +01:00
|
|
|
if (!Attach::exists($condition)) {
|
2018-01-20 20:48:51 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-01-20 14:54:14 +01: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 18:39:55 +01:00
|
|
|
Attach::update($fields, $condition);
|
2011-05-25 11:08:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-24 17:00:19 +02:00
|
|
|
// embedded bookmark or attachment in post? set bookmark flag
|
2011-09-05 04:58:03 +02:00
|
|
|
|
2018-01-27 02:01:32 +01:00
|
|
|
$data = BBCode::getAttachmentData($body);
|
2018-07-19 15:52:05 +02: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-25 00:10:20 +02:00
|
|
|
$objecttype = Activity\ObjectType::BOOKMARK;
|
2011-09-05 04:58:03 +02:00
|
|
|
}
|
|
|
|
|
2019-12-15 23:28:01 +01:00
|
|
|
$body = DI::bbCodeVideo()->transform($body);
|
2012-08-04 03:33:11 +02:00
|
|
|
|
2017-03-30 21:32:12 +02:00
|
|
|
// Fold multi-line [code] sequences
|
|
|
|
$body = preg_replace('/\[\/code\]\s*\[code\]/ism', "\n", $body);
|
2011-01-04 11:01:07 +01:00
|
|
|
|
2020-01-03 02:44:15 +01:00
|
|
|
$body = BBCode::scaleExternalImages($body);
|
2012-02-25 23:22:51 +01:00
|
|
|
|
2014-08-07 08:02:24 +02:00
|
|
|
// Setting the object type if not defined before
|
|
|
|
if (!$objecttype) {
|
2019-10-25 00:10:20 +02:00
|
|
|
$objecttype = Activity\ObjectType::NOTE; // Default value
|
2018-01-27 02:01:32 +01:00
|
|
|
$objectdata = BBCode::getAttachedData($body);
|
2014-08-07 08:02:24 +02:00
|
|
|
|
2017-11-26 03:03:59 +01:00
|
|
|
if ($objectdata["type"] == "link") {
|
2019-10-25 00:10:20 +02:00
|
|
|
$objecttype = Activity\ObjectType::BOOKMARK;
|
2017-11-26 03:03:59 +01:00
|
|
|
} elseif ($objectdata["type"] == "video") {
|
2019-10-25 00:10:20 +02:00
|
|
|
$objecttype = Activity\ObjectType::VIDEO;
|
2017-11-26 03:03:59 +01:00
|
|
|
} elseif ($objectdata["type"] == "photo") {
|
2019-10-25 00:10:20 +02:00
|
|
|
$objecttype = Activity\ObjectType::IMAGE;
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2014-08-07 08:02:24 +02:00
|
|
|
|
|
|
|
}
|
2012-08-04 03:33:11 +02:00
|
|
|
|
2011-05-25 11:08:15 +02:00
|
|
|
$attachments = '';
|
2011-05-30 00:47:26 +02:00
|
|
|
$match = false;
|
2011-05-25 11:08:15 +02:00
|
|
|
|
2016-12-19 14:26:13 +01:00
|
|
|
if (preg_match_all('/(\[attachment\]([0-9]+)\[\/attachment\])/',$body,$match)) {
|
|
|
|
foreach ($match[2] as $mtch) {
|
2018-01-20 14:54:14 +01:00
|
|
|
$fields = ['id', 'filename', 'filesize', 'filetype'];
|
2019-01-03 18:39:55 +01:00
|
|
|
$attachment = Attach::selectFirst($fields, ['id' => $mtch]);
|
|
|
|
if ($attachment !== false) {
|
2016-12-20 21:31:05 +01:00
|
|
|
if (strlen($attachments)) {
|
2011-05-25 11:08:15 +02:00
|
|
|
$attachments .= ',';
|
2016-12-20 21:31:05 +01:00
|
|
|
}
|
2019-12-30 23:00:08 +01:00
|
|
|
$attachments .= '[attach]href="' . DI::baseUrl() . '/attach/' . $attachment['id'] .
|
2018-01-20 14:54:14 +01:00
|
|
|
'" length="' . $attachment['filesize'] . '" type="' . $attachment['filetype'] .
|
|
|
|
'" title="' . ($attachment['filename'] ? $attachment['filename'] : '') . '"[/attach]';
|
2011-05-25 11:08:15 +02:00
|
|
|
}
|
|
|
|
$body = str_replace($match[1],'',$body);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-09 21:03:00 +01:00
|
|
|
if (!strlen($verb)) {
|
2019-10-24 00:25:43 +02:00
|
|
|
$verb = Activity::POST;
|
2016-12-20 21:31:05 +01:00
|
|
|
}
|
2010-09-10 07:02:28 +02:00
|
|
|
|
2016-12-20 21:31:05 +01:00
|
|
|
if ($network == "") {
|
2018-08-11 22:40:44 +02:00
|
|
|
$network = Protocol::DFRN;
|
2016-12-20 21:31:05 +01:00
|
|
|
}
|
2013-12-27 01:58:21 +01:00
|
|
|
|
2019-02-23 05:28:39 +01:00
|
|
|
$gravity = ($toplevel_item_id ? GRAVITY_COMMENT : GRAVITY_PARENT);
|
2011-10-17 23:52:03 +02:00
|
|
|
|
2015-03-22 10:12:16 +01:00
|
|
|
// even if the post arrived via API we are considering that it
|
2011-10-17 23:52:03 +02:00
|
|
|
// originated on this site by default for determining relayability.
|
|
|
|
|
2018-08-04 16:06:36 +02: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 01:58:21 +01:00
|
|
|
|
2018-07-16 05:56:36 +02:00
|
|
|
$uri = ($message_id ? $message_id : Item::newURI($api_source ? $profile_uid : $uid, $guid));
|
2010-08-10 10:21:38 +02:00
|
|
|
|
2018-01-11 20:17:40 +01:00
|
|
|
// Fallback so that we alway have a parent uri
|
2019-02-23 05:28:39 +01:00
|
|
|
if (!$thr_parent_uri || !$toplevel_item_id) {
|
2018-01-20 14:54:14 +01:00
|
|
|
$thr_parent_uri = $uri;
|
2016-12-20 21:31:05 +01:00
|
|
|
}
|
2012-08-07 10:04:47 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$datarray = [];
|
2010-12-22 23:16:22 +01:00
|
|
|
$datarray['uid'] = $profile_uid;
|
|
|
|
$datarray['wall'] = $wall;
|
|
|
|
$datarray['gravity'] = $gravity;
|
2013-12-27 01:58:21 +01:00
|
|
|
$datarray['network'] = $network;
|
2010-12-22 23:16:22 +01:00
|
|
|
$datarray['contact-id'] = $contact_id;
|
|
|
|
$datarray['owner-name'] = $contact_record['name'];
|
|
|
|
$datarray['owner-link'] = $contact_record['url'];
|
|
|
|
$datarray['owner-avatar'] = $contact_record['thumb'];
|
2018-03-02 01:53:47 +01:00
|
|
|
$datarray['owner-id'] = Contact::getIdForURL($datarray['owner-link']);
|
2010-12-22 23:16:22 +01:00
|
|
|
$datarray['author-name'] = $author['name'];
|
|
|
|
$datarray['author-link'] = $author['url'];
|
|
|
|
$datarray['author-avatar'] = $author['thumb'];
|
2018-03-02 01:53:47 +01:00
|
|
|
$datarray['author-id'] = Contact::getIdForURL($datarray['author-link']);
|
2018-01-27 03:38:34 +01:00
|
|
|
$datarray['created'] = DateTimeFormat::utcNow();
|
|
|
|
$datarray['edited'] = DateTimeFormat::utcNow();
|
|
|
|
$datarray['commented'] = DateTimeFormat::utcNow();
|
|
|
|
$datarray['received'] = DateTimeFormat::utcNow();
|
|
|
|
$datarray['changed'] = DateTimeFormat::utcNow();
|
2014-10-20 08:21:23 +02:00
|
|
|
$datarray['extid'] = $extid;
|
2014-07-22 00:36:20 +02:00
|
|
|
$datarray['guid'] = $guid;
|
2010-12-22 23:16:22 +01:00
|
|
|
$datarray['uri'] = $uri;
|
|
|
|
$datarray['title'] = $title;
|
|
|
|
$datarray['body'] = $body;
|
2011-06-21 04:08:40 +02:00
|
|
|
$datarray['app'] = $app;
|
2010-12-22 23:16:22 +01:00
|
|
|
$datarray['location'] = $location;
|
|
|
|
$datarray['coord'] = $coord;
|
|
|
|
$datarray['tag'] = $str_tags;
|
2012-03-23 00:17:10 +01:00
|
|
|
$datarray['file'] = $categories;
|
2010-12-22 23:16:22 +01:00
|
|
|
$datarray['inform'] = $inform;
|
|
|
|
$datarray['verb'] = $verb;
|
2018-07-19 15:52:05 +02:00
|
|
|
$datarray['post-type'] = $posttype;
|
2014-08-07 08:02:24 +02:00
|
|
|
$datarray['object-type'] = $objecttype;
|
2010-12-22 23:16:22 +01: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 14:54:14 +01:00
|
|
|
$datarray['pubmail'] = $pubmail_enabled;
|
2011-05-25 11:08:15 +02:00
|
|
|
$datarray['attach'] = $attachments;
|
2018-01-20 15:10:37 +01:00
|
|
|
|
|
|
|
// This is not a bug. The item store function changes 'parent-uri' to 'thr-parent' and fetches 'parent-uri' new. (We should change this)
|
2018-01-20 14:54:14 +01:00
|
|
|
$datarray['parent-uri'] = $thr_parent_uri;
|
2018-01-20 15:10:37 +01:00
|
|
|
|
2012-07-12 07:45:14 +02:00
|
|
|
$datarray['postopts'] = $postopts;
|
2011-10-17 23:52:03 +02:00
|
|
|
$datarray['origin'] = $origin;
|
2018-01-19 08:02:43 +01:00
|
|
|
$datarray['moderated'] = false;
|
2016-12-09 10:57:02 +01:00
|
|
|
$datarray['object'] = $object;
|
2016-06-21 07:54:45 +02:00
|
|
|
|
2017-03-30 21:32:12 +02:00
|
|
|
/*
|
2018-01-17 20:22:38 +01:00
|
|
|
* These fields are for the convenience of addons...
|
2010-12-22 23:16:22 +01: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 05:28:39 +01:00
|
|
|
$datarray['parent'] = $toplevel_item_id;
|
2010-12-22 23:16:22 +01:00
|
|
|
$datarray['self'] = $self;
|
|
|
|
|
2017-09-06 18:20:14 +02:00
|
|
|
// This triggers posts via API and the mirror functions
|
|
|
|
$datarray['api_source'] = $api_source;
|
|
|
|
|
2018-01-11 20:17:40 +01:00
|
|
|
// This field is for storing the raw conversation data
|
2018-08-05 12:23:57 +02:00
|
|
|
$datarray['protocol'] = Conversation::PARCEL_DFRN;
|
2017-04-29 07:44:13 +02:00
|
|
|
|
2018-07-20 14:19:26 +02:00
|
|
|
$conversation = DBA::selectFirst('conversation', ['conversation-uri', 'conversation-href'], ['item-uri' => $datarray['parent-uri']]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($conversation)) {
|
2018-07-10 14:27:56 +02:00
|
|
|
if ($conversation['conversation-uri'] != '') {
|
2018-06-19 23:33:07 +02:00
|
|
|
$datarray['conversation-uri'] = $conversation['conversation-uri'];
|
2017-04-29 07:44:13 +02:00
|
|
|
}
|
2018-07-10 14:27:56 +02:00
|
|
|
if ($conversation['conversation-href'] != '') {
|
2018-06-19 23:33:07 +02:00
|
|
|
$datarray['conversation-href'] = $conversation['conversation-href'];
|
2017-04-29 07:44:13 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-30 21:32:12 +02:00
|
|
|
if ($orig_post) {
|
|
|
|
$datarray['edit'] = true;
|
2018-07-10 14:27:56 +02:00
|
|
|
} else {
|
2019-12-07 22:05:14 +01:00
|
|
|
// If this was a share, add missing data here
|
|
|
|
$datarray = Item::addShareDataFromOriginal($datarray);
|
|
|
|
|
2018-07-10 14:27:56 +02:00
|
|
|
$datarray['edit'] = false;
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2011-08-08 02:29:26 +02:00
|
|
|
|
2018-05-19 16:55:27 +02:00
|
|
|
// Check for hashtags in the body and repair or add hashtag links
|
|
|
|
if ($preview || $orig_post) {
|
|
|
|
Item::setHashtags($datarray);
|
|
|
|
}
|
|
|
|
|
2012-01-06 00:02:44 +01:00
|
|
|
// preview mode - prepare the body for display and send it via json
|
2017-03-30 21:32:12 +02:00
|
|
|
if ($preview) {
|
2016-11-20 16:19:55 +01:00
|
|
|
// We set the datarray ID to -1 because in preview mode the dataray
|
|
|
|
// doesn't have an ID.
|
|
|
|
$datarray["id"] = -1;
|
2018-07-10 14:27:56 +02:00
|
|
|
$datarray["item_id"] = -1;
|
2018-08-11 22:40:44 +02:00
|
|
|
$datarray["author-network"] = Protocol::DFRN;
|
2018-07-10 14:27:56 +02:00
|
|
|
|
2019-12-16 01:30:34 +01:00
|
|
|
$o = conversation($a, [array_merge($contact_record, $datarray)], new Pager(DI::args()->getQueryString()), 'search', false, true);
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('preview: ' . $o);
|
2018-01-15 14:05:12 +01:00
|
|
|
echo json_encode(['preview' => $o]);
|
2018-10-24 08:15:24 +02:00
|
|
|
exit();
|
2012-01-06 00:02:44 +01:00
|
|
|
}
|
|
|
|
|
2018-12-26 07:06:24 +01:00
|
|
|
Hook::callAll('post_local',$datarray);
|
2010-12-22 23:16:22 +01:00
|
|
|
|
2018-07-24 23:48:47 +02:00
|
|
|
if (!empty($datarray['cancel'])) {
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('mod_item: post cancelled by addon.');
|
2017-03-30 21:32:12 +02:00
|
|
|
if ($return_path) {
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2012-01-31 05:49:54 +01:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$json = ['cancel' => 1];
|
2018-11-30 15:06:22 +01:00
|
|
|
if (!empty($_REQUEST['jsreload'])) {
|
2019-12-30 23:00:08 +01:00
|
|
|
$json['reload'] = DI::baseUrl() . '/' . $_REQUEST['jsreload'];
|
2016-12-20 11:18:54 +01:00
|
|
|
}
|
2012-01-31 05:49:54 +01:00
|
|
|
|
|
|
|
echo json_encode($json);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2012-01-31 05:49:54 +01:00
|
|
|
}
|
|
|
|
|
2018-11-07 03:16:27 +01:00
|
|
|
if ($orig_post) {
|
2018-01-09 23:35:50 +01:00
|
|
|
// Fill the cache field
|
2018-01-10 07:58:20 +01:00
|
|
|
// This could be done in Item::update as well - but we have to check for the existance of some fields.
|
2018-11-07 03:16:27 +01:00
|
|
|
Item::putInCache($datarray);
|
2018-01-09 23:35:50 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$fields = [
|
2018-01-09 21:03:00 +01:00
|
|
|
'title' => $datarray['title'],
|
|
|
|
'body' => $datarray['body'],
|
|
|
|
'tag' => $datarray['tag'],
|
|
|
|
'attach' => $datarray['attach'],
|
|
|
|
'file' => $datarray['file'],
|
|
|
|
'rendered-html' => $datarray['rendered-html'],
|
|
|
|
'rendered-hash' => $datarray['rendered-hash'],
|
2018-01-27 03:38:34 +01:00
|
|
|
'edited' => DateTimeFormat::utcNow(),
|
|
|
|
'changed' => DateTimeFormat::utcNow()];
|
2018-01-09 21:03:00 +01:00
|
|
|
|
2018-01-09 22:13:45 +01:00
|
|
|
Item::update($fields, ['id' => $post_id]);
|
2014-03-20 18:48:08 +01:00
|
|
|
|
2012-04-02 03:28:31 +02:00
|
|
|
// update filetags in pconfig
|
2018-10-30 19:51:45 +01:00
|
|
|
FileTag::updatePconfig($uid, $categories_old, $categories_new, 'category');
|
2012-04-02 03:28:31 +02:00
|
|
|
|
2018-07-24 23:48:47 +02:00
|
|
|
if (!empty($_REQUEST['return']) && strlen($return_path)) {
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('return: ' . $return_path);
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2011-03-18 13:06:16 +01:00
|
|
|
}
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2011-03-18 13:06:16 +01:00
|
|
|
|
2018-01-09 21:50:06 +01:00
|
|
|
unset($datarray['edit']);
|
|
|
|
unset($datarray['self']);
|
|
|
|
unset($datarray['api_source']);
|
|
|
|
|
2018-10-29 22:15:37 +01:00
|
|
|
if ($origin) {
|
|
|
|
$signed = Diaspora::createCommentSignature($uid, $datarray);
|
|
|
|
if (!empty($signed)) {
|
|
|
|
$datarray['diaspora_signed_text'] = json_encode($signed);
|
|
|
|
}
|
2018-10-27 16:35:22 +02:00
|
|
|
}
|
|
|
|
|
2018-01-28 12:18:08 +01:00
|
|
|
$post_id = Item::insert($datarray);
|
2014-03-09 09:19:14 +01:00
|
|
|
|
2018-01-18 20:38:51 +01:00
|
|
|
if (!$post_id) {
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log("Item wasn't stored.");
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2018-01-18 20:38:51 +01:00
|
|
|
}
|
|
|
|
|
2018-06-29 08:20:04 +02:00
|
|
|
$datarray = Item::selectFirst(Item::ITEM_FIELDLIST, ['id' => $post_id]);
|
2018-01-18 20:38:51 +01:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($datarray)) {
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log("Item with id ".$post_id." couldn't be fetched.");
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2018-01-18 20:38:51 +01:00
|
|
|
}
|
2011-08-29 04:22:27 +02:00
|
|
|
|
2015-03-07 21:24:39 +01:00
|
|
|
// update filetags in pconfig
|
2018-10-30 19:51:45 +01:00
|
|
|
FileTag::updatePconfig($uid, $categories_old, $categories_new, 'category');
|
2011-08-29 04:22:27 +02:00
|
|
|
|
2018-01-09 21:03:00 +01:00
|
|
|
// These notifications are sent if someone else is commenting other your wall
|
2019-02-23 05:28:39 +01:00
|
|
|
if ($toplevel_item_id) {
|
2017-03-30 21:32:12 +02:00
|
|
|
if ($contact_record != $author) {
|
2018-01-15 14:05:12 +01:00
|
|
|
notification([
|
2015-03-07 21:24:39 +01:00
|
|
|
'type' => NOTIFY_COMMENT,
|
|
|
|
'notify_flags' => $user['notify-flags'],
|
|
|
|
'language' => $user['language'],
|
|
|
|
'to_name' => $user['username'],
|
|
|
|
'to_email' => $user['email'],
|
|
|
|
'uid' => $user['uid'],
|
|
|
|
'item' => $datarray,
|
2019-12-30 23:00:08 +01:00
|
|
|
'link' => DI::baseUrl().'/display/'.urlencode($datarray['guid']),
|
2015-03-07 21:24:39 +01:00
|
|
|
'source_name' => $datarray['author-name'],
|
|
|
|
'source_link' => $datarray['author-link'],
|
|
|
|
'source_photo' => $datarray['author-avatar'],
|
2019-10-24 00:25:43 +02:00
|
|
|
'verb' => Activity::POST,
|
2015-03-07 21:24:39 +01:00
|
|
|
'otype' => 'item',
|
2019-02-23 05:28:39 +01:00
|
|
|
'parent' => $toplevel_item_id,
|
|
|
|
'parent_uri' => $toplevel_item['uri']
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2015-03-07 21:24:39 +01:00
|
|
|
}
|
|
|
|
} else {
|
2017-11-02 21:15:14 +01:00
|
|
|
if (($contact_record != $author) && !count($forum_contact)) {
|
2018-01-15 14:05:12 +01:00
|
|
|
notification([
|
2015-03-07 21:24:39 +01:00
|
|
|
'type' => NOTIFY_WALL,
|
|
|
|
'notify_flags' => $user['notify-flags'],
|
|
|
|
'language' => $user['language'],
|
|
|
|
'to_name' => $user['username'],
|
|
|
|
'to_email' => $user['email'],
|
|
|
|
'uid' => $user['uid'],
|
|
|
|
'item' => $datarray,
|
2019-12-30 23:00:08 +01:00
|
|
|
'link' => DI::baseUrl().'/display/'.urlencode($datarray['guid']),
|
2015-03-07 21:24:39 +01:00
|
|
|
'source_name' => $datarray['author-name'],
|
|
|
|
'source_link' => $datarray['author-link'],
|
|
|
|
'source_photo' => $datarray['author-avatar'],
|
2019-10-24 00:25:43 +02:00
|
|
|
'verb' => Activity::POST,
|
2015-03-07 21:24:39 +01:00
|
|
|
'otype' => 'item'
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2010-08-10 10:21:38 +02:00
|
|
|
}
|
|
|
|
}
|
2015-03-07 21:24:39 +01:00
|
|
|
|
2018-12-26 07:06:24 +01:00
|
|
|
Hook::callAll('post_local_end', $datarray);
|
2011-02-01 03:18:28 +01:00
|
|
|
|
2017-03-30 21:32:12 +02:00
|
|
|
if (strlen($emailcc) && $profile_uid == local_user()) {
|
2011-02-01 03:18:28 +01:00
|
|
|
$erecips = explode(',', $emailcc);
|
2017-03-30 21:32:12 +02:00
|
|
|
if (count($erecips)) {
|
|
|
|
foreach ($erecips as $recip) {
|
2011-02-01 03:18:28 +01:00
|
|
|
$addr = trim($recip);
|
2018-01-09 21:03:00 +01:00
|
|
|
if (!strlen($addr)) {
|
2011-02-01 03:18:28 +01:00
|
|
|
continue;
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2018-01-24 03:59:16 +01:00
|
|
|
$disclaimer = '<hr />' . L10n::t('This message was sent to you by %s, a member of the Friendica social network.', $a->user['username'])
|
2011-03-11 00:22:21 +01:00
|
|
|
. '<br />';
|
2019-12-30 23:00:08 +01:00
|
|
|
$disclaimer .= L10n::t('You may visit them online at %s', DI::baseUrl() . '/profile/' . $a->user['nickname']) . EOL;
|
2018-01-22 13:29:50 +01:00
|
|
|
$disclaimer .= L10n::t('Please contact the sender by replying to this post if you do not wish to receive these messages.') . EOL;
|
2014-08-28 01:06:41 +02:00
|
|
|
if (!$datarray['title']=='') {
|
2017-12-02 03:05:06 +01:00
|
|
|
$subject = Email::encodeHeader($datarray['title'], 'UTF-8');
|
2014-08-28 01:06:41 +02:00
|
|
|
} else {
|
2018-01-24 03:59:16 +01:00
|
|
|
$subject = Email::encodeHeader('[Friendica]' . ' ' . L10n::t('%s posted an update.', $a->user['username']), 'UTF-8');
|
2014-08-28 01:06:41 +02:00
|
|
|
}
|
2019-12-30 23:00:08 +01:00
|
|
|
$link = '<a href="' . DI::baseUrl() . '/profile/' . $a->user['nickname'] . '"><img src="' . $author['thumb'] . '" alt="' . $a->user['username'] . '" /></a><br /><br />';
|
2018-11-07 03:16:27 +01:00
|
|
|
$html = Item::prepareBody($datarray);
|
2011-02-01 03:18:28 +01:00
|
|
|
$message = '<html><body>' . $link . $html . $disclaimer . '</body></html>';
|
2018-01-15 14:05:12 +01:00
|
|
|
$params = [
|
2017-11-21 01:03:58 +01:00
|
|
|
'fromName' => $a->user['username'],
|
|
|
|
'fromEmail' => $a->user['email'],
|
|
|
|
'toEmail' => $addr,
|
|
|
|
'replyTo' => $a->user['email'],
|
|
|
|
'messageSubject' => $subject,
|
|
|
|
'htmlVersion' => $message,
|
2018-07-20 04:15:21 +02:00
|
|
|
'textVersion' => HTML::toPlaintext($html.$disclaimer)
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2015-03-22 10:12:16 +01:00
|
|
|
Emailer::send($params);
|
2011-02-01 03:18:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-12 14:17:28 +01:00
|
|
|
// Insert an item entry for UID=0 for global entries.
|
|
|
|
// We now do it in the background to save some time.
|
|
|
|
// This is important in interactive environments like the frontend or the API.
|
|
|
|
// We don't fork a new process since this is done anyway with the following command
|
2018-01-15 14:05:12 +01:00
|
|
|
Worker::add(['priority' => PRIORITY_HIGH, 'dont_fork' => true], "CreateShadowEntry", $post_id);
|
2011-09-13 04:42:10 +02:00
|
|
|
|
2018-11-02 00:52:06 +01: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) {
|
2019-08-08 22:42:12 +02:00
|
|
|
Worker::add(['priority' => PRIORITY_HIGH, 'dont_fork' => false], "Notifier", Delivery::POST, $post_id);
|
2018-11-02 00:52:06 +01:00
|
|
|
}
|
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
Logger::log('post_complete');
|
2011-08-04 01:29:25 +02:00
|
|
|
|
2018-09-02 09:20:04 +02:00
|
|
|
if ($api_source) {
|
|
|
|
return $post_id;
|
|
|
|
}
|
|
|
|
|
2019-12-30 23:00:08 +01:00
|
|
|
item_post_return(DI::baseUrl(), $api_source, $return_path);
|
2012-11-02 00:14:42 +01:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
2018-01-20 18:34:53 +01:00
|
|
|
|
2018-07-24 23:48:47 +02:00
|
|
|
function item_post_return($baseurl, $api_source, $return_path)
|
|
|
|
{
|
2011-08-04 01:29:25 +02:00
|
|
|
// figure out how to return, depending on from whence we came
|
2020-01-04 23:42:01 +01:00
|
|
|
$a = DI::app();
|
2011-08-04 01:29:25 +02:00
|
|
|
|
2017-03-30 21:32:12 +02:00
|
|
|
if ($api_source) {
|
2011-08-04 01:29:25 +02:00
|
|
|
return;
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2011-08-04 01:29:25 +02:00
|
|
|
|
2016-12-20 11:18:54 +01:00
|
|
|
if ($return_path) {
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($return_path);
|
2011-02-17 06:17:49 +01:00
|
|
|
}
|
2011-09-12 06:52:50 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$json = ['success' => 1];
|
2018-11-30 15:06:22 +01:00
|
|
|
if (!empty($_REQUEST['jsreload'])) {
|
2012-11-02 00:14:42 +01:00
|
|
|
$json['reload'] = $baseurl . '/' . $_REQUEST['jsreload'];
|
2016-12-20 11:18:54 +01:00
|
|
|
}
|
2011-02-17 06:17:49 +01:00
|
|
|
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log('post_json: ' . print_r($json, true), Logger::DEBUG);
|
2011-02-17 06:17:49 +01:00
|
|
|
|
2011-02-14 13:43:49 +01:00
|
|
|
echo json_encode($json);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2010-07-27 02:01:37 +02:00
|
|
|
}
|
|
|
|
|
2018-07-24 23:48:47 +02:00
|
|
|
function item_content(App $a)
|
|
|
|
{
|
2019-09-28 20:09:11 +02:00
|
|
|
if (!Session::isAuthenticated()) {
|
2010-07-27 02:01:37 +02:00
|
|
|
return;
|
2016-12-20 11:18:54 +01:00
|
|
|
}
|
2010-07-27 02:01:37 +02:00
|
|
|
|
2013-01-26 20:52:21 +01:00
|
|
|
$o = '';
|
2018-07-24 23:48:47 +02:00
|
|
|
|
2018-10-25 23:57:26 +02:00
|
|
|
if (($a->argc >= 3) && ($a->argv[1] === 'drop') && intval($a->argv[2])) {
|
2019-12-16 00:30:39 +01:00
|
|
|
if (DI::mode()->isAjax()) {
|
2018-05-29 07:22:57 +02:00
|
|
|
$o = Item::deleteForUser(['id' => $a->argv[2]], local_user());
|
2018-01-18 00:22:01 +01:00
|
|
|
} else {
|
2018-10-26 14:05:59 +02:00
|
|
|
if (!empty($a->argv[3])) {
|
|
|
|
$o = drop_item($a->argv[2], $a->argv[3]);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$o = drop_item($a->argv[2]);
|
|
|
|
}
|
2018-01-18 00:22:01 +01:00
|
|
|
}
|
2018-07-24 23:48:47 +02:00
|
|
|
|
2019-12-16 00:30:39 +01:00
|
|
|
if (DI::mode()->isAjax()) {
|
2015-03-01 20:40:38 +01:00
|
|
|
// ajax return: [<item id>, 0 (no perm) | <owner id>]
|
2018-01-15 14:05:12 +01:00
|
|
|
echo json_encode([intval($a->argv[2]), intval($o)]);
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2013-02-15 12:34:32 +01:00
|
|
|
}
|
2010-07-27 02:01:37 +02:00
|
|
|
}
|
2018-07-24 23:48:47 +02:00
|
|
|
|
2013-01-26 20:52:21 +01:00
|
|
|
return $o;
|
2011-05-22 06:40:16 +02:00
|
|
|
}
|
2012-03-09 12:57:11 +01:00
|
|
|
|
2012-03-12 13:59:00 +01:00
|
|
|
/**
|
2015-03-01 20:40:38 +01:00
|
|
|
* This function removes the tag $tag from the text $body and replaces it with
|
2019-01-07 07:07:42 +01:00
|
|
|
* the appropriate link.
|
2015-03-01 20:40:38 +01:00
|
|
|
*
|
2019-01-07 16:24:06 +01:00
|
|
|
* @param App $a
|
2019-01-07 07:07:42 +01:00
|
|
|
* @param string $body the text to replace the tag in
|
|
|
|
* @param string $inform a comma-seperated string containing everybody to inform
|
|
|
|
* @param string $str_tags string to add the tag to
|
2016-04-13 07:00:36 +02:00
|
|
|
* @param integer $profile_uid
|
2019-01-07 07:07:42 +01:00
|
|
|
* @param string $tag the tag to replace
|
|
|
|
* @param string $network The network of the post
|
2012-05-03 07:33:51 +02:00
|
|
|
*
|
2019-01-07 07:07:42 +01:00
|
|
|
* @return array|bool ['replaced' => $replaced, 'contact' => $contact];
|
|
|
|
* @throws ImagickException
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2012-03-12 13:59:00 +01:00
|
|
|
*/
|
2019-01-07 07:23:49 +01:00
|
|
|
function handle_tag(&$body, &$inform, &$str_tags, $profile_uid, $tag, $network = "")
|
2017-11-15 16:53:16 +01:00
|
|
|
{
|
2012-05-03 07:33:51 +02:00
|
|
|
$replaced = false;
|
2012-05-30 07:57:15 +02:00
|
|
|
$r = null;
|
2012-05-03 07:33:51 +02:00
|
|
|
|
2014-08-25 14:09:56 +02:00
|
|
|
//is it a person tag?
|
2019-02-23 05:28:39 +01:00
|
|
|
if (Term::isType($tag, Term::MENTION, Term::IMPLICIT_MENTION, Term::EXCLUSIVE_MENTION)) {
|
2017-10-31 20:33:23 +01:00
|
|
|
$tag_type = substr($tag, 0, 1);
|
2014-08-25 14:09:56 +02:00
|
|
|
//is it already replaced?
|
2017-03-30 21:32:12 +02:00
|
|
|
if (strpos($tag, '[url=')) {
|
2015-06-07 23:18:02 +02:00
|
|
|
//append tag to str_tags
|
2017-03-31 20:30:21 +02:00
|
|
|
if (!stristr($str_tags, $tag)) {
|
2016-12-20 11:18:54 +01:00
|
|
|
if (strlen($str_tags)) {
|
2015-06-07 23:18:02 +02:00
|
|
|
$str_tags .= ',';
|
2016-12-20 11:18:54 +01:00
|
|
|
}
|
2015-06-07 23:18:02 +02:00
|
|
|
$str_tags .= $tag;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checking for the alias that is used for OStatus
|
2017-10-31 20:33:23 +01:00
|
|
|
$pattern = "/[@!]\[url\=(.*?)\](.*?)\[\/url\]/ism";
|
2015-06-07 23:18:02 +02:00
|
|
|
if (preg_match($pattern, $tag, $matches)) {
|
2018-01-22 22:37:21 +01:00
|
|
|
$data = Contact::getDetailsByURL($matches[1]);
|
2018-07-24 23:48:47 +02:00
|
|
|
|
2015-06-07 23:18:02 +02:00
|
|
|
if ($data["alias"] != "") {
|
2018-01-22 22:37:21 +01:00
|
|
|
$newtag = '@[url=' . $data["alias"] . ']' . $data["nick"] . '[/url]';
|
2018-07-24 23:48:47 +02:00
|
|
|
|
2018-01-22 22:37:21 +01:00
|
|
|
if (!stripos($str_tags, '[url=' . $data["alias"] . ']')) {
|
2017-03-30 21:32:12 +02:00
|
|
|
if (strlen($str_tags)) {
|
2015-06-07 23:18:02 +02:00
|
|
|
$str_tags .= ',';
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2018-07-24 23:48:47 +02:00
|
|
|
|
2015-06-07 23:18:02 +02:00
|
|
|
$str_tags .= $newtag;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-03 07:33:51 +02:00
|
|
|
return $replaced;
|
2015-06-07 23:18:02 +02:00
|
|
|
}
|
2018-07-24 23:48:47 +02:00
|
|
|
|
2012-03-12 13:59:00 +01:00
|
|
|
//get the person's name
|
2017-03-30 21:32:12 +02:00
|
|
|
$name = substr($tag, 1);
|
2016-01-07 23:43:16 +01:00
|
|
|
|
2016-01-08 00:35:46 +01:00
|
|
|
// Sometimes the tag detection doesn't seem to work right
|
|
|
|
// This is some workaround
|
|
|
|
$nameparts = explode(" ", $name);
|
|
|
|
$name = $nameparts[0];
|
|
|
|
|
2016-01-07 23:43:16 +01:00
|
|
|
// Try to detect the contact in various ways
|
2018-01-22 22:37:21 +01:00
|
|
|
if (strpos($name, 'http://')) {
|
|
|
|
// At first we have to ensure that the contact exists
|
2018-01-22 22:59:27 +01:00
|
|
|
Contact::getIdForURL($name);
|
2018-01-22 22:37:21 +01:00
|
|
|
|
|
|
|
// Now we should have something
|
|
|
|
$contact = Contact::getDetailsByURL($name);
|
|
|
|
} elseif (strpos($name, '@')) {
|
|
|
|
// This function automatically probes when no entry was found
|
|
|
|
$contact = Contact::getDetailsByAddr($name);
|
2016-01-08 00:35:46 +01:00
|
|
|
} else {
|
2018-01-22 22:37:21 +01:00
|
|
|
$contact = false;
|
2018-07-24 23:48:47 +02:00
|
|
|
$fields = ['id', 'url', 'nick', 'name', 'alias', 'network', 'forum', 'prv'];
|
2018-01-22 22:37:21 +01:00
|
|
|
|
2017-03-31 20:51:18 +02:00
|
|
|
if (strrpos($name, '+')) {
|
2016-01-07 23:43:16 +01:00
|
|
|
// Is it in format @nick+number?
|
2017-03-31 20:51:18 +02:00
|
|
|
$tagcid = intval(substr($name, strrpos($name, '+') + 1));
|
2018-07-20 14:19:26 +02:00
|
|
|
$contact = DBA::selectFirst('contact', $fields, ['id' => $tagcid, 'uid' => $profile_uid]);
|
2016-01-07 23:43:16 +01:00
|
|
|
}
|
|
|
|
|
2018-01-22 22:59:27 +01:00
|
|
|
// select someone by nick or attag in the current network
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($contact) && ($network != "")) {
|
2018-01-22 22:59:27 +01:00
|
|
|
$condition = ["(`nick` = ? OR `attag` = ?) AND `network` = ? AND `uid` = ?",
|
|
|
|
$name, $name, $network, $profile_uid];
|
2018-07-20 14:19:26 +02:00
|
|
|
$contact = DBA::selectFirst('contact', $fields, $condition);
|
2018-01-22 22:37:21 +01:00
|
|
|
}
|
2016-01-07 23:43:16 +01:00
|
|
|
|
2018-01-22 22:59:27 +01:00
|
|
|
//select someone by name in the current network
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($contact) && ($network != "")) {
|
2018-01-22 22:37:21 +01:00
|
|
|
$condition = ['name' => $name, 'network' => $network, 'uid' => $profile_uid];
|
2018-07-20 14:19:26 +02:00
|
|
|
$contact = DBA::selectFirst('contact', $fields, $condition);
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2016-01-07 23:43:16 +01:00
|
|
|
|
2018-01-22 22:59:27 +01:00
|
|
|
// select someone by nick or attag in any network
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($contact)) {
|
2018-01-22 22:59:27 +01:00
|
|
|
$condition = ["(`nick` = ? OR `attag` = ?) AND `uid` = ?", $name, $name, $profile_uid];
|
2018-07-20 14:19:26 +02:00
|
|
|
$contact = DBA::selectFirst('contact', $fields, $condition);
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2017-03-21 17:02:59 +01:00
|
|
|
|
2018-01-22 22:59:27 +01:00
|
|
|
// select someone by name in any network
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($contact)) {
|
2018-01-22 22:37:21 +01:00
|
|
|
$condition = ['name' => $name, 'uid' => $profile_uid];
|
2018-07-20 14:19:26 +02:00
|
|
|
$contact = DBA::selectFirst('contact', $fields, $condition);
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2016-01-07 23:43:16 +01:00
|
|
|
}
|
|
|
|
|
2018-07-24 23:48:47 +02:00
|
|
|
// Check if $contact has been successfully loaded
|
|
|
|
if (DBA::isResult($contact)) {
|
2018-01-22 22:37:21 +01:00
|
|
|
if (strlen($inform) && (isset($contact["notify"]) || isset($contact["id"]))) {
|
2016-01-07 23:43:16 +01:00
|
|
|
$inform .= ',';
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2016-01-07 23:43:16 +01:00
|
|
|
|
2018-01-22 22:37:21 +01:00
|
|
|
if (isset($contact["id"])) {
|
|
|
|
$inform .= 'cid:' . $contact["id"];
|
|
|
|
} elseif (isset($contact["notify"])) {
|
|
|
|
$inform .= $contact["notify"];
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2016-01-07 23:43:16 +01:00
|
|
|
|
2018-01-22 22:37:21 +01:00
|
|
|
$profile = $contact["url"];
|
|
|
|
$alias = $contact["alias"];
|
2019-10-15 15:01:17 +02:00
|
|
|
$newname = ($contact["name"] ?? '') ?: $contact["nick"];
|
2016-01-07 23:43:16 +01:00
|
|
|
}
|
|
|
|
|
2012-03-16 14:02:26 +01:00
|
|
|
//if there is an url for this persons profile
|
2017-06-08 04:00:59 +02:00
|
|
|
if (isset($profile) && ($newname != "")) {
|
2012-05-03 07:33:51 +02:00
|
|
|
$replaced = true;
|
2017-03-30 21:32:12 +02:00
|
|
|
// create profile link
|
2017-03-31 20:52:32 +02:00
|
|
|
$profile = str_replace(',', '%2c', $profile);
|
2017-10-31 20:33:23 +01:00
|
|
|
$newtag = $tag_type.'[url=' . $profile . ']' . $newname . '[/url]';
|
|
|
|
$body = str_replace($tag_type . $name, $newtag, $body);
|
2017-03-30 21:32:12 +02:00
|
|
|
// append tag to str_tags
|
2018-01-09 21:03:00 +01:00
|
|
|
if (!stristr($str_tags, $newtag)) {
|
2017-03-30 21:32:12 +02:00
|
|
|
if (strlen($str_tags)) {
|
2012-03-16 14:02:26 +01:00
|
|
|
$str_tags .= ',';
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2012-03-16 14:02:26 +01:00
|
|
|
$str_tags .= $newtag;
|
|
|
|
}
|
2014-08-25 14:09:56 +02:00
|
|
|
|
2017-03-31 20:51:18 +02:00
|
|
|
/*
|
|
|
|
* Status.Net seems to require the numeric ID URL in a mention if the person isn't
|
|
|
|
* subscribed to you. But the nickname URL is OK if they are. Grrr. We'll tag both.
|
|
|
|
*/
|
2019-01-07 18:51:48 +01:00
|
|
|
if (!empty($alias)) {
|
2017-03-31 20:51:18 +02:00
|
|
|
$newtag = '@[url=' . $alias . ']' . $newname . '[/url]';
|
2018-01-22 22:37:21 +01:00
|
|
|
if (!stripos($str_tags, '[url=' . $alias . ']')) {
|
2017-03-30 21:32:12 +02:00
|
|
|
if (strlen($str_tags)) {
|
2012-03-16 14:02:26 +01:00
|
|
|
$str_tags .= ',';
|
2017-03-30 21:32:12 +02:00
|
|
|
}
|
2012-03-16 14:02:26 +01:00
|
|
|
$str_tags .= $newtag;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-03-09 12:57:11 +01:00
|
|
|
}
|
2012-05-03 07:33:51 +02:00
|
|
|
|
2018-01-24 08:50:07 +01:00
|
|
|
return ['replaced' => $replaced, 'contact' => $contact];
|
2012-03-09 12:57:11 +01:00
|
|
|
}
|
2019-02-23 05:28:39 +01:00
|
|
|
|
|
|
|
function item_add_implicit_mentions(array $tags, array $thread_parent_contact, $thread_parent_id)
|
|
|
|
{
|
|
|
|
if (Config::get('system', 'disable_implicit_mentions')) {
|
|
|
|
// Add a tag if the parent contact is from ActivityPub or OStatus (This will notify them)
|
|
|
|
if (in_array($thread_parent_contact['network'], [Protocol::OSTATUS, Protocol::ACTIVITYPUB])) {
|
|
|
|
$contact = Term::TAG_CHARACTER[Term::MENTION] . '[url=' . $thread_parent_contact['url'] . ']' . $thread_parent_contact['nick'] . '[/url]';
|
|
|
|
if (!stripos(implode($tags), '[url=' . $thread_parent_contact['url'] . ']')) {
|
|
|
|
$tags[] = $contact;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$implicit_mentions = [
|
|
|
|
$thread_parent_contact['url'] => $thread_parent_contact['nick']
|
|
|
|
];
|
|
|
|
|
|
|
|
$parent_terms = Term::tagArrayFromItemId($thread_parent_id, [Term::MENTION, Term::IMPLICIT_MENTION]);
|
|
|
|
|
|
|
|
foreach ($parent_terms as $parent_term) {
|
|
|
|
$implicit_mentions[$parent_term['url']] = $parent_term['term'];
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($implicit_mentions as $url => $label) {
|
|
|
|
if ($url != \Friendica\Model\Profile::getMyURL() && !stripos(implode($tags), '[url=' . $url . ']')) {
|
|
|
|
$tags[] = Term::TAG_CHARACTER[Term::IMPLICIT_MENTION] . '[url=' . $url . ']' . $label . '[/url]';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $tags;
|
2019-02-23 15:25:21 +01:00
|
|
|
}
|