2012-08-10 11:46:39 -04:00
|
|
|
<?php
|
2017-11-16 13:05:41 -05:00
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 10:18:46 -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/>.
|
|
|
|
*
|
2017-11-16 13:05:41 -05:00
|
|
|
*/
|
2020-02-09 10:18:46 -05:00
|
|
|
|
2017-11-19 16:50:49 -05:00
|
|
|
namespace Friendica\Object;
|
2017-11-16 15:54:03 -05:00
|
|
|
|
2018-01-09 22:42:04 -05:00
|
|
|
use Friendica\Content\ContactSelector;
|
2019-02-08 23:07:36 -05:00
|
|
|
use Friendica\Content\Feature;
|
2018-01-17 13:42:40 -05:00
|
|
|
use Friendica\Core\Addon;
|
2018-12-26 01:06:24 -05:00
|
|
|
use Friendica\Core\Hook;
|
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-25 18:24:17 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2019-10-24 18:10:20 -04:00
|
|
|
use Friendica\Core\Session;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2017-12-07 09:05:23 -05:00
|
|
|
use Friendica\Model\Contact;
|
2018-07-07 14:14:16 -04:00
|
|
|
use Friendica\Model\Item;
|
2022-05-09 00:26:00 -04:00
|
|
|
use Friendica\Model\Photo;
|
2021-01-16 08:12:41 -05:00
|
|
|
use Friendica\Model\Post as PostModel;
|
2020-04-26 11:24:58 -04:00
|
|
|
use Friendica\Model\Tag;
|
2019-02-21 15:42:00 -05:00
|
|
|
use Friendica\Model\User;
|
2019-10-22 20:05:11 -04:00
|
|
|
use Friendica\Protocol\Activity;
|
2018-11-05 03:37:03 -05:00
|
|
|
use Friendica\Util\Crypto;
|
2018-01-26 21:38:34 -05:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2021-06-29 16:26:58 -04:00
|
|
|
use Friendica\Util\Proxy;
|
2018-11-08 10:46:50 -05:00
|
|
|
use Friendica\Util\Strings;
|
2018-02-03 12:25:58 -05:00
|
|
|
use Friendica\Util\Temporal;
|
2017-11-06 21:22:52 -05:00
|
|
|
|
2012-08-10 11:46:39 -04:00
|
|
|
/**
|
|
|
|
* An item
|
|
|
|
*/
|
2019-12-15 17:28:01 -05:00
|
|
|
class Post
|
2017-11-16 15:54:03 -05:00
|
|
|
{
|
2018-01-15 08:05:12 -05:00
|
|
|
private $data = [];
|
2012-08-10 13:57:39 -04:00
|
|
|
private $template = null;
|
2018-01-15 08:05:12 -05:00
|
|
|
private $available_templates = [
|
2012-08-10 13:57:39 -04:00
|
|
|
'wall' => 'wall_thread.tpl',
|
|
|
|
'wall2wall' => 'wallwall_thread.tpl'
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2012-08-12 10:02:47 -04:00
|
|
|
private $comment_box_template = 'comment_item.tpl';
|
2012-08-11 11:09:35 -04:00
|
|
|
private $toplevel = false;
|
2012-08-17 10:40:41 -04:00
|
|
|
private $writable = false;
|
2018-12-07 00:50:16 -05:00
|
|
|
/**
|
|
|
|
* @var Post[]
|
|
|
|
*/
|
2018-01-15 08:05:12 -05:00
|
|
|
private $children = [];
|
2012-08-11 11:39:11 -04:00
|
|
|
private $parent = null;
|
2018-12-07 00:50:16 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Thread
|
|
|
|
*/
|
2017-12-07 09:05:23 -05:00
|
|
|
private $thread = null;
|
2012-08-12 10:18:53 -04:00
|
|
|
private $redirect_url = null;
|
2012-08-12 11:20:38 -04:00
|
|
|
private $owner_url = '';
|
|
|
|
private $owner_name = '';
|
|
|
|
private $wall_to_wall = false;
|
2012-08-23 04:54:21 -04:00
|
|
|
private $threaded = false;
|
2012-09-10 04:14:30 -04:00
|
|
|
private $visiting = false;
|
2012-08-10 11:46:39 -04:00
|
|
|
|
2017-11-19 14:15:25 -05:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param array $data data array
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2017-11-19 14:15:25 -05:00
|
|
|
*/
|
2017-12-07 23:33:36 -05:00
|
|
|
public function __construct(array $data)
|
2017-11-16 15:54:03 -05:00
|
|
|
{
|
2012-08-10 11:46:39 -04:00
|
|
|
$this->data = $data;
|
2017-11-16 15:54:03 -05:00
|
|
|
$this->setTemplate('wall');
|
2018-01-01 17:04:45 -05:00
|
|
|
$this->toplevel = $this->getId() == $this->getDataValue('parent');
|
2012-09-10 04:14:30 -04:00
|
|
|
|
2019-09-25 18:24:17 -04:00
|
|
|
if (!empty(Session::getUserIDForVisitorContactID($this->getDataValue('contact-id')))) {
|
|
|
|
$this->visiting = true;
|
2012-09-10 04:14:30 -04:00
|
|
|
}
|
2014-07-21 18:36:20 -04:00
|
|
|
|
2018-01-01 17:04:45 -05:00
|
|
|
$this->writable = $this->getDataValue('writable') || $this->getDataValue('self');
|
2018-07-02 01:41:55 -04:00
|
|
|
$author = ['uid' => 0, 'id' => $this->getDataValue('author-id'),
|
|
|
|
'network' => $this->getDataValue('author-network'),
|
|
|
|
'url' => $this->getDataValue('author-link')];
|
2019-02-21 21:29:22 -05:00
|
|
|
$this->redirect_url = Contact::magicLinkByContact($author);
|
2017-11-28 13:54:39 -05:00
|
|
|
if (!$this->isToplevel()) {
|
2012-08-23 04:54:21 -04:00
|
|
|
$this->threaded = true;
|
2016-12-22 05:21:50 -05:00
|
|
|
}
|
2012-08-23 04:54:21 -04:00
|
|
|
|
2012-08-11 11:39:11 -04:00
|
|
|
// Prepare the children
|
2018-04-23 00:02:18 -04:00
|
|
|
if (!empty($data['children'])) {
|
2016-12-22 05:21:50 -05:00
|
|
|
foreach ($data['children'] as $item) {
|
2018-01-01 17:04:45 -05:00
|
|
|
// Only add will be displayed
|
2018-08-11 16:40:44 -04:00
|
|
|
if ($item['network'] === Protocol::MAIL && local_user() != $item['uid']) {
|
2012-08-12 11:46:02 -04:00
|
|
|
continue;
|
2021-09-23 17:18:36 -04:00
|
|
|
} elseif (!DI::contentItem()->visibleActivity($item)) {
|
2012-08-12 11:46:02 -04:00
|
|
|
continue;
|
|
|
|
}
|
2016-12-22 05:21:50 -05:00
|
|
|
|
2018-01-18 15:16:14 -05:00
|
|
|
// You can always comment on Diaspora and OStatus items
|
2018-08-11 16:40:44 -04:00
|
|
|
if (in_array($item['network'], [Protocol::OSTATUS, Protocol::DIASPORA]) && (local_user() == $item['uid'])) {
|
2017-09-08 01:36:00 -04:00
|
|
|
$item['writable'] = true;
|
|
|
|
}
|
|
|
|
|
2013-01-13 12:51:19 -05:00
|
|
|
$item['pagedrop'] = $data['pagedrop'];
|
2017-12-07 23:36:33 -05:00
|
|
|
$child = new Post($item);
|
2017-11-16 15:54:03 -05:00
|
|
|
$this->addChild($child);
|
2012-08-12 10:26:37 -04:00
|
|
|
}
|
2012-08-11 11:39:11 -04:00
|
|
|
}
|
2012-08-10 11:46:39 -04:00
|
|
|
}
|
|
|
|
|
2022-02-20 14:25:55 -05:00
|
|
|
/**
|
|
|
|
* Fetch the privacy of the post
|
|
|
|
*
|
2022-05-08 06:32:29 -04:00
|
|
|
* @param array $item
|
|
|
|
* @return string
|
2022-02-20 14:25:55 -05:00
|
|
|
*/
|
|
|
|
private function fetchPrivacy(array $item):string
|
|
|
|
{
|
|
|
|
switch ($item['private']) {
|
|
|
|
case Item::PRIVATE:
|
|
|
|
$output = DI::l10n()->t('Private Message');
|
|
|
|
break;
|
|
|
|
case Item::PUBLIC:
|
|
|
|
$output = DI::l10n()->t('Public Message');
|
|
|
|
break;
|
|
|
|
case Item::UNLISTED:
|
|
|
|
$output = DI::l10n()->t('Unlisted Message');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
2012-08-10 11:46:39 -04:00
|
|
|
/**
|
|
|
|
* Get data in a form usable by a conversation template
|
|
|
|
*
|
2018-12-07 00:50:16 -05:00
|
|
|
* @param array $conv_responses conversation responses
|
2021-09-12 15:20:12 -04:00
|
|
|
* @param string $formSecurityToken A security Token to avoid CSF attacks
|
2017-11-19 14:15:25 -05:00
|
|
|
* @param integer $thread_level default = 1
|
|
|
|
*
|
|
|
|
* @return mixed The data requested on success
|
|
|
|
* false on failure
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2012-08-10 11:46:39 -04:00
|
|
|
*/
|
2021-09-12 15:20:12 -04:00
|
|
|
public function getTemplateData(array $conv_responses, string $formSecurityToken, $thread_level = 1)
|
2017-11-16 15:54:03 -05:00
|
|
|
{
|
|
|
|
$item = $this->getData();
|
2016-09-03 06:48:51 -04:00
|
|
|
$edited = false;
|
2017-09-28 02:01:31 -04:00
|
|
|
// If the time between "created" and "edited" differs we add
|
|
|
|
// a notice that the post was edited.
|
2017-09-27 08:15:45 -04:00
|
|
|
// Note: In some networks reshared items seem to have (sometimes) a difference
|
|
|
|
// between creation time and edit time of a second. Thats why we add the notice
|
|
|
|
// only if the difference is more than 1 second.
|
2017-09-28 02:01:31 -04:00
|
|
|
if (strtotime($item['edited']) - strtotime($item['created']) > 1) {
|
2018-01-15 08:05:12 -05:00
|
|
|
$edited = [
|
2020-01-18 14:52:34 -05:00
|
|
|
'label' => DI::l10n()->t('This entry was edited'),
|
2018-01-26 21:38:34 -05:00
|
|
|
'date' => DateTimeFormat::local($item['edited'], 'r'),
|
2018-02-03 12:25:58 -05:00
|
|
|
'relative' => Temporal::getRelativeDate($item['edited'])
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2016-09-03 06:48:51 -04:00
|
|
|
}
|
2012-08-10 13:57:39 -04:00
|
|
|
$sparkle = '';
|
2020-02-13 20:42:15 -05:00
|
|
|
$buttons = [
|
2020-10-11 04:49:47 -04:00
|
|
|
'like' => null,
|
|
|
|
'dislike' => null,
|
|
|
|
'share' => null,
|
|
|
|
'announce' => null,
|
2020-02-13 20:42:15 -05:00
|
|
|
];
|
2012-08-10 13:57:39 -04:00
|
|
|
$dropping = false;
|
2019-11-07 01:53:18 -05:00
|
|
|
$pinned = '';
|
2019-11-07 00:39:15 -05:00
|
|
|
$pin = false;
|
2012-08-10 13:57:39 -04:00
|
|
|
$star = false;
|
2014-09-03 18:58:52 -04:00
|
|
|
$ignore = false;
|
2019-11-07 00:39:15 -05:00
|
|
|
$ispinned = "unpinned";
|
2012-08-10 13:57:39 -04:00
|
|
|
$isstarred = "unstarred";
|
|
|
|
$indent = '';
|
2012-11-09 11:13:59 -05:00
|
|
|
$shiny = '';
|
2012-08-10 13:57:39 -04:00
|
|
|
$osparkle = '';
|
2017-11-16 15:54:03 -05:00
|
|
|
$total_children = $this->countDescendants();
|
2012-08-10 13:57:39 -04:00
|
|
|
|
2017-12-07 09:05:23 -05:00
|
|
|
$conv = $this->getThread();
|
2012-08-11 12:12:35 -04:00
|
|
|
|
2022-02-20 14:25:55 -05:00
|
|
|
$privacy = $this->fetchPrivacy($item);
|
|
|
|
$lock = ($item['private'] == Item::PRIVATE) ? $privacy : false;
|
|
|
|
$connector = !in_array($item['network'], Protocol::NATIVE_SUPPORT) ? DI::l10n()->t('Connector Message') : false;
|
2022-01-09 12:17:34 -05:00
|
|
|
|
2020-03-02 02:57:23 -05:00
|
|
|
$shareable = in_array($conv->getProfileOwner(), [0, local_user()]) && $item['private'] != Item::PRIVATE;
|
2020-10-11 15:58:28 -04:00
|
|
|
$announceable = $shareable && in_array($item['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::TWITTER]);
|
2017-12-19 12:15:56 -05:00
|
|
|
|
2020-10-11 17:45:49 -04:00
|
|
|
// On Diaspora only toplevel posts can be reshared
|
|
|
|
if ($announceable && ($item['network'] == Protocol::DIASPORA) && ($item['gravity'] != GRAVITY_PARENT)) {
|
|
|
|
$announceable = false;
|
|
|
|
}
|
|
|
|
|
2018-11-18 15:13:46 -05:00
|
|
|
$edpost = false;
|
|
|
|
|
2018-11-17 17:56:28 -05:00
|
|
|
if (local_user()) {
|
2021-07-24 07:49:11 -04:00
|
|
|
if (Strings::compareLink(Session::get('my_url'), $item['author-link'])) {
|
2018-11-17 17:56:28 -05:00
|
|
|
if ($item["event-id"] != 0) {
|
2020-01-18 14:52:34 -05:00
|
|
|
$edpost = ["events/event/" . $item['event-id'], DI::l10n()->t("Edit")];
|
2018-11-17 17:56:28 -05:00
|
|
|
} else {
|
2020-01-18 14:52:34 -05:00
|
|
|
$edpost = ["editpost/" . $item['id'], DI::l10n()->t("Edit")];
|
2018-11-17 17:56:28 -05:00
|
|
|
}
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2018-01-07 06:59:54 -05:00
|
|
|
$dropping = in_array($item['uid'], [0, local_user()]);
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
|
|
|
|
2018-01-05 08:48:06 -05:00
|
|
|
// Editing on items of not subscribed users isn't currently possible
|
|
|
|
// There are some issues on editing that prevent this.
|
|
|
|
// But also it is an issue of the supported protocols that doesn't allow editing at all.
|
|
|
|
if ($item['uid'] == 0) {
|
|
|
|
$edpost = false;
|
|
|
|
}
|
|
|
|
|
2017-11-16 15:54:03 -05:00
|
|
|
if (($this->getDataValue('uid') == local_user()) || $this->isVisiting()) {
|
2012-08-10 13:57:39 -04:00
|
|
|
$dropping = true;
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2012-08-10 13:57:39 -04:00
|
|
|
|
2021-02-17 13:59:19 -05:00
|
|
|
$origin = $item['origin'] || $item['parent-origin'];
|
|
|
|
|
2022-04-07 17:52:25 -04:00
|
|
|
if (!empty($item['featured'])) {
|
2021-05-10 10:47:58 -04:00
|
|
|
$pinned = DI::l10n()->t('Pinned item');
|
2018-05-15 17:06:34 -04:00
|
|
|
}
|
|
|
|
|
2021-03-24 18:22:14 -04:00
|
|
|
// Showing the one or the other text, depending upon if we can only hide it or really delete it.
|
|
|
|
$delete = $origin ? DI::l10n()->t('Delete globally') : DI::l10n()->t('Remove locally');
|
2018-05-15 17:06:34 -04:00
|
|
|
|
2020-09-13 19:50:39 -04:00
|
|
|
$drop = false;
|
2021-01-20 18:44:02 -05:00
|
|
|
$block = false;
|
2020-09-13 19:50:39 -04:00
|
|
|
if (local_user()) {
|
|
|
|
$drop = [
|
|
|
|
'dropping' => $dropping,
|
|
|
|
'pagedrop' => $item['pagedrop'],
|
2021-05-04 08:45:27 -04:00
|
|
|
'select' => DI::l10n()->t('Select'),
|
|
|
|
'delete' => $delete,
|
2020-09-13 19:50:39 -04:00
|
|
|
];
|
2021-05-04 08:45:27 -04:00
|
|
|
}
|
|
|
|
|
2022-04-19 17:04:55 -04:00
|
|
|
if (!$item['self'] && local_user()) {
|
2021-01-20 18:44:02 -05:00
|
|
|
$block = [
|
|
|
|
'blocking' => true,
|
|
|
|
'block' => DI::l10n()->t('Block %s', $item['author-name']),
|
|
|
|
'author_id' => $item['author-id'],
|
|
|
|
];
|
2018-05-15 17:06:34 -04:00
|
|
|
}
|
|
|
|
|
2021-08-12 01:28:47 -04:00
|
|
|
$filer = local_user() ? DI::l10n()->t('Save to folder') : false;
|
2012-08-10 13:57:39 -04:00
|
|
|
|
2018-11-25 13:56:26 -05:00
|
|
|
$profile_name = $item['author-name'];
|
2018-06-24 06:48:29 -04:00
|
|
|
if (!empty($item['author-link']) && empty($item['author-name'])) {
|
2012-08-10 13:57:39 -04:00
|
|
|
$profile_name = $item['author-link'];
|
2016-12-22 05:21:50 -05:00
|
|
|
}
|
2012-08-10 13:57:39 -04:00
|
|
|
|
2019-09-28 14:09:11 -04:00
|
|
|
if (Session::isAuthenticated()) {
|
2021-02-17 13:59:19 -05:00
|
|
|
$author = ['uid' => 0, 'id' => $item['author-id'],
|
|
|
|
'network' => $item['author-network'], 'url' => $item['author-link']];
|
2019-02-21 21:29:22 -05:00
|
|
|
$profile_link = Contact::magicLinkByContact($author);
|
2018-10-24 10:20:10 -04:00
|
|
|
} else {
|
|
|
|
$profile_link = $item['author-link'];
|
|
|
|
}
|
|
|
|
|
2018-06-01 02:46:34 -04:00
|
|
|
if (strpos($profile_link, 'redir/') === 0) {
|
2012-08-10 13:57:39 -04:00
|
|
|
$sparkle = ' sparkle';
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2012-08-10 13:57:39 -04:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$locate = ['location' => $item['location'], 'coord' => $item['coord'], 'html' => ''];
|
2018-12-26 01:06:24 -05:00
|
|
|
Hook::callAll('render_location', $locate);
|
2020-09-13 19:33:57 -04:00
|
|
|
$location_html = $locate['html'] ?: Strings::escapeHtml($locate['location'] ?: $locate['coord'] ?: '');
|
2012-08-10 13:57:39 -04:00
|
|
|
|
2015-06-01 07:57:45 -04:00
|
|
|
// process action responses - e.g. like/dislike/attend/agree/whatever
|
2019-04-02 01:38:42 -04:00
|
|
|
$response_verbs = ['like', 'dislike', 'announce'];
|
2017-11-16 15:54:03 -05:00
|
|
|
|
2018-01-01 17:04:45 -05:00
|
|
|
$isevent = false;
|
|
|
|
$attend = [];
|
2019-10-24 18:10:20 -04:00
|
|
|
if ($item['object-type'] === Activity\ObjectType::EVENT) {
|
2015-06-01 07:57:45 -04:00
|
|
|
$response_verbs[] = 'attendyes';
|
|
|
|
$response_verbs[] = 'attendno';
|
|
|
|
$response_verbs[] = 'attendmaybe';
|
2017-11-19 14:15:25 -05:00
|
|
|
if ($conv->isWritable()) {
|
2015-06-03 14:57:30 -04:00
|
|
|
$isevent = true;
|
2020-01-18 14:52:34 -05:00
|
|
|
$attend = [DI::l10n()->t('I will attend'), DI::l10n()->t('I will not attend'), DI::l10n()->t('I might attend')];
|
2015-06-03 14:57:30 -04:00
|
|
|
}
|
2015-06-01 07:57:45 -04:00
|
|
|
}
|
2015-06-03 14:57:30 -04:00
|
|
|
|
2020-02-22 20:41:12 -05:00
|
|
|
$responses = [];
|
|
|
|
foreach ($response_verbs as $value => $verb) {
|
|
|
|
$responses[$verb] = [
|
2021-01-27 05:01:42 -05:00
|
|
|
'self' => $conv_responses[$verb][$item['uri-id']]['self'] ?? 0,
|
2021-09-23 17:18:36 -04:00
|
|
|
'output' => !empty($conv_responses[$verb][$item['uri-id']]) ? DI::conversation()->formatActivity($conv_responses[$verb][$item['uri-id']]['links'], $verb, $item['uri-id']) : '',
|
2020-02-22 20:41:12 -05:00
|
|
|
];
|
2015-06-01 07:57:45 -04:00
|
|
|
}
|
|
|
|
|
2012-08-12 11:20:38 -04:00
|
|
|
/*
|
|
|
|
* We should avoid doing this all the time, but it depends on the conversation mode
|
|
|
|
* And the conv mode may change when we change the conv, or it changes its mode
|
|
|
|
* Maybe we should establish a way to be notified about conversation changes
|
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
$this->checkWallToWall();
|
2013-01-27 17:25:04 -05:00
|
|
|
|
2017-11-16 15:54:03 -05:00
|
|
|
if ($this->isWallToWall() && ($this->getOwnerUrl() == $this->getRedirectUrl())) {
|
2012-08-12 11:20:38 -04:00
|
|
|
$osparkle = ' sparkle';
|
2016-12-22 05:21:50 -05:00
|
|
|
}
|
2013-01-27 17:25:04 -05:00
|
|
|
|
2018-01-01 17:04:45 -05:00
|
|
|
$tagger = '';
|
|
|
|
|
2017-11-16 15:54:03 -05:00
|
|
|
if ($this->isToplevel()) {
|
2021-08-12 01:28:47 -04:00
|
|
|
if (local_user()) {
|
2021-01-31 18:37:34 -05:00
|
|
|
$ignored = PostModel\ThreadUser::getIgnored($item['uri-id'], local_user());
|
2021-02-28 06:20:02 -05:00
|
|
|
if ($item['mention'] || $ignored) {
|
|
|
|
$ignore = [
|
2021-05-10 10:47:58 -04:00
|
|
|
'do' => DI::l10n()->t('Ignore thread'),
|
|
|
|
'undo' => DI::l10n()->t('Unignore thread'),
|
|
|
|
'toggle' => DI::l10n()->t('Toggle ignore status'),
|
2021-02-28 06:20:02 -05:00
|
|
|
'classdo' => $ignored ? "hidden" : "",
|
|
|
|
'classundo' => $ignored ? "" : "hidden",
|
2021-05-10 10:47:58 -04:00
|
|
|
'ignored' => DI::l10n()->t('Ignored'),
|
2021-02-28 06:20:02 -05:00
|
|
|
];
|
|
|
|
}
|
2018-08-08 16:32:11 -04:00
|
|
|
|
2021-08-12 01:28:47 -04:00
|
|
|
$isstarred = (($item['starred']) ? "starred" : "unstarred");
|
|
|
|
|
|
|
|
$star = [
|
|
|
|
'do' => DI::l10n()->t('Add star'),
|
|
|
|
'undo' => DI::l10n()->t('Remove star'),
|
|
|
|
'toggle' => DI::l10n()->t('Toggle star status'),
|
|
|
|
'classdo' => $item['starred'] ? "hidden" : "",
|
|
|
|
'classundo' => $item['starred'] ? "" : "hidden",
|
|
|
|
'starred' => DI::l10n()->t('Starred'),
|
|
|
|
];
|
|
|
|
|
2018-11-23 01:25:38 -05:00
|
|
|
if ($conv->getProfileOwner() == local_user() && ($item['uid'] != 0)) {
|
2022-06-04 02:11:32 -04:00
|
|
|
if ($origin && in_array($item['private'], [Item::PUBLIC, Item::UNLISTED])) {
|
2022-04-07 17:52:25 -04:00
|
|
|
$ispinned = ($item['featured'] ? 'pinned' : 'unpinned');
|
2019-11-07 00:39:15 -05:00
|
|
|
|
|
|
|
$pin = [
|
2021-05-10 10:47:58 -04:00
|
|
|
'do' => DI::l10n()->t('Pin'),
|
|
|
|
'undo' => DI::l10n()->t('Unpin'),
|
|
|
|
'toggle' => DI::l10n()->t('Toggle pin status'),
|
2022-04-07 17:52:25 -04:00
|
|
|
'classdo' => $item['featured'] ? 'hidden' : '',
|
|
|
|
'classundo' => $item['featured'] ? '' : 'hidden',
|
2021-05-10 10:47:58 -04:00
|
|
|
'pinned' => DI::l10n()->t('Pinned'),
|
2019-11-07 00:39:15 -05:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2018-11-23 01:25:38 -05:00
|
|
|
$tagger = [
|
2021-05-10 10:47:58 -04:00
|
|
|
'add' => DI::l10n()->t('Add tag'),
|
2018-11-23 01:25:38 -05:00
|
|
|
'class' => "",
|
|
|
|
];
|
|
|
|
}
|
2012-08-10 13:57:39 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$indent = 'comment';
|
|
|
|
}
|
|
|
|
|
2017-11-19 14:15:25 -05:00
|
|
|
if ($conv->isWritable()) {
|
2021-05-10 10:47:58 -04:00
|
|
|
$buttons['like'] = [DI::l10n()->t("I like this \x28toggle\x29") , DI::l10n()->t('Like')];
|
|
|
|
$buttons['dislike'] = [DI::l10n()->t("I don't like this \x28toggle\x29"), DI::l10n()->t('Dislike')];
|
2016-12-22 05:21:50 -05:00
|
|
|
if ($shareable) {
|
2021-01-07 10:13:40 -05:00
|
|
|
$buttons['share'] = [DI::l10n()->t('Quote share this'), DI::l10n()->t('Quote Share')];
|
2020-10-11 04:49:47 -04:00
|
|
|
}
|
|
|
|
if ($announceable) {
|
2021-01-07 10:13:40 -05:00
|
|
|
$buttons['announce'] = [DI::l10n()->t('Reshare this'), DI::l10n()->t('Reshare')];
|
|
|
|
$buttons['unannounce'] = [DI::l10n()->t('Cancel your Reshare'), DI::l10n()->t('Unshare')];
|
2016-12-22 05:21:50 -05:00
|
|
|
}
|
2012-08-10 13:57:39 -04:00
|
|
|
}
|
|
|
|
|
2020-09-13 19:43:42 -04:00
|
|
|
$comment_html = $this->getCommentBox($indent);
|
2015-10-09 01:39:38 -04:00
|
|
|
|
2018-01-26 21:38:34 -05:00
|
|
|
if (strcmp(DateTimeFormat::utc($item['created']), DateTimeFormat::utc('now - 12 hours')) > 0) {
|
2012-11-09 11:13:59 -05:00
|
|
|
$shiny = 'shiny';
|
|
|
|
}
|
2012-08-10 13:57:39 -04:00
|
|
|
|
2021-09-23 17:18:36 -04:00
|
|
|
DI::contentItem()->localize($item);
|
2012-08-10 13:57:39 -04:00
|
|
|
|
2020-09-13 19:37:43 -04:00
|
|
|
$body_html = Item::prepareBody($item, true);
|
2012-08-10 13:57:39 -04:00
|
|
|
|
2021-08-12 01:28:47 -04:00
|
|
|
list($categories, $folders) = DI::contentItem()->determineCategoriesTerms($item, local_user());
|
2012-09-20 03:46:49 -04:00
|
|
|
|
2022-03-22 03:00:44 -04:00
|
|
|
if (!empty($item['title'])) {
|
2020-09-13 19:50:39 -04:00
|
|
|
$title = $item['title'];
|
2022-03-22 03:00:44 -04:00
|
|
|
} elseif (!empty($item['content-warning']) && DI::pConfig()->get(local_user(), 'system', 'disable_cw', false)) {
|
|
|
|
$title = ucfirst($item['content-warning']);
|
2022-03-22 03:07:33 -04:00
|
|
|
} else {
|
|
|
|
$title = '';
|
2018-04-04 22:50:39 -04:00
|
|
|
}
|
|
|
|
|
2020-02-19 22:20:26 -05:00
|
|
|
if (DI::pConfig()->get(local_user(), 'system', 'hide_dislike')) {
|
|
|
|
$buttons['dislike'] = false;
|
|
|
|
}
|
|
|
|
|
2014-03-01 18:50:06 -05:00
|
|
|
// Disable features that aren't available in several networks
|
2020-05-27 08:32:09 -04:00
|
|
|
if (!in_array($item["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA])) {
|
|
|
|
if ($buttons["dislike"]) {
|
|
|
|
$buttons["dislike"] = false;
|
|
|
|
}
|
|
|
|
|
2018-01-01 17:04:45 -05:00
|
|
|
$isevent = false;
|
2014-03-01 18:50:06 -05:00
|
|
|
$tagger = '';
|
|
|
|
}
|
|
|
|
|
2020-02-13 20:42:15 -05:00
|
|
|
if ($buttons["like"] && in_array($item["network"], [Protocol::FEED, Protocol::MAIL])) {
|
|
|
|
$buttons["like"] = false;
|
2016-12-22 05:21:50 -05:00
|
|
|
}
|
2014-03-01 18:50:06 -05:00
|
|
|
|
2020-05-01 02:01:22 -04:00
|
|
|
$tags = Tag::populateFromItem($item);
|
2018-07-24 07:51:50 -04:00
|
|
|
|
2019-11-29 01:24:02 -05:00
|
|
|
$ago = Temporal::getRelativeDate($item['created']);
|
2019-12-03 02:23:01 -05:00
|
|
|
$ago_received = Temporal::getRelativeDate($item['received']);
|
2020-01-19 15:21:13 -05:00
|
|
|
if (DI::config()->get('system', 'show_received') && (abs(strtotime($item['created']) - strtotime($item['received'])) > DI::config()->get('system', 'show_received_seconds')) && ($ago != $ago_received)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
$ago = DI::l10n()->t('%s (Received %s)', $ago, $ago_received);
|
2019-11-29 01:24:02 -05:00
|
|
|
}
|
|
|
|
|
2020-02-18 01:57:38 -05:00
|
|
|
// Fetching of Diaspora posts doesn't always work. There are issues with reshares and possibly comments
|
2021-05-23 06:39:11 -04:00
|
|
|
if (!local_user() && ($item['network'] != Protocol::DIASPORA) && !empty(Session::get('remote_comment'))) {
|
2021-05-10 10:47:58 -04:00
|
|
|
$remote_comment = [DI::l10n()->t('Comment this item on your system'), DI::l10n()->t('Remote comment'),
|
2020-02-18 12:31:02 -05:00
|
|
|
str_replace('{uri}', urlencode($item['uri']), Session::get('remote_comment'))];
|
2021-05-23 06:39:11 -04:00
|
|
|
|
|
|
|
// Ensure to either display the remote comment or the local activities
|
|
|
|
$buttons = [];
|
|
|
|
$comment_html = '';
|
2020-02-18 01:57:38 -05:00
|
|
|
} else {
|
|
|
|
$remote_comment = '';
|
|
|
|
}
|
|
|
|
|
2020-03-03 16:29:51 -05:00
|
|
|
$direction = [];
|
2020-08-23 09:26:23 -04:00
|
|
|
if (!empty($item['direction'])) {
|
|
|
|
$direction = $item['direction'];
|
2020-03-03 16:29:51 -05:00
|
|
|
}
|
|
|
|
|
2020-10-04 14:52:28 -04:00
|
|
|
$languages = [];
|
|
|
|
if (!empty($item['language'])) {
|
|
|
|
$languages = [DI::l10n()->t('Languages'), Item::getLanguageMessage($item)];
|
|
|
|
}
|
|
|
|
|
2022-04-19 17:04:55 -04:00
|
|
|
if (in_array($item['private'], [Item::PUBLIC, Item::UNLISTED]) && in_array($item['network'], Protocol::FEDERATED)) {
|
|
|
|
$browsershare = [DI::l10n()->t('Share via ...'), DI::l10n()->t('Share via external services')];
|
2022-04-20 08:03:09 -04:00
|
|
|
} else {
|
|
|
|
$browsershare = null;
|
2022-04-19 17:04:55 -04:00
|
|
|
}
|
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$tmp_item = [
|
2017-11-16 15:54:03 -05:00
|
|
|
'template' => $this->getTemplate(),
|
|
|
|
'type' => implode("", array_slice(explode("/", $item['verb']), -1)),
|
2021-05-10 18:59:09 -04:00
|
|
|
'comment_firstcollapsed' => false,
|
|
|
|
'comment_lastcollapsed' => false,
|
2020-01-19 15:21:13 -05:00
|
|
|
'suppress_tags' => DI::config()->get('system', 'suppress_tags'),
|
2018-07-24 07:51:50 -04:00
|
|
|
'tags' => $tags['tags'],
|
|
|
|
'hashtags' => $tags['hashtags'],
|
|
|
|
'mentions' => $tags['mentions'],
|
2019-02-22 23:03:32 -05:00
|
|
|
'implicit_mentions' => $tags['implicit_mentions'],
|
2020-01-18 14:52:34 -05:00
|
|
|
'txt_cats' => DI::l10n()->t('Categories:'),
|
|
|
|
'txt_folders' => DI::l10n()->t('Filed under:'),
|
2016-12-22 05:21:50 -05:00
|
|
|
'has_cats' => ((count($categories)) ? 'true' : ''),
|
|
|
|
'has_folders' => ((count($folders)) ? 'true' : ''),
|
|
|
|
'categories' => $categories,
|
|
|
|
'folders' => $folders,
|
2020-09-13 19:37:43 -04:00
|
|
|
'body_html' => $body_html,
|
2020-09-13 19:50:39 -04:00
|
|
|
'text' => strip_tags($body_html),
|
2017-11-16 15:54:03 -05:00
|
|
|
'id' => $this->getId(),
|
2016-12-22 05:21:50 -05:00
|
|
|
'guid' => urlencode($item['guid']),
|
|
|
|
'isevent' => $isevent,
|
|
|
|
'attend' => $attend,
|
2020-01-18 14:52:34 -05:00
|
|
|
'linktitle' => DI::l10n()->t('View %s\'s profile @ %s', $profile_name, $item['author-link']),
|
|
|
|
'olinktitle' => DI::l10n()->t('View %s\'s profile @ %s', $this->getOwnerName(), $item['owner-link']),
|
|
|
|
'to' => DI::l10n()->t('to'),
|
|
|
|
'via' => DI::l10n()->t('via'),
|
|
|
|
'wall' => DI::l10n()->t('Wall-to-Wall'),
|
|
|
|
'vwall' => DI::l10n()->t('via Wall-To-Wall:'),
|
2016-12-22 05:21:50 -05:00
|
|
|
'profile_url' => $profile_link,
|
2020-09-13 19:50:39 -04:00
|
|
|
'name' => $profile_name,
|
2021-09-23 17:18:36 -04:00
|
|
|
'item_photo_menu_html' => DI::contentItem()->photoMenu($item, $formSecurityToken),
|
2022-05-10 14:18:24 -04:00
|
|
|
'thumb' => DI::baseUrl()->remove(DI::contentItem()->getAuthorAvatar($item)),
|
2016-12-22 05:21:50 -05:00
|
|
|
'osparkle' => $osparkle,
|
|
|
|
'sparkle' => $sparkle,
|
2020-09-13 19:50:39 -04:00
|
|
|
'title' => $title,
|
2018-01-26 21:38:34 -05:00
|
|
|
'localtime' => DateTimeFormat::local($item['created'], 'r'),
|
2020-01-18 14:52:34 -05:00
|
|
|
'ago' => $item['app'] ? DI::l10n()->t('%s from %s', $ago, $item['app']) : $ago,
|
2016-12-22 05:21:50 -05:00
|
|
|
'app' => $item['app'],
|
2019-12-26 14:51:36 -05:00
|
|
|
'created' => $ago,
|
2016-12-22 05:21:50 -05:00
|
|
|
'lock' => $lock,
|
2022-02-20 14:25:55 -05:00
|
|
|
'private' => $item['private'],
|
|
|
|
'privacy' => $privacy,
|
2022-01-09 12:17:34 -05:00
|
|
|
'connector' => $connector,
|
2020-09-13 19:33:57 -04:00
|
|
|
'location_html' => $location_html,
|
2016-12-22 05:21:50 -05:00
|
|
|
'indent' => $indent,
|
|
|
|
'shiny' => $shiny,
|
2019-05-26 16:15:38 -04:00
|
|
|
'owner_self' => $item['author-link'] == Session::get('my_url'),
|
2017-11-16 15:54:03 -05:00
|
|
|
'owner_url' => $this->getOwnerUrl(),
|
2022-05-10 14:18:24 -04:00
|
|
|
'owner_photo' => DI::baseUrl()->remove(DI::contentItem()->getOwnerAvatar($item)),
|
2020-09-13 19:50:39 -04:00
|
|
|
'owner_name' => $this->getOwnerName(),
|
2018-11-07 07:19:39 -05:00
|
|
|
'plink' => Item::getPlink($item),
|
2022-04-19 17:04:55 -04:00
|
|
|
'browsershare' => $browsershare,
|
2018-11-18 15:13:46 -05:00
|
|
|
'edpost' => $edpost,
|
2019-11-07 00:39:15 -05:00
|
|
|
'ispinned' => $ispinned,
|
|
|
|
'pin' => $pin,
|
2019-11-07 01:53:18 -05:00
|
|
|
'pinned' => $pinned,
|
2016-12-22 05:21:50 -05:00
|
|
|
'isstarred' => $isstarred,
|
2018-11-18 15:13:46 -05:00
|
|
|
'star' => $star,
|
|
|
|
'ignore' => $ignore,
|
2016-12-22 05:21:50 -05:00
|
|
|
'tagger' => $tagger,
|
2018-11-18 15:13:46 -05:00
|
|
|
'filer' => $filer,
|
2020-10-04 14:52:28 -04:00
|
|
|
'language' => $languages,
|
2016-12-22 05:21:50 -05:00
|
|
|
'drop' => $drop,
|
2021-01-20 18:44:02 -05:00
|
|
|
'block' => $block,
|
2016-12-22 05:21:50 -05:00
|
|
|
'vote' => $buttons,
|
2020-09-13 19:44:11 -04:00
|
|
|
'like_html' => $responses['like']['output'],
|
|
|
|
'dislike_html' => $responses['dislike']['output'],
|
2016-12-22 05:21:50 -05:00
|
|
|
'responses' => $responses,
|
2020-01-18 14:52:34 -05:00
|
|
|
'switchcomment' => DI::l10n()->t('Comment'),
|
2020-09-13 19:50:39 -04:00
|
|
|
'reply_label' => DI::l10n()->t('Reply to %s', $profile_name),
|
2020-09-13 19:43:42 -04:00
|
|
|
'comment_html' => $comment_html,
|
2020-02-18 01:57:38 -05:00
|
|
|
'remote_comment' => $remote_comment,
|
2020-02-06 17:06:24 -05:00
|
|
|
'menu' => DI::l10n()->t('More'),
|
2018-01-01 17:04:45 -05:00
|
|
|
'previewing' => $conv->isPreview() ? ' preview ' : '',
|
2020-01-18 14:52:34 -05:00
|
|
|
'wait' => DI::l10n()->t('Please wait'),
|
2016-12-22 05:21:50 -05:00
|
|
|
'thread_level' => $thread_level,
|
|
|
|
'edited' => $edited,
|
2018-06-18 16:36:34 -04:00
|
|
|
'network' => $item["network"],
|
2022-04-29 03:47:24 -04:00
|
|
|
'network_name' => ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network'], $item['author-gsid']),
|
|
|
|
'network_icon' => ContactSelector::networkToIcon($item['network'], $item['author-link'], $item['author-gsid']),
|
2017-07-31 02:04:37 -04:00
|
|
|
'received' => $item['received'],
|
|
|
|
'commented' => $item['commented'],
|
|
|
|
'created_date' => $item['created'],
|
2020-08-13 16:07:13 -04:00
|
|
|
'uriid' => $item['uri-id'],
|
2019-12-15 19:33:13 -05:00
|
|
|
'return' => (DI::args()->getCommand()) ? bin2hex(DI::args()->getCommand()) : '',
|
2020-03-03 16:29:51 -05:00
|
|
|
'direction' => $direction,
|
2020-09-09 00:49:42 -04:00
|
|
|
'reshared' => $item['reshared'] ?? '',
|
2018-12-07 00:54:40 -05:00
|
|
|
'delivery' => [
|
|
|
|
'queue_count' => $item['delivery_queue_count'],
|
2019-08-20 03:39:13 -04:00
|
|
|
'queue_done' => $item['delivery_queue_done'] + $item['delivery_queue_failed'], /// @todo Possibly display it separately in the future
|
2020-01-18 14:52:34 -05:00
|
|
|
'notifier_pending' => DI::l10n()->t('Notifier task is pending'),
|
|
|
|
'delivery_pending' => DI::l10n()->t('Delivery to remote servers is pending'),
|
|
|
|
'delivery_underway' => DI::l10n()->t('Delivery to remote servers is underway'),
|
|
|
|
'delivery_almost' => DI::l10n()->t('Delivery to remote servers is mostly done'),
|
|
|
|
'delivery_done' => DI::l10n()->t('Delivery to remote servers is done'),
|
2018-12-07 00:54:40 -05:00
|
|
|
],
|
2018-01-15 08:05:12 -05:00
|
|
|
];
|
2012-08-10 13:57:39 -04:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$arr = ['item' => $item, 'output' => $tmp_item];
|
2018-12-26 01:06:24 -05:00
|
|
|
Hook::callAll('display_item', $arr);
|
2012-08-10 13:57:39 -04:00
|
|
|
|
2012-08-12 10:32:02 -04:00
|
|
|
$result = $arr['output'];
|
2012-08-10 13:57:39 -04:00
|
|
|
|
2018-01-15 08:05:12 -05:00
|
|
|
$result['children'] = [];
|
2017-11-16 15:54:03 -05:00
|
|
|
$children = $this->getChildren();
|
2012-08-11 13:58:57 -04:00
|
|
|
$nb_children = count($children);
|
2016-12-22 05:21:50 -05:00
|
|
|
if ($nb_children > 0) {
|
|
|
|
foreach ($children as $child) {
|
2021-09-12 15:20:12 -04:00
|
|
|
$result['children'][] = $child->getTemplateData($conv_responses, $formSecurityToken, $thread_level + 1);
|
2012-08-11 13:58:57 -04:00
|
|
|
}
|
2019-02-14 22:24:34 -05:00
|
|
|
|
2012-08-11 13:58:57 -04:00
|
|
|
// Collapse
|
2016-12-22 05:21:50 -05:00
|
|
|
if (($nb_children > 2) || ($thread_level > 1)) {
|
2012-08-12 10:32:02 -04:00
|
|
|
$result['children'][0]['comment_firstcollapsed'] = true;
|
2020-01-18 14:53:01 -05:00
|
|
|
$result['children'][0]['num_comments'] = DI::l10n()->tt('%d comment', '%d comments', $total_children);
|
2020-01-18 14:52:34 -05:00
|
|
|
$result['children'][0]['show_text'] = DI::l10n()->t('Show more');
|
|
|
|
$result['children'][0]['hide_text'] = DI::l10n()->t('Show fewer');
|
2016-12-22 05:21:50 -05:00
|
|
|
if ($thread_level > 1) {
|
2012-08-12 10:32:02 -04:00
|
|
|
$result['children'][$nb_children - 1]['comment_lastcollapsed'] = true;
|
2016-12-22 05:21:50 -05:00
|
|
|
} else {
|
2012-08-12 10:32:02 -04:00
|
|
|
$result['children'][$nb_children - 3]['comment_lastcollapsed'] = true;
|
2012-08-11 13:58:57 -04:00
|
|
|
}
|
|
|
|
}
|
2012-08-10 13:57:39 -04:00
|
|
|
}
|
2013-01-27 17:25:04 -05:00
|
|
|
|
2021-05-10 18:59:09 -04:00
|
|
|
$result['total_comments_num'] = $this->isToplevel() ? $total_children : 0;
|
2013-01-27 17:25:04 -05:00
|
|
|
|
2012-08-12 10:32:02 -04:00
|
|
|
$result['private'] = $item['private'];
|
2017-11-16 15:54:03 -05:00
|
|
|
$result['toplevel'] = ($this->isToplevel() ? 'toplevel_item' : '');
|
2012-08-10 13:57:39 -04:00
|
|
|
|
2017-11-16 15:54:03 -05:00
|
|
|
if ($this->isThreaded()) {
|
2012-08-12 10:32:02 -04:00
|
|
|
$result['flatten'] = false;
|
|
|
|
$result['threaded'] = true;
|
2016-12-22 05:21:50 -05:00
|
|
|
} else {
|
2012-08-12 10:32:02 -04:00
|
|
|
$result['flatten'] = true;
|
|
|
|
$result['threaded'] = false;
|
2012-08-10 13:57:39 -04:00
|
|
|
}
|
2012-08-10 11:46:39 -04:00
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
2014-07-21 18:36:20 -04:00
|
|
|
|
2017-11-19 14:15:25 -05:00
|
|
|
/**
|
|
|
|
* @return integer
|
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
public function getId()
|
|
|
|
{
|
|
|
|
return $this->getDataValue('id');
|
2012-08-10 13:57:39 -04:00
|
|
|
}
|
2012-08-11 11:39:11 -04:00
|
|
|
|
2017-11-19 14:15:25 -05:00
|
|
|
/**
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
public function isThreaded()
|
|
|
|
{
|
2012-08-23 04:54:21 -04:00
|
|
|
return $this->threaded;
|
|
|
|
}
|
|
|
|
|
2012-08-11 11:39:11 -04:00
|
|
|
/**
|
|
|
|
* Add a child item
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
2018-12-07 00:50:16 -05:00
|
|
|
* @param Post $item The child item to add
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return mixed
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2012-08-11 11:39:11 -04:00
|
|
|
*/
|
2017-12-07 23:36:33 -05:00
|
|
|
public function addChild(Post $item)
|
2017-11-16 15:54:03 -05:00
|
|
|
{
|
|
|
|
$item_id = $item->getId();
|
2016-12-22 05:21:50 -05:00
|
|
|
if (!$item_id) {
|
2021-11-03 19:19:24 -04:00
|
|
|
Logger::info('[ERROR] Post::addChild : Item has no ID!!');
|
2012-08-11 11:39:11 -04:00
|
|
|
return false;
|
2017-11-16 15:54:03 -05:00
|
|
|
} elseif ($this->getChild($item->getId())) {
|
2021-11-03 19:19:24 -04:00
|
|
|
Logger::info('[WARN] Post::addChild : Item already exists (' . $item->getId() . ').');
|
2012-08-11 11:39:11 -04:00
|
|
|
return false;
|
|
|
|
}
|
2019-10-22 20:05:11 -04:00
|
|
|
|
2019-12-15 17:28:01 -05:00
|
|
|
$activity = DI::activity();
|
2019-10-22 20:05:11 -04:00
|
|
|
|
2012-08-12 11:46:02 -04:00
|
|
|
/*
|
2012-08-18 11:56:38 -04:00
|
|
|
* Only add what will be displayed
|
2012-08-12 11:46:02 -04:00
|
|
|
*/
|
2018-08-11 16:40:44 -04:00
|
|
|
if ($item->getDataValue('network') === Protocol::MAIL && local_user() != $item->getDataValue('uid')) {
|
2012-08-12 11:46:02 -04:00
|
|
|
return false;
|
2019-10-23 18:25:43 -04:00
|
|
|
} elseif ($activity->match($item->getDataValue('verb'), Activity::LIKE) ||
|
|
|
|
$activity->match($item->getDataValue('verb'), Activity::DISLIKE)) {
|
2012-08-12 11:46:02 -04:00
|
|
|
return false;
|
|
|
|
}
|
2014-07-21 18:36:20 -04:00
|
|
|
|
2017-11-16 15:54:03 -05:00
|
|
|
$item->setParent($this);
|
2012-08-11 11:39:11 -04:00
|
|
|
$this->children[] = $item;
|
2017-11-16 15:54:03 -05:00
|
|
|
|
2012-08-11 11:39:11 -04:00
|
|
|
return end($this->children);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a child by its ID
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @param integer $id The child id
|
|
|
|
*
|
|
|
|
* @return mixed
|
2012-08-11 11:39:11 -04:00
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
public function getChild($id)
|
|
|
|
{
|
|
|
|
foreach ($this->getChildren() as $child) {
|
|
|
|
if ($child->getId() == $id) {
|
2012-08-11 11:39:11 -04:00
|
|
|
return $child;
|
2016-12-22 05:21:50 -05:00
|
|
|
}
|
2012-08-11 11:39:11 -04:00
|
|
|
}
|
2017-11-16 15:54:03 -05:00
|
|
|
|
2012-08-11 11:39:11 -04:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-11-19 14:15:25 -05:00
|
|
|
* Get all our children
|
|
|
|
*
|
2018-12-07 00:50:16 -05:00
|
|
|
* @return Post[]
|
2012-08-11 11:39:11 -04:00
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
public function getChildren()
|
|
|
|
{
|
2012-08-11 11:39:11 -04:00
|
|
|
return $this->children;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set our parent
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
2018-12-07 00:50:16 -05:00
|
|
|
* @param Post $item The item to set as parent
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return void
|
2012-08-11 11:39:11 -04:00
|
|
|
*/
|
2018-12-07 00:50:16 -05:00
|
|
|
protected function setParent(Post $item)
|
2017-11-16 15:54:03 -05:00
|
|
|
{
|
|
|
|
$parent = $this->getParent();
|
|
|
|
if ($parent) {
|
|
|
|
$parent->removeChild($this);
|
2012-08-11 11:39:11 -04:00
|
|
|
}
|
2017-11-16 15:54:03 -05:00
|
|
|
|
2012-08-11 11:39:11 -04:00
|
|
|
$this->parent = $item;
|
2017-12-07 09:05:23 -05:00
|
|
|
$this->setThread($item->getThread());
|
2012-08-11 12:12:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove our parent
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return void
|
2012-08-11 12:12:35 -04:00
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
protected function removeParent()
|
|
|
|
{
|
2012-08-11 12:12:35 -04:00
|
|
|
$this->parent = null;
|
2017-12-07 09:05:23 -05:00
|
|
|
$this->thread = null;
|
2012-08-11 11:39:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a child
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
2018-12-07 00:50:16 -05:00
|
|
|
* @param Post $item The child to be removed
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return boolean Success or failure
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2012-08-11 11:39:11 -04:00
|
|
|
*/
|
2018-12-07 00:50:16 -05:00
|
|
|
public function removeChild(Post $item)
|
2017-11-16 15:54:03 -05:00
|
|
|
{
|
|
|
|
$id = $item->getId();
|
|
|
|
foreach ($this->getChildren() as $key => $child) {
|
|
|
|
if ($child->getId() == $id) {
|
|
|
|
$child->removeParent();
|
2012-08-11 11:39:11 -04:00
|
|
|
unset($this->children[$key]);
|
|
|
|
// Reindex the array, in order to make sure there won't be any trouble on loops using count()
|
|
|
|
$this->children = array_values($this->children);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2021-11-03 19:19:24 -04:00
|
|
|
Logger::info('[WARN] Item::removeChild : Item is not a child (' . $id . ').');
|
2012-08-11 11:39:11 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get parent item
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return object
|
2012-08-11 11:39:11 -04:00
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
protected function getParent()
|
|
|
|
{
|
2012-08-11 11:39:11 -04:00
|
|
|
return $this->parent;
|
2012-08-11 11:09:35 -04:00
|
|
|
}
|
2012-08-10 11:46:39 -04:00
|
|
|
|
2012-08-11 12:12:35 -04:00
|
|
|
/**
|
2018-12-07 00:50:16 -05:00
|
|
|
* Set conversation thread
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
2018-12-07 00:50:16 -05:00
|
|
|
* @param Thread $thread
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return void
|
2012-08-11 12:12:35 -04:00
|
|
|
*/
|
2018-12-07 00:50:16 -05:00
|
|
|
public function setThread(Thread $thread = null)
|
2017-11-16 15:54:03 -05:00
|
|
|
{
|
2018-12-07 00:50:16 -05:00
|
|
|
$this->thread = $thread;
|
2012-08-11 12:12:35 -04:00
|
|
|
|
|
|
|
// Set it on our children too
|
2017-11-16 15:54:03 -05:00
|
|
|
foreach ($this->getChildren() as $child) {
|
2018-12-07 00:50:16 -05:00
|
|
|
$child->setThread($thread);
|
2016-12-22 05:21:50 -05:00
|
|
|
}
|
2012-08-11 12:12:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-11-19 14:15:25 -05:00
|
|
|
* Get conversation
|
|
|
|
*
|
2018-12-07 00:50:16 -05:00
|
|
|
* @return Thread
|
2012-08-11 12:12:35 -04:00
|
|
|
*/
|
2017-12-07 09:05:23 -05:00
|
|
|
public function getThread()
|
2017-11-16 15:54:03 -05:00
|
|
|
{
|
2017-12-07 09:05:23 -05:00
|
|
|
return $this->thread;
|
2012-08-11 12:12:35 -04:00
|
|
|
}
|
|
|
|
|
2012-08-10 11:46:39 -04:00
|
|
|
/**
|
|
|
|
* Get raw data
|
|
|
|
*
|
|
|
|
* We shouldn't need this
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return array
|
2012-08-10 11:46:39 -04:00
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
public function getData()
|
|
|
|
{
|
2012-08-10 11:46:39 -04:00
|
|
|
return $this->data;
|
|
|
|
}
|
2012-08-10 13:57:39 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a data value
|
|
|
|
*
|
2018-12-07 00:50:16 -05:00
|
|
|
* @param string $name key
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return mixed value on success
|
|
|
|
* false on failure
|
2012-08-10 13:57:39 -04:00
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
public function getDataValue($name)
|
|
|
|
{
|
2016-12-22 05:21:50 -05:00
|
|
|
if (!isset($this->data[$name])) {
|
2021-11-03 19:19:24 -04:00
|
|
|
// Logger::info('[ERROR] Item::getDataValue : Item has no value name "'. $name .'".');
|
2012-08-10 13:57:39 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->data[$name];
|
|
|
|
}
|
|
|
|
|
2012-08-11 10:56:10 -04:00
|
|
|
/**
|
|
|
|
* Set template
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
2018-12-07 00:50:16 -05:00
|
|
|
* @param string $name template name
|
|
|
|
* @return bool
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2012-08-11 10:56:10 -04:00
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
private function setTemplate($name)
|
|
|
|
{
|
2018-11-30 09:06:22 -05:00
|
|
|
if (empty($this->available_templates[$name])) {
|
2021-11-03 19:19:24 -04:00
|
|
|
Logger::info('[ERROR] Item::setTemplate : Template not available ("' . $name . '").');
|
2012-08-11 10:56:10 -04:00
|
|
|
return false;
|
2012-08-11 11:04:07 -04:00
|
|
|
}
|
2012-12-22 14:57:29 -05:00
|
|
|
|
2013-01-12 07:58:54 -05:00
|
|
|
$this->template = $this->available_templates[$name];
|
2018-12-07 00:50:16 -05:00
|
|
|
|
|
|
|
return true;
|
2012-08-11 10:56:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get template
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return object
|
2012-08-11 10:56:10 -04:00
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
private function getTemplate()
|
|
|
|
{
|
2012-08-11 10:56:10 -04:00
|
|
|
return $this->template;
|
|
|
|
}
|
2012-08-11 11:09:35 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if this is a toplevel post
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return boolean
|
2012-08-11 11:09:35 -04:00
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
private function isToplevel()
|
|
|
|
{
|
2012-08-11 11:09:35 -04:00
|
|
|
return $this->toplevel;
|
|
|
|
}
|
2012-08-11 11:15:19 -04:00
|
|
|
|
|
|
|
/**
|
2012-08-17 10:40:41 -04:00
|
|
|
* Check if this is writable
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return boolean
|
2012-08-11 11:15:19 -04:00
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
private function isWritable()
|
|
|
|
{
|
2017-12-07 09:05:23 -05:00
|
|
|
$conv = $this->getThread();
|
2012-09-10 04:14:30 -04:00
|
|
|
|
2016-12-22 05:21:50 -05:00
|
|
|
if ($conv) {
|
2012-09-10 04:14:30 -04:00
|
|
|
// This will allow us to comment on wall-to-wall items owned by our friends
|
|
|
|
// and community forums even if somebody else wrote the post.
|
2012-12-09 16:44:48 -05:00
|
|
|
// bug #517 - this fixes for conversation owner
|
2017-11-19 14:15:25 -05:00
|
|
|
if ($conv->getMode() == 'profile' && $conv->getProfileOwner() == local_user()) {
|
2016-12-22 05:21:50 -05:00
|
|
|
return true;
|
|
|
|
}
|
2012-12-09 16:44:48 -05:00
|
|
|
|
|
|
|
// this fixes for visitors
|
2017-11-19 14:15:25 -05:00
|
|
|
return ($this->writable || ($this->isVisiting() && $conv->getMode() == 'profile'));
|
2012-09-10 04:14:30 -04:00
|
|
|
}
|
2012-08-17 10:40:41 -04:00
|
|
|
return $this->writable;
|
2012-08-11 11:15:19 -04:00
|
|
|
}
|
2012-08-11 11:48:07 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Count the total of our descendants
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return integer
|
2012-08-11 11:48:07 -04:00
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
private function countDescendants()
|
|
|
|
{
|
|
|
|
$children = $this->getChildren();
|
2012-08-11 11:48:07 -04:00
|
|
|
$total = count($children);
|
2016-12-22 05:21:50 -05:00
|
|
|
if ($total > 0) {
|
|
|
|
foreach ($children as $child) {
|
2017-11-16 15:54:03 -05:00
|
|
|
$total += $child->countDescendants();
|
2012-08-11 11:48:07 -04:00
|
|
|
}
|
|
|
|
}
|
2017-11-16 15:54:03 -05:00
|
|
|
|
2012-08-11 11:48:07 -04:00
|
|
|
return $total;
|
|
|
|
}
|
2012-08-12 10:02:47 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the template for the comment box
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return string
|
2012-08-12 10:02:47 -04:00
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
private function getCommentBoxTemplate()
|
|
|
|
{
|
2012-08-12 10:02:47 -04:00
|
|
|
return $this->comment_box_template;
|
|
|
|
}
|
|
|
|
|
2019-01-28 16:22:03 -05:00
|
|
|
/**
|
|
|
|
* Get default text for the comment box
|
|
|
|
*
|
|
|
|
* @return string
|
2019-02-08 23:07:36 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2019-01-28 16:22:03 -05:00
|
|
|
*/
|
2019-01-28 16:53:13 -05:00
|
|
|
private function getDefaultText()
|
2019-01-28 16:22:03 -05:00
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = DI::app();
|
2019-02-06 02:30:31 -05:00
|
|
|
|
2019-02-21 15:42:00 -05:00
|
|
|
if (!local_user()) {
|
2019-02-08 23:07:36 -05:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2021-08-09 16:33:46 -04:00
|
|
|
$owner = User::getOwnerDataById($a->getLoggedInUserId());
|
2022-04-29 01:32:12 -04:00
|
|
|
$item = $this->getData();
|
2019-01-28 16:22:03 -05:00
|
|
|
|
2022-03-06 06:49:55 -05:00
|
|
|
if (!empty($item['content-warning']) && Feature::isEnabled(local_user(), 'add_abstract')) {
|
|
|
|
$text = '[abstract=' . Protocol::ACTIVITYPUB . ']' . $item['content-warning'] . "[/abstract]\n";
|
2019-01-29 22:36:24 -05:00
|
|
|
} else {
|
|
|
|
$text = '';
|
|
|
|
}
|
2019-01-28 16:22:03 -05:00
|
|
|
|
2022-03-06 06:49:55 -05:00
|
|
|
if (!Feature::isEnabled(local_user(), 'explicit_mentions')) {
|
|
|
|
return $text;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (($item['author-addr'] != $owner['addr']) && (($item['gravity'] != GRAVITY_PARENT) || !in_array($item['network'], [Protocol::DIASPORA]))) {
|
|
|
|
$text .= '@' . $item['author-addr'] . ' ';
|
|
|
|
}
|
|
|
|
|
2020-05-01 02:01:22 -04:00
|
|
|
$terms = Tag::getByURIId($item['uri-id'], [Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION]);
|
2019-01-28 16:22:03 -05:00
|
|
|
foreach ($terms as $term) {
|
2021-05-10 21:50:42 -04:00
|
|
|
if (!$term['url']) {
|
|
|
|
DI::logger()->warning('Mention term with no URL', ['term' => $term]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-07-15 13:06:48 -04:00
|
|
|
$profile = Contact::getByURL($term['url'], false, ['addr', 'contact-type']);
|
2021-05-10 21:50:42 -04:00
|
|
|
if (!empty($profile['addr']) && (($profile['contact-type'] ?? Contact::TYPE_UNKNOWN) != Contact::TYPE_COMMUNITY) &&
|
2019-02-21 15:42:00 -05:00
|
|
|
($profile['addr'] != $owner['addr']) && !strstr($text, $profile['addr'])) {
|
2019-01-28 16:22:03 -05:00
|
|
|
$text .= '@' . $profile['addr'] . ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $text;
|
|
|
|
}
|
|
|
|
|
2012-08-12 10:02:47 -04:00
|
|
|
/**
|
|
|
|
* Get the comment box
|
|
|
|
*
|
2017-11-19 14:15:25 -05:00
|
|
|
* @param string $indent Indent value
|
|
|
|
*
|
|
|
|
* @return mixed The comment box string (empty if no comment box)
|
|
|
|
* false on failure
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2012-08-12 10:02:47 -04:00
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
private function getCommentBox($indent)
|
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = DI::app();
|
2015-10-04 08:41:39 -04:00
|
|
|
|
2012-08-12 10:02:47 -04:00
|
|
|
$comment_box = '';
|
2017-12-07 09:05:23 -05:00
|
|
|
$conv = $this->getThread();
|
2012-08-12 10:02:47 -04:00
|
|
|
|
2017-11-19 14:15:25 -05:00
|
|
|
if ($conv->isWritable() && $this->isWritable()) {
|
2012-08-12 10:02:47 -04:00
|
|
|
/*
|
2018-01-17 14:22:38 -05:00
|
|
|
* Hmmm, code depending on the presence of a particular addon?
|
2012-08-12 10:02:47 -04:00
|
|
|
* This should be better if done by a hook
|
|
|
|
*/
|
2020-09-09 16:49:03 -04:00
|
|
|
$qcomment = null;
|
2018-10-24 10:20:10 -04:00
|
|
|
if (Addon::isEnabled('qcomment')) {
|
2020-09-09 16:49:03 -04:00
|
|
|
$words = DI::pConfig()->get(local_user(), 'qcomment', 'words');
|
|
|
|
$qcomment = $words ? explode("\n", $words) : [];
|
2012-08-12 10:02:47 -04:00
|
|
|
}
|
2017-11-16 15:54:03 -05:00
|
|
|
|
2018-01-07 12:14:43 -05:00
|
|
|
// Fetch the user id from the parent when the owner user is empty
|
|
|
|
$uid = $conv->getProfileOwner();
|
|
|
|
$parent_uid = $this->getDataValue('uid');
|
|
|
|
|
2022-04-29 01:32:12 -04:00
|
|
|
$owner = User::getOwnerDataById($a->getLoggedInUserId());
|
2021-07-24 07:49:11 -04:00
|
|
|
|
2019-01-28 16:53:13 -05:00
|
|
|
$default_text = $this->getDefaultText();
|
2019-01-28 16:22:03 -05:00
|
|
|
|
2018-01-10 16:08:23 -05:00
|
|
|
if (!is_null($parent_uid) && ($uid != $parent_uid)) {
|
2018-01-07 12:14:43 -05:00
|
|
|
$uid = $parent_uid;
|
|
|
|
}
|
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$template = Renderer::getMarkupTemplate($this->getCommentBoxTemplate());
|
2018-10-31 10:35:50 -04:00
|
|
|
$comment_box = Renderer::replaceMacros($template, [
|
2019-12-15 19:30:34 -05:00
|
|
|
'$return_path' => DI::args()->getQueryString(),
|
2017-11-16 15:54:03 -05:00
|
|
|
'$threaded' => $this->isThreaded(),
|
2016-12-22 05:21:50 -05:00
|
|
|
'$jsreload' => '',
|
2018-07-19 09:52:05 -04:00
|
|
|
'$wall' => ($conv->getMode() === 'profile'),
|
2017-11-16 15:54:03 -05:00
|
|
|
'$id' => $this->getId(),
|
|
|
|
'$parent' => $this->getId(),
|
2016-12-22 05:21:50 -05:00
|
|
|
'$qcomment' => $qcomment,
|
2019-01-28 16:22:03 -05:00
|
|
|
'$default' => $default_text,
|
2018-01-07 12:14:43 -05:00
|
|
|
'$profile_uid' => $uid,
|
2022-04-29 01:32:12 -04:00
|
|
|
'$mylink' => DI::baseUrl()->remove($owner['url'] ?? ''),
|
2020-01-18 14:52:34 -05:00
|
|
|
'$mytitle' => DI::l10n()->t('This is you'),
|
2022-04-29 01:32:12 -04:00
|
|
|
'$myphoto' => DI::baseUrl()->remove($owner['thumb'] ?? ''),
|
2020-01-18 14:52:34 -05:00
|
|
|
'$comment' => DI::l10n()->t('Comment'),
|
|
|
|
'$submit' => DI::l10n()->t('Submit'),
|
2020-02-11 23:45:47 -05:00
|
|
|
'$loading' => DI::l10n()->t('Loading...'),
|
2020-01-18 14:52:34 -05:00
|
|
|
'$edbold' => DI::l10n()->t('Bold'),
|
|
|
|
'$editalic' => DI::l10n()->t('Italic'),
|
|
|
|
'$eduline' => DI::l10n()->t('Underline'),
|
|
|
|
'$edquote' => DI::l10n()->t('Quote'),
|
|
|
|
'$edcode' => DI::l10n()->t('Code'),
|
|
|
|
'$edimg' => DI::l10n()->t('Image'),
|
|
|
|
'$edurl' => DI::l10n()->t('Link'),
|
|
|
|
'$edattach' => DI::l10n()->t('Link or Media'),
|
|
|
|
'$prompttext' => DI::l10n()->t('Please enter a image/video/audio/webpage URL:'),
|
|
|
|
'$preview' => DI::l10n()->t('Preview'),
|
2016-12-22 05:21:50 -05:00
|
|
|
'$indent' => $indent,
|
2018-11-05 03:37:03 -05:00
|
|
|
'$rand_num' => Crypto::randomDigits(12)
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2012-08-12 10:02:47 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return $comment_box;
|
|
|
|
}
|
2012-08-12 10:18:53 -04:00
|
|
|
|
2017-11-19 14:15:25 -05:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
private function getRedirectUrl()
|
|
|
|
{
|
2012-08-12 10:18:53 -04:00
|
|
|
return $this->redirect_url;
|
|
|
|
}
|
2012-08-12 11:20:38 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if we are a wall to wall item and set the relevant properties
|
2017-11-19 14:15:25 -05:00
|
|
|
*
|
|
|
|
* @return void
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2012-08-12 11:20:38 -04:00
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
protected function checkWallToWall()
|
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = DI::app();
|
2017-12-07 09:05:23 -05:00
|
|
|
$conv = $this->getThread();
|
2012-08-12 11:20:38 -04:00
|
|
|
$this->wall_to_wall = false;
|
2014-08-12 18:13:13 -04:00
|
|
|
|
2017-11-16 15:54:03 -05:00
|
|
|
if ($this->isToplevel()) {
|
2017-11-19 14:15:25 -05:00
|
|
|
if ($conv->getMode() !== 'profile') {
|
2021-07-24 07:49:11 -04:00
|
|
|
if ($this->getDataValue('owner-link')) {
|
2018-11-08 10:46:50 -05:00
|
|
|
$owner_linkmatch = (($this->getDataValue('owner-link')) && Strings::compareLink($this->getDataValue('owner-link'), $this->getDataValue('author-link')));
|
|
|
|
$alias_linkmatch = (($this->getDataValue('alias')) && Strings::compareLink($this->getDataValue('alias'), $this->getDataValue('author-link')));
|
2017-11-16 15:54:03 -05:00
|
|
|
$owner_namematch = (($this->getDataValue('owner-name')) && $this->getDataValue('owner-name') == $this->getDataValue('author-name'));
|
2014-08-25 08:09:56 -04:00
|
|
|
|
2018-07-02 01:41:55 -04:00
|
|
|
if (!$owner_linkmatch && !$alias_linkmatch && !$owner_namematch) {
|
2012-08-18 11:36:38 -04:00
|
|
|
// The author url doesn't match the owner (typically the contact)
|
2017-04-30 00:21:02 -04:00
|
|
|
// and also doesn't match the contact alias.
|
|
|
|
// The name match is a hack to catch several weird cases where URLs are
|
2012-08-18 11:36:38 -04:00
|
|
|
// all over the park. It can be tricked, but this prevents you from
|
|
|
|
// seeing "Bob Smith to Bob Smith via Wall-to-wall" and you know darn
|
2017-04-30 00:21:02 -04:00
|
|
|
// well that it's the same Bob Smith.
|
|
|
|
// But it could be somebody else with the same name. It just isn't highly likely.
|
2014-08-25 08:09:56 -04:00
|
|
|
|
2012-08-18 11:36:38 -04:00
|
|
|
|
2017-11-16 15:54:03 -05:00
|
|
|
$this->owner_name = $this->getDataValue('owner-name');
|
2012-08-18 11:36:38 -04:00
|
|
|
$this->wall_to_wall = true;
|
2018-07-02 01:41:55 -04:00
|
|
|
|
|
|
|
$owner = ['uid' => 0, 'id' => $this->getDataValue('owner-id'),
|
|
|
|
'network' => $this->getDataValue('owner-network'),
|
2018-07-02 17:15:54 -04:00
|
|
|
'url' => $this->getDataValue('owner-link')];
|
2019-02-21 21:29:22 -05:00
|
|
|
$this->owner_url = Contact::magicLinkByContact($owner);
|
2012-08-12 11:20:38 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-22 05:21:50 -05:00
|
|
|
if (!$this->wall_to_wall) {
|
2017-11-16 15:54:03 -05:00
|
|
|
$this->setTemplate('wall');
|
2012-08-12 11:20:38 -04:00
|
|
|
$this->owner_url = '';
|
|
|
|
$this->owner_name = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-19 14:15:25 -05:00
|
|
|
/**
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
private function isWallToWall()
|
|
|
|
{
|
2012-08-12 11:20:38 -04:00
|
|
|
return $this->wall_to_wall;
|
|
|
|
}
|
|
|
|
|
2017-11-19 14:15:25 -05:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
private function getOwnerUrl()
|
|
|
|
{
|
2012-08-12 11:20:38 -04:00
|
|
|
return $this->owner_url;
|
|
|
|
}
|
|
|
|
|
2017-11-19 14:15:25 -05:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
private function getOwnerName()
|
|
|
|
{
|
2012-08-12 11:20:38 -04:00
|
|
|
return $this->owner_name;
|
|
|
|
}
|
2012-09-10 04:14:30 -04:00
|
|
|
|
2017-11-19 14:15:25 -05:00
|
|
|
/**
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2017-11-16 15:54:03 -05:00
|
|
|
private function isVisiting()
|
|
|
|
{
|
2012-09-10 04:14:30 -04:00
|
|
|
return $this->visiting;
|
|
|
|
}
|
2012-08-10 11:46:39 -04:00
|
|
|
}
|