3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Object;
24 use Friendica\Content\ContactSelector;
25 use Friendica\Content\Feature;
26 use Friendica\Core\Addon;
27 use Friendica\Core\Hook;
28 use Friendica\Core\Logger;
29 use Friendica\Core\Protocol;
30 use Friendica\Core\Renderer;
31 use Friendica\Core\Session;
32 use Friendica\Database\DBA;
34 use Friendica\Model\Contact;
35 use Friendica\Model\Item;
36 use Friendica\Model\Tag;
37 use Friendica\Model\User;
38 use Friendica\Protocol\Activity;
39 use Friendica\Util\Crypto;
40 use Friendica\Util\DateTimeFormat;
41 use Friendica\Util\Strings;
42 use Friendica\Util\Temporal;
50 private $template = null;
51 private $available_templates = [
52 'wall' => 'wall_thread.tpl',
53 'wall2wall' => 'wallwall_thread.tpl'
55 private $comment_box_template = 'comment_item.tpl';
56 private $toplevel = false;
57 private $writable = false;
61 private $children = [];
62 private $parent = null;
67 private $thread = null;
68 private $redirect_url = null;
69 private $owner_url = '';
70 private $owner_photo = '';
71 private $owner_name = '';
72 private $wall_to_wall = false;
73 private $threaded = false;
74 private $visiting = false;
79 * @param array $data data array
82 public function __construct(array $data)
85 $this->setTemplate('wall');
86 $this->toplevel = $this->getId() == $this->getDataValue('parent');
88 if (!empty(Session::getUserIDForVisitorContactID($this->getDataValue('contact-id')))) {
89 $this->visiting = true;
92 $this->writable = $this->getDataValue('writable') || $this->getDataValue('self');
93 $author = ['uid' => 0, 'id' => $this->getDataValue('author-id'),
94 'network' => $this->getDataValue('author-network'),
95 'url' => $this->getDataValue('author-link')];
96 $this->redirect_url = Contact::magicLinkByContact($author);
97 if (!$this->isToplevel()) {
98 $this->threaded = true;
101 // Prepare the children
102 if (!empty($data['children'])) {
103 foreach ($data['children'] as $item) {
104 // Only add will be displayed
105 if ($item['network'] === Protocol::MAIL && local_user() != $item['uid']) {
107 } elseif (!visible_activity($item)) {
111 // You can always comment on Diaspora and OStatus items
112 if (in_array($item['network'], [Protocol::OSTATUS, Protocol::DIASPORA]) && (local_user() == $item['uid'])) {
113 $item['writable'] = true;
116 $item['pagedrop'] = $data['pagedrop'];
117 $child = new Post($item);
118 $this->addChild($child);
124 * Get data in a form usable by a conversation template
126 * @param array $conv_responses conversation responses
127 * @param integer $thread_level default = 1
129 * @return mixed The data requested on success
131 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
132 * @throws \ImagickException
134 public function getTemplateData(array $conv_responses, $thread_level = 1)
138 $item = $this->getData();
140 // If the time between "created" and "edited" differs we add
141 // a notice that the post was edited.
142 // Note: In some networks reshared items seem to have (sometimes) a difference
143 // between creation time and edit time of a second. Thats why we add the notice
144 // only if the difference is more than 1 second.
145 if (strtotime($item['edited']) - strtotime($item['created']) > 1) {
147 'label' => DI::l10n()->t('This entry was edited'),
148 'date' => DateTimeFormat::local($item['edited'], 'r'),
149 'relative' => Temporal::getRelativeDate($item['edited'])
163 $ispinned = "unpinned";
164 $isstarred = "unstarred";
168 $total_children = $this->countDescendants();
170 $conv = $this->getThread();
172 $lock = ((($item['private'] == Item::PRIVATE) || (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid'])
173 || strlen($item['deny_cid']) || strlen($item['deny_gid']))))
174 ? DI::l10n()->t('Private Message')
177 $shareable = in_array($conv->getProfileOwner(), [0, local_user()]) && $item['private'] != Item::PRIVATE;
182 if (Strings::compareLink($a->contact['url'], $item['author-link'])) {
183 if ($item["event-id"] != 0) {
184 $edpost = ["events/event/" . $item['event-id'], DI::l10n()->t("Edit")];
186 $edpost = ["editpost/" . $item['id'], DI::l10n()->t("Edit")];
189 $dropping = in_array($item['uid'], [0, local_user()]);
192 // Editing on items of not subscribed users isn't currently possible
193 // There are some issues on editing that prevent this.
194 // But also it is an issue of the supported protocols that doesn't allow editing at all.
195 if ($item['uid'] == 0) {
199 if (($this->getDataValue('uid') == local_user()) || $this->isVisiting()) {
203 $origin = $item['origin'];
206 /// @todo This shouldn't be done as query here, but better during the data creation.
207 // it is now done here, since during the RC phase we shouldn't make to intense changes.
208 $parent = Item::selectFirst(['origin'], ['id' => $item['parent']]);
209 if (DBA::isResult($parent)) {
210 $origin = $parent['origin'];
212 } elseif ($item['pinned']) {
213 $pinned = DI::l10n()->t('pinned item');
216 if ($origin && ($item['gravity'] != GRAVITY_PARENT) && ($item['network'] == Protocol::ACTIVITYPUB)) {
217 // ActivityPub doesn't allow removal of remote comments
218 $delete = DI::l10n()->t('Delete locally');
220 // Showing the one or the other text, depending upon if we can only hide it or really delete it.
221 $delete = $origin ? DI::l10n()->t('Delete globally') : DI::l10n()->t('Remove locally');
227 'dropping' => $dropping,
228 'pagedrop' => $item['pagedrop'],
229 'select' => DI::l10n()->t('Select'),
234 $filer = (($conv->getProfileOwner() == local_user() && ($item['uid'] != 0)) ? DI::l10n()->t("save to folder") : false);
236 $profile_name = $item['author-name'];
237 if (!empty($item['author-link']) && empty($item['author-name'])) {
238 $profile_name = $item['author-link'];
241 $author = ['uid' => 0, 'id' => $item['author-id'],
242 'network' => $item['author-network'], 'url' => $item['author-link']];
244 if (Session::isAuthenticated()) {
245 $profile_link = Contact::magicLinkByContact($author);
247 $profile_link = $item['author-link'];
250 if (strpos($profile_link, 'redir/') === 0) {
251 $sparkle = ' sparkle';
254 $locate = ['location' => $item['location'], 'coord' => $item['coord'], 'html' => ''];
255 Hook::callAll('render_location', $locate);
256 $location_html = $locate['html'] ?: Strings::escapeHtml($locate['location'] ?: $locate['coord'] ?: '');
258 // process action responses - e.g. like/dislike/attend/agree/whatever
259 $response_verbs = ['like', 'dislike', 'announce'];
263 if ($item['object-type'] === Activity\ObjectType::EVENT) {
264 $response_verbs[] = 'attendyes';
265 $response_verbs[] = 'attendno';
266 $response_verbs[] = 'attendmaybe';
267 if ($conv->isWritable()) {
269 $attend = [DI::l10n()->t('I will attend'), DI::l10n()->t('I will not attend'), DI::l10n()->t('I might attend')];
274 foreach ($response_verbs as $value => $verb) {
275 $responses[$verb] = [
276 'self' => $conv_responses[$verb][$item['uri'] . '-self'] ?? 0,
277 'output' => !empty($conv_responses[$verb][$item['uri']]) ? format_like($conv_responses[$verb][$item['uri']], $conv_responses[$verb][$item['uri'] . '-l'], $verb, $item['uri']) : '',
282 * We should avoid doing this all the time, but it depends on the conversation mode
283 * And the conv mode may change when we change the conv, or it changes its mode
284 * Maybe we should establish a way to be notified about conversation changes
286 $this->checkWallToWall();
288 if ($this->isWallToWall() && ($this->getOwnerUrl() == $this->getRedirectUrl())) {
289 $osparkle = ' sparkle';
294 if ($this->isToplevel()) {
296 $thread = Item::selectFirstThreadForUser(local_user(), ['ignored'], ['iid' => $item['id']]);
297 if (DBA::isResult($thread)) {
299 'do' => DI::l10n()->t("ignore thread"),
300 'undo' => DI::l10n()->t("unignore thread"),
301 'toggle' => DI::l10n()->t("toggle ignore status"),
302 'classdo' => $thread['ignored'] ? "hidden" : "",
303 'classundo' => $thread['ignored'] ? "" : "hidden",
304 'ignored' => DI::l10n()->t('ignored'),
308 if ($conv->getProfileOwner() == local_user() && ($item['uid'] != 0)) {
310 $ispinned = ($item['pinned'] ? 'pinned' : 'unpinned');
313 'do' => DI::l10n()->t('pin'),
314 'undo' => DI::l10n()->t('unpin'),
315 'toggle' => DI::l10n()->t('toggle pin status'),
316 'classdo' => $item['pinned'] ? 'hidden' : '',
317 'classundo' => $item['pinned'] ? '' : 'hidden',
318 'pinned' => DI::l10n()->t('pinned'),
322 $isstarred = (($item['starred']) ? "starred" : "unstarred");
325 'do' => DI::l10n()->t("add star"),
326 'undo' => DI::l10n()->t("remove star"),
327 'toggle' => DI::l10n()->t("toggle star status"),
328 'classdo' => $item['starred'] ? "hidden" : "",
329 'classundo' => $item['starred'] ? "" : "hidden",
330 'starred' => DI::l10n()->t('starred'),
334 'add' => DI::l10n()->t("add tag"),
343 if ($conv->isWritable()) {
344 $buttons['like'] = [DI::l10n()->t("I like this \x28toggle\x29") , DI::l10n()->t("like")];
345 $buttons['dislike'] = [DI::l10n()->t("I don't like this \x28toggle\x29"), DI::l10n()->t("dislike")];
347 $buttons['share'] = [DI::l10n()->t('Share this'), DI::l10n()->t('share')];
351 $comment_html = $this->getCommentBox($indent);
353 if (strcmp(DateTimeFormat::utc($item['created']), DateTimeFormat::utc('now - 12 hours')) > 0) {
357 localize_item($item);
359 $body_html = Item::prepareBody($item, true);
361 list($categories, $folders) = DI::contentItem()->determineCategoriesTerms($item);
363 if (!empty($item['content-warning']) && DI::pConfig()->get(local_user(), 'system', 'disable_cw', false)) {
364 $title = ucfirst($item['content-warning']);
366 $title = $item['title'];
369 if (DI::pConfig()->get(local_user(), 'system', 'hide_dislike')) {
370 $buttons['dislike'] = false;
373 // Disable features that aren't available in several networks
374 if (!in_array($item["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA])) {
375 if ($buttons["dislike"]) {
376 $buttons["dislike"] = false;
383 if ($buttons["like"] && in_array($item["network"], [Protocol::FEED, Protocol::MAIL])) {
384 $buttons["like"] = false;
387 $tags = Tag::populateFromItem($item);
389 $ago = Temporal::getRelativeDate($item['created']);
390 $ago_received = Temporal::getRelativeDate($item['received']);
391 if (DI::config()->get('system', 'show_received') && (abs(strtotime($item['created']) - strtotime($item['received'])) > DI::config()->get('system', 'show_received_seconds')) && ($ago != $ago_received)) {
392 $ago = DI::l10n()->t('%s (Received %s)', $ago, $ago_received);
395 // Fetching of Diaspora posts doesn't always work. There are issues with reshares and possibly comments
396 if (($item['network'] != Protocol::DIASPORA) && empty($comment) && !empty(Session::get('remote_comment'))) {
397 $remote_comment = [DI::l10n()->t('Comment this item on your system'), DI::l10n()->t('remote comment'),
398 str_replace('{uri}', urlencode($item['uri']), Session::get('remote_comment'))];
400 $remote_comment = '';
404 if (!empty($item['direction'])) {
405 $direction = $item['direction'];
406 } elseif (DI::config()->get('debug', 'show_direction')) {
407 $conversation = DBA::selectFirst('conversation', ['direction'], ['item-uri' => $item['uri']]);
408 if (!empty($conversation['direction']) && in_array($conversation['direction'], [1, 2])) {
409 $direction_title = [1 => DI::l10n()->t('Pushed'), 2 => DI::l10n()->t('Pulled')];
410 $direction = ['direction' => $conversation['direction'], 'title' => $direction_title[$conversation['direction']]];
415 'template' => $this->getTemplate(),
416 'type' => implode("", array_slice(explode("/", $item['verb']), -1)),
417 'suppress_tags' => DI::config()->get('system', 'suppress_tags'),
418 'tags' => $tags['tags'],
419 'hashtags' => $tags['hashtags'],
420 'mentions' => $tags['mentions'],
421 'implicit_mentions' => $tags['implicit_mentions'],
422 'txt_cats' => DI::l10n()->t('Categories:'),
423 'txt_folders' => DI::l10n()->t('Filed under:'),
424 'has_cats' => ((count($categories)) ? 'true' : ''),
425 'has_folders' => ((count($folders)) ? 'true' : ''),
426 'categories' => $categories,
427 'folders' => $folders,
428 'body_html' => $body_html,
429 'text' => strip_tags($body_html),
430 'id' => $this->getId(),
431 'guid' => urlencode($item['guid']),
432 'isevent' => $isevent,
434 'linktitle' => DI::l10n()->t('View %s\'s profile @ %s', $profile_name, $item['author-link']),
435 'olinktitle' => DI::l10n()->t('View %s\'s profile @ %s', $this->getOwnerName(), $item['owner-link']),
436 'to' => DI::l10n()->t('to'),
437 'via' => DI::l10n()->t('via'),
438 'wall' => DI::l10n()->t('Wall-to-Wall'),
439 'vwall' => DI::l10n()->t('via Wall-To-Wall:'),
440 'profile_url' => $profile_link,
441 'name' => $profile_name,
442 'item_photo_menu_html' => item_photo_menu($item),
443 'thumb' => DI::baseUrl()->remove($item['author-avatar']),
444 'osparkle' => $osparkle,
445 'sparkle' => $sparkle,
447 'localtime' => DateTimeFormat::local($item['created'], 'r'),
448 'ago' => $item['app'] ? DI::l10n()->t('%s from %s', $ago, $item['app']) : $ago,
449 'app' => $item['app'],
452 'location_html' => $location_html,
455 'owner_self' => $item['author-link'] == Session::get('my_url'),
456 'owner_url' => $this->getOwnerUrl(),
457 'owner_photo' => DI::baseUrl()->remove($item['owner-avatar']),
458 'owner_name' => $this->getOwnerName(),
459 'plink' => Item::getPlink($item),
461 'ispinned' => $ispinned,
464 'isstarred' => $isstarred,
471 'like_html' => $responses['like']['output'],
472 'dislike_html' => $responses['dislike']['output'],
473 'responses' => $responses,
474 'switchcomment' => DI::l10n()->t('Comment'),
475 'reply_label' => DI::l10n()->t('Reply to %s', $profile_name),
476 'comment_html' => $comment_html,
477 'remote_comment' => $remote_comment,
478 'menu' => DI::l10n()->t('More'),
479 'previewing' => $conv->isPreview() ? ' preview ' : '',
480 'wait' => DI::l10n()->t('Please wait'),
481 'thread_level' => $thread_level,
483 'network' => $item["network"],
484 'network_name' => ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network']),
485 'network_icon' => ContactSelector::networkToIcon($item['network'], $item['author-link']),
486 'received' => $item['received'],
487 'commented' => $item['commented'],
488 'created_date' => $item['created'],
489 'uriid' => $item['uri-id'],
490 'return' => (DI::args()->getCommand()) ? bin2hex(DI::args()->getCommand()) : '',
491 'direction' => $direction,
492 'reshared' => $item['reshared'] ?? '',
494 'queue_count' => $item['delivery_queue_count'],
495 'queue_done' => $item['delivery_queue_done'] + $item['delivery_queue_failed'], /// @todo Possibly display it separately in the future
496 'notifier_pending' => DI::l10n()->t('Notifier task is pending'),
497 'delivery_pending' => DI::l10n()->t('Delivery to remote servers is pending'),
498 'delivery_underway' => DI::l10n()->t('Delivery to remote servers is underway'),
499 'delivery_almost' => DI::l10n()->t('Delivery to remote servers is mostly done'),
500 'delivery_done' => DI::l10n()->t('Delivery to remote servers is done'),
504 $arr = ['item' => $item, 'output' => $tmp_item];
505 Hook::callAll('display_item', $arr);
507 $result = $arr['output'];
509 $result['children'] = [];
510 $children = $this->getChildren();
511 $nb_children = count($children);
512 if ($nb_children > 0) {
513 foreach ($children as $child) {
514 $result['children'][] = $child->getTemplateData($conv_responses, $thread_level + 1);
518 if (($nb_children > 2) || ($thread_level > 1)) {
519 $result['children'][0]['comment_firstcollapsed'] = true;
520 $result['children'][0]['num_comments'] = DI::l10n()->tt('%d comment', '%d comments', $total_children);
521 $result['children'][0]['show_text'] = DI::l10n()->t('Show more');
522 $result['children'][0]['hide_text'] = DI::l10n()->t('Show fewer');
523 if ($thread_level > 1) {
524 $result['children'][$nb_children - 1]['comment_lastcollapsed'] = true;
526 $result['children'][$nb_children - 3]['comment_lastcollapsed'] = true;
531 if ($this->isToplevel()) {
532 $result['total_comments_num'] = "$total_children";
533 $result['total_comments_text'] = DI::l10n()->tt('comment', 'comments', $total_children);
536 $result['private'] = $item['private'];
537 $result['toplevel'] = ($this->isToplevel() ? 'toplevel_item' : '');
539 if ($this->isThreaded()) {
540 $result['flatten'] = false;
541 $result['threaded'] = true;
543 $result['flatten'] = true;
544 $result['threaded'] = false;
553 public function getId()
555 return $this->getDataValue('id');
561 public function isThreaded()
563 return $this->threaded;
569 * @param Post $item The child item to add
574 public function addChild(Post $item)
576 $item_id = $item->getId();
578 Logger::log('[ERROR] Post::addChild : Item has no ID!!', Logger::DEBUG);
580 } elseif ($this->getChild($item->getId())) {
581 Logger::log('[WARN] Post::addChild : Item already exists (' . $item->getId() . ').', Logger::DEBUG);
585 $activity = DI::activity();
588 * Only add what will be displayed
590 if ($item->getDataValue('network') === Protocol::MAIL && local_user() != $item->getDataValue('uid')) {
592 } elseif ($activity->match($item->getDataValue('verb'), Activity::LIKE) ||
593 $activity->match($item->getDataValue('verb'), Activity::DISLIKE)) {
597 $item->setParent($this);
598 $this->children[] = $item;
600 return end($this->children);
604 * Get a child by its ID
606 * @param integer $id The child id
610 public function getChild($id)
612 foreach ($this->getChildren() as $child) {
613 if ($child->getId() == $id) {
622 * Get all our children
626 public function getChildren()
628 return $this->children;
634 * @param Post $item The item to set as parent
638 protected function setParent(Post $item)
640 $parent = $this->getParent();
642 $parent->removeChild($this);
645 $this->parent = $item;
646 $this->setThread($item->getThread());
654 protected function removeParent()
656 $this->parent = null;
657 $this->thread = null;
663 * @param Post $item The child to be removed
665 * @return boolean Success or failure
668 public function removeChild(Post $item)
670 $id = $item->getId();
671 foreach ($this->getChildren() as $key => $child) {
672 if ($child->getId() == $id) {
673 $child->removeParent();
674 unset($this->children[$key]);
675 // Reindex the array, in order to make sure there won't be any trouble on loops using count()
676 $this->children = array_values($this->children);
680 Logger::log('[WARN] Item::removeChild : Item is not a child (' . $id . ').', Logger::DEBUG);
689 protected function getParent()
691 return $this->parent;
695 * Set conversation thread
697 * @param Thread $thread
701 public function setThread(Thread $thread = null)
703 $this->thread = $thread;
705 // Set it on our children too
706 foreach ($this->getChildren() as $child) {
707 $child->setThread($thread);
716 public function getThread()
718 return $this->thread;
724 * We shouldn't need this
728 public function getData()
736 * @param string $name key
738 * @return mixed value on success
741 public function getDataValue($name)
743 if (!isset($this->data[$name])) {
744 // Logger::log('[ERROR] Item::getDataValue : Item has no value name "'. $name .'".', Logger::DEBUG);
748 return $this->data[$name];
754 * @param string $name template name
758 private function setTemplate($name)
760 if (empty($this->available_templates[$name])) {
761 Logger::log('[ERROR] Item::setTemplate : Template not available ("' . $name . '").', Logger::DEBUG);
765 $this->template = $this->available_templates[$name];
775 private function getTemplate()
777 return $this->template;
781 * Check if this is a toplevel post
785 private function isToplevel()
787 return $this->toplevel;
791 * Check if this is writable
795 private function isWritable()
797 $conv = $this->getThread();
800 // This will allow us to comment on wall-to-wall items owned by our friends
801 // and community forums even if somebody else wrote the post.
802 // bug #517 - this fixes for conversation owner
803 if ($conv->getMode() == 'profile' && $conv->getProfileOwner() == local_user()) {
807 // this fixes for visitors
808 return ($this->writable || ($this->isVisiting() && $conv->getMode() == 'profile'));
810 return $this->writable;
814 * Count the total of our descendants
818 private function countDescendants()
820 $children = $this->getChildren();
821 $total = count($children);
823 foreach ($children as $child) {
824 $total += $child->countDescendants();
832 * Get the template for the comment box
836 private function getCommentBoxTemplate()
838 return $this->comment_box_template;
842 * Get default text for the comment box
845 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
847 private function getDefaultText()
855 $owner = User::getOwnerDataById($a->user['uid']);
857 if (!Feature::isEnabled(local_user(), 'explicit_mentions')) {
861 $item = Item::selectFirst(['author-addr', 'uri-id'], ['id' => $this->getId()]);
862 if (!DBA::isResult($item) || empty($item['author-addr'])) {
867 if ($item['author-addr'] != $owner['addr']) {
868 $text = '@' . $item['author-addr'] . ' ';
873 $terms = Tag::getByURIId($item['uri-id'], [Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION]);
874 foreach ($terms as $term) {
875 $profile = Contact::getByURL($term['url'], false, ['addr', 'contact-type']);
876 if (!empty($profile['addr']) && ((($profile['contact-type'] ?? '') ?: Contact::TYPE_UNKNOWN) != Contact::TYPE_COMMUNITY) &&
877 ($profile['addr'] != $owner['addr']) && !strstr($text, $profile['addr'])) {
878 $text .= '@' . $profile['addr'] . ' ';
886 * Get the comment box
888 * @param string $indent Indent value
890 * @return mixed The comment box string (empty if no comment box)
894 private function getCommentBox($indent)
899 $conv = $this->getThread();
901 if ($conv->isWritable() && $this->isWritable()) {
903 * Hmmm, code depending on the presence of a particular addon?
904 * This should be better if done by a hook
907 if (Addon::isEnabled('qcomment')) {
908 $words = DI::pConfig()->get(local_user(), 'qcomment', 'words');
909 $qcomment = $words ? explode("\n", $words) : [];
912 // Fetch the user id from the parent when the owner user is empty
913 $uid = $conv->getProfileOwner();
914 $parent_uid = $this->getDataValue('uid');
916 $default_text = $this->getDefaultText();
918 if (!is_null($parent_uid) && ($uid != $parent_uid)) {
922 $template = Renderer::getMarkupTemplate($this->getCommentBoxTemplate());
923 $comment_box = Renderer::replaceMacros($template, [
924 '$return_path' => DI::args()->getQueryString(),
925 '$threaded' => $this->isThreaded(),
927 '$wall' => ($conv->getMode() === 'profile'),
928 '$id' => $this->getId(),
929 '$parent' => $this->getId(),
930 '$qcomment' => $qcomment,
931 '$default' => $default_text,
932 '$profile_uid' => $uid,
933 '$mylink' => DI::baseUrl()->remove($a->contact['url']),
934 '$mytitle' => DI::l10n()->t('This is you'),
935 '$myphoto' => DI::baseUrl()->remove($a->contact['thumb']),
936 '$comment' => DI::l10n()->t('Comment'),
937 '$submit' => DI::l10n()->t('Submit'),
938 '$loading' => DI::l10n()->t('Loading...'),
939 '$edbold' => DI::l10n()->t('Bold'),
940 '$editalic' => DI::l10n()->t('Italic'),
941 '$eduline' => DI::l10n()->t('Underline'),
942 '$edquote' => DI::l10n()->t('Quote'),
943 '$edcode' => DI::l10n()->t('Code'),
944 '$edimg' => DI::l10n()->t('Image'),
945 '$edurl' => DI::l10n()->t('Link'),
946 '$edattach' => DI::l10n()->t('Link or Media'),
947 '$prompttext' => DI::l10n()->t('Please enter a image/video/audio/webpage URL:'),
948 '$preview' => DI::l10n()->t('Preview'),
949 '$indent' => $indent,
950 '$sourceapp' => DI::l10n()->t($a->sourcename),
951 '$rand_num' => Crypto::randomDigits(12)
961 private function getRedirectUrl()
963 return $this->redirect_url;
967 * Check if we are a wall to wall item and set the relevant properties
972 protected function checkWallToWall()
975 $conv = $this->getThread();
976 $this->wall_to_wall = false;
978 if ($this->isToplevel()) {
979 if ($conv->getMode() !== 'profile') {
980 if ($this->getDataValue('wall') && !$this->getDataValue('self')) {
981 // On the network page, I am the owner. On the display page it will be the profile owner.
982 // This will have been stored in $a->page_contact by our calling page.
983 // Put this person as the wall owner of the wall-to-wall notice.
985 $this->owner_url = Contact::magicLink($a->page_contact['url']);
986 $this->owner_photo = $a->page_contact['thumb'];
987 $this->owner_name = $a->page_contact['name'];
988 $this->wall_to_wall = true;
989 } elseif ($this->getDataValue('owner-link')) {
990 $owner_linkmatch = (($this->getDataValue('owner-link')) && Strings::compareLink($this->getDataValue('owner-link'), $this->getDataValue('author-link')));
991 $alias_linkmatch = (($this->getDataValue('alias')) && Strings::compareLink($this->getDataValue('alias'), $this->getDataValue('author-link')));
992 $owner_namematch = (($this->getDataValue('owner-name')) && $this->getDataValue('owner-name') == $this->getDataValue('author-name'));
994 if (!$owner_linkmatch && !$alias_linkmatch && !$owner_namematch) {
995 // The author url doesn't match the owner (typically the contact)
996 // and also doesn't match the contact alias.
997 // The name match is a hack to catch several weird cases where URLs are
998 // all over the park. It can be tricked, but this prevents you from
999 // seeing "Bob Smith to Bob Smith via Wall-to-wall" and you know darn
1000 // well that it's the same Bob Smith.
1001 // But it could be somebody else with the same name. It just isn't highly likely.
1004 $this->owner_photo = $this->getDataValue('owner-avatar');
1005 $this->owner_name = $this->getDataValue('owner-name');
1006 $this->wall_to_wall = true;
1008 $owner = ['uid' => 0, 'id' => $this->getDataValue('owner-id'),
1009 'network' => $this->getDataValue('owner-network'),
1010 'url' => $this->getDataValue('owner-link')];
1011 $this->owner_url = Contact::magicLinkByContact($owner);
1017 if (!$this->wall_to_wall) {
1018 $this->setTemplate('wall');
1019 $this->owner_url = '';
1020 $this->owner_photo = '';
1021 $this->owner_name = '';
1028 private function isWallToWall()
1030 return $this->wall_to_wall;
1036 private function getOwnerUrl()
1038 return $this->owner_url;
1044 private function getOwnerName()
1046 return $this->owner_name;
1052 private function isVisiting()
1054 return $this->visiting;