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