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