]> git.mxchange.org Git - friendica.git/blob - mod/network.php
add rel=mentioned links for tagged persons
[friendica.git] / mod / network.php
1 <?php
2
3
4 function network_init(&$a) {
5         require_once('include/group.php');
6         if(! x($a->page,'aside'))
7                 $a->page['aside'] = '';
8         $a->page['aside'] .= group_side('network','network');
9 }
10
11
12 function network_content(&$a, $update = 0) {
13
14         if(! local_user())
15                 return '';
16
17         $o = '';
18
19         require_once("include/bbcode.php");
20
21         $contact_id = $a->cid;
22
23         $group = 0;
24
25         if(! $update) {
26                 $o .= '<script> $(document).ready(function() { $(\'#nav-network-link\').addClass(\'nav-selected\'); });</script>';
27
28                         // pull out the group here because the updater might have different args
29                 if($a->argc > 1) {
30                         $group = intval($a->argv[1]);
31                         $group_acl = array('allow_gid' => '<' . $group . '>');
32                 }
33                 $_SESSION['return_url'] = $a->cmd;
34
35                 $geotag = (($a->user['allow_location']) ? load_view_file('view/jot_geotag.tpl') : '');
36
37                 $tpl = load_view_file('view/jot-header.tpl');
38         
39                 $a->page['htmlhead'] .= replace_macros($tpl, array(
40                         '$baseurl' => $a->get_baseurl(),
41                         '$geotag' => $geotag
42                 ));
43
44                 require_once('view/acl_selectors.php');
45
46                 $tpl = load_view_file("view/jot.tpl");
47                 
48                 if(($group) || (is_array($a->user) && ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid'])))))
49                                 $lockstate = 'lock';
50                         else
51                                 $lockstate = 'unlock';
52
53                 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
54
55                 $o .= replace_macros($tpl,array(
56                         '$return_path' => $a->cmd,
57                         '$baseurl' => $a->get_baseurl(),
58                         '$defloc' => $a->user['default-location'],
59                         '$visitor' => 'block',
60                         '$lockstate' => $lockstate,
61                         '$acl' => populate_acl((($group) ? $group_acl : $a->user), $celeb),
62                         '$bang' => (($group) ? '!' : ''),
63                         '$profile_uid' => $_SESSION['uid']
64                 ));
65
66
67                 // The special div is needed for liveUpdate to kick in for this page.
68                 // We only launch liveUpdate if you are on the front page, you aren't
69                 // filtering by group and also you aren't writing a comment (the last
70                 // criteria is discovered in javascript).
71
72                 if($a->pager['start'] == 0 && $a->argc == 1) {
73                         $o .= '<div id="live-network"></div>' . "\r\n";
74                         $o .= "<script> var profile_uid = " . $_SESSION['uid'] . "; </script>\r\n";
75                 }
76
77         }
78
79         // We aren't going to try and figure out at the item, group, and page level 
80         // which items you've seen and which you haven't. You're looking at some
81         // subset of items, so just mark everything seen. 
82         
83         $r = q("UPDATE `item` SET `unseen` = 0 
84                 WHERE `unseen` = 1 AND `uid` = %d",
85                 intval($_SESSION['uid'])
86         );
87
88         // We don't have to deal with ACL's on this page. You're looking at everything
89         // that belongs to you, hence you can see all of it. We will filter by group if
90         // desired. 
91
92         $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` ) ";
93
94         if($group) {
95                 $r = q("SELECT `name`, `id` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
96                         intval($group),
97                         intval($_SESSION['uid'])
98                 );
99                 if(! count($r)) {
100                         notice( t('No such group') . EOL );
101                         goaway($a->get_baseurl() . '/network');
102                         return; // NOTREACHED
103                 }
104
105                 $contacts = expand_groups(array($group));
106                 $contact_str = implode(',',$contacts);
107                 $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` AND `contact-id` IN ( $contact_str )) ";
108                 $o = '<h4>' . t('Group: ') . $r[0]['name'] . '</h4>' . $o;
109
110         }
111
112         $r = q("SELECT COUNT(*) AS `total`
113                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
114                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
115                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
116                 $sql_extra ",
117                 intval($_SESSION['uid'])
118         );
119
120         if(count($r))
121                 $a->set_pager_total($r[0]['total']);
122
123         $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
124                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
125                 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, 
126                 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
127                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
128                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
129                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
130                 $sql_extra
131                 ORDER BY `parent` DESC, `gravity` ASC, `created` ASC LIMIT %d ,%d ",
132                 intval($_SESSION['uid']),
133                 intval($a->pager['start']),
134                 intval($a->pager['itemspage'])
135         );
136
137
138         $cmnt_tpl = load_view_file('view/comment_item.tpl');
139         $like_tpl = load_view_file('view/like.tpl');
140         $tpl = load_view_file('view/wall_item.tpl');
141         $wallwall = load_view_file('view/wallwall_item.tpl');
142
143         $alike = array();
144         $dlike = array();
145         
146         if(count($r)) {
147
148                 foreach($r as $item) {
149                         like_puller($a,$item,$alike,'like');
150                         like_puller($a,$item,$dlike,'dislike');
151                 }
152
153                 foreach($r as $item) {
154
155                         $comment = '';
156                         $template = $tpl;
157                         $commentww = '';
158                         $owner_url = $owner_photo = $owner_name = '';
159                         $profile_url = $item['url'];
160                         $redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
161
162                         if(((activity_match($item['verb'],ACTIVITY_LIKE)) || (activity_match($item['verb'],ACTIVITY_DISLIKE))) && ($item['id'] != $item['parent']))
163                                 continue;
164
165                         $lock = (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid']) 
166                                 || strlen($item['deny_cid']) || strlen($item['deny_gid']))
167                                 ? '<div class="wall-item-lock"><img src="images/lock_icon.gif" class="lockview" alt="' . t('Private Message') . '" onclick="lockview(event,' . $item['id'] . ');" /></div>'
168                                 : '<div class="wall-item-lock"></div>');
169
170                         // Top-level wall post not written by the wall owner (wall-to-wall)
171                         // First figure out who owns it. 
172
173                         $osparkle = '';
174
175                         if(($item['parent'] == $item['item_id']) && (! $item['self'])) {
176
177                                 if($item['type'] === 'wall') {
178                                         // I do. Put me on the left of the wall-to-wall notice.
179                                         $owner_url = $a->contact['url'];
180                                         $owner_photo = $a->contact['thumb'];
181                                         $owner_name = $a->contact['name'];
182                                         $template = $wallwall;
183                                         $commentww = 'ww';      
184                                 }
185                                 if(($item['type'] === 'remote') && (strlen($item['owner-link'])) && ($item['owner-link'] != $item['author-link'])) {
186                                         // Could be anybody. 
187                                         $owner_url = $item['owner-link'];
188                                         $owner_photo = $item['owner-avatar'];
189                                         $owner_name = $item['owner-name'];
190                                         $template = $wallwall;
191                                         $commentww = 'ww';
192                                         // If it is our contact, use a friendly redirect link
193                                         if(($item['owner-link'] == $item['url']) 
194                                                 && ($item['network'] === 'dfrn')) {
195                                                 $owner_url = $redirect_url;
196                                                 $osparkle = ' sparkle';
197                                         }
198
199                                 }
200                         }
201
202                         if($update)
203                                 $return_url = $_SESSION['return_url'];
204                         else
205                                 $return_url = $_SESSION['return_url'] = $a->cmd;
206
207                         $likebuttons = '';
208                         if($item['id'] == $item['parent']) {
209                                 $likebuttons = replace_macros($like_tpl,array('$id' => $item['id']));
210                         }
211
212                         if($item['last-child']) {
213                                 $comment = replace_macros($cmnt_tpl,array(
214                                         '$return_path' => $_SESSION['return_url'],
215                                         '$type' => 'net-comment',
216                                         '$id' => $item['item_id'],
217                                         '$parent' => $item['parent'],
218                                         '$profile_uid' =>  $_SESSION['uid'],
219                                         '$mylink' => $a->contact['url'],
220                                         '$mytitle' => t('This is you'),
221                                         '$myphoto' => $a->contact['thumb'],
222                                         '$ww' => $commentww
223                                 ));
224                         }
225
226                         $drop = replace_macros(load_view_file('view/wall_item_drop.tpl'), array('$id' => $item['id']));
227
228
229         
230                         if(($item['network'] === 'dfrn') && (! $item['self'] )) {
231                                 $profile_url = $redirect_url;
232                                 $sparkle = ' sparkle';
233                         }
234
235                         $photo = $item['photo'];
236                         $thumb = $item['thumb'];
237
238                         // Post was remotely authored.
239
240                         $profile_name = ((strlen($item['author-name'])) ? $item['author-name'] : $item['name']);
241                         $profile_avatar = ((strlen($item['author-avatar'])) ? $item['author-avatar'] : $thumb);
242
243                         $profile_link = $profile_url;
244
245                         // Can we use our special contact URL for this author? 
246
247                         if(strlen($item['author-link'])) {
248                                 if($item['author-link'] == $item['url'] && ($item['network'] === 'dfrn') && (! $item['self'])) {
249                                         $profile_link = $redirect_url;
250                                         $sparkle = ' sparkle';
251                                 }
252                                 else {
253                                         $profile_link = $item['author-link'];
254                                         $sparkle = '';
255                                 }
256                         }
257
258
259                         $like    = ((x($alike,$item['id'])) ? format_like($alike[$item['id']],$alike[$item['id'] . '-l'],'like',$item['id']) : '');
260                         $dislike = ((x($dlike,$item['id'])) ? format_like($dlike[$item['id']],$dlike[$item['id'] . '-l'],'dislike',$item['id']) : '');
261
262                         $location = (($item['location']) ? '<a target="map" href="http://maps.google.com/?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : '');
263                         $coord = (($item['coord']) ? '<a target="map" href="http://maps.google.com/?q=' . urlencode($item['coord']) . '">' . $item['coord'] . '</a>' : '');
264                         if($coord) {
265                                 if($location)
266                                         $location .= '<br /><span class="smalltext">(' . $coord . ')</span>';
267                                 else
268                                         $location = '<span class="smalltext">' . $coord . '</span>';
269                         }
270
271                         // Build the HTML
272
273                         $o .= replace_macros($template,array(
274                                 '$id' => $item['item_id'],
275                                 '$profile_url' => $profile_link,
276                                 '$name' => $profile_name,
277                                 '$thumb' => $profile_avatar,
278                                 '$osparkle' => $osparkle,
279                                 '$sparkle' => $sparkle,
280                                 '$title' => $item['title'],
281                                 '$body' => bbcode($item['body']),
282                                 '$ago' => relative_date($item['created']),
283                                 '$lock' => $lock,
284                                 '$location' => $location,
285                                 '$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
286                                 '$owner_url' => $owner_url,
287                                 '$owner_photo' => $owner_photo,
288                                 '$owner_name' => $owner_name,
289                                 '$drop' => $drop,
290                                 '$vote' => $likebuttons,
291                                 '$like' => $like,
292                                 '$dislike' => $dislike,
293                                 '$comment' => $comment
294                         ));
295                 }
296         }
297
298         if(! $update)
299                 $o .= paginate($a);
300
301         return $o;
302 }