]> git.mxchange.org Git - friendica.git/blob - mod/network.php
Merge remote branch 'upstream/master'
[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         require_once('include/contact_widgets.php');
14
15         if(! x($a->page,'aside'))
16                 $a->page['aside'] = '';
17
18         $search = ((x($_GET,'search')) ? escape_tags($_GET['search']) : '');
19
20         if(x($_GET,'save')) {
21                 $r = q("select * from `search` where `uid` = %d and `term` = '%s' limit 1",
22                         intval(local_user()),
23                         dbesc($search)
24                 );
25                 if(! count($r)) {
26                         q("insert into `search` ( `uid`,`term` ) values ( %d, '%s') ",
27                                 intval(local_user()),
28                                 dbesc($search)
29                         );
30                 }
31         }
32         if(x($_GET,'remove')) {
33                 q("delete from `search` where `uid` = %d and `term` = '%s' limit 1",
34                         intval(local_user()),
35                         dbesc($search)
36                 );
37         }
38
39
40         
41         // search terms header
42         if(x($_GET,'search')) {
43                 $a->page['content'] .= '<h2>' . t('Search Results For:') . ' '  . $search . '</h2>';
44         }
45         
46         $a->page['aside'] .= group_side('network','network',true,$group_id);
47         $a->page['aside'] .= networks_widget($a->get_baseurl(true) . '/network',(x($_GET, 'nets') ? $_GET['nets'] : ''));
48         $a->page['aside'] .= saved_searches($search);
49         $a->page['aside'] .= fileas_widget($a->get_baseurl(true) . '/network',(x($_GET, 'file') ? $_GET['file'] : ''));
50
51 }
52
53 function saved_searches($search) {
54
55         $a = get_app();
56
57         $srchurl = '/network?f=' 
58                 . ((x($_GET,'cid'))   ? '&cid='   . $_GET['cid']   : '') 
59                 . ((x($_GET,'star'))  ? '&star='  . $_GET['star']  : '')
60                 . ((x($_GET,'bmark')) ? '&bmark=' . $_GET['bmark'] : '')
61                 . ((x($_GET,'conv'))  ? '&conv='  . $_GET['conv']  : '')
62                 . ((x($_GET,'nets'))  ? '&nets='  . $_GET['nets']  : '')
63                 . ((x($_GET,'cmin'))  ? '&cmin='  . $_GET['cmin']  : '')
64                 . ((x($_GET,'cmax'))  ? '&cmax='  . $_GET['cmax']  : '')
65                 . ((x($_GET,'file'))  ? '&file='  . $_GET['file']  : '');
66         ;
67         
68         $o = '';
69
70         $r = q("select `id`,`term` from `search` WHERE `uid` = %d",
71                 intval(local_user())
72         );
73
74         $saved = array();
75
76         if(count($r)) {
77                 foreach($r as $rr) {
78                         $saved[] = array(
79                                 'id'            => $rr['id'],
80                                 'term'                  => $rr['term'],
81                                 'encodedterm'   => urlencode($rr['term']),
82                                 'delete'                => t('Remove term'),
83                                 'selected'              => ($search==$rr['term']),
84                         );
85                 }
86         }               
87
88         
89         $tpl = get_markup_template("saved_searches_aside.tpl");
90         $o = replace_macros($tpl, array(
91                 '$title'         => t('Saved Searches'),
92                 '$add'           => t('add'),
93                 '$searchbox' => search($search,'netsearch-box',$srchurl,true),
94                 '$saved'         => $saved,
95         ));
96         
97         return $o;
98
99 }
100
101
102 function network_content(&$a, $update = 0) {
103
104         require_once('include/conversation.php');
105
106         if(! local_user()) {
107                 $_SESSION['return_url'] = $a->query_string;
108         return login(false);
109         }
110
111         $arr = array('query' => $a->query_string);
112
113         call_hooks('network_content_init', $arr);
114
115         $o = '';
116
117         // item filter tabs
118         // TODO: fix this logic, reduce duplication
119         //$a->page['content'] .= '<div class="tabs-wrapper">';
120         
121         $starred_active = '';
122         $new_active = '';
123         $bookmarked_active = '';
124         $all_active = '';
125         $search_active = '';
126         $conv_active = '';
127         $spam_active = '';
128
129         if(($a->argc > 1 && $a->argv[1] === 'new') 
130                 || ($a->argc > 2 && $a->argv[2] === 'new')) {
131                         $new_active = 'active';
132         }
133         
134         if(x($_GET,'search')) {
135                 $search_active = 'active';
136         }
137         
138         if(x($_GET,'star')) {
139                 $starred_active = 'active';
140         }
141         
142         if(x($_GET,'bmark')) {
143                 $bookmarked_active = 'active';
144         }
145
146         if(x($_GET,'conv')) {
147                 $conv_active = 'active';
148         }
149
150         if(x($_GET,'spam')) {
151                 $spam_active = 'active';
152         }
153
154         
155         if (($new_active == '') 
156                 && ($starred_active == '') 
157                 && ($bookmarked_active == '')
158                 && ($conv_active == '')
159                 && ($search_active == '')
160                 && ($spam_active == '')) {
161                         $all_active = 'active';
162         }
163
164         
165         $postord_active = '';
166
167         if($all_active && x($_GET,'order') && $_GET['order'] !== 'comment') {
168                 $all_active = '';
169                 $postord_active = 'active';
170         }
171                                 
172         // tabs
173         $tabs = array(
174                 array(
175                         'label' => t('Commented Order'),
176                         'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '?f=&cid=' . $_GET['cid'] : ''), 
177                         'sel'=>$all_active,
178                         'title'=> t('Sort by Comment Date'),
179                 ),
180                 array(
181                         'label' => t('Posted Order'),
182                         'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $a->cmd) . '?f=&order=post' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''), 
183                         'sel'=>$postord_active,
184                         'title' => t('Sort by Post Date'),
185                 ),
186
187                 array(
188                         'label' => t('Personal'),
189                         'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&conv=1',
190                         'sel' => $conv_active,
191                         'title' => t('Posts that mention or involve you'),
192                 ),
193                 array(
194                         'label' => t('New'),
195                         'url' => $a->get_baseurl(true) . '/' . str_replace('/new', '', $a->cmd) . '/new' . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : ''),
196                         'sel' => $new_active,
197                         'title' => t('Activity Stream - by date'),
198                 ),
199                 array(
200                         'label' => t('Starred'),
201                         'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&star=1',
202                         'sel'=>$starred_active,
203                         'title' => t('Favourite Posts'),
204                 ),
205                 array(
206                         'label' => t('Shared Links'),
207                         'url'=>$a->get_baseurl(true) . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '/?f=&cid=' . $_GET['cid'] : '') . '&bmark=1',
208                         'sel'=>$bookmarked_active,
209                         'title'=> t('Interesting Links'),
210                 ),      
211 //              array(
212 //                      'label' => t('Spam'),
213 //                      'url'=>$a->get_baseurl(true) . '/network?f=&spam=1'
214 //                      'sel'=> $spam_active,
215 //                      'title' => t('Posts flagged as SPAM'),
216 //              ),      
217
218
219         );
220
221         $arr = array('tabs' => $tabs);
222         call_hooks('network_tabs', $arr);
223
224         $o .= replace_macros(get_markup_template('common_tabs.tpl'), array('$tabs'=> $arr['tabs']));
225
226         // --- end item filter tabs
227
228
229
230         
231
232         $contact_id = $a->cid;
233
234         $group = 0;
235
236         $nouveau = false;
237         require_once('include/acl_selectors.php');
238
239         $cid = ((x($_GET,'cid')) ? intval($_GET['cid']) : 0);
240         $star = ((x($_GET,'star')) ? intval($_GET['star']) : 0);
241         $bmark = ((x($_GET,'bmark')) ? intval($_GET['bmark']) : 0);
242         $order = ((x($_GET,'order')) ? notags($_GET['order']) : 'comment');
243         $liked = ((x($_GET,'liked')) ? intval($_GET['liked']) : 0);
244         $conv = ((x($_GET,'conv')) ? intval($_GET['conv']) : 0);
245         $spam = ((x($_GET,'spam')) ? intval($_GET['spam']) : 0);
246         $nets = ((x($_GET,'nets')) ? $_GET['nets'] : '');
247         $cmin = ((x($_GET,'cmin')) ? intval($_GET['cmin']) : 0);
248         $cmax = ((x($_GET,'cmax')) ? intval($_GET['cmax']) : 99);
249         $file = ((x($_GET,'file')) ? $_GET['file'] : '');
250
251         if(($a->argc > 2) && $a->argv[2] === 'new')
252                 $nouveau = true;
253
254         if($a->argc > 1) {
255                 if($a->argv[1] === 'new')
256                         $nouveau = true;
257                 else {
258                         $group = intval($a->argv[1]);
259                         $def_acl = array('allow_gid' => '<' . $group . '>');
260                 }
261         }
262
263         if(x($_GET,'search') || x($_GET,'file'))
264                 $nouveau = true;
265         if($cid)
266                 $def_acl = array('allow_cid' => '<' . intval($cid) . '>');
267
268         if($nets) {
269                 $r = q("select id from contact where uid = %d and network = '%s' and self = 0",
270                         intval(local_user()),
271                         dbesc($nets)
272                 );
273
274                 $str = '';
275                 if(count($r))
276                         foreach($r as $rr)
277                                 $str .= '<' . $rr['id'] . '>';
278                 if(strlen($str))
279                         $def_acl = array('allow_cid' => $str);
280         }
281
282         if(! $update) {
283                 if($group) {
284                         if(($t = group_public_members($group)) && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
285                                 notice( sprintf( tt('Warning: This group contains %s member from an insecure network.',
286                                                                         'Warning: This group contains %s members from an insecure network.',
287                                                                         $t), $t ) . EOL);
288                                 notice( t('Private messages to this group are at risk of public disclosure.') . EOL);
289                         }
290                 }
291
292                 nav_set_selected('network');
293
294                 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
295
296                 $x = array(
297                         'is_owner' => true,
298                         'allow_location' => $a->user['allow_location'],
299                         'default_location' => $a->user['default-location'],
300                         'nickname' => $a->user['nickname'],
301                         'lockstate' => ((($group) || ($cid) || ($nets) || (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'),
302                         'acl' => populate_acl((($group || $cid || $nets) ? $def_acl : $a->user), $celeb),
303                         'bang' => (($group || $cid || $nets) ? '!' : ''),
304                         'visitor' => 'block',
305                         'profile_uid' => local_user()
306                 );
307
308                 $o .= status_editor($a,$x);
309
310         }
311
312
313         // We don't have to deal with ACL's on this page. You're looking at everything
314         // that belongs to you, hence you can see all of it. We will filter by group if
315         // desired. 
316
317         
318         $sql_options  = (($star) ? " and starred = 1 " : '');
319         $sql_options .= (($bmark) ? " and bookmark = 1 " : '');
320
321         $sql_nets = (($nets) ? sprintf(" and `contact`.`network` = '%s' ", dbesc($nets)) : '');
322
323         $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` $sql_options ) ";
324
325         if($group) {
326                 $r = q("SELECT `name`, `id` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
327                         intval($group),
328                         intval($_SESSION['uid'])
329                 );
330                 if(! count($r)) {
331                         if($update)
332                                 killme();
333                         notice( t('No such group') . EOL );
334                         goaway($a->get_baseurl(true) . '/network');
335                         // NOTREACHED
336                 }
337
338                 $contacts = expand_groups(array($group));
339                 if((is_array($contacts)) && count($contacts)) {
340                         $contact_str = implode(',',$contacts);
341                 }
342                 else {
343                                 $contact_str = ' 0 ';
344                                 info( t('Group is empty'));
345                 }
346
347                 $sql_extra = " AND `item`.`parent` IN ( SELECT DISTINCT(`parent`) FROM `item` WHERE 1 $sql_options AND ( `contact-id` IN ( $contact_str ) OR `allow_gid` like '" . protect_sprintf('%<' . intval($group) . '>%') . "' ) and deleted = 0 ) ";
348                 $o = '<h2>' . t('Group: ') . $r[0]['name'] . '</h2>' . $o;
349         }
350         elseif($cid) {
351
352                 $r = q("SELECT `id`,`name`,`network`,`writable`,`nurl` FROM `contact` WHERE `id` = %d 
353                                 AND `blocked` = 0 AND `pending` = 0 LIMIT 1",
354                         intval($cid)
355                 );
356                 if(count($r)) {
357                         $sql_extra = " AND `item`.`parent` IN ( SELECT DISTINCT(`parent`) FROM `item` WHERE 1 $sql_options AND `contact-id` = " . intval($cid) . " and deleted = 0 ) ";
358                         $o = '<h2>' . t('Contact: ') . $r[0]['name'] . '</h2>' . $o;
359                         if($r[0]['network'] === NETWORK_OSTATUS && $r[0]['writable'] && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
360                                 notice( t('Private messages to this person are at risk of public disclosure.') . EOL);
361                         }
362
363                 }
364                 else {
365                         notice( t('Invalid contact.') . EOL);
366                         goaway($a->get_baseurl(true) . '/network');
367                         // NOTREACHED
368                 }
369         }
370
371         if((! $group) && (! $cid) && (! $update)) {
372                 $o .= get_birthdays();
373                 $o .= get_events();
374         }
375
376         if(! $update) {
377                 // The special div is needed for liveUpdate to kick in for this page.
378                 // We only launch liveUpdate if you aren't filtering in some incompatible 
379                 // way and also you aren't writing a comment (discovered in javascript).
380
381                 $o .= '<div id="live-network"></div>' . "\r\n";
382                 $o .= "<script> var profile_uid = " . $_SESSION['uid'] 
383                         . "; var netargs = '" . substr($a->cmd,8)
384                         . '?f='
385                         . ((x($_GET,'cid'))    ? '&cid='    . $_GET['cid']    : '')
386                         . ((x($_GET,'search')) ? '&search=' . $_GET['search'] : '') 
387                         . ((x($_GET,'star'))   ? '&star='   . $_GET['star']   : '') 
388                         . ((x($_GET,'order'))  ? '&order='  . $_GET['order']  : '') 
389                         . ((x($_GET,'bmark'))  ? '&bmark='  . $_GET['bmark']  : '') 
390                         . ((x($_GET,'liked'))  ? '&liked='  . $_GET['liked']  : '') 
391                         . ((x($_GET,'conv'))   ? '&conv='   . $_GET['conv']   : '') 
392                         . ((x($_GET,'spam'))   ? '&spam='   . $_GET['spam']   : '') 
393                         . ((x($_GET,'nets'))   ? '&nets='   . $_GET['nets']   : '') 
394                         . ((x($_GET,'cmin'))   ? '&cmin='   . $_GET['cmin']   : '') 
395                         . ((x($_GET,'cmax'))   ? '&cmax='   . $_GET['cmax']   : '') 
396                         . ((x($_GET,'file'))   ? '&file='   . $_GET['file']   : '') 
397
398                         . "'; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
399         }
400
401         $sql_extra2 = (($nouveau) ? '' : " AND `item`.`parent` = `item`.`id` ");
402
403         if(x($_GET,'search')) {
404                 $search = escape_tags($_GET['search']);
405                 $sql_extra .= sprintf(" AND ( `item`.`body` like '%s' OR `item`.`tag` like '%s' ) ",
406                         dbesc(protect_sprintf('%' . $search . '%')),
407                         dbesc(protect_sprintf('%]' . $search . '[%'))
408                 );
409         }
410         if(strlen($file)) {
411                 $sql_extra .= file_tag_file_query('item',unxmlify($file));
412         }
413
414         if($conv) {
415                 $myurl = $a->get_baseurl() . '/profile/'. $a->user['nickname'];
416                 $myurl = substr($myurl,strpos($myurl,'://')+3);
417                 $myurl = str_replace('www.','',$myurl);
418                 $diasp_url = str_replace('/profile/','/u/',$myurl);
419                 $sql_extra .= sprintf(" AND `item`.`parent` IN (SELECT distinct(`parent`) from item where ( `author-link` like '%s' or `tag` like '%s' or tag like '%s' )) ",
420                         dbesc(protect_sprintf('%' . $myurl)),
421                         dbesc(protect_sprintf('%' . $myurl . ']%')),
422                         dbesc(protect_sprintf('%' . $diasp_url . ']%'))
423                 );
424         }
425
426         if($update) {
427
428                 // only setup pagination on initial page view
429                 $pager_sql = '';
430
431         }
432         else {
433                 $r = q("SELECT COUNT(*) AS `total`
434                         FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
435                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
436                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
437                         $sql_extra2
438                         $sql_extra $sql_nets ",
439                         intval($_SESSION['uid'])
440                 );
441
442                 if(count($r)) {
443                         $a->set_pager_total($r[0]['total']);
444                         $itemspage_network = get_pconfig(local_user(),'system','itemspage_network');
445                         $a->set_pager_itemspage(((intval($itemspage_network)) ? $itemspage_network : 40));
446                 }
447                 $pager_sql = sprintf(" LIMIT %d, %d ",intval($a->pager['start']), intval($a->pager['itemspage']));
448         }
449
450         $simple_update = (($update) ? " and `item`.`unseen` = 1 " : '');
451
452         if($nouveau) {
453                 // "New Item View" - show all items unthreaded in reverse created date order
454
455                 $items = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
456                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
457                         `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
458                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
459                         FROM `item`, `contact`
460                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 
461                         AND `item`.`deleted` = 0 and `item`.`moderated` = 0
462                         $simple_update
463                         AND `contact`.`id` = `item`.`contact-id`
464                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
465                         $sql_extra $sql_nets
466                         ORDER BY `item`.`received` DESC $pager_sql ",
467                         intval($_SESSION['uid'])
468                 );
469
470         }
471         else {
472
473                 // Normal conversation view
474
475
476                 if($order === 'post')
477                                 $ordering = "`created`";
478                 else
479                                 $ordering = "`commented`";
480
481                 // Fetch a page full of parent items for this page
482
483                 if($update) {
484                         $r = q("SELECT `parent` AS `item_id`, `contact`.`uid` AS `contact_uid`
485                                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
486                                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
487                                 and `item`.`moderated` = 0 and `item`.`unseen` = 1
488                                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
489                                 $sql_extra $sql_nets ",
490                                 intval(local_user())
491                         );
492                 }
493                 else {
494                         $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact_uid`
495                                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
496                                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
497                                 AND `item`.`moderated` = 0 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
498                                 AND `item`.`parent` = `item`.`id`
499                                 $sql_extra $sql_nets
500                                 ORDER BY `item`.$ordering DESC $pager_sql ",
501                                 intval(local_user())
502                         );
503                 }
504
505                 // Then fetch all the children of the parents that are on this page
506
507                 $parents_arr = array();
508                 $parents_str = '';
509
510                 if(count($r)) {
511                         foreach($r as $rr)
512                                 if(! in_array($rr['item_id'],$parents_arr))
513                                         $parents_arr[] = $rr['item_id'];
514                         $parents_str = implode(', ', $parents_arr);
515
516                         $items = q("SELECT `item`.*, `item`.`id` AS `item_id`,
517                                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
518                                 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
519                                 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
520                                 FROM `item`, `contact`
521                                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
522                                 AND `item`.`moderated` = 0 AND `contact`.`id` = `item`.`contact-id`
523                                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
524                                 AND `item`.`parent` IN ( %s )
525                                 $sql_extra ",
526                                 intval(local_user()),
527                                 dbesc($parents_str)
528                         );
529
530                         $items = conv_sort($items,$ordering);
531
532                 } else {
533                         $items = array();
534                 }
535         }
536
537
538         // We aren't going to try and figure out at the item, group, and page
539         // level which items you've seen and which you haven't. If you're looking
540         // at the top level network page just mark everything seen. 
541         
542         if((! $group) && (! $cid) && (! $star)) {
543                 $r = q("UPDATE `item` SET `unseen` = 0 
544                         WHERE `unseen` = 1 AND `uid` = %d",
545                         intval(local_user())
546                 );
547         }
548
549         // Set this so that the conversation function can find out contact info for our wall-wall items
550         $a->page_contact = $a->contact;
551
552         $mode = (($nouveau) ? 'network-new' : 'network');
553
554         $o .= conversation($a,$items,$mode,$update);
555
556         if(! $update) {
557                 $o .= paginate($a);
558         }
559
560         return $o;
561 }