]> git.mxchange.org Git - friendica.git/blob - src/Object/Post.php
wrapping up 2019.12
[friendica.git] / src / Object / Post.php
1 <?php
2 /**
3  * @file src/Object/Post.php
4  */
5 namespace Friendica\Object;
6
7 use Friendica\BaseObject;
8 use Friendica\Content\ContactSelector;
9 use Friendica\Content\Feature;
10 use Friendica\Content\Item as ContentItem;
11 use Friendica\Core\Addon;
12 use Friendica\Core\Config;
13 use Friendica\Core\Hook;
14 use Friendica\Core\L10n;
15 use Friendica\Core\Logger;
16 use Friendica\Core\PConfig;
17 use Friendica\Core\Protocol;
18 use Friendica\Core\Renderer;
19 use Friendica\Core\Session;
20 use Friendica\Database\DBA;
21 use Friendica\Model\Contact;
22 use Friendica\Model\Item;
23 use Friendica\Model\Term;
24 use Friendica\Model\User;
25 use Friendica\Protocol\Activity;
26 use Friendica\Util\Crypto;
27 use Friendica\Util\DateTimeFormat;
28 use Friendica\Util\Proxy as ProxyUtils;
29 use Friendica\Util\Strings;
30 use Friendica\Util\Temporal;
31
32 /**
33  * An item
34  */
35 class Post extends BaseObject
36 {
37         private $data = [];
38         private $template = null;
39         private $available_templates = [
40                 'wall' => 'wall_thread.tpl',
41                 'wall2wall' => 'wallwall_thread.tpl'
42         ];
43         private $comment_box_template = 'comment_item.tpl';
44         private $toplevel = false;
45         private $writable = false;
46         /**
47          * @var Post[]
48          */
49         private $children = [];
50         private $parent = null;
51
52         /**
53          * @var Thread
54          */
55         private $thread = null;
56         private $redirect_url = null;
57         private $owner_url = '';
58         private $owner_photo = '';
59         private $owner_name = '';
60         private $wall_to_wall = false;
61         private $threaded = false;
62         private $visiting = false;
63
64         /**
65          * Constructor
66          *
67          * @param array $data data array
68          * @throws \Exception
69          */
70         public function __construct(array $data)
71         {
72                 $this->data = $data;
73                 $this->setTemplate('wall');
74                 $this->toplevel = $this->getId() == $this->getDataValue('parent');
75
76                 if (!empty(Session::getUserIDForVisitorContactID($this->getDataValue('contact-id')))) {
77                         $this->visiting = true;
78                 }
79
80                 $this->writable = $this->getDataValue('writable') || $this->getDataValue('self');
81                 $author = ['uid' => 0, 'id' => $this->getDataValue('author-id'),
82                         'network' => $this->getDataValue('author-network'),
83                         'url' => $this->getDataValue('author-link')];
84                 $this->redirect_url = Contact::magicLinkByContact($author);
85                 if (!$this->isToplevel()) {
86                         $this->threaded = true;
87                 }
88
89                 // Prepare the children
90                 if (!empty($data['children'])) {
91                         foreach ($data['children'] as $item) {
92                                 // Only add will be displayed
93                                 if ($item['network'] === Protocol::MAIL && local_user() != $item['uid']) {
94                                         continue;
95                                 } elseif (!visible_activity($item)) {
96                                         continue;
97                                 }
98
99                                 // You can always comment on Diaspora and OStatus items
100                                 if (in_array($item['network'], [Protocol::OSTATUS, Protocol::DIASPORA]) && (local_user() == $item['uid'])) {
101                                         $item['writable'] = true;
102                                 }
103
104                                 $item['pagedrop'] = $data['pagedrop'];
105                                 $child = new Post($item);
106                                 $this->addChild($child);
107                         }
108                 }
109         }
110
111         /**
112          * Get data in a form usable by a conversation template
113          *
114          * @param array   $conv_responses conversation responses
115          * @param integer $thread_level   default = 1
116          *
117          * @return mixed The data requested on success
118          *               false on failure
119          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
120          * @throws \ImagickException
121          */
122         public function getTemplateData(array $conv_responses, $thread_level = 1)
123         {
124                 $a = self::getApp();
125
126                 $item = $this->getData();
127                 $edited = false;
128                 // If the time between "created" and "edited" differs we add
129                 // a notice that the post was edited.
130                 // Note: In some networks reshared items seem to have (sometimes) a difference
131                 // between creation time and edit time of a second. Thats why we add the notice
132                 // only if the difference is more than 1 second.
133                 if (strtotime($item['edited']) - strtotime($item['created']) > 1) {
134                         $edited = [
135                                 'label'    => L10n::t('This entry was edited'),
136                                 'date'     => DateTimeFormat::local($item['edited'], 'r'),
137                                 'relative' => Temporal::getRelativeDate($item['edited'])
138                         ];
139                 }
140                 $sparkle = '';
141                 $buttons = '';
142                 $dropping = false;
143                 $pinned = '';
144                 $pin = false;
145                 $star = false;
146                 $ignore = false;
147                 $ispinned = "unpinned";
148                 $isstarred = "unstarred";
149                 $indent = '';
150                 $shiny = '';
151                 $osparkle = '';
152                 $total_children = $this->countDescendants();
153
154                 $conv = $this->getThread();
155
156                 $lock = ((($item['private'] == 1) || (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid'])
157                         || strlen($item['deny_cid']) || strlen($item['deny_gid']))))
158                         ? L10n::t('Private Message')
159                         : false);
160
161                 $shareable = in_array($conv->getProfileOwner(), [0, local_user()]) && $item['private'] != 1;
162
163                 $edpost = false;
164
165                 if (local_user()) {
166                         if (Strings::compareLink($a->contact['url'], $item['author-link'])) {
167                                 if ($item["event-id"] != 0) {
168                                         $edpost = ["events/event/" . $item['event-id'], L10n::t("Edit")];
169                                 } else {
170                                         $edpost = ["editpost/" . $item['id'], L10n::t("Edit")];
171                                 }
172                         }
173                         $dropping = in_array($item['uid'], [0, local_user()]);
174                 }
175
176                 // Editing on items of not subscribed users isn't currently possible
177                 // There are some issues on editing that prevent this.
178                 // But also it is an issue of the supported protocols that doesn't allow editing at all.
179                 if ($item['uid'] == 0) {
180                         $edpost = false;
181                 }
182
183                 if (($this->getDataValue('uid') == local_user()) || $this->isVisiting()) {
184                         $dropping = true;
185                 }
186
187                 $origin = $item['origin'];
188
189                 if (!$origin) {
190                         /// @todo This shouldn't be done as query here, but better during the data creation.
191                         // it is now done here, since during the RC phase we shouldn't make to intense changes.
192                         $parent = Item::selectFirst(['origin'], ['id' => $item['parent']]);
193                         if (DBA::isResult($parent)) {
194                                 $origin = $parent['origin'];
195                         }
196                 } elseif ($item['pinned']) {
197                         $pinned = L10n::t('pinned item');
198                 }
199
200                 if ($origin && ($item['id'] != $item['parent']) && ($item['network'] == Protocol::ACTIVITYPUB)) {
201                         // ActivityPub doesn't allow removal of remote comments
202                         $delete = L10n::t('Delete locally');
203                 } else {
204                         // Showing the one or the other text, depending upon if we can only hide it or really delete it.
205                         $delete = $origin ? L10n::t('Delete globally') : L10n::t('Remove locally');
206                 }
207
208                 $drop = [
209                         'dropping' => $dropping,
210                         'pagedrop' => $item['pagedrop'],
211                         'select'   => L10n::t('Select'),
212                         'delete'   => $delete,
213                 ];
214
215                 if (!local_user()) {
216                         $drop = false;
217                 }
218
219                 $filer = (($conv->getProfileOwner() == local_user() && ($item['uid'] != 0)) ? L10n::t("save to folder") : false);
220
221                 $profile_name = $item['author-name'];
222                 if (!empty($item['author-link']) && empty($item['author-name'])) {
223                         $profile_name = $item['author-link'];
224                 }
225
226                 $author = ['uid' => 0, 'id' => $item['author-id'],
227                         'network' => $item['author-network'], 'url' => $item['author-link']];
228
229                 if (Session::isAuthenticated()) {
230                         $profile_link = Contact::magicLinkByContact($author);
231                 } else {
232                         $profile_link = $item['author-link'];
233                 }
234
235                 if (strpos($profile_link, 'redir/') === 0) {
236                         $sparkle = ' sparkle';
237                 }
238
239                 $locate = ['location' => $item['location'], 'coord' => $item['coord'], 'html' => ''];
240                 Hook::callAll('render_location', $locate);
241                 $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_dummy($locate));
242
243                 // process action responses - e.g. like/dislike/attend/agree/whatever
244                 $response_verbs = ['like', 'dislike', 'announce'];
245
246                 $isevent = false;
247                 $attend = [];
248                 if ($item['object-type'] === Activity\ObjectType::EVENT) {
249                         $response_verbs[] = 'attendyes';
250                         $response_verbs[] = 'attendno';
251                         $response_verbs[] = 'attendmaybe';
252                         if ($conv->isWritable()) {
253                                 $isevent = true;
254                                 $attend = [L10n::t('I will attend'), L10n::t('I will not attend'), L10n::t('I might attend')];
255                         }
256                 }
257
258                 $responses = get_responses($conv_responses, $response_verbs, $item, $this);
259
260                 foreach ($response_verbs as $value => $verbs) {
261                         $responses[$verbs]['output'] = !empty($conv_responses[$verbs][$item['uri']]) ? format_like($conv_responses[$verbs][$item['uri']], $conv_responses[$verbs][$item['uri'] . '-l'], $verbs, $item['uri']) : '';
262                 }
263
264                 /*
265                  * We should avoid doing this all the time, but it depends on the conversation mode
266                  * And the conv mode may change when we change the conv, or it changes its mode
267                  * Maybe we should establish a way to be notified about conversation changes
268                  */
269                 $this->checkWallToWall();
270
271                 if ($this->isWallToWall() && ($this->getOwnerUrl() == $this->getRedirectUrl())) {
272                         $osparkle = ' sparkle';
273                 }
274
275                 $tagger = '';
276
277                 if ($this->isToplevel()) {
278                         if(local_user()) {
279                                 $thread = Item::selectFirstThreadForUser(local_user(), ['ignored'], ['iid' => $item['id']]);
280                                 if (DBA::isResult($thread)) {
281                                         $ignore = [
282                                                 'do'        => L10n::t("ignore thread"),
283                                                 'undo'      => L10n::t("unignore thread"),
284                                                 'toggle'    => L10n::t("toggle ignore status"),
285                                                 'classdo'   => $thread['ignored'] ? "hidden" : "",
286                                                 'classundo' => $thread['ignored'] ? "" : "hidden",
287                                                 'ignored'   => L10n::t('ignored'),
288                                         ];
289                                 }
290
291                                 if ($conv->getProfileOwner() == local_user() && ($item['uid'] != 0)) {
292                                         if ($origin) {
293                                                 $ispinned = ($item['pinned'] ? 'pinned' : 'unpinned');
294
295                                                 $pin = [
296                                                         'do'        => L10n::t('pin'),
297                                                         'undo'      => L10n::t('unpin'),
298                                                         'toggle'    => L10n::t('toggle pin status'),
299                                                         'classdo'   => $item['pinned'] ? 'hidden' : '',
300                                                         'classundo' => $item['pinned'] ? '' : 'hidden',
301                                                         'pinned'   => L10n::t('pinned'),
302                                                 ];
303                                         }
304
305                                         $isstarred = (($item['starred']) ? "starred" : "unstarred");
306
307                                         $star = [
308                                                 'do'        => L10n::t("add star"),
309                                                 'undo'      => L10n::t("remove star"),
310                                                 'toggle'    => L10n::t("toggle star status"),
311                                                 'classdo'   => $item['starred'] ? "hidden" : "",
312                                                 'classundo' => $item['starred'] ? "" : "hidden",
313                                                 'starred'   => L10n::t('starred'),
314                                         ];
315
316                                         $tagger = [
317                                                 'add'   => L10n::t("add tag"),
318                                                 'class' => "",
319                                         ];
320                                 }
321                         }
322                 } else {
323                         $indent = 'comment';
324                 }
325
326                 if ($conv->isWritable()) {
327                         $buttons = [
328                                 'like'    => [L10n::t("I like this \x28toggle\x29"), L10n::t("like")],
329                                 'dislike' => [L10n::t("I don't like this \x28toggle\x29"), L10n::t("dislike")],
330                         ];
331                         if ($shareable) {
332                                 $buttons['share'] = [L10n::t('Share this'), L10n::t('share')];
333                         }
334                 }
335
336                 $comment = $this->getCommentBox($indent);
337
338                 if (strcmp(DateTimeFormat::utc($item['created']), DateTimeFormat::utc('now - 12 hours')) > 0) {
339                         $shiny = 'shiny';
340                 }
341
342                 localize_item($item);
343
344                 $body = Item::prepareBody($item, true);
345
346                 /** @var ContentItem $contItem */
347                 $contItem = self::getClass(ContentItem::class);
348
349                 list($categories, $folders) = $contItem->determineCategoriesTerms($item);
350
351                 $body_e       = $body;
352                 $text_e       = strip_tags($body);
353                 $name_e       = $profile_name;
354
355                 if (!empty($item['content-warning']) && PConfig::get(local_user(), 'system', 'disable_cw', false)) {
356                         $title_e = ucfirst($item['content-warning']);
357                 } else {
358                         $title_e = $item['title'];
359                 }
360
361                 $location_e   = $location;
362                 $owner_name_e = $this->getOwnerName();
363
364                 // Disable features that aren't available in several networks
365                 if (!in_array($item["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA]) && isset($buttons["dislike"])) {
366                         unset($buttons["dislike"]);
367                         $isevent = false;
368                         $tagger = '';
369                 }
370
371                 if (($item["network"] == Protocol::FEED) && isset($buttons["like"])) {
372                         unset($buttons["like"]);
373                 }
374
375                 if (($item["network"] == Protocol::MAIL) && isset($buttons["like"])) {
376                         unset($buttons["like"]);
377                 }
378
379                 $tags = Term::populateTagsFromItem($item);
380
381                 $ago = Temporal::getRelativeDate($item['created']);
382                 $ago_received = Temporal::getRelativeDate($item['received']);
383                 if (Config::get('system', 'show_received') && (abs(strtotime($item['created']) - strtotime($item['received'])) > Config::get('system', 'show_received_seconds')) && ($ago != $ago_received)) {
384                         $ago = L10n::t('%s (Received %s)', $ago, $ago_received);
385                 }
386
387                 $tmp_item = [
388                         'template'        => $this->getTemplate(),
389                         'type'            => implode("", array_slice(explode("/", $item['verb']), -1)),
390                         'suppress_tags'   => Config::get('system', 'suppress_tags'),
391                         'tags'            => $tags['tags'],
392                         'hashtags'        => $tags['hashtags'],
393                         'mentions'        => $tags['mentions'],
394                         'implicit_mentions' => $tags['implicit_mentions'],
395                         'txt_cats'        => L10n::t('Categories:'),
396                         'txt_folders'     => L10n::t('Filed under:'),
397                         'has_cats'        => ((count($categories)) ? 'true' : ''),
398                         'has_folders'     => ((count($folders)) ? 'true' : ''),
399                         'categories'      => $categories,
400                         'folders'         => $folders,
401                         'body'            => $body_e,
402                         'text'            => $text_e,
403                         'id'              => $this->getId(),
404                         'guid'            => urlencode($item['guid']),
405                         'isevent'         => $isevent,
406                         'attend'          => $attend,
407                         'linktitle'       => L10n::t('View %s\'s profile @ %s', $profile_name, $item['author-link']),
408                         'olinktitle'      => L10n::t('View %s\'s profile @ %s', $this->getOwnerName(), $item['owner-link']),
409                         'to'              => L10n::t('to'),
410                         'via'             => L10n::t('via'),
411                         'wall'            => L10n::t('Wall-to-Wall'),
412                         'vwall'           => L10n::t('via Wall-To-Wall:'),
413                         'profile_url'     => $profile_link,
414                         'item_photo_menu' => item_photo_menu($item),
415                         'name'            => $name_e,
416                         'thumb'           => $a->removeBaseURL(ProxyUtils::proxifyUrl($item['author-avatar'], false, ProxyUtils::SIZE_THUMB)),
417                         'osparkle'        => $osparkle,
418                         'sparkle'         => $sparkle,
419                         'title'           => $title_e,
420                         'localtime'       => DateTimeFormat::local($item['created'], 'r'),
421                         'ago'             => $item['app'] ? L10n::t('%s from %s', $ago, $item['app']) : $ago,
422                         'app'             => $item['app'],
423                         'created'         => Temporal::getRelativeDate($item['created']),
424                         'lock'            => $lock,
425                         'location'        => $location_e,
426                         'indent'          => $indent,
427                         'shiny'           => $shiny,
428                         'owner_self'      => $item['author-link'] == Session::get('my_url'),
429                         'owner_url'       => $this->getOwnerUrl(),
430                         'owner_photo'     => $a->removeBaseURL(ProxyUtils::proxifyUrl($item['owner-avatar'], false, ProxyUtils::SIZE_THUMB)),
431                         'owner_name'      => $owner_name_e,
432                         'plink'           => Item::getPlink($item),
433                         'edpost'          => $edpost,
434                         'ispinned'        => $ispinned,
435                         'pin'             => $pin,
436                         'pinned'          => $pinned,
437                         'isstarred'       => $isstarred,
438                         'star'            => $star,
439                         'ignore'          => $ignore,
440                         'tagger'          => $tagger,
441                         'filer'           => $filer,
442                         'drop'            => $drop,
443                         'vote'            => $buttons,
444                         'like'            => $responses['like']['output'],
445                         'dislike'         => $responses['dislike']['output'],
446                         'responses'       => $responses,
447                         'switchcomment'   => L10n::t('Comment'),
448                         'reply_label'     => L10n::t('Reply to %s', $name_e),
449                         'comment'         => $comment,
450                         'previewing'      => $conv->isPreview() ? ' preview ' : '',
451                         'wait'            => L10n::t('Please wait'),
452                         'thread_level'    => $thread_level,
453                         'edited'          => $edited,
454                         'network'         => $item["network"],
455                         'network_name'    => ContactSelector::networkToName($item['network'], $item['author-link']),
456                         'network_icon'    => ContactSelector::networkToIcon($item['network'], $item['author-link']),
457                         'received'        => $item['received'],
458                         'commented'       => $item['commented'],
459                         'created_date'    => $item['created'],
460                         'return'          => ($a->cmd) ? bin2hex($a->cmd) : '',
461                         'delivery'        => [
462                                 'queue_count'       => $item['delivery_queue_count'],
463                                 'queue_done'        => $item['delivery_queue_done'] + $item['delivery_queue_failed'], /// @todo Possibly display it separately in the future
464                                 'notifier_pending'  => L10n::t('Notifier task is pending'),
465                                 'delivery_pending'  => L10n::t('Delivery to remote servers is pending'),
466                                 'delivery_underway' => L10n::t('Delivery to remote servers is underway'),
467                                 'delivery_almost'   => L10n::t('Delivery to remote servers is mostly done'),
468                                 'delivery_done'     => L10n::t('Delivery to remote servers is done'),
469                         ],
470                 ];
471
472                 $arr = ['item' => $item, 'output' => $tmp_item];
473                 Hook::callAll('display_item', $arr);
474
475                 $result = $arr['output'];
476
477                 $result['children'] = [];
478                 $children = $this->getChildren();
479                 $nb_children = count($children);
480                 if ($nb_children > 0) {
481                         foreach ($children as $child) {
482                                 $result['children'][] = $child->getTemplateData($conv_responses, $thread_level + 1);
483                         }
484
485                         // Collapse
486                         if (($nb_children > 2) || ($thread_level > 1)) {
487                                 $result['children'][0]['comment_firstcollapsed'] = true;
488                                 $result['children'][0]['num_comments'] = L10n::tt('%d comment', '%d comments', $total_children);
489                                 $result['children'][0]['show_text'] = L10n::t('Show more');
490                                 $result['children'][0]['hide_text'] = L10n::t('Show fewer');
491                                 if ($thread_level > 1) {
492                                         $result['children'][$nb_children - 1]['comment_lastcollapsed'] = true;
493                                 } else {
494                                         $result['children'][$nb_children - 3]['comment_lastcollapsed'] = true;
495                                 }
496                         }
497                 }
498
499                 if ($this->isToplevel()) {
500                         $result['total_comments_num'] = "$total_children";
501                         $result['total_comments_text'] = L10n::tt('comment', 'comments', $total_children);
502                 }
503
504                 $result['private'] = $item['private'];
505                 $result['toplevel'] = ($this->isToplevel() ? 'toplevel_item' : '');
506
507                 if ($this->isThreaded()) {
508                         $result['flatten'] = false;
509                         $result['threaded'] = true;
510                 } else {
511                         $result['flatten'] = true;
512                         $result['threaded'] = false;
513                 }
514
515                 return $result;
516         }
517
518         /**
519          * @return integer
520          */
521         public function getId()
522         {
523                 return $this->getDataValue('id');
524         }
525
526         /**
527          * @return boolean
528          */
529         public function isThreaded()
530         {
531                 return $this->threaded;
532         }
533
534         /**
535          * Add a child item
536          *
537          * @param Post $item The child item to add
538          *
539          * @return mixed
540          * @throws \Exception
541          */
542         public function addChild(Post $item)
543         {
544                 $item_id = $item->getId();
545                 if (!$item_id) {
546                         Logger::log('[ERROR] Post::addChild : Item has no ID!!', Logger::DEBUG);
547                         return false;
548                 } elseif ($this->getChild($item->getId())) {
549                         Logger::log('[WARN] Post::addChild : Item already exists (' . $item->getId() . ').', Logger::DEBUG);
550                         return false;
551                 }
552
553                 /** @var Activity $activity */
554                 $activity = self::getClass(Activity::class);
555
556                 /*
557                  * Only add what will be displayed
558                  */
559                 if ($item->getDataValue('network') === Protocol::MAIL && local_user() != $item->getDataValue('uid')) {
560                         return false;
561                 } elseif ($activity->match($item->getDataValue('verb'), Activity::LIKE) ||
562                           $activity->match($item->getDataValue('verb'), Activity::DISLIKE)) {
563                         return false;
564                 }
565
566                 $item->setParent($this);
567                 $this->children[] = $item;
568
569                 return end($this->children);
570         }
571
572         /**
573          * Get a child by its ID
574          *
575          * @param integer $id The child id
576          *
577          * @return mixed
578          */
579         public function getChild($id)
580         {
581                 foreach ($this->getChildren() as $child) {
582                         if ($child->getId() == $id) {
583                                 return $child;
584                         }
585                 }
586
587                 return null;
588         }
589
590         /**
591          * Get all our children
592          *
593          * @return Post[]
594          */
595         public function getChildren()
596         {
597                 return $this->children;
598         }
599
600         /**
601          * Set our parent
602          *
603          * @param Post $item The item to set as parent
604          *
605          * @return void
606          */
607         protected function setParent(Post $item)
608         {
609                 $parent = $this->getParent();
610                 if ($parent) {
611                         $parent->removeChild($this);
612                 }
613
614                 $this->parent = $item;
615                 $this->setThread($item->getThread());
616         }
617
618         /**
619          * Remove our parent
620          *
621          * @return void
622          */
623         protected function removeParent()
624         {
625                 $this->parent = null;
626                 $this->thread = null;
627         }
628
629         /**
630          * Remove a child
631          *
632          * @param Post $item The child to be removed
633          *
634          * @return boolean Success or failure
635          * @throws \Exception
636          */
637         public function removeChild(Post $item)
638         {
639                 $id = $item->getId();
640                 foreach ($this->getChildren() as $key => $child) {
641                         if ($child->getId() == $id) {
642                                 $child->removeParent();
643                                 unset($this->children[$key]);
644                                 // Reindex the array, in order to make sure there won't be any trouble on loops using count()
645                                 $this->children = array_values($this->children);
646                                 return true;
647                         }
648                 }
649                 Logger::log('[WARN] Item::removeChild : Item is not a child (' . $id . ').', Logger::DEBUG);
650                 return false;
651         }
652
653         /**
654          * Get parent item
655          *
656          * @return object
657          */
658         protected function getParent()
659         {
660                 return $this->parent;
661         }
662
663         /**
664          * Set conversation thread
665          *
666          * @param Thread $thread
667          *
668          * @return void
669          */
670         public function setThread(Thread $thread = null)
671         {
672                 $this->thread = $thread;
673
674                 // Set it on our children too
675                 foreach ($this->getChildren() as $child) {
676                         $child->setThread($thread);
677                 }
678         }
679
680         /**
681          * Get conversation
682          *
683          * @return Thread
684          */
685         public function getThread()
686         {
687                 return $this->thread;
688         }
689
690         /**
691          * Get raw data
692          *
693          * We shouldn't need this
694          *
695          * @return array
696          */
697         public function getData()
698         {
699                 return $this->data;
700         }
701
702         /**
703          * Get a data value
704          *
705          * @param string $name key
706          *
707          * @return mixed value on success
708          *               false on failure
709          */
710         public function getDataValue($name)
711         {
712                 if (!isset($this->data[$name])) {
713                         // Logger::log('[ERROR] Item::getDataValue : Item has no value name "'. $name .'".', Logger::DEBUG);
714                         return false;
715                 }
716
717                 return $this->data[$name];
718         }
719
720         /**
721          * Set template
722          *
723          * @param string $name template name
724          * @return bool
725          * @throws \Exception
726          */
727         private function setTemplate($name)
728         {
729                 if (empty($this->available_templates[$name])) {
730                         Logger::log('[ERROR] Item::setTemplate : Template not available ("' . $name . '").', Logger::DEBUG);
731                         return false;
732                 }
733
734                 $this->template = $this->available_templates[$name];
735
736                 return true;
737         }
738
739         /**
740          * Get template
741          *
742          * @return object
743          */
744         private function getTemplate()
745         {
746                 return $this->template;
747         }
748
749         /**
750          * Check if this is a toplevel post
751          *
752          * @return boolean
753          */
754         private function isToplevel()
755         {
756                 return $this->toplevel;
757         }
758
759         /**
760          * Check if this is writable
761          *
762          * @return boolean
763          */
764         private function isWritable()
765         {
766                 $conv = $this->getThread();
767
768                 if ($conv) {
769                         // This will allow us to comment on wall-to-wall items owned by our friends
770                         // and community forums even if somebody else wrote the post.
771                         // bug #517 - this fixes for conversation owner
772                         if ($conv->getMode() == 'profile' && $conv->getProfileOwner() == local_user()) {
773                                 return true;
774                         }
775
776                         // this fixes for visitors
777                         return ($this->writable || ($this->isVisiting() && $conv->getMode() == 'profile'));
778                 }
779                 return $this->writable;
780         }
781
782         /**
783          * Count the total of our descendants
784          *
785          * @return integer
786          */
787         private function countDescendants()
788         {
789                 $children = $this->getChildren();
790                 $total = count($children);
791                 if ($total > 0) {
792                         foreach ($children as $child) {
793                                 $total += $child->countDescendants();
794                         }
795                 }
796
797                 return $total;
798         }
799
800         /**
801          * Get the template for the comment box
802          *
803          * @return string
804          */
805         private function getCommentBoxTemplate()
806         {
807                 return $this->comment_box_template;
808         }
809
810         /**
811          * Get default text for the comment box
812          *
813          * @return string
814          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
815          */
816         private function getDefaultText()
817         {
818                 $a = self::getApp();
819
820                 if (!local_user()) {
821                         return '';
822                 }
823
824                 $owner = User::getOwnerDataById($a->user['uid']);
825
826                 if (!Feature::isEnabled(local_user(), 'explicit_mentions')) {
827                         return '';
828                 }
829
830                 $item = Item::selectFirst(['author-addr'], ['id' => $this->getId()]);
831                 if (!DBA::isResult($item) || empty($item['author-addr'])) {
832                         // Should not happen
833                         return '';
834                 }
835
836                 if ($item['author-addr'] != $owner['addr']) {
837                         $text = '@' . $item['author-addr'] . ' ';
838                 } else {
839                         $text = '';
840                 }
841
842                 $terms = Term::tagArrayFromItemId($this->getId(), [Term::MENTION, Term::IMPLICIT_MENTION]);
843                 foreach ($terms as $term) {
844                         $profile = Contact::getDetailsByURL($term['url']);
845                         if (!empty($profile['addr']) && ((($profile['contact-type'] ?? '') ?: Contact::TYPE_UNKNOWN) != Contact::TYPE_COMMUNITY) &&
846                                 ($profile['addr'] != $owner['addr']) && !strstr($text, $profile['addr'])) {
847                                 $text .= '@' . $profile['addr'] . ' ';
848                         }
849                 }
850
851                 return $text;
852         }
853
854         /**
855          * Get the comment box
856          *
857          * @param string $indent Indent value
858          *
859          * @return mixed The comment box string (empty if no comment box)
860          *               false on failure
861          * @throws \Exception
862          */
863         private function getCommentBox($indent)
864         {
865                 $a = self::getApp();
866
867                 $comment_box = '';
868                 $conv = $this->getThread();
869                 $ww = '';
870                 if (($conv->getMode() === 'network') && $this->isWallToWall()) {
871                         $ww = 'ww';
872                 }
873
874                 if ($conv->isWritable() && $this->isWritable()) {
875                         $qcomment = null;
876
877                         /*
878                          * Hmmm, code depending on the presence of a particular addon?
879                          * This should be better if done by a hook
880                          */
881                         if (Addon::isEnabled('qcomment')) {
882                                 $qc = ((local_user()) ? PConfig::get(local_user(), 'qcomment', 'words') : null);
883                                 $qcomment = (($qc) ? explode("\n", $qc) : null);
884                         }
885
886                         // Fetch the user id from the parent when the owner user is empty
887                         $uid = $conv->getProfileOwner();
888                         $parent_uid = $this->getDataValue('uid');
889
890                         $default_text = $this->getDefaultText();
891
892                         if (!is_null($parent_uid) && ($uid != $parent_uid)) {
893                                 $uid = $parent_uid;
894                         }
895
896                         $template = Renderer::getMarkupTemplate($this->getCommentBoxTemplate());
897                         $comment_box = Renderer::replaceMacros($template, [
898                                 '$return_path' => $a->query_string,
899                                 '$threaded'    => $this->isThreaded(),
900                                 '$jsreload'    => '',
901                                 '$wall'        => ($conv->getMode() === 'profile'),
902                                 '$id'          => $this->getId(),
903                                 '$parent'      => $this->getId(),
904                                 '$qcomment'    => $qcomment,
905                                 '$default'     => $default_text,
906                                 '$profile_uid' => $uid,
907                                 '$mylink'      => $a->removeBaseURL($a->contact['url']),
908                                 '$mytitle'     => L10n::t('This is you'),
909                                 '$myphoto'     => $a->removeBaseURL($a->contact['thumb']),
910                                 '$comment'     => L10n::t('Comment'),
911                                 '$submit'      => L10n::t('Submit'),
912                                 '$edbold'      => L10n::t('Bold'),
913                                 '$editalic'    => L10n::t('Italic'),
914                                 '$eduline'     => L10n::t('Underline'),
915                                 '$edquote'     => L10n::t('Quote'),
916                                 '$edcode'      => L10n::t('Code'),
917                                 '$edimg'       => L10n::t('Image'),
918                                 '$edurl'       => L10n::t('Link'),
919                                 '$edattach'    => L10n::t('Link or Media'),
920                                 '$prompttext'  => L10n::t('Please enter a image/video/audio/webpage URL:'),
921                                 '$preview'     => L10n::t('Preview'),
922                                 '$indent'      => $indent,
923                                 '$sourceapp'   => L10n::t($a->sourcename),
924                                 '$ww'          => $conv->getMode() === 'network' ? $ww : '',
925                                 '$rand_num'    => Crypto::randomDigits(12)
926                         ]);
927                 }
928
929                 return $comment_box;
930         }
931
932         /**
933          * @return string
934          */
935         private function getRedirectUrl()
936         {
937                 return $this->redirect_url;
938         }
939
940         /**
941          * Check if we are a wall to wall item and set the relevant properties
942          *
943          * @return void
944          * @throws \Exception
945          */
946         protected function checkWallToWall()
947         {
948                 $a = self::getApp();
949                 $conv = $this->getThread();
950                 $this->wall_to_wall = false;
951
952                 if ($this->isToplevel()) {
953                         if ($conv->getMode() !== 'profile') {
954                                 if ($this->getDataValue('wall') && !$this->getDataValue('self')) {
955                                         // On the network page, I am the owner. On the display page it will be the profile owner.
956                                         // This will have been stored in $a->page_contact by our calling page.
957                                         // Put this person as the wall owner of the wall-to-wall notice.
958
959                                         $this->owner_url = Contact::magicLink($a->page_contact['url']);
960                                         $this->owner_photo = $a->page_contact['thumb'];
961                                         $this->owner_name = $a->page_contact['name'];
962                                         $this->wall_to_wall = true;
963                                 } elseif ($this->getDataValue('owner-link')) {
964                                         $owner_linkmatch = (($this->getDataValue('owner-link')) && Strings::compareLink($this->getDataValue('owner-link'), $this->getDataValue('author-link')));
965                                         $alias_linkmatch = (($this->getDataValue('alias')) && Strings::compareLink($this->getDataValue('alias'), $this->getDataValue('author-link')));
966                                         $owner_namematch = (($this->getDataValue('owner-name')) && $this->getDataValue('owner-name') == $this->getDataValue('author-name'));
967
968                                         if (!$owner_linkmatch && !$alias_linkmatch && !$owner_namematch) {
969                                                 // The author url doesn't match the owner (typically the contact)
970                                                 // and also doesn't match the contact alias.
971                                                 // The name match is a hack to catch several weird cases where URLs are
972                                                 // all over the park. It can be tricked, but this prevents you from
973                                                 // seeing "Bob Smith to Bob Smith via Wall-to-wall" and you know darn
974                                                 // well that it's the same Bob Smith.
975                                                 // But it could be somebody else with the same name. It just isn't highly likely.
976
977
978                                                 $this->owner_photo = $this->getDataValue('owner-avatar');
979                                                 $this->owner_name = $this->getDataValue('owner-name');
980                                                 $this->wall_to_wall = true;
981
982                                                 $owner = ['uid' => 0, 'id' => $this->getDataValue('owner-id'),
983                                                         'network' => $this->getDataValue('owner-network'),
984                                                         'url' => $this->getDataValue('owner-link')];
985                                                 $this->owner_url = Contact::magicLinkByContact($owner);
986                                         }
987                                 }
988                         }
989                 }
990
991                 if (!$this->wall_to_wall) {
992                         $this->setTemplate('wall');
993                         $this->owner_url = '';
994                         $this->owner_photo = '';
995                         $this->owner_name = '';
996                 }
997         }
998
999         /**
1000          * @return boolean
1001          */
1002         private function isWallToWall()
1003         {
1004                 return $this->wall_to_wall;
1005         }
1006
1007         /**
1008          * @return string
1009          */
1010         private function getOwnerUrl()
1011         {
1012                 return $this->owner_url;
1013         }
1014
1015         /**
1016          * @return string
1017          */
1018         private function getOwnerName()
1019         {
1020                 return $this->owner_name;
1021         }
1022
1023         /**
1024          * @return boolean
1025          */
1026         private function isVisiting()
1027         {
1028                 return $this->visiting;
1029         }
1030 }