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