2019-10-22 20:48:46 -04:00
|
|
|
<?php
|
2020-02-09 09:45:36 -05:00
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 09:45:36 -05:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2019-10-22 20:48:46 -04:00
|
|
|
|
|
|
|
namespace Friendica\Content;
|
|
|
|
|
2022-03-02 01:59:07 -05:00
|
|
|
use Friendica\Content\Text\BBCode;
|
2022-10-10 08:30:07 -04:00
|
|
|
use Friendica\Content\Text\HTML;
|
2021-09-23 17:18:36 -04:00
|
|
|
use Friendica\Core\Hook;
|
|
|
|
use Friendica\Core\L10n;
|
2022-03-02 01:59:07 -05:00
|
|
|
use Friendica\Core\Logger;
|
2021-09-23 17:18:36 -04:00
|
|
|
use Friendica\Core\Protocol;
|
2022-10-09 17:16:36 -04:00
|
|
|
use Friendica\Core\System;
|
2020-06-10 10:13:32 -04:00
|
|
|
use Friendica\Database\DBA;
|
|
|
|
use Friendica\Model\Contact;
|
2022-03-02 01:59:07 -05:00
|
|
|
use Friendica\Model\Group;
|
2021-09-23 17:18:36 -04:00
|
|
|
use Friendica\Model\Item as ModelItem;
|
2022-05-10 14:18:24 -04:00
|
|
|
use Friendica\Model\Photo;
|
2020-06-10 10:13:32 -04:00
|
|
|
use Friendica\Model\Tag;
|
2021-01-21 02:16:41 -05:00
|
|
|
use Friendica\Model\Post;
|
2021-09-23 17:18:36 -04:00
|
|
|
use Friendica\Protocol\Activity;
|
2022-10-09 17:16:36 -04:00
|
|
|
use Friendica\Protocol\Diaspora;
|
2021-09-23 17:18:36 -04:00
|
|
|
use Friendica\Util\Profiler;
|
2022-05-10 14:18:24 -04:00
|
|
|
use Friendica\Util\Proxy;
|
2021-09-23 17:18:36 -04:00
|
|
|
use Friendica\Util\XML;
|
2019-10-22 20:48:46 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A content helper class for displaying items
|
|
|
|
*/
|
2020-02-09 09:45:36 -05:00
|
|
|
class Item
|
2019-10-22 20:48:46 -04:00
|
|
|
{
|
2021-09-23 17:18:36 -04:00
|
|
|
/** @var Activity */
|
|
|
|
private $activity;
|
|
|
|
/** @var L10n */
|
|
|
|
private $l10n;
|
|
|
|
/** @var Profiler */
|
|
|
|
private $profiler;
|
|
|
|
|
|
|
|
public function __construct(Profiler $profiler, Activity $activity, L10n $l10n)
|
|
|
|
{
|
|
|
|
$this->profiler = $profiler;
|
|
|
|
$this->activity = $activity;
|
|
|
|
$this->l10n = $l10n;
|
|
|
|
}
|
2022-03-02 01:59:07 -05:00
|
|
|
|
2019-10-22 20:48:46 -04:00
|
|
|
/**
|
|
|
|
* Return array with details for categories and folders for an item
|
|
|
|
*
|
|
|
|
* @param array $item
|
2021-08-12 01:28:47 -04:00
|
|
|
* @param int $uid
|
2019-10-22 20:48:46 -04:00
|
|
|
* @return [array, array]
|
|
|
|
*
|
|
|
|
* [
|
|
|
|
* [ // categories array
|
|
|
|
* {
|
|
|
|
* 'name': 'category name',
|
|
|
|
* 'removeurl': 'url to remove this category',
|
|
|
|
* 'first': 'is the first in this array? true/false',
|
|
|
|
* 'last': 'is the last in this array? true/false',
|
|
|
|
* } ,
|
|
|
|
* ....
|
|
|
|
* ],
|
|
|
|
* [ //folders array
|
|
|
|
* {
|
|
|
|
* 'name': 'folder name',
|
|
|
|
* 'removeurl': 'url to remove this folder',
|
|
|
|
* 'first': 'is the first in this array? true/false',
|
|
|
|
* 'last': 'is the last in this array? true/false',
|
|
|
|
* } ,
|
|
|
|
* ....
|
|
|
|
* ]
|
|
|
|
* ]
|
|
|
|
*/
|
2022-06-30 08:16:30 -04:00
|
|
|
public function determineCategoriesTerms(array $item, int $uid = 0): array
|
2019-10-22 20:48:46 -04:00
|
|
|
{
|
|
|
|
$categories = [];
|
|
|
|
$folders = [];
|
|
|
|
$first = true;
|
|
|
|
|
2021-08-12 12:04:01 -04:00
|
|
|
$uid = $item['uid'] ?: $uid;
|
2021-08-12 01:28:47 -04:00
|
|
|
|
2022-05-16 13:06:58 -04:00
|
|
|
if (empty($item['has-categories'])) {
|
2022-04-30 02:57:22 -04:00
|
|
|
return [$categories, $folders];
|
|
|
|
}
|
|
|
|
|
2021-08-12 01:28:47 -04:00
|
|
|
foreach (Post\Category::getArrayByURIId($item['uri-id'], $uid, Post\Category::CATEGORY) as $savedFolderName) {
|
2019-11-03 13:57:32 -05:00
|
|
|
if (!empty($item['author-link'])) {
|
|
|
|
$url = $item['author-link'] . "?category=" . rawurlencode($savedFolderName);
|
|
|
|
} else {
|
|
|
|
$url = '#';
|
|
|
|
}
|
2019-10-22 20:48:46 -04:00
|
|
|
$categories[] = [
|
|
|
|
'name' => $savedFolderName,
|
2019-11-03 10:34:58 -05:00
|
|
|
'url' => $url,
|
2021-08-12 12:04:01 -04:00
|
|
|
'removeurl' => local_user() == $uid ? 'filerm/' . $item['id'] . '?cat=' . rawurlencode($savedFolderName) : '',
|
2019-10-22 20:48:46 -04:00
|
|
|
'first' => $first,
|
|
|
|
'last' => false
|
|
|
|
];
|
|
|
|
$first = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($categories)) {
|
|
|
|
$categories[count($categories) - 1]['last'] = true;
|
|
|
|
}
|
|
|
|
|
2021-08-12 01:28:47 -04:00
|
|
|
if (local_user() == $uid) {
|
|
|
|
foreach (Post\Category::getArrayByURIId($item['uri-id'], $uid, Post\Category::FILE) as $savedFolderName) {
|
2019-10-22 20:48:46 -04:00
|
|
|
$folders[] = [
|
|
|
|
'name' => $savedFolderName,
|
|
|
|
'url' => "#",
|
2021-08-12 12:04:01 -04:00
|
|
|
'removeurl' => local_user() == $uid ? 'filerm/' . $item['id'] . '?term=' . rawurlencode($savedFolderName) : '',
|
2019-10-22 20:48:46 -04:00
|
|
|
'first' => $first,
|
|
|
|
'last' => false
|
|
|
|
];
|
|
|
|
$first = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count($folders)) {
|
|
|
|
$folders[count($folders) - 1]['last'] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return [$categories, $folders];
|
|
|
|
}
|
2020-06-10 10:13:32 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function removes the tag $tag from the text $body and replaces it with
|
|
|
|
* the appropriate link.
|
|
|
|
*
|
2022-06-30 08:16:30 -04:00
|
|
|
* @param string $body the text to replace the tag in
|
|
|
|
* @param int $profile_uid the user id to replace the tag for (0 = anyone)
|
|
|
|
* @param string $tag the tag to replace
|
|
|
|
* @param string $network The network of the post
|
2020-06-10 10:13:32 -04:00
|
|
|
*
|
2022-06-30 08:16:30 -04:00
|
|
|
* @return array|bool ['replaced' => $replaced, 'contact' => $contact] or "false" on if already replaced
|
2020-06-10 10:13:32 -04:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
|
|
|
*/
|
2022-06-30 08:16:30 -04:00
|
|
|
public static function replaceTag(string &$body, int $profile_uid, string $tag, string $network = '')
|
2020-06-10 10:13:32 -04:00
|
|
|
{
|
|
|
|
$replaced = false;
|
|
|
|
|
|
|
|
//is it a person tag?
|
|
|
|
if (Tag::isType($tag, Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION)) {
|
|
|
|
$tag_type = substr($tag, 0, 1);
|
|
|
|
//is it already replaced?
|
|
|
|
if (strpos($tag, '[url=')) {
|
|
|
|
return $replaced;
|
|
|
|
}
|
|
|
|
|
|
|
|
//get the person's name
|
|
|
|
$name = substr($tag, 1);
|
|
|
|
|
|
|
|
// Sometimes the tag detection doesn't seem to work right
|
|
|
|
// This is some workaround
|
|
|
|
$nameparts = explode(' ', $name);
|
|
|
|
$name = $nameparts[0];
|
|
|
|
|
|
|
|
// Try to detect the contact in various ways
|
2020-07-15 00:42:04 -04:00
|
|
|
if (strpos($name, 'http://') || strpos($name, '@')) {
|
2020-07-15 13:22:12 -04:00
|
|
|
$contact = Contact::getByURLForUser($name, $profile_uid);
|
2020-06-10 10:13:32 -04:00
|
|
|
} else {
|
|
|
|
$contact = false;
|
|
|
|
$fields = ['id', 'url', 'nick', 'name', 'alias', 'network', 'forum', 'prv'];
|
|
|
|
|
|
|
|
if (strrpos($name, '+')) {
|
|
|
|
// Is it in format @nick+number?
|
|
|
|
$tagcid = intval(substr($name, strrpos($name, '+') + 1));
|
|
|
|
$contact = DBA::selectFirst('contact', $fields, ['id' => $tagcid, 'uid' => $profile_uid]);
|
|
|
|
}
|
|
|
|
|
2020-07-09 18:22:26 -04:00
|
|
|
// select someone by nick in the current network
|
2020-06-10 10:13:32 -04:00
|
|
|
if (!DBA::isResult($contact) && ($network != '')) {
|
2020-07-09 18:22:26 -04:00
|
|
|
$condition = ["`nick` = ? AND `network` = ? AND `uid` = ?",
|
|
|
|
$name, $network, $profile_uid];
|
|
|
|
$contact = DBA::selectFirst('contact', $fields, $condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
// select someone by attag in the current network
|
|
|
|
if (!DBA::isResult($contact) && ($network != '')) {
|
|
|
|
$condition = ["`attag` = ? AND `network` = ? AND `uid` = ?",
|
|
|
|
$name, $network, $profile_uid];
|
2020-06-10 10:13:32 -04:00
|
|
|
$contact = DBA::selectFirst('contact', $fields, $condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
//select someone by name in the current network
|
|
|
|
if (!DBA::isResult($contact) && ($network != '')) {
|
|
|
|
$condition = ['name' => $name, 'network' => $network, 'uid' => $profile_uid];
|
|
|
|
$contact = DBA::selectFirst('contact', $fields, $condition);
|
|
|
|
}
|
|
|
|
|
2020-07-09 18:22:26 -04:00
|
|
|
// select someone by nick in any network
|
|
|
|
if (!DBA::isResult($contact)) {
|
|
|
|
$condition = ["`nick` = ? AND `uid` = ?", $name, $profile_uid];
|
|
|
|
$contact = DBA::selectFirst('contact', $fields, $condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
// select someone by attag in any network
|
2020-06-10 10:13:32 -04:00
|
|
|
if (!DBA::isResult($contact)) {
|
2020-07-09 18:22:26 -04:00
|
|
|
$condition = ["`attag` = ? AND `uid` = ?", $name, $profile_uid];
|
2020-06-10 10:13:32 -04:00
|
|
|
$contact = DBA::selectFirst('contact', $fields, $condition);
|
|
|
|
}
|
|
|
|
|
|
|
|
// select someone by name in any network
|
|
|
|
if (!DBA::isResult($contact)) {
|
|
|
|
$condition = ['name' => $name, 'uid' => $profile_uid];
|
|
|
|
$contact = DBA::selectFirst('contact', $fields, $condition);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if $contact has been successfully loaded
|
|
|
|
if (DBA::isResult($contact)) {
|
|
|
|
$profile = $contact['url'];
|
|
|
|
$newname = ($contact['name'] ?? '') ?: $contact['nick'];
|
|
|
|
}
|
|
|
|
|
|
|
|
//if there is an url for this persons profile
|
|
|
|
if (isset($profile) && ($newname != '')) {
|
|
|
|
$replaced = true;
|
|
|
|
// create profile link
|
|
|
|
$profile = str_replace(',', '%2c', $profile);
|
|
|
|
$newtag = $tag_type.'[url=' . $profile . ']' . $newname . '[/url]';
|
|
|
|
$body = str_replace($tag_type . $name, $newtag, $body);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ['replaced' => $replaced, 'contact' => $contact];
|
|
|
|
}
|
2021-09-23 17:18:36 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Render actions localized
|
|
|
|
*
|
2022-06-30 08:16:30 -04:00
|
|
|
* @param array $item
|
|
|
|
* @return void
|
2021-09-23 17:18:36 -04:00
|
|
|
* @throws ImagickException
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
*/
|
2022-06-30 08:16:30 -04:00
|
|
|
public function localize(array &$item)
|
2021-09-23 17:18:36 -04:00
|
|
|
{
|
|
|
|
$this->profiler->startRecording('rendering');
|
|
|
|
/// @todo The following functionality needs to be cleaned up.
|
|
|
|
if (!empty($item['verb'])) {
|
2022-06-30 08:16:30 -04:00
|
|
|
$xmlhead = '<?xml version="1.0" encoding="UTF-8" ?>';
|
2021-09-23 17:18:36 -04:00
|
|
|
|
|
|
|
if ($this->activity->match($item['verb'], Activity::TAG)) {
|
|
|
|
$fields = ['author-id', 'author-link', 'author-name', 'author-network',
|
|
|
|
'verb', 'object-type', 'resource-id', 'body', 'plink'];
|
|
|
|
$obj = Post::selectFirst($fields, ['uri' => $item['parent-uri']]);
|
|
|
|
if (!DBA::isResult($obj)) {
|
|
|
|
$this->profiler->stopRecording();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-06-30 08:16:30 -04:00
|
|
|
$author_arr = [
|
|
|
|
'uid' => 0,
|
|
|
|
'id' => $item['author-id'],
|
|
|
|
'network' => $item['author-network'],
|
|
|
|
'url' => $item['author-link'],
|
|
|
|
];
|
2021-09-23 17:18:36 -04:00
|
|
|
$author = '[url=' . Contact::magicLinkByContact($author_arr) . ']' . $item['author-name'] . '[/url]';
|
|
|
|
|
2022-06-30 08:16:30 -04:00
|
|
|
$author_arr = [
|
|
|
|
'uid' => 0,
|
|
|
|
'id' => $obj['author-id'],
|
|
|
|
'network' => $obj['author-network'],
|
|
|
|
'url' => $obj['author-link'],
|
|
|
|
];
|
2021-09-23 17:18:36 -04:00
|
|
|
$objauthor = '[url=' . Contact::magicLinkByContact($author_arr) . ']' . $obj['author-name'] . '[/url]';
|
|
|
|
|
|
|
|
switch ($obj['verb']) {
|
|
|
|
case Activity::POST:
|
|
|
|
switch ($obj['object-type']) {
|
|
|
|
case Activity\ObjectType::EVENT:
|
|
|
|
$post_type = $this->l10n->t('event');
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$post_type = $this->l10n->t('status');
|
|
|
|
}
|
|
|
|
break;
|
2022-06-30 08:16:30 -04:00
|
|
|
|
2021-09-23 17:18:36 -04:00
|
|
|
default:
|
|
|
|
if ($obj['resource-id']) {
|
|
|
|
$post_type = $this->l10n->t('photo');
|
|
|
|
$m=[]; preg_match("/\[url=([^]]*)\]/", $obj['body'], $m);
|
|
|
|
$rr['plink'] = $m[1];
|
|
|
|
} else {
|
|
|
|
$post_type = $this->l10n->t('status');
|
|
|
|
}
|
|
|
|
// Let's break everthing ... ;-)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$plink = '[url=' . $obj['plink'] . ']' . $post_type . '[/url]';
|
|
|
|
|
|
|
|
$parsedobj = XML::parseString($xmlhead . $item['object']);
|
|
|
|
|
|
|
|
$tag = sprintf('#[url=%s]%s[/url]', $parsedobj->id, $parsedobj->content);
|
|
|
|
$item['body'] = $this->l10n->t('%1$s tagged %2$s\'s %3$s with %4$s', $author, $objauthor, $plink, $tag);
|
|
|
|
}
|
|
|
|
}
|
2022-05-05 03:57:52 -04:00
|
|
|
|
2021-09-23 17:18:36 -04:00
|
|
|
$this->profiler->stopRecording();
|
|
|
|
}
|
|
|
|
|
2022-06-30 08:16:30 -04:00
|
|
|
/**
|
|
|
|
* Renders photo menu based on item
|
|
|
|
*
|
|
|
|
* @param array $item
|
|
|
|
* @param string $formSecurityToken
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function photoMenu(array $item, string $formSecurityToken): string
|
2021-09-23 17:18:36 -04:00
|
|
|
{
|
|
|
|
$this->profiler->startRecording('rendering');
|
2022-08-09 13:21:42 -04:00
|
|
|
$sub_link = $contact_url = $pm_url = $status_link = '';
|
2022-06-30 08:16:30 -04:00
|
|
|
$photos_link = $posts_link = $block_link = $ignore_link = '';
|
2021-09-23 17:18:36 -04:00
|
|
|
|
|
|
|
if (local_user() && local_user() == $item['uid'] && $item['gravity'] == GRAVITY_PARENT && !$item['self'] && !$item['mention']) {
|
|
|
|
$sub_link = 'javascript:doFollowThread(' . $item['id'] . '); return false;';
|
|
|
|
}
|
|
|
|
|
2022-06-30 08:16:30 -04:00
|
|
|
$author = [
|
|
|
|
'uid' => 0,
|
|
|
|
'id' => $item['author-id'],
|
|
|
|
'network' => $item['author-network'],
|
|
|
|
'url' => $item['author-link'],
|
|
|
|
];
|
2021-09-23 17:18:36 -04:00
|
|
|
$profile_link = Contact::magicLinkByContact($author, $item['author-link']);
|
|
|
|
$sparkle = (strpos($profile_link, 'redir/') === 0);
|
|
|
|
|
|
|
|
$cid = 0;
|
|
|
|
$pcid = $item['author-id'];
|
|
|
|
$network = '';
|
|
|
|
$rel = 0;
|
2022-05-03 17:51:56 -04:00
|
|
|
$condition = ['uid' => local_user(), 'uri-id' => $item['author-uri-id']];
|
2021-09-23 17:18:36 -04:00
|
|
|
$contact = DBA::selectFirst('contact', ['id', 'network', 'rel'], $condition);
|
|
|
|
if (DBA::isResult($contact)) {
|
|
|
|
$cid = $contact['id'];
|
|
|
|
$network = $contact['network'];
|
|
|
|
$rel = $contact['rel'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($sparkle) {
|
|
|
|
$status_link = $profile_link . '/status';
|
|
|
|
$photos_link = str_replace('/profile/', '/photos/', $profile_link);
|
|
|
|
$profile_link = $profile_link . '/profile';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($pcid)) {
|
|
|
|
$contact_url = 'contact/' . $pcid;
|
|
|
|
$posts_link = $contact_url . '/posts';
|
|
|
|
$block_link = $item['self'] ? '' : $contact_url . '/block?t=' . $formSecurityToken;
|
|
|
|
$ignore_link = $item['self'] ? '' : $contact_url . '/ignore?t=' . $formSecurityToken;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($cid && !$item['self']) {
|
|
|
|
$contact_url = 'contact/' . $cid;
|
|
|
|
$posts_link = $contact_url . '/posts';
|
|
|
|
|
|
|
|
if (in_array($network, [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA])) {
|
|
|
|
$pm_url = 'message/new/' . $cid;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (local_user()) {
|
|
|
|
$menu = [
|
|
|
|
$this->l10n->t('Follow Thread') => $sub_link,
|
|
|
|
$this->l10n->t('View Status') => $status_link,
|
|
|
|
$this->l10n->t('View Profile') => $profile_link,
|
|
|
|
$this->l10n->t('View Photos') => $photos_link,
|
|
|
|
$this->l10n->t('Network Posts') => $posts_link,
|
|
|
|
$this->l10n->t('View Contact') => $contact_url,
|
|
|
|
$this->l10n->t('Send PM') => $pm_url,
|
|
|
|
$this->l10n->t('Block') => $block_link,
|
|
|
|
$this->l10n->t('Ignore') => $ignore_link
|
|
|
|
];
|
|
|
|
|
|
|
|
if (!empty($item['language'])) {
|
|
|
|
$menu[$this->l10n->t('Languages')] = 'javascript:alert(\'' . ModelItem::getLanguageMessage($item) . '\');';
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((($cid == 0) || ($rel == Contact::FOLLOWER)) &&
|
|
|
|
in_array($item['network'], Protocol::FEDERATED)) {
|
|
|
|
$menu[$this->l10n->t('Connect/Follow')] = 'follow?url=' . urlencode($item['author-link']) . '&auto=1';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$menu = [$this->l10n->t('View Profile') => $item['author-link']];
|
|
|
|
}
|
|
|
|
|
|
|
|
$args = ['item' => $item, 'menu' => $menu];
|
|
|
|
|
|
|
|
Hook::callAll('item_photo_menu', $args);
|
|
|
|
|
|
|
|
$menu = $args['menu'];
|
|
|
|
|
|
|
|
$o = '';
|
|
|
|
foreach ($menu as $k => $v) {
|
|
|
|
if (strpos($v, 'javascript:') === 0) {
|
|
|
|
$v = substr($v, 11);
|
|
|
|
$o .= '<li role="menuitem"><a onclick="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
|
|
|
|
} elseif ($v) {
|
|
|
|
$o .= '<li role="menuitem"><a href="' . $v . '">' . $k . '</a></li>' . PHP_EOL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->profiler->stopRecording();
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2022-06-30 08:16:30 -04:00
|
|
|
/**
|
|
|
|
* Checks if the activity is visible to current user
|
|
|
|
*
|
|
|
|
* @param array $item Activity item
|
|
|
|
* @return bool Whether the item is visible to the user
|
|
|
|
*/
|
|
|
|
public function isVisibleActivity(array $item): bool
|
|
|
|
{
|
|
|
|
// Empty verb or hidden?
|
2021-09-23 17:18:36 -04:00
|
|
|
if (empty($item['verb']) || $this->activity->isHidden($item['verb'])) {
|
|
|
|
return false;
|
|
|
|
}
|
2022-03-02 01:59:07 -05:00
|
|
|
|
2022-06-30 08:16:30 -04:00
|
|
|
// Check conditions
|
|
|
|
return (!($this->activity->match($item['verb'], Activity::FOLLOW) &&
|
2021-09-23 17:18:36 -04:00
|
|
|
$item['object-type'] === Activity\ObjectType::NOTE &&
|
|
|
|
empty($item['self']) &&
|
2022-06-30 08:16:30 -04:00
|
|
|
$item['uid'] == local_user())
|
|
|
|
);
|
2021-09-23 17:18:36 -04:00
|
|
|
}
|
2022-03-02 01:59:07 -05:00
|
|
|
|
2022-06-30 08:16:30 -04:00
|
|
|
public function expandTags(array $item, bool $setPermissions = false): array
|
2022-03-02 01:59:07 -05:00
|
|
|
{
|
|
|
|
// Look for any tags and linkify them
|
|
|
|
$item['inform'] = '';
|
|
|
|
$private_forum = false;
|
|
|
|
$private_id = null;
|
|
|
|
$only_to_forum = false;
|
|
|
|
$forum_contact = [];
|
2022-03-05 01:14:30 -05:00
|
|
|
$receivers = [];
|
2022-03-02 01:59:07 -05:00
|
|
|
|
|
|
|
// Convert mentions in the body to a unified format
|
|
|
|
$item['body'] = BBCode::setMentions($item['body'], $item['uid'], $item['network']);
|
|
|
|
|
|
|
|
// Search for forum mentions
|
|
|
|
foreach (Tag::getFromBody($item['body'], Tag::TAG_CHARACTER[Tag::MENTION] . Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION]) as $tag) {
|
|
|
|
$contact = Contact::getByURLForUser($tag[2], $item['uid']);
|
2022-06-08 01:35:34 -04:00
|
|
|
if (empty($contact)) {
|
|
|
|
continue;
|
|
|
|
}
|
2022-03-05 01:14:30 -05:00
|
|
|
|
|
|
|
$receivers[] = $contact['id'];
|
|
|
|
|
2022-03-02 01:59:07 -05:00
|
|
|
if (!empty($item['inform'])) {
|
|
|
|
$item['inform'] .= ',';
|
|
|
|
}
|
|
|
|
$item['inform'] .= 'cid:' . $contact['id'];
|
|
|
|
|
|
|
|
if (($item['gravity'] == GRAVITY_COMMENT) || empty($contact['cid']) || ($contact['contact-type'] != Contact::TYPE_COMMUNITY)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($contact['prv']) || ($tag[1] == Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION])) {
|
|
|
|
$private_forum = $contact['prv'];
|
|
|
|
$only_to_forum = ($tag[1] == Tag::TAG_CHARACTER[Tag::EXCLUSIVE_MENTION]);
|
|
|
|
$private_id = $contact['id'];
|
|
|
|
$forum_contact = $contact;
|
|
|
|
Logger::info('Private forum or exclusive mention', ['url' => $tag[2], 'mention' => $tag[1]]);
|
|
|
|
} elseif ($item['allow_cid'] == '<' . $contact['id'] . '>') {
|
|
|
|
$private_forum = false;
|
|
|
|
$only_to_forum = true;
|
|
|
|
$private_id = $contact['id'];
|
|
|
|
$forum_contact = $contact;
|
|
|
|
Logger::info('Public forum', ['url' => $tag[2], 'mention' => $tag[1]]);
|
|
|
|
} else {
|
|
|
|
Logger::info('Post with forum mention will not be converted to a forum post', ['url' => $tag[2], 'mention' => $tag[1]]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Logger::info('Got inform', ['inform' => $item['inform']]);
|
|
|
|
|
|
|
|
if (($item['gravity'] == GRAVITY_PARENT) && !empty($forum_contact) && ($private_forum || $only_to_forum)) {
|
|
|
|
// we tagged a forum in a top level post. Now we change the post
|
|
|
|
$item['private'] = $private_forum ? ModelItem::PRIVATE : ModelItem::UNLISTED;
|
|
|
|
|
|
|
|
if ($only_to_forum) {
|
|
|
|
$item['postopts'] = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$item['deny_cid'] = '';
|
|
|
|
$item['deny_gid'] = '';
|
|
|
|
|
|
|
|
if ($private_forum) {
|
|
|
|
$item['allow_cid'] = '<' . $private_id . '>';
|
|
|
|
$item['allow_gid'] = '<' . Group::getIdForForum($forum_contact['id']) . '>';
|
|
|
|
} else {
|
|
|
|
$item['allow_cid'] = '';
|
|
|
|
$item['allow_gid'] = '';
|
|
|
|
}
|
2022-03-05 01:14:30 -05:00
|
|
|
} elseif ($setPermissions && ($item['gravity'] == GRAVITY_PARENT)) {
|
|
|
|
if (empty($receivers)) {
|
|
|
|
// For security reasons direct posts without any receiver will be posts to yourself
|
|
|
|
$self = Contact::selectFirst(['id'], ['uid' => $item['uid'], 'self' => true]);
|
|
|
|
$receivers[] = $self['id'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$item['private'] = ModelItem::PRIVATE;
|
|
|
|
$item['allow_cid'] = '';
|
|
|
|
$item['allow_gid'] = '';
|
|
|
|
$item['deny_cid'] = '';
|
|
|
|
$item['deny_gid'] = '';
|
|
|
|
|
|
|
|
foreach ($receivers as $receiver) {
|
|
|
|
$item['allow_cid'] .= '<' . $receiver . '>';
|
|
|
|
}
|
2022-03-02 01:59:07 -05:00
|
|
|
}
|
|
|
|
return $item;
|
|
|
|
}
|
2022-05-10 14:18:24 -04:00
|
|
|
|
|
|
|
public function getAuthorAvatar(array $item): string
|
|
|
|
{
|
|
|
|
if (in_array($item['network'], [Protocol::FEED, Protocol::MAIL])) {
|
|
|
|
$author_avatar = $item['contact-id'];
|
|
|
|
$author_updated = '';
|
|
|
|
$author_thumb = $item['contact-avatar'];
|
|
|
|
} else {
|
|
|
|
$author_avatar = $item['author-id'];
|
|
|
|
$author_updated = $item['author-updated'];
|
|
|
|
$author_thumb = $item['author-avatar'];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (empty($author_thumb) || Photo::isPhotoURI($author_thumb)) {
|
|
|
|
$author_thumb = Contact::getAvatarUrlForId($author_avatar, Proxy::SIZE_THUMB, $author_updated);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $author_thumb;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getOwnerAvatar(array $item): string
|
|
|
|
{
|
|
|
|
if (in_array($item['network'], [Protocol::FEED, Protocol::MAIL])) {
|
|
|
|
$owner_avatar = $item['contact-id'];
|
|
|
|
$owner_updated = '';
|
|
|
|
$owner_thumb = $item['contact-avatar'];
|
|
|
|
} else {
|
|
|
|
$owner_avatar = $item['owner-id'];
|
|
|
|
$owner_updated = $item['owner-updated'];
|
|
|
|
$owner_thumb = $item['owner-avatar'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($owner_thumb) || Photo::isPhotoURI($owner_thumb)) {
|
|
|
|
$owner_thumb = Contact::getAvatarUrlForId($owner_avatar, Proxy::SIZE_THUMB, $owner_updated);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $owner_thumb;
|
|
|
|
}
|
2022-10-09 17:16:36 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a share block for the given url
|
|
|
|
*
|
|
|
|
* @param string $url
|
|
|
|
* @param integer $uid
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function createSharedPostByUrl(string $url, int $uid = 0): string
|
|
|
|
{
|
|
|
|
if (!empty($uid)) {
|
|
|
|
$id = ModelItem::searchByLink($url, $uid);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (empty($id)) {
|
|
|
|
$id = ModelItem::fetchByLink($url);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$id) {
|
|
|
|
Logger::notice('Post could not be fetched.', ['url' => $url, 'uid' => $uid, 'callstack' => System::callstack()]);
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
Logger::debug('Fetched shared post', ['id' => $id, 'url' => $url, 'uid' => $uid, 'callstack' => System::callstack()]);
|
|
|
|
|
|
|
|
$shared_item = Post::selectFirst(['uri-id', 'uri', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink', 'network'], ['id' => $id]);
|
|
|
|
if (!DBA::isResult($shared_item)) {
|
|
|
|
Logger::warning('Post does not exist.', ['id' => $id, 'url' => $url, 'uid' => $uid]);
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->createSharedBlockByArray($shared_item);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a share block for the given uri-id
|
|
|
|
*
|
|
|
|
* @param integer $UriId
|
|
|
|
* @param integer $uid
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function createSharedPostByUriId(int $UriId, int $uid = 0): string
|
|
|
|
{
|
|
|
|
$fields = ['uri-id', 'uri', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink', 'network'];
|
|
|
|
$shared_item = Post::selectFirst($fields, ['uri-id' => $UriId, 'uid' => [$uid, 0], 'private' => [ModelItem::PUBLIC, ModelItem::UNLISTED]]);
|
|
|
|
if (!DBA::isResult($shared_item)) {
|
|
|
|
Logger::notice('Post does not exist.', ['uri-id' => $UriId, 'uid' => $uid]);
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->createSharedBlockByArray($shared_item);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a share block for the given guid
|
|
|
|
*
|
|
|
|
* @param string $guid
|
|
|
|
* @param integer $uid
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function createSharedPostByGuid(string $guid, int $uid = 0, string $host = ''): string
|
|
|
|
{
|
|
|
|
$fields = ['uri-id', 'uri', 'body', 'title', 'author-name', 'author-link', 'author-avatar', 'guid', 'created', 'plink', 'network'];
|
|
|
|
$shared_item = Post::selectFirst($fields, ['guid' => $guid, 'uid' => [$uid, 0], 'private' => [ModelItem::PUBLIC, ModelItem::UNLISTED]]);
|
|
|
|
|
|
|
|
if (!DBA::isResult($shared_item) && !empty($host) && Diaspora::storeByGuid($guid, $host, true)) {
|
|
|
|
Logger::debug('Fetched post', ['guid' => $guid, 'host' => $host, 'uid' => $uid]);
|
|
|
|
$shared_item = Post::selectFirst($fields, ['guid' => $guid, 'uid' => [$uid, 0], 'private' => [ModelItem::PUBLIC, ModelItem::UNLISTED]]);
|
|
|
|
} elseif (DBA::isResult($shared_item)) {
|
|
|
|
Logger::debug('Found existing post', ['guid' => $guid, 'host' => $host, 'uid' => $uid]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!DBA::isResult($shared_item)) {
|
|
|
|
Logger::notice('Post does not exist.', ['guid' => $guid, 'host' => $host, 'uid' => $uid]);
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->createSharedBlockByArray($shared_item);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a share block for the given item array
|
|
|
|
*
|
|
|
|
* @param array $item
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function createSharedBlockByArray(array $item): string
|
|
|
|
{
|
|
|
|
if (!in_array($item['network'] ?? '', Protocol::FEDERATED)) {
|
|
|
|
$item['uri'] = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$shared_content = BBCode::getShareOpeningTag($item['author-name'], $item['author-link'], $item['author-avatar'], $item['plink'], $item['created'], $item['guid'], $item['uri']);
|
|
|
|
|
|
|
|
if (!empty($item['title'])) {
|
|
|
|
$shared_content .= '[h3]' . $item['title'] . "[/h3]\n";
|
|
|
|
}
|
|
|
|
|
2022-10-11 16:10:39 -04:00
|
|
|
$shared = BBCode::fetchShareAttributes($item['body']);
|
|
|
|
|
2022-10-11 17:39:28 -04:00
|
|
|
$item['body'] = Post\Media::addAttachmentsToBody($item['uri-id'], $item['body'], [Post\Media::IMAGE]);
|
2022-10-11 16:10:39 -04:00
|
|
|
|
2022-10-09 17:16:36 -04:00
|
|
|
// If it is a reshared post then reformat it to avoid display problems with two share elements
|
|
|
|
if (Diaspora::isReshare($item['body'], false)) {
|
2022-10-11 16:48:47 -04:00
|
|
|
if (!empty($shared['guid']) && ($encaspulated_share = self::createSharedPostByGuid($shared['guid']))) {
|
|
|
|
$item['body'] = preg_replace("/\[share.*?\](.*)\[\/share\]/ism", $encaspulated_share, $item['body']);
|
2022-10-11 16:10:39 -04:00
|
|
|
}
|
|
|
|
|
2022-10-10 08:30:07 -04:00
|
|
|
$item['body'] = HTML::toBBCode(BBCode::convertForUriId($item['uri-id'], $item['body'], BBCode::ACTIVITYPUB));
|
2022-10-09 17:16:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$shared_content .= $item['body'] . '[/share]';
|
|
|
|
|
|
|
|
return $shared_content;
|
|
|
|
}
|
2019-10-22 20:48:46 -04:00
|
|
|
}
|