2012-08-10 15:46:39 +00:00
|
|
|
<?php
|
2017-11-16 18:05:41 +00:00
|
|
|
/**
|
2021-03-29 06:40:20 +00:00
|
|
|
* @copyright Copyright (C) 2010-2021, the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2017-11-16 18:05:41 +00:00
|
|
|
*/
|
2020-02-09 15:18:46 +00:00
|
|
|
|
2017-11-19 21:50:49 +00:00
|
|
|
namespace Friendica\Object;
|
2017-11-16 20:54:03 +00:00
|
|
|
|
2018-01-10 03:42:04 +00:00
|
|
|
use Friendica\Content\ContactSelector;
|
2019-02-09 04:07:36 +00:00
|
|
|
use Friendica\Content\Feature;
|
2018-01-17 18:42:40 +00:00
|
|
|
use Friendica\Core\Addon;
|
2018-12-26 06:06:24 +00:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 21:20:46 +00:00
|
|
|
use Friendica\Core\Logger;
|
2018-08-11 20:40:44 +00:00
|
|
|
use Friendica\Core\Protocol;
|
2019-09-25 22:24:17 +00:00
|
|
|
use Friendica\Core\Renderer;
|
2019-10-24 22:10:20 +00:00
|
|
|
use Friendica\Core\Session;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 21:34:11 +00:00
|
|
|
use Friendica\DI;
|
2017-12-07 14:05:23 +00:00
|
|
|
use Friendica\Model\Contact;
|
2018-07-07 18:14:16 +00:00
|
|
|
use Friendica\Model\Item;
|
2021-01-16 13:12:41 +00:00
|
|
|
use Friendica\Model\Post as PostModel;
|
2020-04-26 15:24:58 +00:00
|
|
|
use Friendica\Model\Tag;
|
2019-02-21 20:42:00 +00:00
|
|
|
use Friendica\Model\User;
|
2019-10-23 00:05:11 +00:00
|
|
|
use Friendica\Protocol\Activity;
|
2018-11-05 08:37:03 +00:00
|
|
|
use Friendica\Util\Crypto;
|
2018-01-27 02:38:34 +00:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2021-06-29 20:26:58 +00:00
|
|
|
use Friendica\Util\Proxy;
|
2018-11-08 15:46:50 +00:00
|
|
|
use Friendica\Util\Strings;
|
2018-02-03 17:25:58 +00:00
|
|
|
use Friendica\Util\Temporal;
|
2017-11-07 02:22:52 +00:00
|
|
|
|
2012-08-10 15:46:39 +00:00
|
|
|
/**
|
|
|
|
* An item
|
|
|
|
*/
|
2019-12-15 22:28:01 +00:00
|
|
|
class Post
|
2017-11-16 20:54:03 +00:00
|
|
|
{
|
2018-01-15 13:05:12 +00:00
|
|
|
private $data = [];
|
2012-08-10 17:57:39 +00:00
|
|
|
private $template = null;
|
2018-01-15 13:05:12 +00:00
|
|
|
private $available_templates = [
|
2012-08-10 17:57:39 +00:00
|
|
|
'wall' => 'wall_thread.tpl',
|
|
|
|
'wall2wall' => 'wallwall_thread.tpl'
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2012-08-12 14:02:47 +00:00
|
|
|
private $comment_box_template = 'comment_item.tpl';
|
2012-08-11 15:09:35 +00:00
|
|
|
private $toplevel = false;
|
2012-08-17 14:40:41 +00:00
|
|
|
private $writable = false;
|
2018-12-07 05:50:16 +00:00
|
|
|
/**
|
|
|
|
* @var Post[]
|
|
|
|
*/
|
2018-01-15 13:05:12 +00:00
|
|
|
private $children = [];
|
2012-08-11 15:39:11 +00:00
|
|
|
private $parent = null;
|
2018-12-07 05:50:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var Thread
|
|
|
|
*/
|
2017-12-07 14:05:23 +00:00
|
|
|
private $thread = null;
|
2012-08-12 14:18:53 +00:00
|
|
|
private $redirect_url = null;
|
2012-08-12 15:20:38 +00:00
|
|
|
private $owner_url = '';
|
|
|
|
private $owner_name = '';
|
|
|
|
private $wall_to_wall = false;
|
2012-08-23 08:54:21 +00:00
|
|
|
private $threaded = false;
|
2012-09-10 08:14:30 +00:00
|
|
|
private $visiting = false;
|
2012-08-10 15:46:39 +00:00
|
|
|
|
2017-11-19 19:15:25 +00:00
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* @param array $data data array
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2017-11-19 19:15:25 +00:00
|
|
|
*/
|
2017-12-08 04:33:36 +00:00
|
|
|
public function __construct(array $data)
|
2017-11-16 20:54:03 +00:00
|
|
|
{
|
2012-08-10 15:46:39 +00:00
|
|
|
$this->data = $data;
|
2017-11-16 20:54:03 +00:00
|
|
|
$this->setTemplate('wall');
|
2018-01-01 22:04:45 +00:00
|
|
|
$this->toplevel = $this->getId() == $this->getDataValue('parent');
|
2012-09-10 08:14:30 +00:00
|
|
|
|
2019-09-25 22:24:17 +00:00
|
|
|
if (!empty(Session::getUserIDForVisitorContactID($this->getDataValue('contact-id')))) {
|
|
|
|
$this->visiting = true;
|
2012-09-10 08:14:30 +00:00
|
|
|
}
|
2014-07-21 22:36:20 +00:00
|
|
|
|
2018-01-01 22:04:45 +00:00
|
|
|
$this->writable = $this->getDataValue('writable') || $this->getDataValue('self');
|
2018-07-02 05:41:55 +00:00
|
|
|
$author = ['uid' => 0, 'id' => $this->getDataValue('author-id'),
|
|
|
|
'network' => $this->getDataValue('author-network'),
|
|
|
|
'url' => $this->getDataValue('author-link')];
|
2019-02-22 02:29:22 +00:00
|
|
|
$this->redirect_url = Contact::magicLinkByContact($author);
|
2017-11-28 18:54:39 +00:00
|
|
|
if (!$this->isToplevel()) {
|
2012-08-23 08:54:21 +00:00
|
|
|
$this->threaded = true;
|
2016-12-22 10:21:50 +00:00
|
|
|
}
|
2012-08-23 08:54:21 +00:00
|
|
|
|
2012-08-11 15:39:11 +00:00
|
|
|
// Prepare the children
|
2018-04-23 04:02:18 +00:00
|
|
|
if (!empty($data['children'])) {
|
2016-12-22 10:21:50 +00:00
|
|
|
foreach ($data['children'] as $item) {
|
2018-01-01 22:04:45 +00:00
|
|
|
// Only add will be displayed
|
2018-08-11 20:40:44 +00:00
|
|
|
if ($item['network'] === Protocol::MAIL && local_user() != $item['uid']) {
|
2012-08-12 15:46:02 +00:00
|
|
|
continue;
|
2018-01-01 22:04:45 +00:00
|
|
|
} elseif (!visible_activity($item)) {
|
2012-08-12 15:46:02 +00:00
|
|
|
continue;
|
|
|
|
}
|
2016-12-22 10:21:50 +00:00
|
|
|
|
2018-01-18 20:16:14 +00:00
|
|
|
// You can always comment on Diaspora and OStatus items
|
2018-08-11 20:40:44 +00:00
|
|
|
if (in_array($item['network'], [Protocol::OSTATUS, Protocol::DIASPORA]) && (local_user() == $item['uid'])) {
|
2017-09-08 05:36:00 +00:00
|
|
|
$item['writable'] = true;
|
|
|
|
}
|
|
|
|
|
2013-01-13 17:51:19 +00:00
|
|
|
$item['pagedrop'] = $data['pagedrop'];
|
2017-12-08 04:36:33 +00:00
|
|
|
$child = new Post($item);
|
2017-11-16 20:54:03 +00:00
|
|
|
$this->addChild($child);
|
2012-08-12 14:26:37 +00:00
|
|
|
}
|
2012-08-11 15:39:11 +00:00
|
|
|
}
|
2012-08-10 15:46:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get data in a form usable by a conversation template
|
|
|
|
*
|
2018-12-07 05:50:16 +00:00
|
|
|
* @param array $conv_responses conversation responses
|
2017-11-19 19:15:25 +00:00
|
|
|
* @param integer $thread_level default = 1
|
|
|
|
*
|
|
|
|
* @return mixed The data requested on success
|
|
|
|
* false on failure
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2012-08-10 15:46:39 +00:00
|
|
|
*/
|
2018-12-07 05:50:16 +00:00
|
|
|
public function getTemplateData(array $conv_responses, $thread_level = 1)
|
2017-11-16 20:54:03 +00:00
|
|
|
{
|
2019-12-15 21:34:11 +00:00
|
|
|
$a = DI::app();
|
2012-08-10 17:57:39 +00:00
|
|
|
|
2017-11-16 20:54:03 +00:00
|
|
|
$item = $this->getData();
|
2016-09-03 10:48:51 +00:00
|
|
|
$edited = false;
|
2017-09-28 06:01:31 +00:00
|
|
|
// If the time between "created" and "edited" differs we add
|
|
|
|
// a notice that the post was edited.
|
2017-09-27 12:15:45 +00: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 06:01:31 +00:00
|
|
|
if (strtotime($item['edited']) - strtotime($item['created']) > 1) {
|
2018-01-15 13:05:12 +00:00
|
|
|
$edited = [
|
2020-01-18 19:52:34 +00:00
|
|
|
'label' => DI::l10n()->t('This entry was edited'),
|
2018-01-27 02:38:34 +00:00
|
|
|
'date' => DateTimeFormat::local($item['edited'], 'r'),
|
2018-02-03 17:25:58 +00:00
|
|
|
'relative' => Temporal::getRelativeDate($item['edited'])
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2016-09-03 10:48:51 +00:00
|
|
|
}
|
2012-08-10 17:57:39 +00:00
|
|
|
$sparkle = '';
|
2020-02-14 01:42:15 +00:00
|
|
|
$buttons = [
|
2020-10-11 08:49:47 +00:00
|
|
|
'like' => null,
|
|
|
|
'dislike' => null,
|
|
|
|
'share' => null,
|
|
|
|
'announce' => null,
|
2020-02-14 01:42:15 +00:00
|
|
|
];
|
2012-08-10 17:57:39 +00:00
|
|
|
$dropping = false;
|
2019-11-07 06:53:18 +00:00
|
|
|
$pinned = '';
|
2019-11-07 05:39:15 +00:00
|
|
|
$pin = false;
|
2012-08-10 17:57:39 +00:00
|
|
|
$star = false;
|
2014-09-03 22:58:52 +00:00
|
|
|
$ignore = false;
|
2019-11-07 05:39:15 +00:00
|
|
|
$ispinned = "unpinned";
|
2012-08-10 17:57:39 +00:00
|
|
|
$isstarred = "unstarred";
|
|
|
|
$indent = '';
|
2012-11-09 16:13:59 +00:00
|
|
|
$shiny = '';
|
2012-08-10 17:57:39 +00:00
|
|
|
$osparkle = '';
|
2017-11-16 20:54:03 +00:00
|
|
|
$total_children = $this->countDescendants();
|
2012-08-10 17:57:39 +00:00
|
|
|
|
2017-12-07 14:05:23 +00:00
|
|
|
$conv = $this->getThread();
|
2012-08-11 16:12:35 +00:00
|
|
|
|
2020-03-02 07:57:23 +00:00
|
|
|
$lock = ((($item['private'] == Item::PRIVATE) || (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid'])
|
2012-08-10 17:57:39 +00:00
|
|
|
|| strlen($item['deny_cid']) || strlen($item['deny_gid']))))
|
2020-01-18 19:52:34 +00:00
|
|
|
? DI::l10n()->t('Private Message')
|
2012-08-10 17:57:39 +00:00
|
|
|
: false);
|
2018-07-31 02:06:22 +00:00
|
|
|
|
2020-03-02 07:57:23 +00:00
|
|
|
$shareable = in_array($conv->getProfileOwner(), [0, local_user()]) && $item['private'] != Item::PRIVATE;
|
2020-10-11 19:58:28 +00:00
|
|
|
$announceable = $shareable && in_array($item['network'], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::TWITTER]);
|
2017-12-19 17:15:56 +00:00
|
|
|
|
2020-10-11 21:45:49 +00:00
|
|
|
// On Diaspora only toplevel posts can be reshared
|
|
|
|
if ($announceable && ($item['network'] == Protocol::DIASPORA) && ($item['gravity'] != GRAVITY_PARENT)) {
|
|
|
|
$announceable = false;
|
|
|
|
}
|
|
|
|
|
2018-11-18 20:13:46 +00:00
|
|
|
$edpost = false;
|
|
|
|
|
2018-11-17 22:56:28 +00:00
|
|
|
if (local_user()) {
|
2021-07-24 11:49:11 +00:00
|
|
|
if (Strings::compareLink(Session::get('my_url'), $item['author-link'])) {
|
2018-11-17 22:56:28 +00:00
|
|
|
if ($item["event-id"] != 0) {
|
2020-01-18 19:52:34 +00:00
|
|
|
$edpost = ["events/event/" . $item['event-id'], DI::l10n()->t("Edit")];
|
2018-11-17 22:56:28 +00:00
|
|
|
} else {
|
2020-01-18 19:52:34 +00:00
|
|
|
$edpost = ["editpost/" . $item['id'], DI::l10n()->t("Edit")];
|
2018-11-17 22:56:28 +00:00
|
|
|
}
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
2018-01-07 11:59:54 +00:00
|
|
|
$dropping = in_array($item['uid'], [0, local_user()]);
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
|
|
|
|
2018-01-05 13:48:06 +00: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 20:54:03 +00:00
|
|
|
if (($this->getDataValue('uid') == local_user()) || $this->isVisiting()) {
|
2012-08-10 17:57:39 +00:00
|
|
|
$dropping = true;
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
2012-08-10 17:57:39 +00:00
|
|
|
|
2021-02-17 18:59:19 +00:00
|
|
|
$origin = $item['origin'] || $item['parent-origin'];
|
|
|
|
|
|
|
|
if ($item['pinned']) {
|
2021-05-10 14:47:58 +00:00
|
|
|
$pinned = DI::l10n()->t('Pinned item');
|
2018-05-15 21:06:34 +00:00
|
|
|
}
|
|
|
|
|
2021-03-24 22:22:14 +00: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 21:06:34 +00:00
|
|
|
|
2020-09-13 23:50:39 +00:00
|
|
|
$drop = false;
|
2021-01-20 23:44:02 +00:00
|
|
|
$block = false;
|
2020-09-13 23:50:39 +00:00
|
|
|
if (local_user()) {
|
|
|
|
$drop = [
|
|
|
|
'dropping' => $dropping,
|
|
|
|
'pagedrop' => $item['pagedrop'],
|
2021-05-04 12:45:27 +00:00
|
|
|
'select' => DI::l10n()->t('Select'),
|
|
|
|
'delete' => $delete,
|
2020-09-13 23:50:39 +00:00
|
|
|
];
|
2021-05-04 12:45:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!$item['self']) {
|
2021-01-20 23:44:02 +00:00
|
|
|
$block = [
|
|
|
|
'blocking' => true,
|
|
|
|
'block' => DI::l10n()->t('Block %s', $item['author-name']),
|
|
|
|
'author_id' => $item['author-id'],
|
|
|
|
];
|
2018-05-15 21:06:34 +00:00
|
|
|
}
|
|
|
|
|
2021-08-12 05:28:47 +00:00
|
|
|
$filer = local_user() ? DI::l10n()->t('Save to folder') : false;
|
2012-08-10 17:57:39 +00:00
|
|
|
|
2018-11-25 18:56:26 +00:00
|
|
|
$profile_name = $item['author-name'];
|
2018-06-24 10:48:29 +00:00
|
|
|
if (!empty($item['author-link']) && empty($item['author-name'])) {
|
2012-08-10 17:57:39 +00:00
|
|
|
$profile_name = $item['author-link'];
|
2016-12-22 10:21:50 +00:00
|
|
|
}
|
2012-08-10 17:57:39 +00:00
|
|
|
|
2019-09-28 18:09:11 +00:00
|
|
|
if (Session::isAuthenticated()) {
|
2021-02-17 18:59:19 +00:00
|
|
|
$author = ['uid' => 0, 'id' => $item['author-id'],
|
|
|
|
'network' => $item['author-network'], 'url' => $item['author-link']];
|
2019-02-22 02:29:22 +00:00
|
|
|
$profile_link = Contact::magicLinkByContact($author);
|
2018-10-24 14:20:10 +00:00
|
|
|
} else {
|
|
|
|
$profile_link = $item['author-link'];
|
|
|
|
}
|
|
|
|
|
2018-06-01 06:46:34 +00:00
|
|
|
if (strpos($profile_link, 'redir/') === 0) {
|
2012-08-10 17:57:39 +00:00
|
|
|
$sparkle = ' sparkle';
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
2012-08-10 17:57:39 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$locate = ['location' => $item['location'], 'coord' => $item['coord'], 'html' => ''];
|
2018-12-26 06:06:24 +00:00
|
|
|
Hook::callAll('render_location', $locate);
|
2020-09-13 23:33:57 +00:00
|
|
|
$location_html = $locate['html'] ?: Strings::escapeHtml($locate['location'] ?: $locate['coord'] ?: '');
|
2012-08-10 17:57:39 +00:00
|
|
|
|
2015-06-01 11:57:45 +00:00
|
|
|
// process action responses - e.g. like/dislike/attend/agree/whatever
|
2019-04-02 05:38:42 +00:00
|
|
|
$response_verbs = ['like', 'dislike', 'announce'];
|
2017-11-16 20:54:03 +00:00
|
|
|
|
2018-01-01 22:04:45 +00:00
|
|
|
$isevent = false;
|
|
|
|
$attend = [];
|
2019-10-24 22:10:20 +00:00
|
|
|
if ($item['object-type'] === Activity\ObjectType::EVENT) {
|
2015-06-01 11:57:45 +00:00
|
|
|
$response_verbs[] = 'attendyes';
|
|
|
|
$response_verbs[] = 'attendno';
|
|
|
|
$response_verbs[] = 'attendmaybe';
|
2017-11-19 19:15:25 +00:00
|
|
|
if ($conv->isWritable()) {
|
2015-06-03 18:57:30 +00:00
|
|
|
$isevent = true;
|
2020-01-18 19:52:34 +00:00
|
|
|
$attend = [DI::l10n()->t('I will attend'), DI::l10n()->t('I will not attend'), DI::l10n()->t('I might attend')];
|
2015-06-03 18:57:30 +00:00
|
|
|
}
|
2015-06-01 11:57:45 +00:00
|
|
|
}
|
2015-06-03 18:57:30 +00:00
|
|
|
|
2020-02-23 01:41:12 +00:00
|
|
|
$responses = [];
|
|
|
|
foreach ($response_verbs as $value => $verb) {
|
|
|
|
$responses[$verb] = [
|
2021-01-27 10:01:42 +00:00
|
|
|
'self' => $conv_responses[$verb][$item['uri-id']]['self'] ?? 0,
|
|
|
|
'output' => !empty($conv_responses[$verb][$item['uri-id']]) ? format_activity($conv_responses[$verb][$item['uri-id']]['links'], $verb, $item['uri-id']) : '',
|
2020-02-23 01:41:12 +00:00
|
|
|
];
|
2015-06-01 11:57:45 +00:00
|
|
|
}
|
|
|
|
|
2012-08-12 15:20:38 +00: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 20:54:03 +00:00
|
|
|
$this->checkWallToWall();
|
2013-01-27 22:25:04 +00:00
|
|
|
|
2017-11-16 20:54:03 +00:00
|
|
|
if ($this->isWallToWall() && ($this->getOwnerUrl() == $this->getRedirectUrl())) {
|
2012-08-12 15:20:38 +00:00
|
|
|
$osparkle = ' sparkle';
|
2016-12-22 10:21:50 +00:00
|
|
|
}
|
2013-01-27 22:25:04 +00:00
|
|
|
|
2018-01-01 22:04:45 +00:00
|
|
|
$tagger = '';
|
|
|
|
|
2017-11-16 20:54:03 +00:00
|
|
|
if ($this->isToplevel()) {
|
2021-08-12 05:28:47 +00:00
|
|
|
if (local_user()) {
|
2021-01-31 23:37:34 +00:00
|
|
|
$ignored = PostModel\ThreadUser::getIgnored($item['uri-id'], local_user());
|
2021-02-28 11:20:02 +00:00
|
|
|
if ($item['mention'] || $ignored) {
|
|
|
|
$ignore = [
|
2021-05-10 14:47:58 +00:00
|
|
|
'do' => DI::l10n()->t('Ignore thread'),
|
|
|
|
'undo' => DI::l10n()->t('Unignore thread'),
|
|
|
|
'toggle' => DI::l10n()->t('Toggle ignore status'),
|
2021-02-28 11:20:02 +00:00
|
|
|
'classdo' => $ignored ? "hidden" : "",
|
|
|
|
'classundo' => $ignored ? "" : "hidden",
|
2021-05-10 14:47:58 +00:00
|
|
|
'ignored' => DI::l10n()->t('Ignored'),
|
2021-02-28 11:20:02 +00:00
|
|
|
];
|
|
|
|
}
|
2018-08-08 20:32:11 +00:00
|
|
|
|
2021-08-12 05:28:47 +00: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 06:25:38 +00:00
|
|
|
if ($conv->getProfileOwner() == local_user() && ($item['uid'] != 0)) {
|
2019-11-07 05:39:15 +00:00
|
|
|
if ($origin) {
|
|
|
|
$ispinned = ($item['pinned'] ? 'pinned' : 'unpinned');
|
|
|
|
|
|
|
|
$pin = [
|
2021-05-10 14:47:58 +00:00
|
|
|
'do' => DI::l10n()->t('Pin'),
|
|
|
|
'undo' => DI::l10n()->t('Unpin'),
|
|
|
|
'toggle' => DI::l10n()->t('Toggle pin status'),
|
2019-11-07 05:39:15 +00:00
|
|
|
'classdo' => $item['pinned'] ? 'hidden' : '',
|
|
|
|
'classundo' => $item['pinned'] ? '' : 'hidden',
|
2021-05-10 14:47:58 +00:00
|
|
|
'pinned' => DI::l10n()->t('Pinned'),
|
2019-11-07 05:39:15 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2018-11-23 06:25:38 +00:00
|
|
|
$tagger = [
|
2021-05-10 14:47:58 +00:00
|
|
|
'add' => DI::l10n()->t('Add tag'),
|
2018-11-23 06:25:38 +00:00
|
|
|
'class' => "",
|
|
|
|
];
|
|
|
|
}
|
2012-08-10 17:57:39 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$indent = 'comment';
|
|
|
|
}
|
|
|
|
|
2017-11-19 19:15:25 +00:00
|
|
|
if ($conv->isWritable()) {
|
2021-05-10 14:47:58 +00: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 10:21:50 +00:00
|
|
|
if ($shareable) {
|
2021-01-07 15:13:40 +00:00
|
|
|
$buttons['share'] = [DI::l10n()->t('Quote share this'), DI::l10n()->t('Quote Share')];
|
2020-10-11 08:49:47 +00:00
|
|
|
}
|
|
|
|
if ($announceable) {
|
2021-01-07 15:13:40 +00: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 10:21:50 +00:00
|
|
|
}
|
2012-08-10 17:57:39 +00:00
|
|
|
}
|
|
|
|
|
2020-09-13 23:43:42 +00:00
|
|
|
$comment_html = $this->getCommentBox($indent);
|
2015-10-09 05:39:38 +00:00
|
|
|
|
2018-01-27 02:38:34 +00:00
|
|
|
if (strcmp(DateTimeFormat::utc($item['created']), DateTimeFormat::utc('now - 12 hours')) > 0) {
|
2012-11-09 16:13:59 +00:00
|
|
|
$shiny = 'shiny';
|
|
|
|
}
|
2012-08-10 17:57:39 +00:00
|
|
|
|
|
|
|
localize_item($item);
|
|
|
|
|
2020-09-13 23:37:43 +00:00
|
|
|
$body_html = Item::prepareBody($item, true);
|
2012-08-10 17:57:39 +00:00
|
|
|
|
2021-08-12 05:28:47 +00:00
|
|
|
list($categories, $folders) = DI::contentItem()->determineCategoriesTerms($item, local_user());
|
2012-09-20 07:46:49 +00:00
|
|
|
|
2020-01-18 15:50:57 +00:00
|
|
|
if (!empty($item['content-warning']) && DI::pConfig()->get(local_user(), 'system', 'disable_cw', false)) {
|
2020-09-13 23:50:39 +00:00
|
|
|
$title = ucfirst($item['content-warning']);
|
2018-04-05 02:50:39 +00:00
|
|
|
} else {
|
2020-09-13 23:50:39 +00:00
|
|
|
$title = $item['title'];
|
2018-04-05 02:50:39 +00:00
|
|
|
}
|
|
|
|
|
2020-02-20 03:20:26 +00:00
|
|
|
if (DI::pConfig()->get(local_user(), 'system', 'hide_dislike')) {
|
|
|
|
$buttons['dislike'] = false;
|
|
|
|
}
|
|
|
|
|
2014-03-01 23:50:06 +00:00
|
|
|
// Disable features that aren't available in several networks
|
2020-05-27 12:32:09 +00:00
|
|
|
if (!in_array($item["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA])) {
|
|
|
|
if ($buttons["dislike"]) {
|
|
|
|
$buttons["dislike"] = false;
|
|
|
|
}
|
|
|
|
|
2018-01-01 22:04:45 +00:00
|
|
|
$isevent = false;
|
2014-03-01 23:50:06 +00:00
|
|
|
$tagger = '';
|
|
|
|
}
|
|
|
|
|
2020-02-14 01:42:15 +00:00
|
|
|
if ($buttons["like"] && in_array($item["network"], [Protocol::FEED, Protocol::MAIL])) {
|
|
|
|
$buttons["like"] = false;
|
2016-12-22 10:21:50 +00:00
|
|
|
}
|
2014-03-01 23:50:06 +00:00
|
|
|
|
2020-05-01 06:01:22 +00:00
|
|
|
$tags = Tag::populateFromItem($item);
|
2018-07-24 11:51:50 +00:00
|
|
|
|
2019-11-29 06:24:02 +00:00
|
|
|
$ago = Temporal::getRelativeDate($item['created']);
|
2019-12-03 07:23:01 +00:00
|
|
|
$ago_received = Temporal::getRelativeDate($item['received']);
|
2020-01-19 20:21:13 +00: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 19:52:34 +00:00
|
|
|
$ago = DI::l10n()->t('%s (Received %s)', $ago, $ago_received);
|
2019-11-29 06:24:02 +00:00
|
|
|
}
|
|
|
|
|
2020-02-18 06:57:38 +00:00
|
|
|
// Fetching of Diaspora posts doesn't always work. There are issues with reshares and possibly comments
|
2021-05-23 10:39:11 +00:00
|
|
|
if (!local_user() && ($item['network'] != Protocol::DIASPORA) && !empty(Session::get('remote_comment'))) {
|
2021-05-10 14:47:58 +00:00
|
|
|
$remote_comment = [DI::l10n()->t('Comment this item on your system'), DI::l10n()->t('Remote comment'),
|
2020-02-18 17:31:02 +00:00
|
|
|
str_replace('{uri}', urlencode($item['uri']), Session::get('remote_comment'))];
|
2021-05-23 10:39:11 +00:00
|
|
|
|
|
|
|
// Ensure to either display the remote comment or the local activities
|
|
|
|
$buttons = [];
|
|
|
|
$comment_html = '';
|
2020-02-18 06:57:38 +00:00
|
|
|
} else {
|
|
|
|
$remote_comment = '';
|
|
|
|
}
|
|
|
|
|
2020-03-03 21:29:51 +00:00
|
|
|
$direction = [];
|
2020-08-23 13:26:23 +00:00
|
|
|
if (!empty($item['direction'])) {
|
|
|
|
$direction = $item['direction'];
|
|
|
|
} elseif (DI::config()->get('debug', 'show_direction')) {
|
2020-03-03 21:29:51 +00:00
|
|
|
$conversation = DBA::selectFirst('conversation', ['direction'], ['item-uri' => $item['uri']]);
|
|
|
|
if (!empty($conversation['direction']) && in_array($conversation['direction'], [1, 2])) {
|
2020-09-13 23:50:39 +00:00
|
|
|
$direction_title = [1 => DI::l10n()->t('Pushed'), 2 => DI::l10n()->t('Pulled')];
|
|
|
|
$direction = ['direction' => $conversation['direction'], 'title' => $direction_title[$conversation['direction']]];
|
2020-03-03 21:29:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-04 18:52:28 +00:00
|
|
|
$languages = [];
|
|
|
|
if (!empty($item['language'])) {
|
|
|
|
$languages = [DI::l10n()->t('Languages'), Item::getLanguageMessage($item)];
|
|
|
|
}
|
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$tmp_item = [
|
2017-11-16 20:54:03 +00:00
|
|
|
'template' => $this->getTemplate(),
|
|
|
|
'type' => implode("", array_slice(explode("/", $item['verb']), -1)),
|
2021-05-10 22:59:09 +00:00
|
|
|
'comment_firstcollapsed' => false,
|
|
|
|
'comment_lastcollapsed' => false,
|
2020-01-19 20:21:13 +00:00
|
|
|
'suppress_tags' => DI::config()->get('system', 'suppress_tags'),
|
2018-07-24 11:51:50 +00:00
|
|
|
'tags' => $tags['tags'],
|
|
|
|
'hashtags' => $tags['hashtags'],
|
|
|
|
'mentions' => $tags['mentions'],
|
2019-02-23 04:03:32 +00:00
|
|
|
'implicit_mentions' => $tags['implicit_mentions'],
|
2020-01-18 19:52:34 +00:00
|
|
|
'txt_cats' => DI::l10n()->t('Categories:'),
|
|
|
|
'txt_folders' => DI::l10n()->t('Filed under:'),
|
2016-12-22 10:21:50 +00:00
|
|
|
'has_cats' => ((count($categories)) ? 'true' : ''),
|
|
|
|
'has_folders' => ((count($folders)) ? 'true' : ''),
|
|
|
|
'categories' => $categories,
|
|
|
|
'folders' => $folders,
|
2020-09-13 23:37:43 +00:00
|
|
|
'body_html' => $body_html,
|
2020-09-13 23:50:39 +00:00
|
|
|
'text' => strip_tags($body_html),
|
2017-11-16 20:54:03 +00:00
|
|
|
'id' => $this->getId(),
|
2016-12-22 10:21:50 +00:00
|
|
|
'guid' => urlencode($item['guid']),
|
|
|
|
'isevent' => $isevent,
|
|
|
|
'attend' => $attend,
|
2020-01-18 19:52:34 +00: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 10:21:50 +00:00
|
|
|
'profile_url' => $profile_link,
|
2020-09-13 23:50:39 +00:00
|
|
|
'name' => $profile_name,
|
2020-09-13 23:40:59 +00:00
|
|
|
'item_photo_menu_html' => item_photo_menu($item),
|
2021-06-29 20:26:58 +00:00
|
|
|
'thumb' => DI::baseUrl()->remove(Contact::getAvatarUrlForUrl($item['author-link'], $item['uid'], Proxy::SIZE_THUMB)),
|
2016-12-22 10:21:50 +00:00
|
|
|
'osparkle' => $osparkle,
|
|
|
|
'sparkle' => $sparkle,
|
2020-09-13 23:50:39 +00:00
|
|
|
'title' => $title,
|
2018-01-27 02:38:34 +00:00
|
|
|
'localtime' => DateTimeFormat::local($item['created'], 'r'),
|
2020-01-18 19:52:34 +00:00
|
|
|
'ago' => $item['app'] ? DI::l10n()->t('%s from %s', $ago, $item['app']) : $ago,
|
2016-12-22 10:21:50 +00:00
|
|
|
'app' => $item['app'],
|
2019-12-26 19:51:36 +00:00
|
|
|
'created' => $ago,
|
2016-12-22 10:21:50 +00:00
|
|
|
'lock' => $lock,
|
2020-09-13 23:33:57 +00:00
|
|
|
'location_html' => $location_html,
|
2016-12-22 10:21:50 +00:00
|
|
|
'indent' => $indent,
|
|
|
|
'shiny' => $shiny,
|
2019-05-26 20:15:38 +00:00
|
|
|
'owner_self' => $item['author-link'] == Session::get('my_url'),
|
2017-11-16 20:54:03 +00:00
|
|
|
'owner_url' => $this->getOwnerUrl(),
|
2021-06-30 16:58:46 +00:00
|
|
|
'owner_photo' => DI::baseUrl()->remove(Contact::getAvatarUrlForUrl($item['owner-link'], $item['uid'], Proxy::SIZE_THUMB)),
|
2020-09-13 23:50:39 +00:00
|
|
|
'owner_name' => $this->getOwnerName(),
|
2018-11-07 12:19:39 +00:00
|
|
|
'plink' => Item::getPlink($item),
|
2018-11-18 20:13:46 +00:00
|
|
|
'edpost' => $edpost,
|
2019-11-07 05:39:15 +00:00
|
|
|
'ispinned' => $ispinned,
|
|
|
|
'pin' => $pin,
|
2019-11-07 06:53:18 +00:00
|
|
|
'pinned' => $pinned,
|
2016-12-22 10:21:50 +00:00
|
|
|
'isstarred' => $isstarred,
|
2018-11-18 20:13:46 +00:00
|
|
|
'star' => $star,
|
|
|
|
'ignore' => $ignore,
|
2016-12-22 10:21:50 +00:00
|
|
|
'tagger' => $tagger,
|
2018-11-18 20:13:46 +00:00
|
|
|
'filer' => $filer,
|
2020-10-04 18:52:28 +00:00
|
|
|
'language' => $languages,
|
2016-12-22 10:21:50 +00:00
|
|
|
'drop' => $drop,
|
2021-01-20 23:44:02 +00:00
|
|
|
'block' => $block,
|
2016-12-22 10:21:50 +00:00
|
|
|
'vote' => $buttons,
|
2020-09-13 23:44:11 +00:00
|
|
|
'like_html' => $responses['like']['output'],
|
|
|
|
'dislike_html' => $responses['dislike']['output'],
|
2016-12-22 10:21:50 +00:00
|
|
|
'responses' => $responses,
|
2020-01-18 19:52:34 +00:00
|
|
|
'switchcomment' => DI::l10n()->t('Comment'),
|
2020-09-13 23:50:39 +00:00
|
|
|
'reply_label' => DI::l10n()->t('Reply to %s', $profile_name),
|
2020-09-13 23:43:42 +00:00
|
|
|
'comment_html' => $comment_html,
|
2020-02-18 06:57:38 +00:00
|
|
|
'remote_comment' => $remote_comment,
|
2020-02-06 22:06:24 +00:00
|
|
|
'menu' => DI::l10n()->t('More'),
|
2018-01-01 22:04:45 +00:00
|
|
|
'previewing' => $conv->isPreview() ? ' preview ' : '',
|
2020-01-18 19:52:34 +00:00
|
|
|
'wait' => DI::l10n()->t('Please wait'),
|
2016-12-22 10:21:50 +00:00
|
|
|
'thread_level' => $thread_level,
|
|
|
|
'edited' => $edited,
|
2018-06-18 20:36:34 +00:00
|
|
|
'network' => $item["network"],
|
2019-12-27 17:24:29 +00:00
|
|
|
'network_name' => ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network']),
|
2019-08-28 06:38:35 +00:00
|
|
|
'network_icon' => ContactSelector::networkToIcon($item['network'], $item['author-link']),
|
2017-07-31 06:04:37 +00:00
|
|
|
'received' => $item['received'],
|
|
|
|
'commented' => $item['commented'],
|
|
|
|
'created_date' => $item['created'],
|
2020-08-13 20:07:13 +00:00
|
|
|
'uriid' => $item['uri-id'],
|
2019-12-16 00:33:13 +00:00
|
|
|
'return' => (DI::args()->getCommand()) ? bin2hex(DI::args()->getCommand()) : '',
|
2020-03-03 21:29:51 +00:00
|
|
|
'direction' => $direction,
|
2020-09-09 04:49:42 +00:00
|
|
|
'reshared' => $item['reshared'] ?? '',
|
2018-12-07 05:54:40 +00:00
|
|
|
'delivery' => [
|
|
|
|
'queue_count' => $item['delivery_queue_count'],
|
2019-08-20 07:39:13 +00:00
|
|
|
'queue_done' => $item['delivery_queue_done'] + $item['delivery_queue_failed'], /// @todo Possibly display it separately in the future
|
2020-01-18 19:52:34 +00: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 05:54:40 +00:00
|
|
|
],
|
2018-01-15 13:05:12 +00:00
|
|
|
];
|
2012-08-10 17:57:39 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$arr = ['item' => $item, 'output' => $tmp_item];
|
2018-12-26 06:06:24 +00:00
|
|
|
Hook::callAll('display_item', $arr);
|
2012-08-10 17:57:39 +00:00
|
|
|
|
2012-08-12 14:32:02 +00:00
|
|
|
$result = $arr['output'];
|
2012-08-10 17:57:39 +00:00
|
|
|
|
2018-01-15 13:05:12 +00:00
|
|
|
$result['children'] = [];
|
2017-11-16 20:54:03 +00:00
|
|
|
$children = $this->getChildren();
|
2012-08-11 17:58:57 +00:00
|
|
|
$nb_children = count($children);
|
2016-12-22 10:21:50 +00:00
|
|
|
if ($nb_children > 0) {
|
|
|
|
foreach ($children as $child) {
|
2017-11-16 20:54:03 +00:00
|
|
|
$result['children'][] = $child->getTemplateData($conv_responses, $thread_level + 1);
|
2012-08-11 17:58:57 +00:00
|
|
|
}
|
2019-02-15 03:24:34 +00:00
|
|
|
|
2012-08-11 17:58:57 +00:00
|
|
|
// Collapse
|
2016-12-22 10:21:50 +00:00
|
|
|
if (($nb_children > 2) || ($thread_level > 1)) {
|
2012-08-12 14:32:02 +00:00
|
|
|
$result['children'][0]['comment_firstcollapsed'] = true;
|
2020-01-18 19:53:01 +00:00
|
|
|
$result['children'][0]['num_comments'] = DI::l10n()->tt('%d comment', '%d comments', $total_children);
|
2020-01-18 19:52:34 +00:00
|
|
|
$result['children'][0]['show_text'] = DI::l10n()->t('Show more');
|
|
|
|
$result['children'][0]['hide_text'] = DI::l10n()->t('Show fewer');
|
2016-12-22 10:21:50 +00:00
|
|
|
if ($thread_level > 1) {
|
2012-08-12 14:32:02 +00:00
|
|
|
$result['children'][$nb_children - 1]['comment_lastcollapsed'] = true;
|
2016-12-22 10:21:50 +00:00
|
|
|
} else {
|
2012-08-12 14:32:02 +00:00
|
|
|
$result['children'][$nb_children - 3]['comment_lastcollapsed'] = true;
|
2012-08-11 17:58:57 +00:00
|
|
|
}
|
|
|
|
}
|
2012-08-10 17:57:39 +00:00
|
|
|
}
|
2013-01-27 22:25:04 +00:00
|
|
|
|
2021-05-10 22:59:09 +00:00
|
|
|
$result['total_comments_num'] = $this->isToplevel() ? $total_children : 0;
|
2013-01-27 22:25:04 +00:00
|
|
|
|
2012-08-12 14:32:02 +00:00
|
|
|
$result['private'] = $item['private'];
|
2017-11-16 20:54:03 +00:00
|
|
|
$result['toplevel'] = ($this->isToplevel() ? 'toplevel_item' : '');
|
2012-08-10 17:57:39 +00:00
|
|
|
|
2017-11-16 20:54:03 +00:00
|
|
|
if ($this->isThreaded()) {
|
2012-08-12 14:32:02 +00:00
|
|
|
$result['flatten'] = false;
|
|
|
|
$result['threaded'] = true;
|
2016-12-22 10:21:50 +00:00
|
|
|
} else {
|
2012-08-12 14:32:02 +00:00
|
|
|
$result['flatten'] = true;
|
|
|
|
$result['threaded'] = false;
|
2012-08-10 17:57:39 +00:00
|
|
|
}
|
2012-08-10 15:46:39 +00:00
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
2014-07-21 22:36:20 +00:00
|
|
|
|
2017-11-19 19:15:25 +00:00
|
|
|
/**
|
|
|
|
* @return integer
|
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
public function getId()
|
|
|
|
{
|
|
|
|
return $this->getDataValue('id');
|
2012-08-10 17:57:39 +00:00
|
|
|
}
|
2012-08-11 15:39:11 +00:00
|
|
|
|
2017-11-19 19:15:25 +00:00
|
|
|
/**
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
public function isThreaded()
|
|
|
|
{
|
2012-08-23 08:54:21 +00:00
|
|
|
return $this->threaded;
|
|
|
|
}
|
|
|
|
|
2012-08-11 15:39:11 +00:00
|
|
|
/**
|
|
|
|
* Add a child item
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
2018-12-07 05:50:16 +00:00
|
|
|
* @param Post $item The child item to add
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return mixed
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2012-08-11 15:39:11 +00:00
|
|
|
*/
|
2017-12-08 04:36:33 +00:00
|
|
|
public function addChild(Post $item)
|
2017-11-16 20:54:03 +00:00
|
|
|
{
|
|
|
|
$item_id = $item->getId();
|
2016-12-22 10:21:50 +00:00
|
|
|
if (!$item_id) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('[ERROR] Post::addChild : Item has no ID!!', Logger::DEBUG);
|
2012-08-11 15:39:11 +00:00
|
|
|
return false;
|
2017-11-16 20:54:03 +00:00
|
|
|
} elseif ($this->getChild($item->getId())) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('[WARN] Post::addChild : Item already exists (' . $item->getId() . ').', Logger::DEBUG);
|
2012-08-11 15:39:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
2019-10-23 00:05:11 +00:00
|
|
|
|
2019-12-15 22:28:01 +00:00
|
|
|
$activity = DI::activity();
|
2019-10-23 00:05:11 +00:00
|
|
|
|
2012-08-12 15:46:02 +00:00
|
|
|
/*
|
2012-08-18 15:56:38 +00:00
|
|
|
* Only add what will be displayed
|
2012-08-12 15:46:02 +00:00
|
|
|
*/
|
2018-08-11 20:40:44 +00:00
|
|
|
if ($item->getDataValue('network') === Protocol::MAIL && local_user() != $item->getDataValue('uid')) {
|
2012-08-12 15:46:02 +00:00
|
|
|
return false;
|
2019-10-23 22:25:43 +00:00
|
|
|
} elseif ($activity->match($item->getDataValue('verb'), Activity::LIKE) ||
|
|
|
|
$activity->match($item->getDataValue('verb'), Activity::DISLIKE)) {
|
2012-08-12 15:46:02 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-07-21 22:36:20 +00:00
|
|
|
|
2017-11-16 20:54:03 +00:00
|
|
|
$item->setParent($this);
|
2012-08-11 15:39:11 +00:00
|
|
|
$this->children[] = $item;
|
2017-11-16 20:54:03 +00:00
|
|
|
|
2012-08-11 15:39:11 +00:00
|
|
|
return end($this->children);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a child by its ID
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @param integer $id The child id
|
|
|
|
*
|
|
|
|
* @return mixed
|
2012-08-11 15:39:11 +00:00
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
public function getChild($id)
|
|
|
|
{
|
|
|
|
foreach ($this->getChildren() as $child) {
|
|
|
|
if ($child->getId() == $id) {
|
2012-08-11 15:39:11 +00:00
|
|
|
return $child;
|
2016-12-22 10:21:50 +00:00
|
|
|
}
|
2012-08-11 15:39:11 +00:00
|
|
|
}
|
2017-11-16 20:54:03 +00:00
|
|
|
|
2012-08-11 15:39:11 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-11-19 19:15:25 +00:00
|
|
|
* Get all our children
|
|
|
|
*
|
2018-12-07 05:50:16 +00:00
|
|
|
* @return Post[]
|
2012-08-11 15:39:11 +00:00
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
public function getChildren()
|
|
|
|
{
|
2012-08-11 15:39:11 +00:00
|
|
|
return $this->children;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set our parent
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
2018-12-07 05:50:16 +00:00
|
|
|
* @param Post $item The item to set as parent
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return void
|
2012-08-11 15:39:11 +00:00
|
|
|
*/
|
2018-12-07 05:50:16 +00:00
|
|
|
protected function setParent(Post $item)
|
2017-11-16 20:54:03 +00:00
|
|
|
{
|
|
|
|
$parent = $this->getParent();
|
|
|
|
if ($parent) {
|
|
|
|
$parent->removeChild($this);
|
2012-08-11 15:39:11 +00:00
|
|
|
}
|
2017-11-16 20:54:03 +00:00
|
|
|
|
2012-08-11 15:39:11 +00:00
|
|
|
$this->parent = $item;
|
2017-12-07 14:05:23 +00:00
|
|
|
$this->setThread($item->getThread());
|
2012-08-11 16:12:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove our parent
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return void
|
2012-08-11 16:12:35 +00:00
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
protected function removeParent()
|
|
|
|
{
|
2012-08-11 16:12:35 +00:00
|
|
|
$this->parent = null;
|
2017-12-07 14:05:23 +00:00
|
|
|
$this->thread = null;
|
2012-08-11 15:39:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove a child
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
2018-12-07 05:50:16 +00:00
|
|
|
* @param Post $item The child to be removed
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return boolean Success or failure
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2012-08-11 15:39:11 +00:00
|
|
|
*/
|
2018-12-07 05:50:16 +00:00
|
|
|
public function removeChild(Post $item)
|
2017-11-16 20:54:03 +00:00
|
|
|
{
|
|
|
|
$id = $item->getId();
|
|
|
|
foreach ($this->getChildren() as $key => $child) {
|
|
|
|
if ($child->getId() == $id) {
|
|
|
|
$child->removeParent();
|
2012-08-11 15:39:11 +00: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;
|
|
|
|
}
|
|
|
|
}
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('[WARN] Item::removeChild : Item is not a child (' . $id . ').', Logger::DEBUG);
|
2012-08-11 15:39:11 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get parent item
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return object
|
2012-08-11 15:39:11 +00:00
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
protected function getParent()
|
|
|
|
{
|
2012-08-11 15:39:11 +00:00
|
|
|
return $this->parent;
|
2012-08-11 15:09:35 +00:00
|
|
|
}
|
2012-08-10 15:46:39 +00:00
|
|
|
|
2012-08-11 16:12:35 +00:00
|
|
|
/**
|
2018-12-07 05:50:16 +00:00
|
|
|
* Set conversation thread
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
2018-12-07 05:50:16 +00:00
|
|
|
* @param Thread $thread
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return void
|
2012-08-11 16:12:35 +00:00
|
|
|
*/
|
2018-12-07 05:50:16 +00:00
|
|
|
public function setThread(Thread $thread = null)
|
2017-11-16 20:54:03 +00:00
|
|
|
{
|
2018-12-07 05:50:16 +00:00
|
|
|
$this->thread = $thread;
|
2012-08-11 16:12:35 +00:00
|
|
|
|
|
|
|
// Set it on our children too
|
2017-11-16 20:54:03 +00:00
|
|
|
foreach ($this->getChildren() as $child) {
|
2018-12-07 05:50:16 +00:00
|
|
|
$child->setThread($thread);
|
2016-12-22 10:21:50 +00:00
|
|
|
}
|
2012-08-11 16:12:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-11-19 19:15:25 +00:00
|
|
|
* Get conversation
|
|
|
|
*
|
2018-12-07 05:50:16 +00:00
|
|
|
* @return Thread
|
2012-08-11 16:12:35 +00:00
|
|
|
*/
|
2017-12-07 14:05:23 +00:00
|
|
|
public function getThread()
|
2017-11-16 20:54:03 +00:00
|
|
|
{
|
2017-12-07 14:05:23 +00:00
|
|
|
return $this->thread;
|
2012-08-11 16:12:35 +00:00
|
|
|
}
|
|
|
|
|
2012-08-10 15:46:39 +00:00
|
|
|
/**
|
|
|
|
* Get raw data
|
|
|
|
*
|
|
|
|
* We shouldn't need this
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return array
|
2012-08-10 15:46:39 +00:00
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
public function getData()
|
|
|
|
{
|
2012-08-10 15:46:39 +00:00
|
|
|
return $this->data;
|
|
|
|
}
|
2012-08-10 17:57:39 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a data value
|
|
|
|
*
|
2018-12-07 05:50:16 +00:00
|
|
|
* @param string $name key
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return mixed value on success
|
|
|
|
* false on failure
|
2012-08-10 17:57:39 +00:00
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
public function getDataValue($name)
|
|
|
|
{
|
2016-12-22 10:21:50 +00:00
|
|
|
if (!isset($this->data[$name])) {
|
2018-10-30 13:58:45 +00:00
|
|
|
// Logger::log('[ERROR] Item::getDataValue : Item has no value name "'. $name .'".', Logger::DEBUG);
|
2012-08-10 17:57:39 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->data[$name];
|
|
|
|
}
|
|
|
|
|
2012-08-11 14:56:10 +00:00
|
|
|
/**
|
|
|
|
* Set template
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
2018-12-07 05:50:16 +00:00
|
|
|
* @param string $name template name
|
|
|
|
* @return bool
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2012-08-11 14:56:10 +00:00
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
private function setTemplate($name)
|
|
|
|
{
|
2018-11-30 14:06:22 +00:00
|
|
|
if (empty($this->available_templates[$name])) {
|
2018-10-30 13:58:45 +00:00
|
|
|
Logger::log('[ERROR] Item::setTemplate : Template not available ("' . $name . '").', Logger::DEBUG);
|
2012-08-11 14:56:10 +00:00
|
|
|
return false;
|
2012-08-11 15:04:07 +00:00
|
|
|
}
|
2012-12-22 19:57:29 +00:00
|
|
|
|
2013-01-12 12:58:54 +00:00
|
|
|
$this->template = $this->available_templates[$name];
|
2018-12-07 05:50:16 +00:00
|
|
|
|
|
|
|
return true;
|
2012-08-11 14:56:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get template
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return object
|
2012-08-11 14:56:10 +00:00
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
private function getTemplate()
|
|
|
|
{
|
2012-08-11 14:56:10 +00:00
|
|
|
return $this->template;
|
|
|
|
}
|
2012-08-11 15:09:35 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if this is a toplevel post
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return boolean
|
2012-08-11 15:09:35 +00:00
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
private function isToplevel()
|
|
|
|
{
|
2012-08-11 15:09:35 +00:00
|
|
|
return $this->toplevel;
|
|
|
|
}
|
2012-08-11 15:15:19 +00:00
|
|
|
|
|
|
|
/**
|
2012-08-17 14:40:41 +00:00
|
|
|
* Check if this is writable
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return boolean
|
2012-08-11 15:15:19 +00:00
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
private function isWritable()
|
|
|
|
{
|
2017-12-07 14:05:23 +00:00
|
|
|
$conv = $this->getThread();
|
2012-09-10 08:14:30 +00:00
|
|
|
|
2016-12-22 10:21:50 +00:00
|
|
|
if ($conv) {
|
2012-09-10 08:14:30 +00: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 21:44:48 +00:00
|
|
|
// bug #517 - this fixes for conversation owner
|
2017-11-19 19:15:25 +00:00
|
|
|
if ($conv->getMode() == 'profile' && $conv->getProfileOwner() == local_user()) {
|
2016-12-22 10:21:50 +00:00
|
|
|
return true;
|
|
|
|
}
|
2012-12-09 21:44:48 +00:00
|
|
|
|
|
|
|
// this fixes for visitors
|
2017-11-19 19:15:25 +00:00
|
|
|
return ($this->writable || ($this->isVisiting() && $conv->getMode() == 'profile'));
|
2012-09-10 08:14:30 +00:00
|
|
|
}
|
2012-08-17 14:40:41 +00:00
|
|
|
return $this->writable;
|
2012-08-11 15:15:19 +00:00
|
|
|
}
|
2012-08-11 15:48:07 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Count the total of our descendants
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return integer
|
2012-08-11 15:48:07 +00:00
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
private function countDescendants()
|
|
|
|
{
|
|
|
|
$children = $this->getChildren();
|
2012-08-11 15:48:07 +00:00
|
|
|
$total = count($children);
|
2016-12-22 10:21:50 +00:00
|
|
|
if ($total > 0) {
|
|
|
|
foreach ($children as $child) {
|
2017-11-16 20:54:03 +00:00
|
|
|
$total += $child->countDescendants();
|
2012-08-11 15:48:07 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-16 20:54:03 +00:00
|
|
|
|
2012-08-11 15:48:07 +00:00
|
|
|
return $total;
|
|
|
|
}
|
2012-08-12 14:02:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the template for the comment box
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return string
|
2012-08-12 14:02:47 +00:00
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
private function getCommentBoxTemplate()
|
|
|
|
{
|
2012-08-12 14:02:47 +00:00
|
|
|
return $this->comment_box_template;
|
|
|
|
}
|
|
|
|
|
2019-01-28 21:22:03 +00:00
|
|
|
/**
|
|
|
|
* Get default text for the comment box
|
|
|
|
*
|
|
|
|
* @return string
|
2019-02-09 04:07:36 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2019-01-28 21:22:03 +00:00
|
|
|
*/
|
2019-01-28 21:53:13 +00:00
|
|
|
private function getDefaultText()
|
2019-01-28 21:22:03 +00:00
|
|
|
{
|
2019-12-15 21:34:11 +00:00
|
|
|
$a = DI::app();
|
2019-02-06 07:30:31 +00:00
|
|
|
|
2019-02-21 20:42:00 +00:00
|
|
|
if (!local_user()) {
|
2019-02-09 04:07:36 +00:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2021-08-09 20:33:46 +00:00
|
|
|
$owner = User::getOwnerDataById($a->getLoggedInUserId());
|
2019-02-21 20:42:00 +00:00
|
|
|
|
2019-02-09 04:07:36 +00:00
|
|
|
if (!Feature::isEnabled(local_user(), 'explicit_mentions')) {
|
|
|
|
return '';
|
2019-01-30 21:33:23 +00:00
|
|
|
}
|
|
|
|
|
2021-02-16 07:20:41 +00:00
|
|
|
$item = PostModel::selectFirst(['author-addr', 'uri-id', 'network', 'gravity'], ['id' => $this->getId()]);
|
2019-01-28 21:22:03 +00:00
|
|
|
if (!DBA::isResult($item) || empty($item['author-addr'])) {
|
|
|
|
// Should not happen
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2021-02-16 07:20:41 +00:00
|
|
|
if (($item['author-addr'] != $owner['addr']) && (($item['gravity'] != GRAVITY_PARENT) || !in_array($item['network'], [Protocol::DIASPORA]))) {
|
2019-01-30 03:36:24 +00:00
|
|
|
$text = '@' . $item['author-addr'] . ' ';
|
|
|
|
} else {
|
|
|
|
$text = '';
|
|
|
|
}
|
2019-01-28 21:22:03 +00:00
|
|
|
|
2020-05-01 06:01:22 +00:00
|
|
|
$terms = Tag::getByURIId($item['uri-id'], [Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION]);
|
2019-01-28 21:22:03 +00:00
|
|
|
foreach ($terms as $term) {
|
2021-05-11 01:50:42 +00:00
|
|
|
if (!$term['url']) {
|
|
|
|
DI::logger()->warning('Mention term with no URL', ['term' => $term]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-07-15 17:06:48 +00:00
|
|
|
$profile = Contact::getByURL($term['url'], false, ['addr', 'contact-type']);
|
2021-05-11 01:50:42 +00:00
|
|
|
if (!empty($profile['addr']) && (($profile['contact-type'] ?? Contact::TYPE_UNKNOWN) != Contact::TYPE_COMMUNITY) &&
|
2019-02-21 20:42:00 +00:00
|
|
|
($profile['addr'] != $owner['addr']) && !strstr($text, $profile['addr'])) {
|
2019-01-28 21:22:03 +00:00
|
|
|
$text .= '@' . $profile['addr'] . ' ';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $text;
|
|
|
|
}
|
|
|
|
|
2012-08-12 14:02:47 +00:00
|
|
|
/**
|
|
|
|
* Get the comment box
|
|
|
|
*
|
2017-11-19 19:15:25 +00:00
|
|
|
* @param string $indent Indent value
|
|
|
|
*
|
|
|
|
* @return mixed The comment box string (empty if no comment box)
|
|
|
|
* false on failure
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2012-08-12 14:02:47 +00:00
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
private function getCommentBox($indent)
|
|
|
|
{
|
2019-12-15 21:34:11 +00:00
|
|
|
$a = DI::app();
|
2015-10-04 12:41:39 +00:00
|
|
|
|
2012-08-12 14:02:47 +00:00
|
|
|
$comment_box = '';
|
2017-12-07 14:05:23 +00:00
|
|
|
$conv = $this->getThread();
|
2012-08-12 14:02:47 +00:00
|
|
|
|
2017-11-19 19:15:25 +00:00
|
|
|
if ($conv->isWritable() && $this->isWritable()) {
|
2012-08-12 14:02:47 +00:00
|
|
|
/*
|
2018-01-17 19:22:38 +00:00
|
|
|
* Hmmm, code depending on the presence of a particular addon?
|
2012-08-12 14:02:47 +00:00
|
|
|
* This should be better if done by a hook
|
|
|
|
*/
|
2020-09-09 20:49:03 +00:00
|
|
|
$qcomment = null;
|
2018-10-24 14:20:10 +00:00
|
|
|
if (Addon::isEnabled('qcomment')) {
|
2020-09-09 20:49:03 +00:00
|
|
|
$words = DI::pConfig()->get(local_user(), 'qcomment', 'words');
|
|
|
|
$qcomment = $words ? explode("\n", $words) : [];
|
2012-08-12 14:02:47 +00:00
|
|
|
}
|
2017-11-16 20:54:03 +00:00
|
|
|
|
2018-01-07 17:14:43 +00:00
|
|
|
// Fetch the user id from the parent when the owner user is empty
|
|
|
|
$uid = $conv->getProfileOwner();
|
|
|
|
$parent_uid = $this->getDataValue('uid');
|
|
|
|
|
2021-07-24 20:34:07 +00:00
|
|
|
$contact = Contact::getById($a->getContactId());
|
2021-07-24 11:49:11 +00:00
|
|
|
|
2019-01-28 21:53:13 +00:00
|
|
|
$default_text = $this->getDefaultText();
|
2019-01-28 21:22:03 +00:00
|
|
|
|
2018-01-10 21:08:23 +00:00
|
|
|
if (!is_null($parent_uid) && ($uid != $parent_uid)) {
|
2018-01-07 17:14:43 +00:00
|
|
|
$uid = $parent_uid;
|
|
|
|
}
|
|
|
|
|
2018-10-31 14:44:06 +00:00
|
|
|
$template = Renderer::getMarkupTemplate($this->getCommentBoxTemplate());
|
2018-10-31 14:35:50 +00:00
|
|
|
$comment_box = Renderer::replaceMacros($template, [
|
2019-12-16 00:30:34 +00:00
|
|
|
'$return_path' => DI::args()->getQueryString(),
|
2017-11-16 20:54:03 +00:00
|
|
|
'$threaded' => $this->isThreaded(),
|
2016-12-22 10:21:50 +00:00
|
|
|
'$jsreload' => '',
|
2018-07-19 13:52:05 +00:00
|
|
|
'$wall' => ($conv->getMode() === 'profile'),
|
2017-11-16 20:54:03 +00:00
|
|
|
'$id' => $this->getId(),
|
|
|
|
'$parent' => $this->getId(),
|
2016-12-22 10:21:50 +00:00
|
|
|
'$qcomment' => $qcomment,
|
2019-01-28 21:22:03 +00:00
|
|
|
'$default' => $default_text,
|
2018-01-07 17:14:43 +00:00
|
|
|
'$profile_uid' => $uid,
|
2021-07-24 11:49:11 +00:00
|
|
|
'$mylink' => DI::baseUrl()->remove($contact['url'] ?? ''),
|
2020-01-18 19:52:34 +00:00
|
|
|
'$mytitle' => DI::l10n()->t('This is you'),
|
2021-07-24 11:49:11 +00:00
|
|
|
'$myphoto' => DI::baseUrl()->remove($contact['thumb'] ?? ''),
|
2020-01-18 19:52:34 +00:00
|
|
|
'$comment' => DI::l10n()->t('Comment'),
|
|
|
|
'$submit' => DI::l10n()->t('Submit'),
|
2020-02-12 04:45:47 +00:00
|
|
|
'$loading' => DI::l10n()->t('Loading...'),
|
2020-01-18 19:52:34 +00: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 10:21:50 +00:00
|
|
|
'$indent' => $indent,
|
2018-11-05 08:37:03 +00:00
|
|
|
'$rand_num' => Crypto::randomDigits(12)
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2012-08-12 14:02:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $comment_box;
|
|
|
|
}
|
2012-08-12 14:18:53 +00:00
|
|
|
|
2017-11-19 19:15:25 +00:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
private function getRedirectUrl()
|
|
|
|
{
|
2012-08-12 14:18:53 +00:00
|
|
|
return $this->redirect_url;
|
|
|
|
}
|
2012-08-12 15:20:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if we are a wall to wall item and set the relevant properties
|
2017-11-19 19:15:25 +00:00
|
|
|
*
|
|
|
|
* @return void
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Exception
|
2012-08-12 15:20:38 +00:00
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
protected function checkWallToWall()
|
|
|
|
{
|
2019-12-15 21:34:11 +00:00
|
|
|
$a = DI::app();
|
2017-12-07 14:05:23 +00:00
|
|
|
$conv = $this->getThread();
|
2012-08-12 15:20:38 +00:00
|
|
|
$this->wall_to_wall = false;
|
2014-08-12 22:13:13 +00:00
|
|
|
|
2017-11-16 20:54:03 +00:00
|
|
|
if ($this->isToplevel()) {
|
2017-11-19 19:15:25 +00:00
|
|
|
if ($conv->getMode() !== 'profile') {
|
2021-07-24 11:49:11 +00:00
|
|
|
if ($this->getDataValue('owner-link')) {
|
2018-11-08 15:46:50 +00: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 20:54:03 +00:00
|
|
|
$owner_namematch = (($this->getDataValue('owner-name')) && $this->getDataValue('owner-name') == $this->getDataValue('author-name'));
|
2014-08-25 12:09:56 +00:00
|
|
|
|
2018-07-02 05:41:55 +00:00
|
|
|
if (!$owner_linkmatch && !$alias_linkmatch && !$owner_namematch) {
|
2012-08-18 15:36:38 +00:00
|
|
|
// The author url doesn't match the owner (typically the contact)
|
2017-04-30 04:21:02 +00: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 15:36:38 +00: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 04:21:02 +00: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 12:09:56 +00:00
|
|
|
|
2012-08-18 15:36:38 +00:00
|
|
|
|
2017-11-16 20:54:03 +00:00
|
|
|
$this->owner_name = $this->getDataValue('owner-name');
|
2012-08-18 15:36:38 +00:00
|
|
|
$this->wall_to_wall = true;
|
2018-07-02 05:41:55 +00:00
|
|
|
|
|
|
|
$owner = ['uid' => 0, 'id' => $this->getDataValue('owner-id'),
|
|
|
|
'network' => $this->getDataValue('owner-network'),
|
2018-07-02 21:15:54 +00:00
|
|
|
'url' => $this->getDataValue('owner-link')];
|
2019-02-22 02:29:22 +00:00
|
|
|
$this->owner_url = Contact::magicLinkByContact($owner);
|
2012-08-12 15:20:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-22 10:21:50 +00:00
|
|
|
if (!$this->wall_to_wall) {
|
2017-11-16 20:54:03 +00:00
|
|
|
$this->setTemplate('wall');
|
2012-08-12 15:20:38 +00:00
|
|
|
$this->owner_url = '';
|
|
|
|
$this->owner_name = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-19 19:15:25 +00:00
|
|
|
/**
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
private function isWallToWall()
|
|
|
|
{
|
2012-08-12 15:20:38 +00:00
|
|
|
return $this->wall_to_wall;
|
|
|
|
}
|
|
|
|
|
2017-11-19 19:15:25 +00:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
private function getOwnerUrl()
|
|
|
|
{
|
2012-08-12 15:20:38 +00:00
|
|
|
return $this->owner_url;
|
|
|
|
}
|
|
|
|
|
2017-11-19 19:15:25 +00:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
private function getOwnerName()
|
|
|
|
{
|
2012-08-12 15:20:38 +00:00
|
|
|
return $this->owner_name;
|
|
|
|
}
|
2012-09-10 08:14:30 +00:00
|
|
|
|
2017-11-19 19:15:25 +00:00
|
|
|
/**
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2017-11-16 20:54:03 +00:00
|
|
|
private function isVisiting()
|
|
|
|
{
|
2012-09-10 08:14:30 +00:00
|
|
|
return $this->visiting;
|
|
|
|
}
|
2012-08-10 15:46:39 +00:00
|
|
|
}
|