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