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');
225 'dropping' => $dropping,
226 'pagedrop' => $item['pagedrop'],
227 'select' => DI::l10n()->t('Select'),
235 $filer = (($conv->getProfileOwner() == local_user() && ($item['uid'] != 0)) ? DI::l10n()->t("save to folder") : false);
237 $profile_name = $item['author-name'];
238 if (!empty($item['author-link']) && empty($item['author-name'])) {
239 $profile_name = $item['author-link'];
242 $author = ['uid' => 0, 'id' => $item['author-id'],
243 'network' => $item['author-network'], 'url' => $item['author-link']];
245 if (Session::isAuthenticated()) {
246 $profile_link = Contact::magicLinkByContact($author);
248 $profile_link = $item['author-link'];
251 if (strpos($profile_link, 'redir/') === 0) {
252 $sparkle = ' sparkle';
255 $locate = ['location' => $item['location'], 'coord' => $item['coord'], 'html' => ''];
256 Hook::callAll('render_location', $locate);
257 $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_dummy($locate));
259 // process action responses - e.g. like/dislike/attend/agree/whatever
260 $response_verbs = ['like', 'dislike', 'announce'];
264 if ($item['object-type'] === Activity\ObjectType::EVENT) {
265 $response_verbs[] = 'attendyes';
266 $response_verbs[] = 'attendno';
267 $response_verbs[] = 'attendmaybe';
268 if ($conv->isWritable()) {
270 $attend = [DI::l10n()->t('I will attend'), DI::l10n()->t('I will not attend'), DI::l10n()->t('I might attend')];
275 foreach ($response_verbs as $value => $verb) {
276 $responses[$verb] = [
277 'self' => $conv_responses[$verb][$item['uri'] . '-self'] ?? 0,
278 'output' => !empty($conv_responses[$verb][$item['uri']]) ? format_like($conv_responses[$verb][$item['uri']], $conv_responses[$verb][$item['uri'] . '-l'], $verb, $item['uri']) : '',
283 * We should avoid doing this all the time, but it depends on the conversation mode
284 * And the conv mode may change when we change the conv, or it changes its mode
285 * Maybe we should establish a way to be notified about conversation changes
287 $this->checkWallToWall();
289 if ($this->isWallToWall() && ($this->getOwnerUrl() == $this->getRedirectUrl())) {
290 $osparkle = ' sparkle';
295 if ($this->isToplevel()) {
297 $thread = Item::selectFirstThreadForUser(local_user(), ['ignored'], ['iid' => $item['id']]);
298 if (DBA::isResult($thread)) {
300 'do' => DI::l10n()->t("ignore thread"),
301 'undo' => DI::l10n()->t("unignore thread"),
302 'toggle' => DI::l10n()->t("toggle ignore status"),
303 'classdo' => $thread['ignored'] ? "hidden" : "",
304 'classundo' => $thread['ignored'] ? "" : "hidden",
305 'ignored' => DI::l10n()->t('ignored'),
309 if ($conv->getProfileOwner() == local_user() && ($item['uid'] != 0)) {
311 $ispinned = ($item['pinned'] ? 'pinned' : 'unpinned');
314 'do' => DI::l10n()->t('pin'),
315 'undo' => DI::l10n()->t('unpin'),
316 'toggle' => DI::l10n()->t('toggle pin status'),
317 'classdo' => $item['pinned'] ? 'hidden' : '',
318 'classundo' => $item['pinned'] ? '' : 'hidden',
319 'pinned' => DI::l10n()->t('pinned'),
323 $isstarred = (($item['starred']) ? "starred" : "unstarred");
326 'do' => DI::l10n()->t("add star"),
327 'undo' => DI::l10n()->t("remove star"),
328 'toggle' => DI::l10n()->t("toggle star status"),
329 'classdo' => $item['starred'] ? "hidden" : "",
330 'classundo' => $item['starred'] ? "" : "hidden",
331 'starred' => DI::l10n()->t('starred'),
335 'add' => DI::l10n()->t("add tag"),
344 if ($conv->isWritable()) {
345 $buttons['like'] = [DI::l10n()->t("I like this \x28toggle\x29") , DI::l10n()->t("like")];
346 $buttons['dislike'] = [DI::l10n()->t("I don't like this \x28toggle\x29"), DI::l10n()->t("dislike")];
348 $buttons['share'] = [DI::l10n()->t('Share this'), DI::l10n()->t('share')];
352 $comment = $this->getCommentBox($indent);
354 if (strcmp(DateTimeFormat::utc($item['created']), DateTimeFormat::utc('now - 12 hours')) > 0) {
358 localize_item($item);
360 $body = Item::prepareBody($item, true);
362 list($categories, $folders) = DI::contentItem()->determineCategoriesTerms($item);
365 $text_e = strip_tags($body);
366 $name_e = $profile_name;
368 if (!empty($item['content-warning']) && DI::pConfig()->get(local_user(), 'system', 'disable_cw', false)) {
369 $title_e = ucfirst($item['content-warning']);
371 $title_e = $item['title'];
374 $location_e = $location;
375 $owner_name_e = $this->getOwnerName();
377 if (DI::pConfig()->get(local_user(), 'system', 'hide_dislike')) {
378 $buttons['dislike'] = false;
381 // Disable features that aren't available in several networks
382 if (!in_array($item["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA])) {
383 if ($buttons["dislike"]) {
384 $buttons["dislike"] = false;
391 if ($buttons["like"] && in_array($item["network"], [Protocol::FEED, Protocol::MAIL])) {
392 $buttons["like"] = false;
395 $tags = Tag::populateFromItem($item);
397 $ago = Temporal::getRelativeDate($item['created']);
398 $ago_received = Temporal::getRelativeDate($item['received']);
399 if (DI::config()->get('system', 'show_received') && (abs(strtotime($item['created']) - strtotime($item['received'])) > DI::config()->get('system', 'show_received_seconds')) && ($ago != $ago_received)) {
400 $ago = DI::l10n()->t('%s (Received %s)', $ago, $ago_received);
403 // Fetching of Diaspora posts doesn't always work. There are issues with reshares and possibly comments
404 if (($item['network'] != Protocol::DIASPORA) && empty($comment) && !empty(Session::get('remote_comment'))) {
405 $remote_comment = [DI::l10n()->t('Comment this item on your system'), DI::l10n()->t('remote comment'),
406 str_replace('{uri}', urlencode($item['uri']), Session::get('remote_comment'))];
408 $remote_comment = '';
412 if (DI::config()->get('debug', 'show_direction')) {
413 $conversation = DBA::selectFirst('conversation', ['direction'], ['item-uri' => $item['uri']]);
414 if (!empty($conversation['direction']) && in_array($conversation['direction'], [1, 2])) {
415 $title = [1 => DI::l10n()->t('Pushed'), 2 => DI::l10n()->t('Pulled')];
416 $direction = ['direction' => $conversation['direction'], 'title' => $title[$conversation['direction']]];
421 'template' => $this->getTemplate(),
422 'type' => implode("", array_slice(explode("/", $item['verb']), -1)),
423 'suppress_tags' => DI::config()->get('system', 'suppress_tags'),
424 'tags' => $tags['tags'],
425 'hashtags' => $tags['hashtags'],
426 'mentions' => $tags['mentions'],
427 'implicit_mentions' => $tags['implicit_mentions'],
428 'txt_cats' => DI::l10n()->t('Categories:'),
429 'txt_folders' => DI::l10n()->t('Filed under:'),
430 'has_cats' => ((count($categories)) ? 'true' : ''),
431 'has_folders' => ((count($folders)) ? 'true' : ''),
432 'categories' => $categories,
433 'folders' => $folders,
436 'id' => $this->getId(),
437 'guid' => urlencode($item['guid']),
438 'isevent' => $isevent,
440 'linktitle' => DI::l10n()->t('View %s\'s profile @ %s', $profile_name, $item['author-link']),
441 'olinktitle' => DI::l10n()->t('View %s\'s profile @ %s', $this->getOwnerName(), $item['owner-link']),
442 'to' => DI::l10n()->t('to'),
443 'via' => DI::l10n()->t('via'),
444 'wall' => DI::l10n()->t('Wall-to-Wall'),
445 'vwall' => DI::l10n()->t('via Wall-To-Wall:'),
446 'profile_url' => $profile_link,
447 'item_photo_menu' => item_photo_menu($item),
449 'thumb' => DI::baseUrl()->remove($item['author-avatar']),
450 'osparkle' => $osparkle,
451 'sparkle' => $sparkle,
453 'localtime' => DateTimeFormat::local($item['created'], 'r'),
454 'ago' => $item['app'] ? DI::l10n()->t('%s from %s', $ago, $item['app']) : $ago,
455 'app' => $item['app'],
458 'location' => $location_e,
461 'owner_self' => $item['author-link'] == Session::get('my_url'),
462 'owner_url' => $this->getOwnerUrl(),
463 'owner_photo' => DI::baseUrl()->remove($item['owner-avatar']),
464 'owner_name' => $owner_name_e,
465 'plink' => Item::getPlink($item),
467 'ispinned' => $ispinned,
470 'isstarred' => $isstarred,
477 'like' => $responses['like']['output'],
478 'dislike' => $responses['dislike']['output'],
479 'responses' => $responses,
480 'switchcomment' => DI::l10n()->t('Comment'),
481 'reply_label' => DI::l10n()->t('Reply to %s', $name_e),
482 'comment' => $comment,
483 'remote_comment' => $remote_comment,
484 'menu' => DI::l10n()->t('More'),
485 'previewing' => $conv->isPreview() ? ' preview ' : '',
486 'wait' => DI::l10n()->t('Please wait'),
487 'thread_level' => $thread_level,
489 'network' => $item["network"],
490 'network_name' => ContactSelector::networkToName($item['author-network'], $item['author-link'], $item['network']),
491 'network_icon' => ContactSelector::networkToIcon($item['network'], $item['author-link']),
492 'received' => $item['received'],
493 'commented' => $item['commented'],
494 'created_date' => $item['created'],
495 'return' => (DI::args()->getCommand()) ? bin2hex(DI::args()->getCommand()) : '',
496 'direction' => $direction,
498 'queue_count' => $item['delivery_queue_count'],
499 'queue_done' => $item['delivery_queue_done'] + $item['delivery_queue_failed'], /// @todo Possibly display it separately in the future
500 'notifier_pending' => DI::l10n()->t('Notifier task is pending'),
501 'delivery_pending' => DI::l10n()->t('Delivery to remote servers is pending'),
502 'delivery_underway' => DI::l10n()->t('Delivery to remote servers is underway'),
503 'delivery_almost' => DI::l10n()->t('Delivery to remote servers is mostly done'),
504 'delivery_done' => DI::l10n()->t('Delivery to remote servers is done'),
508 $arr = ['item' => $item, 'output' => $tmp_item];
509 Hook::callAll('display_item', $arr);
511 $result = $arr['output'];
513 $result['children'] = [];
514 $children = $this->getChildren();
515 $nb_children = count($children);
516 if ($nb_children > 0) {
517 foreach ($children as $child) {
518 $result['children'][] = $child->getTemplateData($conv_responses, $thread_level + 1);
522 if (($nb_children > 2) || ($thread_level > 1)) {
523 $result['children'][0]['comment_firstcollapsed'] = true;
524 $result['children'][0]['num_comments'] = DI::l10n()->tt('%d comment', '%d comments', $total_children);
525 $result['children'][0]['show_text'] = DI::l10n()->t('Show more');
526 $result['children'][0]['hide_text'] = DI::l10n()->t('Show fewer');
527 if ($thread_level > 1) {
528 $result['children'][$nb_children - 1]['comment_lastcollapsed'] = true;
530 $result['children'][$nb_children - 3]['comment_lastcollapsed'] = true;
535 if ($this->isToplevel()) {
536 $result['total_comments_num'] = "$total_children";
537 $result['total_comments_text'] = DI::l10n()->tt('comment', 'comments', $total_children);
540 $result['private'] = $item['private'];
541 $result['toplevel'] = ($this->isToplevel() ? 'toplevel_item' : '');
543 if ($this->isThreaded()) {
544 $result['flatten'] = false;
545 $result['threaded'] = true;
547 $result['flatten'] = true;
548 $result['threaded'] = false;
557 public function getId()
559 return $this->getDataValue('id');
565 public function isThreaded()
567 return $this->threaded;
573 * @param Post $item The child item to add
578 public function addChild(Post $item)
580 $item_id = $item->getId();
582 Logger::log('[ERROR] Post::addChild : Item has no ID!!', Logger::DEBUG);
584 } elseif ($this->getChild($item->getId())) {
585 Logger::log('[WARN] Post::addChild : Item already exists (' . $item->getId() . ').', Logger::DEBUG);
589 $activity = DI::activity();
592 * Only add what will be displayed
594 if ($item->getDataValue('network') === Protocol::MAIL && local_user() != $item->getDataValue('uid')) {
596 } elseif ($activity->match($item->getDataValue('verb'), Activity::LIKE) ||
597 $activity->match($item->getDataValue('verb'), Activity::DISLIKE)) {
601 $item->setParent($this);
602 $this->children[] = $item;
604 return end($this->children);
608 * Get a child by its ID
610 * @param integer $id The child id
614 public function getChild($id)
616 foreach ($this->getChildren() as $child) {
617 if ($child->getId() == $id) {
626 * Get all our children
630 public function getChildren()
632 return $this->children;
638 * @param Post $item The item to set as parent
642 protected function setParent(Post $item)
644 $parent = $this->getParent();
646 $parent->removeChild($this);
649 $this->parent = $item;
650 $this->setThread($item->getThread());
658 protected function removeParent()
660 $this->parent = null;
661 $this->thread = null;
667 * @param Post $item The child to be removed
669 * @return boolean Success or failure
672 public function removeChild(Post $item)
674 $id = $item->getId();
675 foreach ($this->getChildren() as $key => $child) {
676 if ($child->getId() == $id) {
677 $child->removeParent();
678 unset($this->children[$key]);
679 // Reindex the array, in order to make sure there won't be any trouble on loops using count()
680 $this->children = array_values($this->children);
684 Logger::log('[WARN] Item::removeChild : Item is not a child (' . $id . ').', Logger::DEBUG);
693 protected function getParent()
695 return $this->parent;
699 * Set conversation thread
701 * @param Thread $thread
705 public function setThread(Thread $thread = null)
707 $this->thread = $thread;
709 // Set it on our children too
710 foreach ($this->getChildren() as $child) {
711 $child->setThread($thread);
720 public function getThread()
722 return $this->thread;
728 * We shouldn't need this
732 public function getData()
740 * @param string $name key
742 * @return mixed value on success
745 public function getDataValue($name)
747 if (!isset($this->data[$name])) {
748 // Logger::log('[ERROR] Item::getDataValue : Item has no value name "'. $name .'".', Logger::DEBUG);
752 return $this->data[$name];
758 * @param string $name template name
762 private function setTemplate($name)
764 if (empty($this->available_templates[$name])) {
765 Logger::log('[ERROR] Item::setTemplate : Template not available ("' . $name . '").', Logger::DEBUG);
769 $this->template = $this->available_templates[$name];
779 private function getTemplate()
781 return $this->template;
785 * Check if this is a toplevel post
789 private function isToplevel()
791 return $this->toplevel;
795 * Check if this is writable
799 private function isWritable()
801 $conv = $this->getThread();
804 // This will allow us to comment on wall-to-wall items owned by our friends
805 // and community forums even if somebody else wrote the post.
806 // bug #517 - this fixes for conversation owner
807 if ($conv->getMode() == 'profile' && $conv->getProfileOwner() == local_user()) {
811 // this fixes for visitors
812 return ($this->writable || ($this->isVisiting() && $conv->getMode() == 'profile'));
814 return $this->writable;
818 * Count the total of our descendants
822 private function countDescendants()
824 $children = $this->getChildren();
825 $total = count($children);
827 foreach ($children as $child) {
828 $total += $child->countDescendants();
836 * Get the template for the comment box
840 private function getCommentBoxTemplate()
842 return $this->comment_box_template;
846 * Get default text for the comment box
849 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
851 private function getDefaultText()
859 $owner = User::getOwnerDataById($a->user['uid']);
861 if (!Feature::isEnabled(local_user(), 'explicit_mentions')) {
865 $item = Item::selectFirst(['author-addr', 'uri-id'], ['id' => $this->getId()]);
866 if (!DBA::isResult($item) || empty($item['author-addr'])) {
871 if ($item['author-addr'] != $owner['addr']) {
872 $text = '@' . $item['author-addr'] . ' ';
877 $terms = Tag::getByURIId($item['uri-id'], [Tag::MENTION, Tag::IMPLICIT_MENTION, Tag::EXCLUSIVE_MENTION]);
878 foreach ($terms as $term) {
879 $profile = Contact::getByURL($term['url'], false, ['addr', 'contact-type']);
880 if (!empty($profile['addr']) && ((($profile['contact-type'] ?? '') ?: Contact::TYPE_UNKNOWN) != Contact::TYPE_COMMUNITY) &&
881 ($profile['addr'] != $owner['addr']) && !strstr($text, $profile['addr'])) {
882 $text .= '@' . $profile['addr'] . ' ';
890 * Get the comment box
892 * @param string $indent Indent value
894 * @return mixed The comment box string (empty if no comment box)
898 private function getCommentBox($indent)
903 $conv = $this->getThread();
905 if (($conv->getMode() === 'network') && $this->isWallToWall()) {
909 if ($conv->isWritable() && $this->isWritable()) {
913 * Hmmm, code depending on the presence of a particular addon?
914 * This should be better if done by a hook
916 if (Addon::isEnabled('qcomment')) {
917 $qc = ((local_user()) ? DI::pConfig()->get(local_user(), 'qcomment', 'words') : null);
918 $qcomment = (($qc) ? explode("\n", $qc) : null);
921 // Fetch the user id from the parent when the owner user is empty
922 $uid = $conv->getProfileOwner();
923 $parent_uid = $this->getDataValue('uid');
925 $default_text = $this->getDefaultText();
927 if (!is_null($parent_uid) && ($uid != $parent_uid)) {
931 $template = Renderer::getMarkupTemplate($this->getCommentBoxTemplate());
932 $comment_box = Renderer::replaceMacros($template, [
933 '$return_path' => DI::args()->getQueryString(),
934 '$threaded' => $this->isThreaded(),
936 '$wall' => ($conv->getMode() === 'profile'),
937 '$id' => $this->getId(),
938 '$parent' => $this->getId(),
939 '$qcomment' => $qcomment,
940 '$default' => $default_text,
941 '$profile_uid' => $uid,
942 '$mylink' => DI::baseUrl()->remove($a->contact['url']),
943 '$mytitle' => DI::l10n()->t('This is you'),
944 '$myphoto' => DI::baseUrl()->remove($a->contact['thumb']),
945 '$comment' => DI::l10n()->t('Comment'),
946 '$submit' => DI::l10n()->t('Submit'),
947 '$loading' => DI::l10n()->t('Loading...'),
948 '$edbold' => DI::l10n()->t('Bold'),
949 '$editalic' => DI::l10n()->t('Italic'),
950 '$eduline' => DI::l10n()->t('Underline'),
951 '$edquote' => DI::l10n()->t('Quote'),
952 '$edcode' => DI::l10n()->t('Code'),
953 '$edimg' => DI::l10n()->t('Image'),
954 '$edurl' => DI::l10n()->t('Link'),
955 '$edattach' => DI::l10n()->t('Link or Media'),
956 '$prompttext' => DI::l10n()->t('Please enter a image/video/audio/webpage URL:'),
957 '$preview' => DI::l10n()->t('Preview'),
958 '$indent' => $indent,
959 '$sourceapp' => DI::l10n()->t($a->sourcename),
960 '$ww' => $conv->getMode() === 'network' ? $ww : '',
961 '$rand_num' => Crypto::randomDigits(12)
971 private function getRedirectUrl()
973 return $this->redirect_url;
977 * Check if we are a wall to wall item and set the relevant properties
982 protected function checkWallToWall()
985 $conv = $this->getThread();
986 $this->wall_to_wall = false;
988 if ($this->isToplevel()) {
989 if ($conv->getMode() !== 'profile') {
990 if ($this->getDataValue('wall') && !$this->getDataValue('self')) {
991 // On the network page, I am the owner. On the display page it will be the profile owner.
992 // This will have been stored in $a->page_contact by our calling page.
993 // Put this person as the wall owner of the wall-to-wall notice.
995 $this->owner_url = Contact::magicLink($a->page_contact['url']);
996 $this->owner_photo = $a->page_contact['thumb'];
997 $this->owner_name = $a->page_contact['name'];
998 $this->wall_to_wall = true;
999 } elseif ($this->getDataValue('owner-link')) {
1000 $owner_linkmatch = (($this->getDataValue('owner-link')) && Strings::compareLink($this->getDataValue('owner-link'), $this->getDataValue('author-link')));
1001 $alias_linkmatch = (($this->getDataValue('alias')) && Strings::compareLink($this->getDataValue('alias'), $this->getDataValue('author-link')));
1002 $owner_namematch = (($this->getDataValue('owner-name')) && $this->getDataValue('owner-name') == $this->getDataValue('author-name'));
1004 if (!$owner_linkmatch && !$alias_linkmatch && !$owner_namematch) {
1005 // The author url doesn't match the owner (typically the contact)
1006 // and also doesn't match the contact alias.
1007 // The name match is a hack to catch several weird cases where URLs are
1008 // all over the park. It can be tricked, but this prevents you from
1009 // seeing "Bob Smith to Bob Smith via Wall-to-wall" and you know darn
1010 // well that it's the same Bob Smith.
1011 // But it could be somebody else with the same name. It just isn't highly likely.
1014 $this->owner_photo = $this->getDataValue('owner-avatar');
1015 $this->owner_name = $this->getDataValue('owner-name');
1016 $this->wall_to_wall = true;
1018 $owner = ['uid' => 0, 'id' => $this->getDataValue('owner-id'),
1019 'network' => $this->getDataValue('owner-network'),
1020 'url' => $this->getDataValue('owner-link')];
1021 $this->owner_url = Contact::magicLinkByContact($owner);
1027 if (!$this->wall_to_wall) {
1028 $this->setTemplate('wall');
1029 $this->owner_url = '';
1030 $this->owner_photo = '';
1031 $this->owner_name = '';
1038 private function isWallToWall()
1040 return $this->wall_to_wall;
1046 private function getOwnerUrl()
1048 return $this->owner_url;
1054 private function getOwnerName()
1056 return $this->owner_name;
1062 private function isVisiting()
1064 return $this->visiting;