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