]> git.mxchange.org Git - friendica.git/blob - mod/network.php
multi-user, do not cache open mbox
[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   
11         require_once('include/group.php');
12         if(! x($a->page,'aside'))
13                 $a->page['aside'] = '';
14
15         $a->page['aside'] .= '<div id="network-new-link">';
16
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) . '">' . t('Normal View') . '</a>';
19         else 
20                 $a->page['aside'] .= '<a href="' . $a->get_baseurl() . '/' . $a->cmd . '/new' . '">' . t('New Item View') . '</a>';
21
22         $a->page['aside'] .= '</div>';
23
24         $a->page['aside'] .= group_side('network','network',true);
25 }
26
27
28 function network_content(&$a, $update = 0) {
29
30         require_once('include/conversation.php');
31
32         if(! local_user())
33         return login(false);
34
35         $o = '';
36
37         $contact_id = $a->cid;
38
39         $group = 0;
40
41         $nouveau = false;
42         require_once('include/acl_selectors.php');
43
44         if(($a->argc > 2) && $a->argv[2] === 'new')
45                 $nouveau = true;
46
47         if($a->argc > 1) {
48                 if($a->argv[1] === 'new')
49                         $nouveau = true;
50                 else {
51                         $group = intval($a->argv[1]);
52                         $group_acl = array('allow_gid' => '<' . $group . '>');
53                 }
54         }
55
56         if(! $update) {
57                 if(group) {
58                         if(($t = group_public_members($group)) && (! get_pconfig(local_user(),'system','nowarn_insecure'))) {
59                                 $plural_form = sprintf( tt('%d member', '%d members', $t), $t);
60                                 notice( sprintf( t('Warning: This group contains %s from an insecure network.'), $plural_form ) . EOL);
61                                 notice( t('Private messages to this group are at risk of public disclosure.') . EOL);
62                         }
63                 }
64
65                 $o .= '<script> $(document).ready(function() { $(\'#nav-network-link\').addClass(\'nav-selected\'); });</script>';
66
67                 $_SESSION['return_url'] = $a->cmd;
68
69                 $geotag = (($a->user['allow_location']) ? load_view_file('view/jot_geotag.tpl') : '');
70
71                 $tpl = load_view_file('view/jot-header.tpl');
72         
73                 $a->page['htmlhead'] .= replace_macros($tpl, array(
74                         '$baseurl' => $a->get_baseurl(),
75                         '$geotag' => $geotag,
76                         '$nickname' => $a->user['nickname'],
77                         '$linkurl' => t('Please enter a link URL:'),
78                         '$utubeurl' => t('Please enter a YouTube link:'),
79                         '$vidurl' => t("Please enter a video\x28.ogg\x29 link/URL:"),
80                         '$audurl' => t("Please enter an audio\x28.ogg\x29 link/URL:"),
81                         '$whereareu' => t('Where are you right now?'),
82                         '$title' => t('Enter a title for this item') 
83                 ));
84
85
86                 $tpl = load_view_file("view/jot.tpl");
87                 
88                 if(($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'])))))
89                                 $lockstate = 'lock';
90                         else
91                                 $lockstate = 'unlock';
92
93                 $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
94
95                 $jotplugins = '';
96                 $jotnets = '';
97
98
99                 $mail_enabled = false;
100                 $pubmail_enabled = false;
101
102
103                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
104                         intval(local_user())
105                 );
106                 if(count($r)) {
107                         $mail_enabled = true;
108                         if(intval($r[0]['pubmail']))
109                                 $pubmail_enabled = true;
110                 }
111
112                 if($mail_enabled) {
113                $selected = (($pubmail_enabled) ? ' checked="checked" ' : '');
114                         $jotnets .= '<div class="profile-jot-net"><input type="checkbox" name="pubmail_enable"' . $selected . 'value="1" /> '
115                 . t("Post to Email") . '</div>';
116                 }
117
118
119                 call_hooks('jot_tool', $jotplugins);
120                 call_hooks('jot_networks', $jotnets);
121
122                 $tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins));        
123
124                 $o .= replace_macros($tpl,array(
125                         '$return_path' => $a->cmd,
126                         '$action' => 'item',
127                         '$share' => t('Share'),
128                         '$upload' => t('Upload photo'),
129                         '$weblink' => t('Insert web link'),
130                         '$youtube' => t('Insert YouTube video'),
131                         '$video' => t('Insert Vorbis [.ogg] video'),
132                         '$audio' => t('Insert Vorbis [.ogg] audio'),
133                         '$setloc' => t('Set your location'),
134                         '$noloc' => t('Clear browser location'),
135                         '$title' => t('Set title'),
136                         '$wait' => t('Please wait'),
137                         '$permset' => t('Permission settings'),
138                         '$content' => '',
139                         '$post_id' => '',
140                         '$baseurl' => $a->get_baseurl(),
141                         '$defloc' => $a->user['default-location'],
142                         '$visitor' => 'block',
143                         '$emailcc' => t('CC: email addresses'),
144                         '$jotnets' => $jotnets,
145                         '$emtitle' => t('Example: bob@example.com, mary@example.com'),
146                         '$lockstate' => $lockstate,
147                         '$acl' => populate_acl((($group) ? $group_acl : $a->user), $celeb),
148                         '$bang' => (($group) ? '!' : ''),
149                         '$profile_uid' => local_user()
150                 ));
151
152
153                 // The special div is needed for liveUpdate to kick in for this page.
154                 // We only launch liveUpdate if you are on the front page, you aren't
155                 // filtering by group and also you aren't writing a comment (the last
156                 // criteria is discovered in javascript).
157
158                         $o .= '<div id="live-network"></div>' . "\r\n";
159                         $o .= "<script> var profile_uid = " . $_SESSION['uid'] 
160                                 . "; var netargs = '" . substr($a->cmd,8) 
161                                 . "'; var profile_page = " . $a->pager['page'] . "; </script>\r\n";
162
163         }
164
165         // We aren't going to try and figure out at the item, group, and page level 
166         // which items you've seen and which you haven't. You're looking at some
167         // subset of items, so just mark everything seen. 
168         
169         $r = q("UPDATE `item` SET `unseen` = 0 
170                 WHERE `unseen` = 1 AND `uid` = %d",
171                 intval($_SESSION['uid'])
172         );
173
174         // We don't have to deal with ACL's on this page. You're looking at everything
175         // that belongs to you, hence you can see all of it. We will filter by group if
176         // desired. 
177
178         $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` ) ";
179
180         if($group) {
181                 $r = q("SELECT `name`, `id` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
182                         intval($group),
183                         intval($_SESSION['uid'])
184                 );
185                 if(! count($r)) {
186                         if($update)
187                                 killme();
188                         notice( t('No such group') . EOL );
189                         goaway($a->get_baseurl() . '/network');
190                         return; // NOTREACHED
191                 }
192
193                 $contacts = expand_groups(array($group));
194                 if((is_array($contacts)) && count($contacts)) {
195                         $contact_str = implode(',',$contacts);
196                 }
197                 else {
198                                 $contact_str = ' 0 ';
199                                 notice( t('Group is empty'));
200                 }
201
202                 $sql_extra = " AND `item`.`parent` IN ( SELECT `parent` FROM `item` WHERE `id` = `parent` AND `contact-id` IN ( $contact_str )) ";
203                 $o = '<h2>' . t('Group: ') . $r[0]['name'] . '</h2>' . $o;
204         }
205
206         if((! $group) && (! $update))
207                 $o .= get_birthdays();
208
209
210         $r = q("SELECT COUNT(*) AS `total`
211                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
212                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
213                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
214                 $sql_extra ",
215                 intval($_SESSION['uid'])
216         );
217
218         if(count($r)) {
219                 $a->set_pager_total($r[0]['total']);
220                 $a->set_pager_itemspage(40);
221         }
222
223
224         if($nouveau) {
225
226                 // "New Item View" - show all items unthreaded in reverse created date order
227
228                 $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
229                         `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
230                         `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
231                         `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
232                         FROM `item`, `contact`
233                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
234                         AND `contact`.`id` = `item`.`contact-id`
235                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
236                         $sql_extra
237                         ORDER BY `item`.`created` DESC LIMIT %d ,%d ",
238                         intval($_SESSION['uid']),
239                         intval($a->pager['start']),
240                         intval($a->pager['itemspage'])
241                 );
242                 
243         }
244         else {
245
246                 // Normal conversation view
247                 // First fetch a known number of parent items
248
249                 $r = q("SELECT `item`.`id` AS `item_id`, `contact`.`uid` AS `contact_uid`
250                         FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
251                         WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
252                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
253                         AND `item`.`parent` = `item`.`id`
254                         $sql_extra
255                         ORDER BY `item`.`created` DESC LIMIT %d ,%d ",
256                         intval(local_user()),
257                         intval($a->pager['start']),
258                         intval($a->pager['itemspage'])
259                 );
260
261
262                 // Then fetch all the children of the parents that are on this page
263
264                 $parents_arr = array();
265                 $parents_str = '';
266
267                 if(count($r)) {
268                         foreach($r as $rr)
269                                 $parents_arr[] = $rr['item_id'];
270                         $parents_str = implode(', ', $parents_arr);
271
272                         $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
273                                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`, `contact`.`writable`,
274                                 `contact`.`network`, `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`,
275                                 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
276                                 FROM `item`, (SELECT `p`.`id`,`p`.`created` FROM `item` AS `p` WHERE `p`.`parent`=`p`.`id`) as `parentitem`, `contact`
277                                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
278                                 AND `contact`.`id` = `item`.`contact-id`
279                                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
280                                 AND `item`.`parent` = `parentitem`.`id` AND `item`.`parent` IN ( %s )
281                                 $sql_extra
282                                 ORDER BY `parentitem`.`created`  DESC, `item`.`gravity` ASC, `item`.`created` ASC ",
283                                 intval(local_user()),
284                                 dbesc($parents_str)
285                         );
286                 }
287         }
288
289         // Set this so that the conversation function can find out contact info for our wall-wall items
290         $a->page_contact = $a->contact;
291
292         $mode = (($nouveau) ? 'network-new' : 'network');
293
294         $o .= conversation($a,$r,$mode,$update);
295
296         if(! $update) {
297
298                 $o .= paginate($a);
299                 $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>';
300         }
301
302         return $o;
303 }