]> git.mxchange.org Git - friendica.git/blob - mod/network.php
common_tabs in notifications.php
[friendica.git] / mod / network.php
1 <?php
2
3
4 function network_init(&$a) {
5         if(! local_user()) {
6                 notice( t('Permission denied.') . EOL);
7                 return;
8         }
9   
10         $group_id = (($a->argc > 1 && intval($a->argv[1])) ? intval($a->argv[1]) : 0);
11                   
12         require_once('include/group.php');
13         if(! x($a->page,'aside'))
14                 $a->page['aside'] = '';
15
16         $search = ((x($_GET,'search')) ? escape_tags($_GET['search']) : '');
17
18         // We need a better way of managing a growing argument list
19
20         // moved into savedsearches()
21         // $srchurl = '/network' 
22         //              . ((x($_GET,'cid')) ? '?cid=' . $_GET['cid'] : '') 
23         //              . ((x($_GET,'star')) ? '?star=' . $_GET['star'] : '')
24         //              . ((x($_GET,'bmark')) ? '?bmark=' . $_GET['bmark'] : '');
25         
26         if(x($_GET,'save')) {
27                 $r = q("select * from `search` where `uid` = %d and `term` = '%s' limit 1",
28                         intval(local_user()),
29                         dbesc($search)
30                 );
31                 if(! count($r)) {
32                         q("insert into `search` ( `uid`,`term` ) values ( %d, '%s') ",
33                                 intval(local_user()),
34                                 dbesc($search)
35                         );
36                 }
37         }
38         if(x($_GET,'remove')) {
39                 q("delete from `search` where `uid` = %d and `term` = '%s' limit 1",
40                         intval(local_user()),
41                         dbesc($search)
42                 );
43         }
44
45
46         
47         // search terms header
48         if(x($_GET,'search')) {
49                 $a->page['content'] .= '<h2>Search Results For: '  . $search . '</h2>';
50         }
51         
52         $a->page['aside'] .= group_side('network','network',true,$group_id);
53         
54         // moved to saved searches to have it in the same div
55         //$a->page['aside'] .= search($search,'netsearch-box',$srchurl,true);
56
57         $a->page['aside'] .= saved_searches($search);
58
59 }
60
61 function saved_searches($search) {
62
63         $srchurl = '/network' 
64                 . ((x($_GET,'cid')) ? '?cid=' . $_GET['cid'] : '') 
65                 . ((x($_GET,'star')) ? '?star=' . $_GET['star'] : '')
66                 . ((x($_GET,'bmark')) ? '?bmark=' . $_GET['bmark'] : '');
67         
68         $o = '';
69
70         $r = q("select `term` from `search` WHERE `uid` = %d",
71                 intval(local_user())
72         );
73
74         $o .= '<div id="saved-search-list" class="widget">';
75         $o .= '<h3 id="search">' . t('Saved Searches') . '</h3>' . "\r\n";
76         $o .= search($search,'netsearch-box',$srchurl,true);
77         
78         if(count($r)) {
79                 $o .= '<ul id="saved-search-ul">' . "\r\n";
80                 foreach($r as $rr) {
81                         $o .= '<li class="saved-search-li clear"><a href="network/?f=&remove=1&search=' . $rr['term'] . '" class="icon drophide savedsearchdrop" title="' . t('Remove term') . '" onclick="return confirmDelete();" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a> <a href="network/?f&search=' . urlencode($rr['term']) . '" class="savedsearchterm" >' . $rr['term'] . '</a></li>' . "\r\n";
82                 }
83                 $o .= '</ul>';
84         }               
85
86         $o .= '</div>' . "\r\n";
87         return $o;
88
89 }
90
91
92 function network_content(&$a, $update = 0) {
93
94         require_once('include/conversation.php');
95
96         if(! local_user())
97         return login(false);
98
99         $o = '';
100
101         // item filter tabs
102         // TODO: fix this logic, reduce duplication
103         $a->page['content'] .= '<div class="tabs-wrapper">';
104         
105         $starred_active = '';
106         $new_active = '';
107         $bookmarked_active = '';
108         $all_active = '';
109         $search_active = '';
110         
111         if(($a->argc > 1 && $a->argv[1] === 'new') 
112                 || ($a->argc > 2 && $a->argv[2] === 'new')) {
113                         $new_active = 'active';
114         }
115         
116         if(x($_GET,'search')) {
117                 $search_active = 'active';
118         }
119         
120         if(x($_GET,'star')) {
121                 $starred_active = 'active';
122         }
123         
124         if($_GET['bmark']) {
125                 $bookmarked_active = 'active';
126         }
127         
128         if (($new_active == '') 
129                 && ($starred_active == '') 
130                 && ($bookmarked_active == '')
131                 && ($search_active == '')) {
132                         $all_active = 'active';
133         }
134         
135         // tabs
136         $tabs = array(
137                 array(
138                         'label' => t('All'),
139                         'url'=>$a->get_baseurl() . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '?cid=' . $_GET['cid'] : ''), 
140                         'sel'=>$all_active,
141                 ),
142                 array(
143                         'label' => t('New'),
144                         'url' => $a->get_baseurl() . '/' . str_replace('/new', '', $a->cmd) . '/new' . ((x($_GET,'cid')) ? '/?cid=' . $_GET['cid'] : ''),
145                         'sel' => $new_active,
146                 ),
147                 array(
148                         'label' => t('Starred'),
149                         'url'=>$a->get_baseurl() . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '/?cid=' . $_GET['cid'] : '') . '&star=1',
150                         'sel'=>$starred_active,
151                 ),
152                 array(
153                         'label' => t('Bookmarks'),
154                         'url'=>$a->get_baseurl() . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '/?cid=' . $_GET['cid'] : '') . '&bmark=1',
155                         'sel'=>$bookmarked_active,
156                 ),      
157         );
158         $tpl = get_markup_template('common_tabs.tpl');
159         $o .= replace_macros($tpl, array('$tabs'=>$tabs));
160         // --- end item filter tabs
161
162
163
164         
165
166         $contact_id = $a->cid;
167
168         $group = 0;
169
170         $nouveau = false;
171         require_once('include/acl_selectors.php');
172
173         $cid = ((x($_GET,'cid')) ? intval($_GET['cid']) : 0);
174         $star = ((x($_GET,'star')) ? intval($_GET['star']) : 0);
175         $bmark = ((x($_GET,'bmark')) ? intval($_GET['bmark']) : 0);
176         $order = ((x($_GET,'order')) ? notags($_GET['order']) : 'comment');
177         $liked = ((x($_GET,'liked')) ? intval($_GET['liked']) : 0);
178
179
180         if(($a->argc > 2) && $a->argv[2] === 'new')
181                 $nouveau = true;
182
183         if($a->argc > 1) {
184                 if($a->argv[1] === 'new')
185                         $nouveau = true;
186                 else {
187                         $group = intval($a->argv[1]);
188                         $def_acl = array('allow_gid' => '<' . $group . '>');
189                 }
190         }
191
192         if(x($_GET,'search'))
193                 $nouveau = true;
194         if($cid)
195                 $def_acl = array('allow_cid' => '<' . intval($cid) . '>');
196
197         if(! $update) {
198                 if(group) {
199                         if(($t = group_public_members($group)) && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
200                                 notice( sprintf( tt('Warning: This group contains %s member from an insecure network.',
201                                                                         'Warning: This group contains %s members from an insecure network.',
202                                                                         $t), $t ) . EOL);
203                                 notice( t('Private messages to this group are at risk of public disclosure.') . EOL);
204                         }
205                 }
206
207                 nav_set_selected('network');
208
209                 $_SESSION['return_url'] = $a->cmd;
210
211                 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
212
213                 $x = array(
214                         'is_owner' => true,
215                         'allow_location' => $a->user['allow_location'],
216                         'default_location' => $a->user['default_location'],
217                         'nickname' => $a->user['nickname'],
218                         'lockstate' => ((($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']))))) ? 'lock' : 'unlock'),
219                         'acl' => populate_acl((($group || $cid) ? $def_acl : $a->user), $celeb),
220                         'bang' => (($group || $cid) ? '!' : ''),
221                         'visitor' => 'block',
222                         'profile_uid' => local_user()
223                 );
224
225                 $o .= status_editor($a,$x);
226
227                 // The special div is needed for liveUpdate to kick in for this page.
228                 // We only launch liveUpdate if you are on the front page, you aren't
229                 // filtering by group and also you aren't writing a comment (the last
230                 // criteria is discovered in javascript).
231
232                         $o .= '<div id="live-network"></div>' . "\r\n";
233                         $o .= "<script> var profile_uid = " . $_SESSION['uid'] 
234                                 . "; var netargs = '" . substr($a->cmd,8)
235                                 . '?f='
236                                 . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '')
237                                 . ((x($_GET,'search')) ? '&search=' . $_GET['search'] : '') 
238                                 . ((x($_GET,'star')) ? '&star=' . $_GET['star'] : '') 
239                                 . ((x($_GET,'order')) ? '&order=' . $_GET['order'] : '') 
240                                 . ((x($_GET,'bmark')) ? '&bmark=' . $_GET['bmark'] : '') 
241                                 . ((x($_GET,'liked')) ? '&liked=' . $_GET['liked'] : '') 
242                                 . "'; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
243
244         }
245
246         // We aren't going to try and figure out at the item, group, and page
247         // level which items you've seen and which you haven't. If you're looking
248         // at the top level network page just mark everything seen. 
249         
250         if((! $group) && (! $cid) && (! $star)) {
251                 $r = q("UPDATE `item` SET `unseen` = 0 
252                         WHERE `unseen` = 1 AND `uid` = %d",
253                         intval($_SESSION['uid'])
254                 );
255         }
256
257         // We don't have to deal with ACL's on this page. You're looking at everything
258         // that belongs to you, hence you can see all of it. We will filter by group if
259         // desired. 
260
261         $star_sql = (($star) ?  " AND `starred` = 1 " : '');
262
263         if($bmark)
264                 $star_sql .= " AND `bookmark` = 1 ";
265
266         $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` $star_sql ) ";
267
268         if($group) {
269                 $r = q("SELECT `name`, `id` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
270                         intval($group),
271                         intval($_SESSION['uid'])
272                 );
273                 if(! count($r)) {
274                         if($update)
275                                 killme();
276                         notice( t('No such group') . EOL );
277                         goaway($a->get_baseurl() . '/network');
278                         // NOTREACHED
279                 }
280
281                 $contacts = expand_groups(array($group));
282                 if((is_array($contacts)) && count($contacts)) {
283                         $contact_str = implode(',',$contacts);
284                 }
285                 else {
286                                 $contact_str = ' 0 ';
287                                 info( t('Group is empty'));
288                 }
289
290
291                 $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` $star_sql AND ( `contact-id` IN ( $contact_str ) OR `allow_gid` REGEXP '<" . intval($group) . ">' )) ";
292                 $o = '<h2>' . t('Group: ') . $r[0]['name'] . '</h2>' . $o;
293         }
294         elseif($cid) {
295
296                 $r = q("SELECT `id`,`name`,`network`,`writable` FROM `contact` WHERE `id` = %d 
297                                 AND `blocked` = 0 AND `pending` = 0 LIMIT 1",
298                         intval($cid)
299                 );
300                 if(count($r)) {
301                         $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` $star_sql AND `contact-id` IN ( " . intval($cid) . " )) ";
302                         $o = '<h2>' . t('Contact: ') . $r[0]['name'] . '</h2>' . $o;
303                         if($r[0]['network'] !== NETWORK_MAIL && $r[0]['network'] !== NETWORK_DFRN && $r[0]['network'] !== NETWORK_FACEBOOK && $r[0]['network'] !== NETWORK_DIASPORA && $r[0]['writable'] && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
304                                 notice( t('Private messages to this person are at risk of public disclosure.') . EOL);
305                         }
306
307                 }
308                 else {
309                         notice( t('Invalid contact.') . EOL);
310                         goaway($a->get_baseurl() . '/network');
311                         // NOTREACHED
312                 }
313         }
314
315         if((! $group) && (! $cid) && (! $update))
316                 $o .= get_birthdays();
317
318         $sql_extra2 = (($nouveau) ? '' : " AND `item`.`parent` = `item`.`id` ");
319
320         if(x($_GET,'search'))
321                 $sql_extra .= " AND `item`.`body` REGEXP '" . dbesc(escape_tags($_GET['search'])) . "' ";
322
323         
324         $r = q("SELECT COUNT(*) AS `total`
325                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
326                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
327                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
328                 $sql_extra2
329                 $sql_extra ",
330                 intval($_SESSION['uid'])
331         );
332
333         if(count($r)) {
334                 $a->set_pager_total($r[0]['total']);
335                 $a->set_pager_itemspage(40);
336         }
337
338
339         if($nouveau) {
340
341                 // "New Item View" - show all items unthreaded in reverse created date order
342
343                 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
344                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
345                         `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
346                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
347                         FROM `item`, `contact`
348                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
349                         AND `contact`.`id` = `item`.`contact-id`
350                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
351                         $sql_extra
352                         ORDER BY `item`.`received` DESC LIMIT %d ,%d ",
353                         intval($_SESSION['uid']),
354                         intval($a->pager['start']),
355                         intval($a->pager['itemspage'])
356                 );
357                 
358         }
359         else {
360
361                 // Normal conversation view
362
363
364                 if($order === 'post')
365                                 $ordering = "`created`";
366                 else
367                                 $ordering = "`commented`";
368
369                 // Fetch a page full of parent items for this page
370
371                 $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact_uid`
372                         FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
373                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
374                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
375                         AND `item`.`parent` = `item`.`id`
376                         $sql_extra
377                         ORDER BY `item`.$ordering DESC LIMIT %d ,%d ",
378                         intval(local_user()),
379                         intval($a->pager['start']),
380                         intval($a->pager['itemspage'])
381                 );
382
383                 // Then fetch all the children of the parents that are on this page
384
385                 $parents_arr = array();
386                 $parents_str = '';
387
388                 if(count($r)) {
389                         foreach($r as $rr)
390                                 $parents_arr[] = $rr['item_id'];
391                         $parents_str = implode(', ', $parents_arr);
392
393                         $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
394                                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
395                                 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
396                                 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
397                                 FROM `item`, (SELECT `p`.`id`,`p`.`created`,`p`.`commented` FROM `item` AS `p` WHERE `p`.`parent`=`p`.`id`) as `parentitem`, `contact`
398                                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
399                                 AND `contact`.`id` = `item`.`contact-id`
400                                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
401                                 AND `item`.`parent` = `parentitem`.`id` AND `item`.`parent` IN ( %s )
402                                 $sql_extra
403                                 ORDER BY `parentitem`.$ordering DESC, `parentitem`.`id` ASC, `item`.`gravity` ASC, `item`.`created` ASC ",
404                                 intval(local_user()),
405                                 dbesc($parents_str)
406                         );
407                 }       
408         }
409
410         // Set this so that the conversation function can find out contact info for our wall-wall items
411         $a->page_contact = $a->contact;
412
413         $mode = (($nouveau) ? 'network-new' : 'network');
414
415         $o .= conversation($a,$r,$mode,$update);
416
417         if(! $update) {
418                 $o .= paginate($a);
419         }
420
421         return $o;
422 }