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