4 function network_init(&$a) {
6 notice( t('Permission denied.') . EOL);
11 require_once('include/group.php');
12 if(! x($a->page,'aside'))
13 $a->page['aside'] = '';
15 $a->page['aside'] .= '<div id="network-new-link">';
17 if(($a->argc > 1 && $a->argv[1] === 'new') || ($a->argc > 2 && $a->argv[2] === 'new'))
18 $a->page['aside'] .= '<a href="' . $a->get_baseurl() . '/' . str_replace('/new', '', $a->cmd) . ((x($_GET,'cid')) ? '/?cid=' . $_GET['cid'] : '') . '">' . t('Normal View') . '</a>';
20 $a->page['aside'] .= '<a href="' . $a->get_baseurl() . '/' . $a->cmd . '/new' . ((x($_GET,'cid')) ? '/?cid=' . $_GET['cid'] : '') . '">' . t('New Item View') . '</a>';
22 $a->page['aside'] .= '</div>';
24 $a->page['aside'] .= group_side('network','network',true);
28 function network_content(&$a, $update = 0) {
30 require_once('include/conversation.php');
37 $contact_id = $a->cid;
42 require_once('include/acl_selectors.php');
44 $cid = ((x($_GET['cid'])) ? intval($_GET['cid']) : 0);
46 if(($a->argc > 2) && $a->argv[2] === 'new')
50 if($a->argv[1] === 'new')
53 $group = intval($a->argv[1]);
54 $def_acl = array('allow_gid' => '<' . $group . '>');
59 $def_acl = array('allow_cid' => '<' . intval($cid) . '>');
63 if(($t = group_public_members($group)) && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
64 $plural_form = sprintf( tt('%d member', '%d members', $t), $t);
65 notice( sprintf( t('Warning: This group contains %s from an insecure network.'), $plural_form ) . EOL);
66 notice( t('Private messages to this group are at risk of public disclosure.') . EOL);
70 $o .= '<script> $(document).ready(function() { $(\'#nav-network-link\').addClass(\'nav-selected\'); });</script>';
72 $_SESSION['return_url'] = $a->cmd;
74 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
78 'allow_location' => $a->user['allow_location'],
79 'default_location' => $a->user['default_location'],
80 'nickname' => $a->user['nickname'],
81 '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'),
82 'acl' => populate_acl((($group || $cid) ? $def_acl : $a->user), $celeb),
83 'bang' => (($group || $cid) ? '!' : ''),
85 'profile_uid' => local_user()
88 $o .= status_editor($a,$x);
90 // The special div is needed for liveUpdate to kick in for this page.
91 // We only launch liveUpdate if you are on the front page, you aren't
92 // filtering by group and also you aren't writing a comment (the last
93 // criteria is discovered in javascript).
95 $o .= '<div id="live-network"></div>' . "\r\n";
96 $o .= "<script> var profile_uid = " . $_SESSION['uid']
97 . "; var netargs = '" . substr($a->cmd,8)
98 . ((x($_GET,'cid')) ? '/?cid=' . $_GET['cid'] : '')
99 . "'; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
103 // We aren't going to try and figure out at the item, group, and page level
104 // which items you've seen and which you haven't. You're looking at some
105 // subset of items, so just mark everything seen.
107 $r = q("UPDATE `item` SET `unseen` = 0
108 WHERE `unseen` = 1 AND `uid` = %d",
109 intval($_SESSION['uid'])
112 // We don't have to deal with ACL's on this page. You're looking at everything
113 // that belongs to you, hence you can see all of it. We will filter by group if
116 $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` ) ";
119 $r = q("SELECT `name`, `id` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
121 intval($_SESSION['uid'])
126 notice( t('No such group') . EOL );
127 goaway($a->get_baseurl() . '/network');
131 $contacts = expand_groups(array($group));
132 if((is_array($contacts)) && count($contacts)) {
133 $contact_str = implode(',',$contacts);
136 $contact_str = ' 0 ';
137 notice( t('Group is empty'));
140 $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` AND ( `contact-id` IN ( $contact_str ) OR `allow_gid` REGEXP '<" . intval($group) . ">' )) ";
141 $o = '<h2>' . t('Group: ') . $r[0]['name'] . '</h2>' . $o;
145 $r = q("SELECT `id`,`name`,`network`,`writable` FROM `contact` WHERE `id` = %d
146 AND `blocked` = 0 AND `pending` = 0 LIMIT 1",
150 $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` AND `contact-id` IN ( " . intval($cid) . " )) ";
151 $o = '<h2>' . t('Contact: ') . $r[0]['name'] . '</h2>' . $o;
152 if($r[0]['network'] !== NETWORK_MAIL && $r[0]['network'] !== NETWORK_DFRN && $r[0]['network'] !== NETWORK_FACEBOOK && $r[0]['writable'] && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
153 notice( t('Private messages to this person are at risk of public disclosure.') . EOL);
158 notice( t('Invalid contact.') . EOL);
159 goaway($a->get_baseurl() . '/network');
164 if((! $group) && (! $cid) && (! $update))
165 $o .= get_birthdays();
167 $sql_extra2 = (($nouveau) ? '' : " AND `item`.`parent` = `item`.`id` ");
169 $r = q("SELECT COUNT(*) AS `total`
170 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
171 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
172 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
175 intval($_SESSION['uid'])
179 $a->set_pager_total($r[0]['total']);
180 $a->set_pager_itemspage(40);
186 // "New Item View" - show all items unthreaded in reverse created date order
188 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
189 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
190 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
191 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
192 FROM `item`, `contact`
193 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
194 AND `contact`.`id` = `item`.`contact-id`
195 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
197 ORDER BY `item`.`created` DESC LIMIT %d ,%d ",
198 intval($_SESSION['uid']),
199 intval($a->pager['start']),
200 intval($a->pager['itemspage'])
206 // Normal conversation view
207 // First fetch a known number of parent items
209 $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact_uid`
210 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
211 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
212 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
213 AND `item`.`parent` = `item`.`id`
215 ORDER BY `item`.`created` DESC LIMIT %d ,%d ",
216 intval(local_user()),
217 intval($a->pager['start']),
218 intval($a->pager['itemspage'])
222 // Then fetch all the children of the parents that are on this page
224 $parents_arr = array();
229 $parents_arr[] = $rr['item_id'];
230 $parents_str = implode(', ', $parents_arr);
232 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
233 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
234 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
235 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
236 FROM `item`, (SELECT `p`.`id`,`p`.`created` FROM `item` AS `p` WHERE `p`.`parent`=`p`.`id`) as `parentitem`, `contact`
237 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
238 AND `contact`.`id` = `item`.`contact-id`
239 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
240 AND `item`.`parent` = `parentitem`.`id` AND `item`.`parent` IN ( %s )
242 ORDER BY `parentitem`.`created` DESC, `item`.`gravity` ASC, `item`.`created` ASC ",
243 intval(local_user()),
249 // Set this so that the conversation function can find out contact info for our wall-wall items
250 $a->page_contact = $a->contact;
252 $mode = (($nouveau) ? 'network-new' : 'network');
254 $o .= conversation($a,$r,$mode,$update);
259 $o .= '<div class="cc-license">' . t('Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.') . '</div>';