]> git.mxchange.org Git - friendica.git/blob - include/conversation.php
wallwall oddities on display page
[friendica.git] / include / conversation.php
1 <?php
2
3
4 function conversation(&$a, $items, $mode, $update) {
5
6         require_once('bbcode.php');
7
8         $profile_owner = 0;
9         $writable      = false;
10
11         if($mode === 'network') {
12                 $profile_owner = local_user();
13                 $writable = true;
14         }
15
16         if($mode === 'profile') {
17                 $profile_owner = $a->profile['profile_uid'];
18                 $writable = can_write_wall($a,$profile_owner);
19         }
20
21         if($mode === 'display') {
22                 $profile_owner = $a->profile['uid'];
23                 $writable = can_write_wall($a,$profile_owner);
24         }
25
26         if($update)
27                 $return_url = $_SESSION['return_url'];
28         else
29                 $return_url = $_SESSION['return_url'] = $a->cmd;
30
31
32         // find all the authors involved in remote conversations
33         // We will use a local profile photo if they are one of our contacts
34         // otherwise we have to get the photo from the item owner's site
35
36         $author_contacts = extract_item_authors($items,local_user());
37
38
39         $cmnt_tpl    = load_view_file('view/comment_item.tpl');
40         $like_tpl    = load_view_file('view/like.tpl');
41         $noshare_tpl = load_view_file('view/like_noshare.tpl');
42         $tpl         = load_view_file('view/wall_item.tpl');
43         $wallwall    = load_view_file('view/wallwall_item.tpl');
44
45         $alike = array();
46         $dlike = array();
47         
48         if(count($items)) {
49
50                 if($mode === 'network-new' || $mode === 'search') {
51
52                         // "New Item View" on network page or search page results 
53                         // - just loop through the items and format them minimally for display
54
55                         $tpl = load_view_file('view/search_item.tpl');
56                         $droptpl = load_view_file('view/wall_fake_drop.tpl');
57
58                         foreach($items as $item) {
59
60                                 $comment     = '';
61                                 $owner_url   = '';
62                                 $owner_photo = '';
63                                 $owner_name  = '';
64                                 $sparkle     = '';
65
66                                 if($mode === 'search') {
67                                         if(((activity_match($item['verb'],ACTIVITY_LIKE)) || (activity_match($item['verb'],ACTIVITY_DISLIKE))) 
68                                                 && ($item['id'] != $item['parent']))
69                                                 continue;
70                                         $nickname = $item['nickname'];
71                                 }
72                                 else
73                                         $nickname = $a->user['nickname'];
74                         
75                                 $profile_name   = ((strlen($item['author-name']))   ? $item['author-name']   : $item['name']);
76                                 $profile_avatar = ((strlen($item['author-avatar'])) ? $item['author-avatar'] : $item['thumb']);
77                                 $profile_link   = ((strlen($item['author-link']))   ? $item['author-link']   : $item['url']);
78
79                                 $redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
80
81                                 if(strlen($item['author-link'])) {
82                                         if(link_compare($item['author-link'],$item['url']) && ($item['network'] === 'dfrn') && (! $item['self'])) {
83                                                 $profile_link = $redirect_url;
84                                                 $sparkle = ' sparkle';
85                                         }
86                                         elseif(isset($author_contacts[$item['author-link']])) {
87                                                 $profile_link = $a->get_baseurl() . '/redir/' . $author_contacts[$item['author-link']];
88                                                 $sparkle = ' sparkle';
89                                         }
90                                 }
91
92                                 $location = (($item['location']) ? '<a target="map" title="' . $item['location'] . '" href="http://maps.google.com/?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : '');
93                                 $coord = (($item['coord']) ? '<a target="map" title="' . $item['coord'] . '" href="http://maps.google.com/?q=' . urlencode($item['coord']) . '">' . $item['coord'] . '</a>' : '');
94                                 if($coord) {
95                                         if($location)
96                                                 $location .= '<br /><span class="smalltext">(' . $coord . ')</span>';
97                                         else
98                                                 $location = '<span class="smalltext">' . $coord . '</span>';
99                                 }
100
101                                 $drop = '';
102                                 $dropping = false;
103
104                                 if((intval($item['contact-id']) && $item['contact-id'] == remote_user()) || ($item['uid'] == local_user()))
105                                         $dropping = true;
106
107                     $drop = replace_macros((($dropping)? $droptpl : $fakedrop), array('$id' => $item['id'], '$delete' => t('Delete')));
108
109
110
111                                 $drop = replace_macros($droptpl,array('$id' => $item['id']));
112                                 $lock = '<div class="wall-item-lock"></div>';
113                                 
114                                 $o .= replace_macros($tpl,array(
115                                         '$id' => $item['item_id'],
116                                         '$linktitle' => sprintf( t('View %s\'s profile'), $profile_name),
117                                         '$profile_url' => $profile_link,
118                                         '$item_photo_menu' => item_photo_menu($item),
119                                         '$name' => $profile_name,
120                                         '$sparkle' => $sparkle,
121                                         '$lock' => $lock,
122                                         '$thumb' => $profile_avatar,
123                                         '$title' => $item['title'],
124                                         '$body' => smilies(bbcode($item['body'])),
125                                         '$ago' => relative_date($item['created']),
126                                         '$location' => $location,
127                                         '$indent' => '',
128                                         '$owner_url' => $owner_url,
129                                         '$owner_photo' => $owner_photo,
130                                         '$owner_name' => $owner_name,
131                                         '$drop' => $drop,
132                                         '$conv' => '<a href="' . $a->get_baseurl() . '/display/' . $nickname . '/' . $item['id'] . '">' . t('View in context') . '</a>'
133                                 ));
134
135                         }
136
137                         return $o;
138                 }
139
140
141
142
143                 // Normal View
144
145
146                 // Figure out how many comments each parent has
147                 // (Comments all have gravity of 6)
148                 // Store the result in the $comments array
149
150                 $comments = array();
151                 foreach($items as $item) {
152                         if(intval($item['gravity']) == 6) {
153                                 if(! x($comments,$item['parent']))
154                                         $comments[$item['parent']] = 1;
155                                 else
156                                         $comments[$item['parent']] += 1;
157                         }
158                 }
159
160                 // map all the like/dislike activities for each parent item 
161                 // Store these in the $alike and $dlike arrays
162
163                 foreach($items as $item) {
164                         like_puller($a,$item,$alike,'like');
165                         like_puller($a,$item,$dlike,'dislike');
166                 }
167
168                 $comments_collapsed = false;
169                 $blowhard = 0;
170                 $blowhard_count = 0;
171
172                 foreach($items as $item) {
173
174                         $comment = '';
175                         $template = $tpl;
176                         $commentww = '';
177                         $sparkle = '';
178                         $owner_url = $owner_photo = $owner_name = '';
179
180
181                         // We've already parsed out like/dislike for special treatment. We can ignore them now
182
183                         if(((activity_match($item['verb'],ACTIVITY_LIKE)) 
184                                 || (activity_match($item['verb'],ACTIVITY_DISLIKE))) 
185                                 && ($item['id'] != $item['parent']))
186                                 continue;
187
188                         // Take care of author collapsing and comment collapsing
189                         // If a single author has more than 3 consecutive top-level posts, squash the remaining ones.
190                         // If there are more than two comments, squash all but the last 2.
191
192                         if($item['id'] == $item['parent']) {
193                                 if($blowhard == $item['cid'] && (! $item['self']) && ($mode != 'profile')) {
194                                         $blowhard_count ++;
195                                         if($blowhard_count == 3) {
196                                                 $o .= '<div class="icollapse-wrapper fakelink" id="icollapse-wrapper-' . $item['parent'] . '" onclick="openClose(' . '\'icollapse-' . $item['parent'] . '\');" >' . t('See more posts like this') . '</div>' . '<div class="icollapse" id="icollapse-' . $item['parent'] . '" style="display: none;" >';
197                                         }
198                                 }
199                                 else {
200                                         $blowhard = $item['cid'];                                       
201                                         if($blowhard_count >= 3)
202                                                 $o .= '</div>';
203                                         $blowhard_count = 0;
204                                 }
205
206                                 $comments_seen = 0;
207                                 $comments_collapsed = false;
208                         }
209                         else
210                                 $comments_seen ++;
211
212
213                         if(($comments[$item['parent']] > 2) && ($comments_seen <= ($comments[$item['parent']] - 2)) && ($item['gravity'] == 6)) {
214                                 if(! $comments_collapsed) {
215                                         $o .= '<div class="ccollapse-wrapper fakelink" id="ccollapse-wrapper-' . $item['parent'] . '" onclick="openClose(' . '\'ccollapse-' . $item['parent'] . '\');" >' . sprintf( t('See all %d comments'), $comments[$item['parent']]) . '</div>';
216                                         $o .= '<div class="ccollapse" id="ccollapse-' . $item['parent'] . '" style="display: none;" >';
217                                         $comments_collapsed = true;
218                                 }
219                         }
220                         if(($comments[$item['parent']] > 2) && ($comments_seen == ($comments[$item['parent']] - 1))) {
221                                 $o .= '</div>';
222                         }
223
224
225
226                         $redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
227
228                         $lock = ((($item['private']) || (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid']) 
229                                 || strlen($item['deny_cid']) || strlen($item['deny_gid']))))
230                                 ? '<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="' . t('Private Message') . '" onclick="lockview(event,' . $item['id'] . ');" /></div>'
231                                 : '<div class="wall-item-lock"></div>');
232
233
234                         // Top-level wall post not written by the wall owner (wall-to-wall)
235                         // First figure out who owns it. 
236
237                         $osparkle = '';
238
239                         if(($item['parent'] == $item['item_id']) && (! $item['self']) && ($mode !== 'profile')) {
240
241                                 if($item['type'] === 'wall') {
242                                         // I do. Put me on the left of the wall-to-wall notice.
243                                         $owner_url = $a->page_contact['url'];
244                                         $owner_photo = $a->page_contact['thumb'];
245                                         $owner_name = $a->page_contact['name'];
246                                         $template = $wallwall;
247                                         $commentww = 'ww';      
248                                 }
249                                 if(($item['type'] === 'remote') && (strlen($item['owner-link'])) && ($item['owner-link'] != $item['author-link'])) {
250                                         // Could be anybody. 
251                                         $owner_url = $item['owner-link'];
252                                         $owner_photo = $item['owner-avatar'];
253                                         $owner_name = $item['owner-name'];
254                                         $template = $wallwall;
255                                         $commentww = 'ww';
256                                         // If it is our contact, use a friendly redirect link
257                                         if((link_compare($item['owner-link'],$item['url'])) 
258                                                 && ($item['network'] === 'dfrn')) {
259                                                 $owner_url = $redirect_url;
260                                                 $osparkle = ' sparkle';
261                                         }
262                                 }
263                         }
264
265
266                         $likebuttons = '';
267
268                         if($writable) {
269                                 if($item['id'] == $item['parent']) {
270                                         $likebuttons = replace_macros((($item['private']) ? $noshare_tpl : $like_tpl),array(
271                                                 '$id' => $item['id'],
272                                                 '$likethis' => t("I like this \x28toggle\x29"),
273                                                 '$nolike' => t("I don't like this \x28toggle\x29"),
274                                                 '$share' => t('Share'),
275                                                 '$wait' => t('Please wait') 
276                                         ));
277                                 }
278
279                                 if($item['last-child']) {
280                                         $comment = replace_macros($cmnt_tpl,array(
281                                                 '$return_path' => '', 
282                                                 '$jsreload' => (($mode === 'display') ? $_SESSION['return_url'] : ''),
283                                                 '$type' => (($mode === 'profile') ? 'wall-comment' : 'net-comment'),
284                                                 '$id' => $item['item_id'],
285                                                 '$parent' => $item['parent'],
286                                                 '$profile_uid' =>  $profile_owner,
287                                                 '$mylink' => $a->contact['url'],
288                                                 '$mytitle' => t('This is you'),
289                                                 '$myphoto' => $a->contact['thumb'],
290                                                 '$comment' => t('Comment'),
291                                                 '$submit' => t('Submit'),
292                                                 '$ww' => (($mode === 'network') ? $commentww : '')
293                                         ));
294                                 }
295                         }
296
297                         $edpost = '';
298                         if(($profile_owner == local_user()) && ($item['id'] == $item['parent']) && (intval($item['wall']) == 1)) 
299                                 $edpost = '<a class="editpost" href="' . $a->get_baseurl() . '/editpost/' . $item['id'] . '" title="' . t('Edit') . '"><img src="images/pencil.gif" /></a>';
300                         $drop = replace_macros(load_view_file('view/wall_item_drop.tpl'), array('$id' => $item['id'], '$delete' => t('Delete')));
301
302                         $photo = $item['photo'];
303                         $thumb = $item['thumb'];
304
305                         // Post was remotely authored.
306
307                         $diff_author = ((link_compare($item['url'],$item['author-link'])) ? false : true);
308
309                         $profile_name   = (((strlen($item['author-name']))   && $diff_author) ? $item['author-name']   : $item['name']);
310                         $profile_avatar = (((strlen($item['author-avatar'])) && $diff_author) ? $item['author-avatar'] : $thumb);
311
312                         if($mode === 'profile') {
313                                 if(local_user() && ($item['contact-uid'] == local_user()) && ($item['network'] === 'dfrn') && (! $item['self'] )) {
314                         $profile_link = $redirect_url;
315                     $sparkle = ' sparkle';
316                     }
317                                 else {
318                                         $profile_link = $item['url'];
319                                         $sparkle = '';
320                                 }
321                         }
322                         elseif(strlen($item['author-link'])) {
323                                 $profile_link = $item['author-link'];
324                                 if(link_compare($item['author-link'],$item['url']) && ($item['network'] === 'dfrn') && (! $item['self'])) {
325                                         $profile_link = $redirect_url;
326                                         $sparkle = ' sparkle';
327                                 }
328                                 elseif(isset($author_contacts[$item['author-link']])) {
329                                         $profile_link = $a->get_baseurl() . '/redir/' . $author_contacts[$item['author-link']];
330                                         $sparkle = ' sparkle';
331                                 }
332                         }
333                         else 
334                                 $profile_link = $item['url'];
335
336                         $like    = ((x($alike,$item['id'])) ? format_like($alike[$item['id']],$alike[$item['id'] . '-l'],'like',$item['id']) : '');
337                         $dislike = ((x($dlike,$item['id'])) ? format_like($dlike[$item['id']],$dlike[$item['id'] . '-l'],'dislike',$item['id']) : '');
338
339                         $location = (($item['location']) ? '<a target="map" title="' . $item['location'] . '" href="http://maps.google.com/?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : '');
340                         $coord = (($item['coord']) ? '<a target="map" title="' . $item['coord'] . '" href="http://maps.google.com/?q=' . urlencode($item['coord']) . '">' . $item['coord'] . '</a>' : '');
341                         if($coord) {
342                                 if($location)
343                                         $location .= '<br /><span class="smalltext">(' . $coord . ')</span>';
344                                 else
345                                         $location = '<span class="smalltext">' . $coord . '</span>';
346                         }
347
348                         $indent = (($item['parent'] != $item['item_id']) ? ' comment' : '');
349
350                         if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0)
351                                 $indent .= ' shiny'; 
352
353
354
355                         // Build the HTML
356
357                         $tmp_item = replace_macros($template,array(
358                                 '$id' => $item['item_id'],
359                                 '$linktitle' => sprintf( t('View %s\'s profile'), $profile_name),
360                                 '$olinktitle' => sprintf( t('View %s\'s profile'), $owner_name),
361                                 '$to' => t('to'),
362                                 '$wall' => t('Wall-to-Wall'),
363                                 '$vwall' => t('via Wall-To-Wall:'),
364                                 '$profile_url' => $profile_link,
365                                 '$item_photo_menu' => item_photo_menu($item),
366                                 '$name' => $profile_name,
367                                 '$thumb' => $profile_avatar,
368                                 '$osparkle' => $osparkle,
369                                 '$sparkle' => $sparkle,
370                                 '$title' => $item['title'],
371                                 '$body' => smilies(bbcode($item['body'])),
372                                 '$ago' => relative_date($item['created']),
373                                 '$lock' => $lock,
374                                 '$location' => $location,
375                                 '$indent' => $indent,
376                                 '$owner_url' => $owner_url,
377                                 '$owner_photo' => $owner_photo,
378                                 '$owner_name' => $owner_name,
379                                 '$plink' => get_plink($item),
380                                 '$edpost' => $edpost,
381                                 '$drop' => $drop,
382                                 '$vote' => $likebuttons,
383                                 '$like' => $like,
384                                 '$dislike' => $dislike,
385                                 '$comment' => $comment
386                         ));
387
388                         $arr = array('item' => $item, 'output' => $tmp_item);
389                         call_hooks('display_item', $arr);
390
391                         $o .= $arr['output'];
392
393                 }
394         }
395
396
397         // if author collapsing is in force but didn't get closed, close it off now.
398
399         if($blowhard_count >= 3)
400                 $o .= '</div>';
401
402         return $o;
403