]> git.mxchange.org Git - friendica.git/blob - mod/network.php
group drop
[friendica.git] / mod / network.php
1 <?php
2
3
4 function network_init(&$a) {
5         require_once('include/group.php');
6         $a->page['aside'] .= group_side('network','network');
7 }
8
9
10 function network_content(&$a, $update = false) {
11
12         if(! local_user())
13                 return;
14
15         require_once("include/bbcode.php");
16
17         $contact_id = $a->cid;
18
19         $group = 0;
20
21         if(! $update) {
22                         // pull out the group here because the updater might have different args
23                 if($a->argc > 1)
24                         $group = intval($a->argv[1]);
25
26                 $_SESSION['return_url'] = $a->cmd;
27
28                 $tpl = file_get_contents('view/jot-header.tpl');
29         
30                 $a->page['htmlhead'] .= replace_macros($tpl, array('$baseurl' => $a->get_baseurl()));
31
32                 require_once('view/acl_selectors.php');
33
34                 $tpl = file_get_contents("view/jot.tpl");
35
36                 $o .= replace_macros($tpl,array(
37                         '$return_path' => $a->cmd,
38                         '$baseurl' => $a->get_baseurl(),
39                         '$visitor' => 'block',
40                         '$lockstate' => 'unlock',
41                         '$acl' => populate_acl($a->user),
42                         '$profile_uid' => $_SESSION['uid']
43                 ));
44
45
46                 // The special div is needed for liveUpdate to kick in for this page.
47                 // We only launch liveUpdate if you are on the front page, you aren't
48                 // filtering by group and also you aren't writing a comment (the last
49                 // criteria is discovered in javascript).
50
51                 if($a->pager['start'] == 0 && $a->argc == 1)
52                         $o .= '<div id="live-network"></div>' . "\r\n";
53         }
54
55         // We aren't going to try and figure out at the item, group, and page level 
56         // which items you've seen and which you haven't. You're looking at some
57         // subset of items, so just mark everything seen. 
58         
59         $r = q("UPDATE `item` SET `unseen` = 0 
60                 WHERE `unseen` = 1 AND `uid` = %d",
61                 intval($_SESSION['uid'])
62         );
63
64         // We don't have to deal with ACL's on this page. You're looking at everything
65         // that belongs to you, hence you can see all of it. We will filter by group if
66         // desired. 
67
68         // TODO: Perhaps we should limit the group filter to those with the group in the ACL,
69         // rather than just the contact-id of the post.
70         // Otherwise we're not showing complete conversations, unless all the conversants
71         // happen to be in the group.
72
73         $sql_extra = ''; 
74
75         if($group) {
76                 $r = q("SELECT `name`, `id` FROM `group` WHERE `id` = %d AND `uid` = %d LIMIT 1",
77                         intval($group),
78                         intval($_SESSION['uid'])
79                 );
80                 if(! count($r)) {
81                         notice("No such group");
82                         goaway($a->get_baseurl() . '/network');
83                         return; // NOTREACHED
84                 }
85
86                 $contacts = expand_groups(array($group));
87                 $contacts[] = $_SESSION['cid'];
88                 $contact_str = implode(',',$contacts);
89                 $sql_extra = dbesc(" AND `contact`.`id` IN ( $contact_str ) ");
90                 $o = '<h4>' . t('Group: ') . $r[0]['name'] . '</h4>' . $o;
91
92         }
93
94         $r = q("SELECT COUNT(*) AS `total`
95                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
96                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
97                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
98                 $sql_extra ",
99                 intval($_SESSION['uid'])
100         );
101
102         if(count($r))
103                 $a->set_pager_total($r[0]['total']);
104
105         $r = q("SELECT `item`.*, `item`.`id` AS `item_id`, 
106                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, 
107                 `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, 
108                 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
109                 FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
110                 WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0
111                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
112                 $sql_extra
113                 ORDER BY `parent` DESC, `created` ASC LIMIT %d ,%d ",
114                 intval($_SESSION['uid']),
115                 intval($a->pager['start']),
116                 intval($a->pager['itemspage'])
117         );
118
119
120         $cmnt_tpl = file_get_contents('view/comment_item.tpl');
121
122         $tpl = file_get_contents('view/wall_item.tpl');
123         $wallwall = file_get_contents('view/wallwall_item.tpl');
124
125         if(count($r)) {
126                 foreach($r as $item) {
127
128                         $comment = '';
129                         $template = $tpl;
130                         $commentww = '';
131
132                         $profile_url = $item['url'];
133                         $redirect_url = $a->get_baseurl() . '/redir/' . $item['cid'] ;
134
135
136                         // Top-level wall post not written by the wall owner (wall-to-wall)
137                         // First figure out who owns it. 
138
139                         if(($item['parent'] == $item['item_id']) && (! $item['self'])) {
140                                 
141                                 if($item['type'] == 'wall') {
142                                         // I do. Put me on the left of the wall-to-wall notice.
143                                         $owner_url = $a->contact['url'];
144                                         $owner_photo = $a->contact['thumb'];
145                                         $owner_name = $a->contact['name'];
146                                         $template = $wallwall;
147                                         $commentww = 'ww';      
148                                 }
149                                 if($item['type'] == 'remote' && ($item['owner-link'] != $item['author-link'])) {
150                                         // Could be anybody. 
151                                         $owner_url = $item['owner-link'];
152                                         $owner_photo = $item['owner-avatar'];
153                                         $owner_name = $item['owner-name'];
154                                         $template = $wallwall;
155                                         $commentww = 'ww';
156                                         // If it is our contact, use a friendly redirect link
157                                         if($item['owner-link'] == $item['url'])
158                                                 $owner_url = $redirect_url;
159
160                                 }
161                         }
162
163                         if($update)
164                                 $return_url = $_SESSION['return_url'];
165                         else
166                                 $return_url = $_SESSION['return_url'] = $a->cmd;
167
168
169                         if($item['last-child']) {
170                                 $comment = replace_macros($cmnt_tpl,array(
171                                         '$return_path' => $_SESSION['return_url'],
172                                         '$type' => 'net-comment',
173                                         '$id' => $item['item_id'],
174                                         '$parent' => $item['parent'],
175                                         '$profile_uid' =>  $_SESSION['uid'],
176                                         '$mylink' => $a->contact['url'],
177                                         '$mytitle' => t('Me'),
178                                         '$myphoto' => $a->contact['thumb'],
179                                         '$ww' => $commentww
180                                 ));
181                         }
182
183
184                         $drop = replace_macros(file_get_contents('view/wall_item_drop.tpl'), array('$id' => $item['id']));
185
186
187         
188                         if(($item['contact-uid'] == $_SESSION['uid']) && (strlen($item['dfrn-id'])) && (! $item['self'] ))
189                                 $profile_url = $redirect_url;
190
191                         $photo = $item['photo'];
192                         $thumb = $item['thumb'];
193
194                         // Post was remotely authored.
195
196                         $profile_name = ((strlen($item['author-name'])) ? $item['author-name'] : $item['name']);
197                         $profile_avatar = ((strlen($item['author-avatar'])) ? $item['author-avatar'] : $thumb);
198
199                         $profile_link = $profile_url;
200
201                         // Can we use our special contact URL for this author? 
202
203                         if(strlen($item['author-link'])) {
204                                 if($item['author-link'] == $item['url'])
205                                         $profile_link = $redirect_url;
206                                 else
207                                         $profile_link = $item['author-link'];
208                         }
209
210                         // Build the HTML
211
212                         $o .= replace_macros($template,array(
213                                 '$id' => $item['item_id'],
214                                 '$profile_url' => $profile_link,
215                                 '$name' => $profile_name,
216                                 '$thumb' => $profile_avatar,
217                                 '$title' => $item['title'],
218                                 '$body' => bbcode($item['body']),
219                                 '$ago' => relative_date($item['created']),
220                                 '$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''),
221                                 '$owner_url' => $owner_url,
222                                 '$owner_photo' => $owner_photo,
223                                 '$owner_name' => $owner_name,
224                                 '$drop' => $drop,
225                                 '$comment' => $comment
226                         ));
227                 }
228         }
229
230         if(! $update)
231                 $o .= paginate($a);
232
233         return $o;
234 }