4 function network_init(&$a) {
6 notice( t('Permission denied.') . EOL);
10 $group_id = (($a->argc > 1 && intval($a->argv[1])) ? intval($a->argv[1]) : 0);
12 require_once('include/group.php');
13 if(! x($a->page,'aside'))
14 $a->page['aside'] = '';
16 $search = ((x($_GET,'search')) ? escape_tags($_GET['search']) : '');
18 // We need a better way of managing a growing argument list
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'] : '');
27 $r = q("select * from `search` where `uid` = %d and `term` = '%s' limit 1",
32 q("insert into `search` ( `uid`,`term` ) values ( %d, '%s') ",
38 if(x($_GET,'remove')) {
39 q("delete from `search` where `uid` = %d and `term` = '%s' limit 1",
47 // search terms header
48 if(x($_GET,'search')) {
49 $a->page['content'] .= '<h2>Search Results For: ' . $search . '</h2>';
52 $a->page['aside'] .= group_side('network','network',true,$group_id);
54 // moved to saved searches to have it in the same div
55 //$a->page['aside'] .= search($search,'netsearch-box',$srchurl,true);
57 $a->page['aside'] .= saved_searches($search);
61 function saved_searches($search) {
64 . ((x($_GET,'cid')) ? '?cid=' . $_GET['cid'] : '')
65 . ((x($_GET,'star')) ? '?star=' . $_GET['star'] : '')
66 . ((x($_GET,'bmark')) ? '?bmark=' . $_GET['bmark'] : '');
70 $r = q("select `term` from `search` WHERE `uid` = %d",
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);
79 $o .= '<ul id="saved-search-ul">' . "\r\n";
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";
86 $o .= '<div class="clear"></div>';
88 $o .= '</div>' . "\r\n";
94 function network_content(&$a, $update = 0) {
96 require_once('include/conversation.php');
104 // TODO: fix this logic, reduce duplication
105 $a->page['content'] .= '<div class="tabs-wrapper">';
107 $starred_active = '';
109 $bookmarked_active = '';
113 if(($a->argc > 1 && $a->argv[1] === 'new')
114 || ($a->argc > 2 && $a->argv[2] === 'new')) {
115 $new_active = 'active';
118 if(x($_GET,'search')) {
119 $search_active = 'active';
122 if(x($_GET,'star')) {
123 $starred_active = 'active';
127 $bookmarked_active = 'active';
130 if (($new_active == '')
131 && ($starred_active == '')
132 && ($bookmarked_active == '')
133 && ($search_active == '')) {
134 $all_active = 'active';
136 $postord_active = '';
138 if($all_active && x($_GET,'order') && $_GET['order'] !== 'comment') {
140 $postord_active = 'active';
148 'label' => t('Commented Order'),
149 'url'=>$a->get_baseurl() . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '?cid=' . $_GET['cid'] : ''),
153 'label' => t('Posted Order'),
154 'url'=>$a->get_baseurl() . '/' . str_replace('/new', '', $a->cmd) . '?order=post' . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : ''),
155 'sel'=>$postord_active,
160 'url' => $a->get_baseurl() . '/' . str_replace('/new', '', $a->cmd) . '/new' . ((x($_GET,'cid')) ? '/?cid=' . $_GET['cid'] : ''),
161 'sel' => $new_active,
164 'label' => t('Starred'),
165 'url'=>$a->get_baseurl() . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '/?cid=' . $_GET['cid'] : '') . '&star=1',
166 'sel'=>$starred_active,
169 'label' => t('Bookmarks'),
170 'url'=>$a->get_baseurl() . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '/?cid=' . $_GET['cid'] : '') . '&bmark=1',
171 'sel'=>$bookmarked_active,
174 $tpl = get_markup_template('common_tabs.tpl');
175 $o .= replace_macros($tpl, array('$tabs'=>$tabs));
176 // --- end item filter tabs
182 $contact_id = $a->cid;
187 require_once('include/acl_selectors.php');
189 $cid = ((x($_GET,'cid')) ? intval($_GET['cid']) : 0);
190 $star = ((x($_GET,'star')) ? intval($_GET['star']) : 0);
191 $bmark = ((x($_GET,'bmark')) ? intval($_GET['bmark']) : 0);
192 $order = ((x($_GET,'order')) ? notags($_GET['order']) : 'comment');
193 $liked = ((x($_GET,'liked')) ? intval($_GET['liked']) : 0);
196 if(($a->argc > 2) && $a->argv[2] === 'new')
200 if($a->argv[1] === 'new')
203 $group = intval($a->argv[1]);
204 $def_acl = array('allow_gid' => '<' . $group . '>');
208 if(x($_GET,'search'))
211 $def_acl = array('allow_cid' => '<' . intval($cid) . '>');
215 if(($t = group_public_members($group)) && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
216 notice( sprintf( tt('Warning: This group contains %s member from an insecure network.',
217 'Warning: This group contains %s members from an insecure network.',
219 notice( t('Private messages to this group are at risk of public disclosure.') . EOL);
223 nav_set_selected('network');
225 $_SESSION['return_url'] = $a->cmd;
227 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
231 'allow_location' => $a->user['allow_location'],
232 'default_location' => $a->user['default_location'],
233 'nickname' => $a->user['nickname'],
234 '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'),
235 'acl' => populate_acl((($group || $cid) ? $def_acl : $a->user), $celeb),
236 'bang' => (($group || $cid) ? '!' : ''),
237 'visitor' => 'block',
238 'profile_uid' => local_user()
241 $o .= status_editor($a,$x);
243 // The special div is needed for liveUpdate to kick in for this page.
244 // We only launch liveUpdate if you are on the front page, you aren't
245 // filtering by group and also you aren't writing a comment (the last
246 // criteria is discovered in javascript).
248 $o .= '<div id="live-network"></div>' . "\r\n";
249 $o .= "<script> var profile_uid = " . $_SESSION['uid']
250 . "; var netargs = '" . substr($a->cmd,8)
252 . ((x($_GET,'cid')) ? '&cid=' . $_GET['cid'] : '')
253 . ((x($_GET,'search')) ? '&search=' . $_GET['search'] : '')
254 . ((x($_GET,'star')) ? '&star=' . $_GET['star'] : '')
255 . ((x($_GET,'order')) ? '&order=' . $_GET['order'] : '')
256 . ((x($_GET,'bmark')) ? '&bmark=' . $_GET['bmark'] : '')
257 . ((x($_GET,'liked')) ? '&liked=' . $_GET['liked'] : '')
258 . "'; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
262 // We aren't going to try and figure out at the item, group, and page
263 // level which items you've seen and which you haven't. If you're looking
264 // at the top level network page just mark everything seen.
266 if((! $group) && (! $cid) && (! $star)) {
267 $r = q("UPDATE `item` SET `unseen` = 0
268 WHERE `unseen` = 1 AND `uid` = %d",
269 intval($_SESSION['uid'])
273 // We don't have to deal with ACL's on this page. You're looking at everything
274 // that belongs to you, hence you can see all of it. We will filter by group if
277 $star_sql = (($star) ? " AND `starred` = 1 " : '');
280 $star_sql .= " AND `bookmark` = 1 ";
282 $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` $star_sql ) ";
285 $r = q("SELECT `name`, `id` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
287 intval($_SESSION['uid'])
292 notice( t('No such group') . EOL );
293 goaway($a->get_baseurl() . '/network');
297 $contacts = expand_groups(array($group));
298 if((is_array($contacts)) && count($contacts)) {
299 $contact_str = implode(',',$contacts);
302 $contact_str = ' 0 ';
303 info( t('Group is empty'));
307 $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) . ">' )) ";
308 $o = '<h2>' . t('Group: ') . $r[0]['name'] . '</h2>' . $o;
312 $r = q("SELECT `id`,`name`,`network`,`writable` FROM `contact` WHERE `id` = %d
313 AND `blocked` = 0 AND `pending` = 0 LIMIT 1",
317 $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` $star_sql AND `contact-id` IN ( " . intval($cid) . " )) ";
318 $o = '<h2>' . t('Contact: ') . $r[0]['name'] . '</h2>' . $o;
319 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'))) {
320 notice( t('Private messages to this person are at risk of public disclosure.') . EOL);
325 notice( t('Invalid contact.') . EOL);
326 goaway($a->get_baseurl() . '/network');
331 if((! $group) && (! $cid) && (! $update))
332 $o .= get_birthdays();
334 $sql_extra2 = (($nouveau) ? '' : " AND `item`.`parent` = `item`.`id` ");
336 if(x($_GET,'search')) {
337 $search = escape_tags($_GET['search']);
338 $sql_extra .= sprintf(" AND ( `item`.`body` REGEXP '%s' OR `item`.`tag` REGEXP '%s' ) ",
340 dbesc('\\]' . $search . '\\[')
344 $r = q("SELECT COUNT(*) AS `total`
345 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
346 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
347 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
350 intval($_SESSION['uid'])
354 $a->set_pager_total($r[0]['total']);
355 $a->set_pager_itemspage(40);
361 // "New Item View" - show all items unthreaded in reverse created date order
363 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
364 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
365 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
366 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
367 FROM `item`, `contact`
368 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
369 AND `contact`.`id` = `item`.`contact-id`
370 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
372 ORDER BY `item`.`received` DESC LIMIT %d ,%d ",
373 intval($_SESSION['uid']),
374 intval($a->pager['start']),
375 intval($a->pager['itemspage'])
381 // Normal conversation view
384 if($order === 'post')
385 $ordering = "`created`";
387 $ordering = "`commented`";
389 // Fetch a page full of parent items for this page
391 $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact_uid`
392 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
393 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
394 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
395 AND `item`.`parent` = `item`.`id`
397 ORDER BY `item`.$ordering DESC LIMIT %d ,%d ",
398 intval(local_user()),
399 intval($a->pager['start']),
400 intval($a->pager['itemspage'])
403 // Then fetch all the children of the parents that are on this page
405 $parents_arr = array();
410 $parents_arr[] = $rr['item_id'];
411 $parents_str = implode(', ', $parents_arr);
413 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
414 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
415 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
416 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
417 FROM `item`, (SELECT `p`.`id`,`p`.`created`,`p`.`commented` FROM `item` AS `p` WHERE `p`.`parent`=`p`.`id`) as `parentitem`, `contact`
418 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
419 AND `contact`.`id` = `item`.`contact-id`
420 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
421 AND `item`.`parent` = `parentitem`.`id` AND `item`.`parent` IN ( %s )
423 ORDER BY `parentitem`.$ordering DESC, `parentitem`.`id` ASC, `item`.`gravity` ASC, `item`.`created` ASC ",
424 intval(local_user()),
430 // Set this so that the conversation function can find out contact info for our wall-wall items
431 $a->page_contact = $a->contact;
433 $mode = (($nouveau) ? 'network-new' : 'network');
435 $o .= conversation($a,$r,$mode,$update);