]> git.mxchange.org Git - friendica.git/blob - include/notifier.php
notify hub only on public updates
[friendica.git] / include / notifier.php
1 <?php
2
3         require_once("boot.php");
4
5         $a = new App;
6
7         @include(".htconfig.php");
8         require_once("dba.php");
9         $db = new dba($db_host, $db_user, $db_pass, $db_data);
10                 unset($db_host, $db_user, $db_pass, $db_data);
11
12
13         $debugging = get_config('system','debugging');
14
15         require_once("session.php");
16         require_once("datetime.php");
17         require_once('include/items.php');
18
19
20         if($argc < 3)
21                 exit;
22
23         $a->set_baseurl(get_config('system','url'));
24
25         $cmd = $argv[1];
26
27         switch($cmd) {
28
29                 case 'mail':
30                 default:
31                         $item_id = intval($argv[2]);
32                         if(! $item_id)
33                                 killme();
34                         break;
35         }
36
37         if($debugging)
38                 dbg(3);
39
40         $recipients = array();
41
42         if($cmd === 'mail') {
43
44                 $message = q("SELECT * FROM `mail` WHERE `id` = %d LIMIT 1",
45                                 intval($item_id)
46                 );
47                 if(! count($message))
48                         killme();
49                 $uid = $message[0]['uid'];
50                 $recipients[] = $message[0]['contact-id'];
51                 $item = $message[0];
52
53         }
54         else {
55                 // find ancestors
56
57                 $r = q("SELECT `parent`, `uid`, `edited` FROM `item` WHERE `id` = %d LIMIT 1",
58                         intval($item_id)
59                 );
60                 if(! count($r))
61                         killme();
62
63                 $parent_id = $r[0]['parent'];
64                 $uid = $r[0]['uid'];
65                 $updated = $r[0]['edited'];
66
67                 $items = q("SELECT * FROM `item` WHERE `parent` = %d ORDER BY `id` ASC",
68                         intval($parent_id)
69                 );
70
71                 if(! count($items))
72                         killme();
73         }
74
75         $r = q("SELECT `contact`.*, `user`.`nickname` 
76                 FROM `contact` LEFT JOIN `user` ON `user`.`uid` = `contact`.`uid` 
77                 WHERE `contact`.`uid` = %d AND `contact`.`self` = 1 LIMIT 1",
78                 intval($uid)
79         );
80
81         if(count($r))
82                 $owner = $r[0];
83         else
84                 killme();
85
86         $hub = get_config('system','huburl');
87         // If this is a public conversation, notify the feed hub
88         $notify_hub = true;
89
90         if($cmd != 'mail') {
91
92                 require_once('include/group.php');
93
94                 $parent = $items[0];
95
96                 if($parent['type'] === 'remote') {
97                         // local followup to remote post
98                         $followup = true;
99                         $notify_hub = false; // not public
100                         $conversant_str = dbesc($parent['contact-id']);
101                 }
102                 else {
103                         $followup = false;
104
105                         if((strlen($parent['allow_cid'])) 
106                                 || (strlen($parent['allow_gid'])) 
107                                 || (strlen($parent['deny_cid'])) 
108                                 || (strlen($parent['deny_gid'])))
109                                 $notify_hub = false; // private recipients, not public
110
111                         $allow_people = expand_acl($parent['allow_cid']);
112                         $allow_groups = expand_groups(expand_acl($parent['allow_gid']));
113                         $deny_people = expand_acl($parent['deny_cid']);
114                         $deny_groups = expand_groups(expand_acl($parent['deny_gid']));
115
116                         $conversants = array();
117
118                         foreach($items as $item) {
119                                 $recipients[] = $item['contact-id'];
120                                 $conversants[] = $item['contact-id'];
121                         }
122
123                         $conversants = array_unique($conversants,SORT_NUMERIC);
124
125
126                         $recipients = array_unique(array_merge($recipients,$allow_people,$allow_groups),SORT_NUMERIC);
127                         $deny = array_unique(array_merge($deny_people,$deny_groups),SORT_NUMERIC);
128                         $recipients = array_diff($recipients,$deny);
129
130                         $conversant_str = dbesc(implode(', ',$conversants));
131
132
133                 }
134
135                 $r = q("SELECT * FROM `contact` WHERE `id` IN ( $conversant_str ) AND `blocked` = 0 AND `pending` = 0");
136
137                 if( ! count($r))
138                         killme();
139
140                 $contacts = $r;
141
142                 $tomb_template = load_view_file('view/atom_tomb.tpl');
143                 $item_template = load_view_file('view/atom_item.tpl');
144                 $cmnt_template = load_view_file('view/atom_cmnt.tpl');
145         }
146
147         $feed_template = load_view_file('view/atom_feed.tpl');
148         $mail_template = load_view_file('view/atom_mail.tpl');
149
150         $atom = '';
151
152         $hubxml = ((strlen($hub)) ? '<link rel="hub" href="' . xmlify($hub) . '" />' . "\n" : '');
153         
154
155         $atom .= replace_macros($feed_template, array(
156                         '$feed_id'      => xmlify($a->get_baseurl() . '/profile/' . $owner['nickname'] ),
157                         '$feed_title'   => xmlify($owner['name']),
158                         '$feed_updated' => xmlify(datetime_convert('UTC', 'UTC', $updated . '+00:00' , ATOM_TIME)) ,
159                         '$hub'          => $hubxml,
160                         '$name'         => xmlify($owner['name']),
161                         '$profile_page' => xmlify($owner['url']),
162                         '$photo'        => xmlify($owner['photo']),
163                         '$thumb'        => xmlify($owner['thumb']),
164                         '$picdate'      => xmlify(datetime_convert('UTC','UTC',$owner['avatar-date'] . '+00:00' , ATOM_TIME)) ,
165                         '$uridate'      => xmlify(datetime_convert('UTC','UTC',$owner['uri-date']    . '+00:00' , ATOM_TIME)) ,
166                         '$namdate'      => xmlify(datetime_convert('UTC','UTC',$owner['name-date']   . '+00:00' , ATOM_TIME))
167         ));
168
169         if($cmd === 'mail') {
170                 $notify_hub = false;  // mail is  not public
171                 $atom .= replace_macros($mail_template, array(
172                         '$name'         => xmlify($owner['name']),
173                         '$profile_page' => xmlify($owner['url']),
174                         '$thumb'        => xmlify($owner['thumb']),
175                         '$item_id'      => xmlify($item['uri']),
176                         '$subject'      => xmlify($item['title']),
177                         '$created'      => xmlify(datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME)),
178                         '$content'      => xmlify($item['body']),
179                         '$parent_id'    => xmlify($item['parent-uri'])
180                 ));
181         }
182         else {
183
184                 if($followup) {
185                         foreach($items as $item) {  // there is only one item
186
187                                 $verb = construct_verb($item);
188                                 $actobj = construct_activity($item);
189
190                                 if($item['id'] == $item_id) {
191                                         $atom .= replace_macros($cmnt_template, array(
192                                                 '$name'               => xmlify($owner['name']),
193                                                 '$profile_page'       => xmlify($owner['url']),
194                                                 '$thumb'              => xmlify($owner['thumb']),
195                                                 '$owner_name'         => xmlify($item['owner-name']),
196                                                 '$owner_profile_page' => xmlify($item['owner-link']),
197                                                 '$owner_thumb'        => xmlify($item['owner-avatar']),
198                                                 '$item_id'            => xmlify($item['uri']),
199                                                 '$title'              => xmlify($item['title']),
200                                                 '$published'          => xmlify(datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME)),
201                                                 '$updated'            => xmlify(datetime_convert('UTC', 'UTC', $item['edited']  . '+00:00' , ATOM_TIME)),
202                                                 '$location'           => xmlify($item['location']),
203                                                 '$type'               => 'text',
204                                                 '$verb'               => xmlify($verb),
205                                                 '$actobj'             => $actobj,
206                                                 '$alt'                => xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']),
207                                                 '$content'            => xmlify($item['body']),
208                                                 '$parent_id'          => xmlify($item['parent-uri']),
209                                                 '$comment_allow'      => 0
210                                         ));
211                                 }
212                         }
213                 }
214                 else {
215                         foreach($items as $item) {
216                                 if($item['deleted']) {
217                                         $atom .= replace_macros($tomb_template, array(
218                                                 '$id' => xmlify($item['uri']),
219                                                 '$updated' => xmlify(datetime_convert('UTC', 'UTC', $item['edited'] . '+00:00' , ATOM_TIME))
220                                         ));
221                                 }
222                                 else {
223                                         $contact = get_item_contact($item,$contacts);
224                                         if(! $contact)
225                                                 continue;
226
227                                         $verb = construct_verb($item);
228                                         $actobj = construct_activity($item);
229
230                                         if($item['parent'] == $item['id']) {
231                                                 $atom .= replace_macros($item_template, array(
232                                                         '$name'               => xmlify($contact['name']),
233                                                         '$profile_page'       => xmlify($contact['url']),
234                                                         '$thumb'              => xmlify($contact['thumb']),
235                                                         '$owner_name'         => xmlify($item['owner-name']),
236                                                         '$owner_profile_page' => xmlify($item['owner-link']),
237                                                         '$owner_thumb'        => xmlify($item['owner-avatar']),
238                                                         '$item_id'            => xmlify($item['uri']),
239                                                         '$title'              => xmlify($item['title']),
240                                                         '$published'          => xmlify(datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME)),
241                                                         '$updated'            => xmlify(datetime_convert('UTC', 'UTC', $item['edited']  . '+00:00' , ATOM_TIME)),
242                                                         '$location'           => xmlify($item['location']),
243                                                         '$type'               => 'text',
244                                                         '$verb'               => xmlify($verb),
245                                                         '$actobj'             => $actobj,
246                                                         '$content'            => xmlify($item['body']),
247                                                         '$alt'                => xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']),
248                                                         '$comment_allow'      => (($item['last-child']) ? 1 : 0)
249                                                 ));
250                                         }
251                                         else {
252                                                 $atom .= replace_macros($cmnt_template, array(
253                                                         '$name'          => xmlify($contact['name']),
254                                                         '$profile_page'  => xmlify($contact['url']),
255                                                         '$thumb'         => xmlify($contact['thumb']),
256                                                         '$item_id'       => xmlify($item['uri']),
257                                                         '$title'         => xmlify($item['title']),
258                                                         '$published'     => xmlify(datetime_convert('UTC', 'UTC', $item['created'] . '+00:00' , ATOM_TIME)),
259                                                         '$updated'       => xmlify(datetime_convert('UTC', 'UTC', $item['edited']  . '+00:00' , ATOM_TIME)),
260                                                         '$content'       => xmlify($item['body']),
261                                                         '$alt'           => xmlify($a->get_baseurl() . '/display/' . $owner['nickname'] . '/' . $item['id']),
262                                                         '$location'      => xmlify($item['location']),
263                                                         '$type'          => 'text',
264                                                         '$verb'          => xmlify($verb),
265                                                         '$actobj'        => $actobj,
266                                                         '$parent_id'     => xmlify($item['parent-uri']),
267                                                         '$comment_allow' => (($item['last-child']) ? 1 : 0)
268                                                 ));
269                                         }
270                                 }
271                         }
272                 }
273         }
274         $atom .= '</feed>' . "\r\n";
275
276         if($debugging)
277                 echo $atom;
278
279
280         if($followup)
281                 $recip_str = $parent['contact-id'];
282         else
283                 $recip_str = implode(', ', $recipients);
284
285
286         $r = q("SELECT * FROM `contact` WHERE `id` IN ( %s ) ",
287                 dbesc($recip_str)
288         );
289         if(! count($r))
290                 killme();
291
292         // delivery loop
293
294         foreach($r as $contact) {
295                 if($contact['self'])
296                         continue;
297
298                 $deliver_status = 0;
299
300                 switch($contact['network']) {
301                         case 'dfrn':
302                                 $deliver_status = dfrn_deliver($contact,$atom,$debugging);
303                                 break;
304                         default:
305                                 break;
306                 }
307
308                 if(($cmd === 'mail') && ($deliver_status == 0)) {
309                         $r = q("UPDATE `mail` SET `delivered` = 1 WHERE `id` = %d LIMIT 1",
310                                 intval($item_id)
311                         );
312                 }
313         }
314
315         if((strlen($hub)) && ($notify_hub)) {
316                 $params = 'hub.mode=publish&hub.url=' . urlencode($a->get_baseurl() . '/dfrn_poll/' . $owner['nickname'] );
317                 post_url($hub,$params);
318         }
319
320         killme();
321