]> git.mxchange.org Git - friendica-addons.git/blob - pumpio/pumpio.php
Pumpio now has a better contact management
[friendica-addons.git] / pumpio / pumpio.php
1 <?php
2 /**
3  * Name: pump.io Post Connector
4  * Description: Bidirectional (posting, relaying and reading) connector for pump.io.
5  * Version: 0.2
6  * Author: Michael Vogel <http://pirati.ca/profile/heluecht>
7  */
8 require('addon/pumpio/oauth/http.php');
9 require('addon/pumpio/oauth/oauth_client.php');
10 require_once('include/enotify.php');
11 require_once('include/socgraph.php');
12 require_once("include/Photo.php");
13 require_once("mod/share.php");
14
15 define('PUMPIO_DEFAULT_POLL_INTERVAL', 5); // given in minutes
16
17 function pumpio_install() {
18         register_hook('post_local',           'addon/pumpio/pumpio.php', 'pumpio_post_local');
19         register_hook('notifier_normal',      'addon/pumpio/pumpio.php', 'pumpio_send');
20         register_hook('jot_networks',         'addon/pumpio/pumpio.php', 'pumpio_jot_nets');
21         register_hook('connector_settings',      'addon/pumpio/pumpio.php', 'pumpio_settings');
22         register_hook('connector_settings_post', 'addon/pumpio/pumpio.php', 'pumpio_settings_post');
23         register_hook('cron', 'addon/pumpio/pumpio.php', 'pumpio_cron');
24         register_hook('queue_predeliver', 'addon/pumpio/pumpio.php', 'pumpio_queue_hook');
25         register_hook('check_item_notification','addon/pumpio/pumpio.php', 'pumpio_check_item_notification');
26 }
27
28 function pumpio_uninstall() {
29         unregister_hook('post_local',       'addon/pumpio/pumpio.php', 'pumpio_post_local');
30         unregister_hook('notifier_normal',  'addon/pumpio/pumpio.php', 'pumpio_send');
31         unregister_hook('jot_networks',     'addon/pumpio/pumpio.php', 'pumpio_jot_nets');
32         unregister_hook('connector_settings',      'addon/pumpio/pumpio.php', 'pumpio_settings');
33         unregister_hook('connector_settings_post', 'addon/pumpio/pumpio.php', 'pumpio_settings_post');
34         unregister_hook('cron', 'addon/pumpio/pumpio.php', 'pumpio_cron');
35         unregister_hook('queue_predeliver', 'addon/pumpio/pumpio.php', 'pumpio_queue_hook');
36         unregister_hook('check_item_notification','addon/pumpio/pumpio.php', 'pumpio_check_item_notification');
37 }
38
39 function pumpio_module() {}
40
41 function pumpio_content(&$a) {
42
43         if(! local_user()) {
44                 notice( t('Permission denied.') . EOL);
45                 return '';
46         }
47
48         require_once("mod/settings.php");
49         settings_init($a);
50
51         if (isset($a->argv[1]))
52                 switch ($a->argv[1]) {
53                         case "connect":
54                                 $o = pumpio_connect($a);
55                                 break;
56                         default:
57                                 $o = print_r($a->argv, true);
58                                 break;
59                 }
60         else
61                 $o = pumpio_connect($a);
62
63         return $o;
64 }
65
66 function pumpio_check_item_notification($a, &$notification_data) {
67         $hostname = get_pconfig($notification_data["uid"], 'pumpio','host');
68         $username = get_pconfig($notification_data["uid"], "pumpio", "user");
69
70         $notification_data["profiles"][] = "https://".$hostname."/".$username;
71 }
72
73
74 function pumpio_registerclient(&$a, $host) {
75
76         $url = "https://".$host."/api/client/register";
77
78         $params = array();
79
80         $application_name  = get_config('pumpio', 'application_name');
81
82         if ($application_name == "")
83                 $application_name = $a->get_hostname();
84
85         $adminlist = explode(",", str_replace(" ", "", $a->config['admin_email']));
86
87         $params["type"] = "client_associate";
88         $params["contacts"] = $adminlist[0];
89         $params["application_type"] = "native";
90         $params["application_name"] = $application_name;
91         $params["logo_url"] = $a->get_baseurl()."/images/friendica-256.png";
92         $params["redirect_uris"] = $a->get_baseurl()."/pumpio/connect";
93
94         logger("pumpio_registerclient: ".$url." parameters ".print_r($params, true), LOGGER_DEBUG);
95
96         $ch = curl_init($url);
97         curl_setopt($ch, CURLOPT_HEADER, false);
98         curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
99         curl_setopt($ch, CURLOPT_POST,1);
100         curl_setopt($ch, CURLOPT_POSTFIELDS,$params);
101         curl_setopt($ch, CURLOPT_USERAGENT, "Friendica");
102
103         $s = curl_exec($ch);
104         $curl_info = curl_getinfo($ch);
105
106         if ($curl_info["http_code"] == "200") {
107                 $values = json_decode($s);
108                 logger("pumpio_registerclient: success ".print_r($values, true), LOGGER_DEBUG);
109                 return($values);
110         }
111         logger("pumpio_registerclient: failed: ".print_r($curl_info, true), LOGGER_DEBUG);
112         return(false);
113
114 }
115
116 function pumpio_connect(&$a) {
117         // Start a session.  This is necessary to hold on to  a few keys the callback script will also need
118         session_start();
119
120         // Define the needed keys
121         $consumer_key = get_pconfig(local_user(), 'pumpio','consumer_key');
122         $consumer_secret = get_pconfig(local_user(), 'pumpio','consumer_secret');
123         $hostname = get_pconfig(local_user(), 'pumpio','host');
124
125         if ((($consumer_key == "") OR ($consumer_secret == "")) AND ($hostname != "")) {
126                 logger("pumpio_connect: register client");
127                 $clientdata = pumpio_registerclient($a, $hostname);
128                 set_pconfig(local_user(), 'pumpio','consumer_key', $clientdata->client_id);
129                 set_pconfig(local_user(), 'pumpio','consumer_secret', $clientdata->client_secret);
130
131                 $consumer_key = get_pconfig(local_user(), 'pumpio','consumer_key');
132                 $consumer_secret = get_pconfig(local_user(), 'pumpio','consumer_secret');
133
134                 logger("pumpio_connect: ckey: ".$consumer_key." csecrect: ".$consumer_secret, LOGGER_DEBUG);
135         }
136
137         if (($consumer_key == "") OR ($consumer_secret == "")) {
138                 logger("pumpio_connect: ".sprintf("Unable to register the client at the pump.io server '%s'.", $hostname));
139
140                 $o .= sprintf(t("Unable to register the client at the pump.io server '%s'."), $hostname);
141                 return($o);
142         }
143
144         // The callback URL is the script that gets called after the user authenticates with pumpio
145         $callback_url = $a->get_baseurl()."/pumpio/connect";
146
147         // Let's begin.  First we need a Request Token.  The request token is required to send the user
148         // to pumpio's login page.
149
150         // Create a new instance of the TumblrOAuth library.  For this step, all we need to give the library is our
151         // Consumer Key and Consumer Secret
152         $client = new oauth_client_class;
153         $client->debug = 1;
154         $client->server = '';
155         $client->oauth_version = '1.0a';
156         $client->request_token_url = 'https://'.$hostname.'/oauth/request_token';
157         $client->dialog_url = 'https://'.$hostname.'/oauth/authorize';
158         $client->access_token_url = 'https://'.$hostname.'/oauth/access_token';
159         $client->url_parameters = false;
160         $client->authorization_header = true;
161         $client->redirect_uri = $callback_url;
162         $client->client_id = $consumer_key;
163         $client->client_secret = $consumer_secret;
164
165         if (($success = $client->Initialize())) {
166                 if (($success = $client->Process())) {
167                         if (strlen($client->access_token)) {
168                                 logger("pumpio_connect: otoken: ".$client->access_token." osecrect: ".$client->access_token_secret, LOGGER_DEBUG);
169                                 set_pconfig(local_user(), "pumpio", "oauth_token", $client->access_token);
170                                 set_pconfig(local_user(), "pumpio", "oauth_token_secret", $client->access_token_secret);
171                         }
172                 }
173                 $success = $client->Finalize($success);
174         }
175         if($client->exit)
176                 $o = 'Could not connect to pumpio. Refresh the page or try again later.';
177
178         if($success) {
179                 logger("pumpio_connect: authenticated");
180                 $o .= t("You are now authenticated to pumpio.");
181                 $o .= '<br /><a href="'.$a->get_baseurl().'/settings/connectors">'.t("return to the connector page").'</a>';
182         } else {
183                 logger("pumpio_connect: could not connect");
184                 $o = 'Could not connect to pumpio. Refresh the page or try again later.';
185         }
186
187         return($o);
188 }
189
190 function pumpio_jot_nets(&$a,&$b) {
191         if(! local_user())
192                 return;
193
194         $pumpio_post = get_pconfig(local_user(),'pumpio','post');
195         if(intval($pumpio_post) == 1) {
196                 $pumpio_defpost = get_pconfig(local_user(),'pumpio','post_by_default');
197                 $selected = ((intval($pumpio_defpost) == 1) ? ' checked="checked" ' : '');
198                 $b .= '<div class="profile-jot-net"><input type="checkbox" name="pumpio_enable"' . $selected . ' value="1" /> '
199                         . t('Post to pumpio') . '</div>';
200         }
201 }
202
203
204 function pumpio_settings(&$a,&$s) {
205
206         if(! local_user())
207                 return;
208
209         /* Add our stylesheet to the page so we can make our settings look nice */
210
211         $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/pumpio/pumpio.css' . '" media="all" />' . "\r\n";
212
213         /* Get the current state of our config variables */
214
215         $import_enabled = get_pconfig(local_user(),'pumpio','import');
216         $import_checked = (($import_enabled) ? ' checked="checked" ' : '');
217
218         $enabled = get_pconfig(local_user(),'pumpio','post');
219         $checked = (($enabled) ? ' checked="checked" ' : '');
220         $css = (($enabled) ? '' : '-disabled');
221
222         $def_enabled = get_pconfig(local_user(),'pumpio','post_by_default');
223         $def_checked = (($def_enabled) ? ' checked="checked" ' : '');
224
225         $public_enabled = get_pconfig(local_user(),'pumpio','public');
226         $public_checked = (($public_enabled) ? ' checked="checked" ' : '');
227
228         $mirror_enabled = get_pconfig(local_user(),'pumpio','mirror');
229         $mirror_checked = (($mirror_enabled) ? ' checked="checked" ' : '');
230
231         $servername = get_pconfig(local_user(), "pumpio", "host");
232         $username = get_pconfig(local_user(), "pumpio", "user");
233
234         /* Add some HTML to the existing form */
235
236         $s .= '<span id="settings_pumpio_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_pumpio_expanded\'); openClose(\'settings_pumpio_inflated\');">';
237         $s .= '<img class="connector'.$css.'" src="images/pumpio.png" /><h3 class="connector">'. t('Pump.io Import/Export/Mirror').'</h3>';
238         $s .= '</span>';
239         $s .= '<div id="settings_pumpio_expanded" class="settings-block" style="display: none;">';
240         $s .= '<span class="fakelink" onclick="openClose(\'settings_pumpio_expanded\'); openClose(\'settings_pumpio_inflated\');">';
241         $s .= '<img class="connector'.$css.'" src="images/pumpio.png" /><h3 class="connector">'. t('Pump.io Import/Export/Mirror').'</h3>';
242         $s .= '</span>';
243
244         $s .= '<div id="pumpio-username-wrapper">';
245         $s .= '<label id="pumpio-username-label" for="pumpio-username">'.t('pump.io username (without the servername)').'</label>';
246         $s .= '<input id="pumpio-username" type="text" name="pumpio_user" value="'.$username.'" />';
247         $s .= '</div><div class="clear"></div>';
248
249         $s .= '<div id="pumpio-servername-wrapper">';
250         $s .= '<label id="pumpio-servername-label" for="pumpio-servername">'.t('pump.io servername (without "http://" or "https://" )').'</label>';
251         $s .= '<input id="pumpio-servername" type="text" name="pumpio_host" value="'.$servername.'" />';
252         $s .= '</div><div class="clear"></div>';
253
254         if (($username != '') AND ($servername != '')) {
255
256                 $oauth_token = get_pconfig(local_user(), "pumpio", "oauth_token");
257                 $oauth_token_secret = get_pconfig(local_user(), "pumpio", "oauth_token_secret");
258
259                 $s .= '<div id="pumpio-password-wrapper">';
260                 if (($oauth_token == "") OR ($oauth_token_secret == "")) {
261                         $s .= '<div id="pumpio-authenticate-wrapper">';
262                         $s .= '<a href="'.$a->get_baseurl().'/pumpio/connect">'.t("Authenticate your pump.io connection").'</a>';
263                         $s .= '</div><div class="clear"></div>';
264                 } else {
265                         $s .= '<div id="pumpio-import-wrapper">';
266                         $s .= '<label id="pumpio-import-label" for="pumpio-import">' . t('Import the remote timeline') . '</label>';
267                         $s .= '<input id="pumpio-import" type="checkbox" name="pumpio_import" value="1" ' . $import_checked . '/>';
268                         $s .= '</div><div class="clear"></div>';
269
270                         $s .= '<div id="pumpio-enable-wrapper">';
271                         $s .= '<label id="pumpio-enable-label" for="pumpio-checkbox">' . t('Enable pump.io Post Plugin') . '</label>';
272                         $s .= '<input id="pumpio-checkbox" type="checkbox" name="pumpio" value="1" ' . $checked . '/>';
273                         $s .= '</div><div class="clear"></div>';
274
275                         $s .= '<div id="pumpio-bydefault-wrapper">';
276                         $s .= '<label id="pumpio-bydefault-label" for="pumpio-bydefault">' . t('Post to pump.io by default') . '</label>';
277                         $s .= '<input id="pumpio-bydefault" type="checkbox" name="pumpio_bydefault" value="1" ' . $def_checked . '/>';
278                         $s .= '</div><div class="clear"></div>';
279
280                         $s .= '<div id="pumpio-public-wrapper">';
281                         $s .= '<label id="pumpio-public-label" for="pumpio-public">' . t('Should posts be public?') . '</label>';
282                         $s .= '<input id="pumpio-public" type="checkbox" name="pumpio_public" value="1" ' . $public_checked . '/>';
283                         $s .= '</div><div class="clear"></div>';
284
285                         $s .= '<div id="pumpio-mirror-wrapper">';
286                         $s .= '<label id="pumpio-mirror-label" for="pumpio-mirror">' . t('Mirror all public posts') . '</label>';
287                         $s .= '<input id="pumpio-mirror" type="checkbox" name="pumpio_mirror" value="1" ' . $mirror_checked . '/>';
288                         $s .= '</div><div class="clear"></div>';
289
290                         $s .= '<div id="pumpio-delete-wrapper">';
291                         $s .= '<label id="pumpio-delete-label" for="pumpio-delete">' . t('Check to delete this preset') . '</label>';
292                         $s .= '<input id="pumpio-delete" type="checkbox" name="pumpio_delete" value="1" />';
293                         $s .= '</div><div class="clear"></div>';
294                 }
295
296                 $s .= '</div><div class="clear"></div>';
297         }
298
299         /* provide a submit button */
300
301         $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="pumpio-submit" name="pumpio-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
302 }
303
304
305 function pumpio_settings_post(&$a,&$b) {
306
307         if(x($_POST,'pumpio-submit')) {
308                 if(x($_POST,'pumpio_delete')) {
309                         set_pconfig(local_user(),'pumpio','consumer_key','');
310                         set_pconfig(local_user(),'pumpio','consumer_secret','');
311                         set_pconfig(local_user(),'pumpio','oauth_token','');
312                         set_pconfig(local_user(),'pumpio','oauth_token_secret','');
313                         set_pconfig(local_user(),'pumpio','post',false);
314                         set_pconfig(local_user(),'pumpio','import',false);
315                         set_pconfig(local_user(),'pumpio','host','');
316                         set_pconfig(local_user(),'pumpio','user','');
317                         set_pconfig(local_user(),'pumpio','public',false);
318                         set_pconfig(local_user(),'pumpio','mirror',false);
319                         set_pconfig(local_user(),'pumpio','post_by_default',false);
320                         set_pconfig(local_user(),'pumpio','lastdate', 0);
321                         set_pconfig(local_user(),'pumpio','last_id', '');
322                 } else {
323                         // filtering the username if it is filled wrong
324                         $user = $_POST['pumpio_user'];
325                         if (strstr($user, "@")) {
326                                 $pos = strpos($user, "@");
327                                 if ($pos > 0)
328                                         $user = substr($user, 0, $pos);
329                         }
330
331                         // Filtering the hostname if someone is entering it with "http"
332                         $host = $_POST['pumpio_host'];
333                         $host = trim($host);
334                         $host = str_replace(array("https://", "http://"), array("", ""), $host);
335
336                         set_pconfig(local_user(),'pumpio','post',intval($_POST['pumpio']));
337                         set_pconfig(local_user(),'pumpio','import',$_POST['pumpio_import']);
338                         set_pconfig(local_user(),'pumpio','host',$host);
339                         set_pconfig(local_user(),'pumpio','user',$user);
340                         set_pconfig(local_user(),'pumpio','public',$_POST['pumpio_public']);
341                         set_pconfig(local_user(),'pumpio','mirror',$_POST['pumpio_mirror']);
342                         set_pconfig(local_user(),'pumpio','post_by_default',intval($_POST['pumpio_bydefault']));
343
344                         if (!$_POST['pumpio_mirror'])
345                                 del_pconfig(local_user(),'pumpio','lastdate');
346
347                         //header("Location: ".$a->get_baseurl()."/pumpio/connect");
348                 }
349         }
350 }
351
352 function pumpio_post_local(&$a,&$b) {
353
354         if((! local_user()) || (local_user() != $b['uid']))
355                 return;
356
357         $pumpio_post   = intval(get_pconfig(local_user(),'pumpio','post'));
358
359         $pumpio_enable = (($pumpio_post && x($_REQUEST,'pumpio_enable')) ? intval($_REQUEST['pumpio_enable']) : 0);
360
361         if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'pumpio','post_by_default')))
362                 $pumpio_enable = 1;
363
364         if(! $pumpio_enable)
365                 return;
366
367         if(strlen($b['postopts']))
368                 $b['postopts'] .= ',';
369
370         $b['postopts'] .= 'pumpio';
371 }
372
373
374
375
376 function pumpio_send(&$a,&$b) {
377
378         if (!get_pconfig($b["uid"],'pumpio','import')) {
379                 if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
380                         return;
381         }
382
383         logger("pumpio_send: parameter ".print_r($b, true), LOGGER_DATA);
384
385         if($b['parent'] != $b['id']) {
386                 // Looking if its a reply to a pumpio post
387                 $r = q("SELECT item.* FROM item, contact WHERE item.id = %d AND item.uid = %d AND contact.id = `contact-id` AND contact.network='%s'LIMIT 1",
388                         intval($b["parent"]),
389                         intval($b["uid"]),
390                         dbesc(NETWORK_PUMPIO));
391
392                 if(!count($r)) {
393                         logger("pumpio_send: no pumpio post ".$b["parent"]);
394                         return;
395                 } else {
396                         $iscomment = true;
397                         $orig_post = $r[0];
398                 }
399         } else {
400                 $iscomment = false;
401
402                 $receiver = pumpio_getreceiver($a, $b);
403
404                 logger("pumpio_send: receiver ".print_r($receiver, true));
405
406                 if (!count($receiver) AND ($b['private'] OR !strstr($b['postopts'],'pumpio')))
407                         return;
408         }
409
410         if($b['verb'] == ACTIVITY_LIKE) {
411                 if ($b['deleted'])
412                         pumpio_action($a, $b["uid"], $b["thr-parent"], "unlike");
413                 else
414                         pumpio_action($a, $b["uid"], $b["thr-parent"], "like");
415                 return;
416         }
417
418         if($b['verb'] == ACTIVITY_DISLIKE)
419                 return;
420
421         if (($b['verb'] == ACTIVITY_POST) AND ($b['created'] !== $b['edited']) AND !$b['deleted'])
422                         pumpio_action($a, $b["uid"], $b["uri"], "update", $b["body"]);
423
424         if (($b['verb'] == ACTIVITY_POST) AND $b['deleted'])
425                         pumpio_action($a, $b["uid"], $b["uri"], "delete");
426
427         if($b['deleted'] || ($b['created'] !== $b['edited']))
428                 return;
429
430         // if post comes from pump.io don't send it back
431         if($b['app'] == "pump.io")
432                 return;
433
434         // To-Do;
435         // Support for native shares
436         // http://<hostname>/api/<type>/shares?id=<the-object-id>
437
438         $oauth_token = get_pconfig($b['uid'], "pumpio", "oauth_token");
439         $oauth_token_secret = get_pconfig($b['uid'], "pumpio", "oauth_token_secret");
440         $consumer_key = get_pconfig($b['uid'], "pumpio","consumer_key");
441         $consumer_secret = get_pconfig($b['uid'], "pumpio","consumer_secret");
442
443         $host = get_pconfig($b['uid'], "pumpio", "host");
444         $user = get_pconfig($b['uid'], "pumpio", "user");
445         $public = get_pconfig($b['uid'], "pumpio", "public");
446
447         if($oauth_token && $oauth_token_secret) {
448
449                 require_once('include/bbcode.php');
450
451                 $title = trim($b['title']);
452
453                 $content = bbcode($b['body'], false, false, 4);
454
455                 $params = array();
456
457                 $params["verb"] = "post";
458
459                 if (!$iscomment) {
460                         $params["object"] = array(
461                                                 'objectType' => "note",
462                                                 'content' => $content);
463
464                         if ($title != "")
465                                 $params["object"]["displayName"] = $title;
466
467                         if (count($receiver["to"]))
468                                 $params["to"] = $receiver["to"];
469
470                         if (count($receiver["bto"]))
471                                 $params["bto"] = $receiver["bto"];
472
473                         if (count($receiver["cc"]))
474                                 $params["cc"] = $receiver["cc"];
475
476                         if (count($receiver["bcc"]))
477                                 $params["bcc"] = $receiver["bcc"];
478
479                  } else {
480                         $inReplyTo = array("id" => $orig_post["uri"],
481                                         "objectType" => "note");
482
483                         if (($orig_post["object-type"] != "") AND (strstr($orig_post["object-type"], NAMESPACE_ACTIVITY_SCHEMA)))
484                                 $inReplyTo["objectType"] = str_replace(NAMESPACE_ACTIVITY_SCHEMA, '', $orig_post["object-type"]);
485
486                         $params["object"] = array(
487                                                 'objectType' => "comment",
488                                                 'content' => $content,
489                                                 'inReplyTo' => $inReplyTo);
490
491                         if ($title != "")
492                                 $params["object"]["displayName"] = $title;
493                 }
494
495                 $client = new oauth_client_class;
496                 $client->oauth_version = '1.0a';
497                 $client->url_parameters = false;
498                 $client->authorization_header = true;
499                 $client->access_token = $oauth_token;
500                 $client->access_token_secret = $oauth_token_secret;
501                 $client->client_id = $consumer_key;
502                 $client->client_secret = $consumer_secret;
503
504                 $username = $user.'@'.$host;
505                 $url = 'https://'.$host.'/api/user/'.$user.'/feed';
506
507                 if (pumpio_reachable($url))
508                         $success = $client->CallAPI($url, 'POST', $params, array('FailOnAccessError'=>true, 'RequestContentType'=>'application/json'), $user);
509                 else
510                         $success = false;
511
512                 if($success) {
513
514                         if ($user->generator->displayName)
515                                 set_pconfig($b["uid"], "pumpio", "application_name", $user->generator->displayName);
516
517                         $post_id = $user->object->id;
518                         logger('pumpio_send '.$username.': success '.$post_id);
519                         if($post_id AND $iscomment) {
520                                 logger('pumpio_send '.$username.': Update extid '.$post_id." for post id ".$b['id']);
521                                 q("UPDATE `item` SET `extid` = '%s' WHERE `id` = %d",
522                                         dbesc($post_id),
523                                         intval($b['id'])
524                                 );
525                         }
526                 } else {
527                         logger('pumpio_send '.$username.': '.$url.' general error: ' . print_r($user,true));
528
529                         $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self`", $b['uid']);
530                         if (count($r))
531                                 $a->contact = $r[0]["id"];
532
533                         $s = serialize(array('url' => $url, 'item' => $b['id'], 'post' => $params));
534                         require_once('include/queue_fn.php');
535                         add_to_queue($a->contact,NETWORK_PUMPIO,$s);
536                         notice(t('Pump.io post failed. Queued for retry.').EOL);
537                 }
538
539         }
540 }
541
542 function pumpio_action(&$a, $uid, $uri, $action, $content = "") {
543
544         // Don't do likes and other stuff if you don't import the timeline
545         if (!get_pconfig($uid,'pumpio','import'))
546                 return;
547
548         $ckey    = get_pconfig($uid, 'pumpio', 'consumer_key');
549         $csecret = get_pconfig($uid, 'pumpio', 'consumer_secret');
550         $otoken  = get_pconfig($uid, 'pumpio', 'oauth_token');
551         $osecret = get_pconfig($uid, 'pumpio', 'oauth_token_secret');
552         $hostname = get_pconfig($uid, 'pumpio','host');
553         $username = get_pconfig($uid, "pumpio", "user");
554
555         $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
556                                 dbesc($uri),
557                                 intval($uid)
558         );
559
560         if (!count($r))
561                 return;
562
563         $orig_post = $r[0];
564
565         if ($orig_post["extid"] AND !strstr($orig_post["extid"], "/proxy/"))
566                 $uri = $orig_post["extid"];
567         else
568                 $uri = $orig_post["uri"];
569
570         if (($orig_post["object-type"] != "") AND (strstr($orig_post["object-type"], NAMESPACE_ACTIVITY_SCHEMA)))
571                 $objectType = str_replace(NAMESPACE_ACTIVITY_SCHEMA, '', $orig_post["object-type"]);
572         elseif (strstr($uri, "/api/comment/"))
573                 $objectType = "comment";
574         elseif (strstr($uri, "/api/note/"))
575                 $objectType = "note";
576         elseif (strstr($uri, "/api/image/"))
577                 $objectType = "image";
578
579         $params["verb"] = $action;
580         $params["object"] = array('id' => $uri,
581                                 "objectType" => $objectType,
582                                 "content" => $content);
583
584         $client = new oauth_client_class;
585         $client->oauth_version = '1.0a';
586         $client->authorization_header = true;
587         $client->url_parameters = false;
588
589         $client->client_id = $ckey;
590         $client->client_secret = $csecret;
591         $client->access_token = $otoken;
592         $client->access_token_secret = $osecret;
593
594         $url = 'https://'.$hostname.'/api/user/'.$username.'/feed';
595
596         if (pumpio_reachable($url))
597                 $success = $client->CallAPI($url, 'POST', $params, array('FailOnAccessError'=>true, 'RequestContentType'=>'application/json'), $user);
598         else
599                 $success = false;
600
601         if($success)
602                 logger('pumpio_action '.$username.' '.$action.': success '.$uri);
603         else {
604                 logger('pumpio_action '.$username.' '.$action.': general error: '.$uri.' '.print_r($user,true));
605
606                 $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self`", $b['uid']);
607                 if (count($r))
608                         $a->contact = $r[0]["id"];
609
610                 $s = serialize(array('url' => $url, 'item' => $orig_post["id"], 'post' => $params));
611                 require_once('include/queue_fn.php');
612                 add_to_queue($a->contact,NETWORK_PUMPIO,$s);
613                 notice(t('Pump.io like failed. Queued for retry.').EOL);
614         }
615 }
616
617 function pumpio_sync(&$a) {
618         $r = q("SELECT * FROM `addon` WHERE `installed` = 1 AND `name` = 'pumpio'",
619                 $plugin);
620
621         if (!count($r))
622                 return;
623
624         $last = get_config('pumpio','last_poll');
625
626         $poll_interval = intval(get_config('pumpio','poll_interval'));
627         if(! $poll_interval)
628                 $poll_interval = PUMPIO_DEFAULT_POLL_INTERVAL;
629
630         if($last) {
631                 $next = $last + ($poll_interval * 60);
632                 if($next > time()) {
633                         logger('pumpio: poll intervall not reached');
634                         return;
635                 }
636         }
637         logger('pumpio: cron_start');
638
639         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'pumpio' AND `k` = 'mirror' AND `v` = '1' ORDER BY RAND() ");
640         if(count($r)) {
641                 foreach($r as $rr) {
642                         logger('pumpio: mirroring user '.$rr['uid']);
643                         pumpio_fetchtimeline($a, $rr['uid']);
644                 }
645         }
646
647         $abandon_days = intval(get_config('system','account_abandon_days'));
648         if ($abandon_days < 1)
649                 $abandon_days = 0;
650
651         $abandon_limit = date("Y-m-d H:i:s", time() - $abandon_days * 86400);
652
653         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'pumpio' AND `k` = 'import' AND `v` = '1' ORDER BY RAND() ");
654         if(count($r)) {
655                 foreach($r as $rr) {
656                         if ($abandon_days != 0) {
657                                 $user = q("SELECT `login_date` FROM `user` WHERE uid=%d AND `login_date` >= '%s'", $rr['uid'], $abandon_limit);
658                                 if (!count($user)) {
659                                         logger('abandoned account: timeline from user '.$rr['uid'].' will not be imported');
660                                         continue;
661                                 }
662                         }
663
664                         logger('pumpio: importing timeline from user '.$rr['uid']);
665                         pumpio_fetchinbox($a, $rr['uid']);
666
667                         // check for new contacts once a day
668                         $last_contact_check = get_pconfig($rr['uid'],'pumpio','contact_check');
669                         if($last_contact_check)
670                                 $next_contact_check = $last_contact_check + 86400;
671                         else
672                                 $next_contact_check = 0;
673
674                         if($next_contact_check <= time()) {
675                                 pumpio_getallusers($a, $rr["uid"]);
676                                 set_pconfig($rr['uid'],'pumpio','contact_check',time());
677                         }
678                 }
679         }
680
681         logger('pumpio: cron_end');
682
683         set_config('pumpio','last_poll', time());
684 }
685
686 function pumpio_cron(&$a,$b) {
687         //pumpio_sync($a);
688         proc_run("php","addon/pumpio/pumpio_sync.php");
689 }
690
691 function pumpio_fetchtimeline(&$a, $uid) {
692         $ckey    = get_pconfig($uid, 'pumpio', 'consumer_key');
693         $csecret = get_pconfig($uid, 'pumpio', 'consumer_secret');
694         $otoken  = get_pconfig($uid, 'pumpio', 'oauth_token');
695         $osecret = get_pconfig($uid, 'pumpio', 'oauth_token_secret');
696         $lastdate = get_pconfig($uid, 'pumpio', 'lastdate');
697         $hostname = get_pconfig($uid, 'pumpio','host');
698         $username = get_pconfig($uid, "pumpio", "user");
699
700         //  get the application name for the pump.io app
701         //  1st try personal config, then system config and fallback to the
702         //  hostname of the node if neither one is set.
703         $application_name  = get_pconfig( $uid, 'pumpio', 'application_name');
704         if ($application_name == "")
705                 $application_name  = get_config('pumpio', 'application_name');
706         if ($application_name == "")
707                 $application_name = $a->get_hostname();
708
709         $first_time = ($lastdate == "");
710
711         $client = new oauth_client_class;
712         $client->oauth_version = '1.0a';
713         $client->authorization_header = true;
714         $client->url_parameters = false;
715
716         $client->client_id = $ckey;
717         $client->client_secret = $csecret;
718         $client->access_token = $otoken;
719         $client->access_token_secret = $osecret;
720
721         $url = 'https://'.$hostname.'/api/user/'.$username.'/feed/major';
722
723         logger('pumpio: fetching for user '.$uid.' '.$url.' C:'.$client->client_id.' CS:'.$client->client_secret.' T:'.$client->access_token.' TS:'.$client->access_token_secret);
724
725         $username = $user.'@'.$host;
726
727         if (pumpio_reachable($url))
728                 $success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $user);
729         else
730                 $success = false;
731
732         if (!$success) {
733                 logger('pumpio: error fetching posts for user '.$uid." ".$username." ".print_r($user, true));
734                 return;
735         }
736
737         $posts = array_reverse($user->items);
738
739         $initiallastdate = $lastdate;
740         $lastdate = '';
741
742         if (count($posts)) {
743                 foreach ($posts as $post) {
744                         if ($post->published <= $initiallastdate)
745                                 continue;
746
747                         if ($lastdate < $post->published)
748                                 $lastdate = $post->published;
749
750                         if ($first_time)
751                                 continue;
752
753                         $receiptians = array();
754                         if (@is_array($post->cc))
755                                 $receiptians = array_merge($receiptians, $post->cc);
756
757                         if (@is_array($post->to))
758                                 $receiptians = array_merge($receiptians, $post->to);
759
760                         $public = false;
761                         foreach ($receiptians AS $receiver)
762                                 if (is_string($receiver->objectType))
763                                         if ($receiver->id == "http://activityschema.org/collection/public")
764                                                 $public = true;
765
766                         if ($public AND !stristr($post->generator->displayName, $application_name)) {
767                                 require_once('include/html2bbcode.php');
768
769                                 $_SESSION["authenticated"] = true;
770                                 $_SESSION["uid"] = $uid;
771
772                                 unset($_REQUEST);
773                                 $_REQUEST["type"] = "wall";
774                                 $_REQUEST["api_source"] = true;
775                                 $_REQUEST["profile_uid"] = $uid;
776                                 $_REQUEST["source"] = "pump.io";
777
778                                 if ($post->object->displayName != "")
779                                         $_REQUEST["title"] = html2bbcode($post->object->displayName);
780                                 else
781                                         $_REQUEST["title"] = "";
782
783                                 $_REQUEST["body"] = html2bbcode($post->object->content);
784
785                                 // To-Do: Picture has to be cached and stored locally
786                                 if ($post->object->fullImage->url != "") {
787                                         if ($post->object->fullImage->pump_io->proxyURL != "")
788                                                 $_REQUEST["body"] = "[url=".$post->object->fullImage->pump_io->proxyURL."][img]".$post->object->image->pump_io->proxyURL."[/img][/url]\n".$_REQUEST["body"];
789                                         else
790                                                 $_REQUEST["body"] = "[url=".$post->object->fullImage->url."][img]".$post->object->image->url."[/img][/url]\n".$_REQUEST["body"];
791                                 }
792
793                                 logger('pumpio: posting for user '.$uid);
794
795                                 require_once('mod/item.php');
796
797                                 item_post($a);
798                                 logger('pumpio: posting done - user '.$uid);
799                         }
800                 }
801         }
802
803         if ($lastdate != 0)
804                 set_pconfig($uid,'pumpio','lastdate', $lastdate);
805 }
806
807 function pumpio_dounlike(&$a, $uid, $self, $post, $own_id) {
808         // Searching for the unliked post
809         // Two queries for speed issues
810         $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
811                                 dbesc($post->object->id),
812                                 intval($uid)
813                 );
814
815         if (count($r))
816                 $orig_post = $r[0];
817         else {
818                 $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
819                                         dbesc($post->object->id),
820                                         intval($uid)
821                         );
822
823                 if (!count($r))
824                         return;
825                 else
826                         $orig_post = $r[0];
827         }
828
829         $contactid = 0;
830
831         if(link_compare($post->actor->url, $own_id)) {
832                 $contactid = $self[0]['id'];
833         } else {
834                 $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
835                         dbesc($post->actor->url),
836                         intval($uid)
837                 );
838
839                 if(count($r))
840                         $contactid = $r[0]['id'];
841
842                 if($contactid == 0)
843                         $contactid = $orig_post['contact-id'];
844         }
845
846         $r = q("UPDATE `item` SET `deleted` = 1, `unseen` = 1, `changed` = '%s' WHERE `verb` = '%s' AND `uid` = %d AND `contact-id` = %d AND `thr-parent` = '%s'",
847                 dbesc(datetime_convert()),
848                 dbesc(ACTIVITY_LIKE),
849                 intval($uid),
850                 intval($contactid),
851                 dbesc($orig_post['uri'])
852         );
853
854         if(count($r))
855                 logger("pumpio_dounlike: unliked existing like. User ".$own_id." ".$uid." Contact: ".$contactid." Url ".$orig_post['uri']);
856         else
857                 logger("pumpio_dounlike: not found. User ".$own_id." ".$uid." Contact: ".$contactid." Url ".$orig_post['uri']);
858 }
859
860 function pumpio_dolike(&$a, $uid, $self, $post, $own_id, $threadcompletion = true) {
861         require_once('include/items.php');
862
863         // Searching for the liked post
864         // Two queries for speed issues
865         $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `network` = '%s' LIMIT 1",
866                                 dbesc($post->object->id),
867                                 intval($uid),
868                                 dbesc(NETWORK_PUMPIO)
869                 );
870
871         if (count($r))
872                 $orig_post = $r[0];
873         else {
874                 $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d AND `network` = '%s' LIMIT 1",
875                                         dbesc($post->object->id),
876                                         intval($uid),
877                                         dbesc(NETWORK_PUMPIO)
878                         );
879
880                 if (!count($r))
881                         return;
882                 else
883                         $orig_post = $r[0];
884         }
885
886         // thread completion
887         if ($threadcompletion)
888                 pumpio_fetchallcomments($a, $uid, $post->object->id);
889
890         $contactid = 0;
891
892         if(link_compare($post->actor->url, $own_id)) {
893                 $contactid = $self[0]['id'];
894                 $post->actor->displayName = $self[0]['name'];
895                 $post->actor->url = $self[0]['url'];
896                 $post->actor->image->url = $self[0]['photo'];
897         } else {
898                 $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
899                         dbesc($post->actor->url),
900                         intval($uid)
901                 );
902
903                 if(count($r))
904                         $contactid = $r[0]['id'];
905
906                 if($contactid == 0)
907                         $contactid = $orig_post['contact-id'];
908         }
909
910         $r = q("SELECT parent FROM `item` WHERE `verb` = '%s' AND `uid` = %d AND `contact-id` = %d AND `thr-parent` = '%s' LIMIT 1",
911                 dbesc(ACTIVITY_LIKE),
912                 intval($uid),
913                 intval($contactid),
914                 dbesc($orig_post['uri'])
915         );
916
917         if(count($r)) {
918                 logger("pumpio_dolike: found existing like. User ".$own_id." ".$uid." Contact: ".$contactid." Url ".$orig_post['uri']);
919                 return;
920         }
921
922         $likedata = array();
923         $likedata['parent'] = $orig_post['id'];
924         $likedata['verb'] = ACTIVITY_LIKE;
925         $likedata['gravity'] = 3;
926         $likedata['uid'] = $uid;
927         $likedata['wall'] = 0;
928         $likedata['uri'] = item_new_uri($a->get_baseurl(), $uid);
929         $likedata['parent-uri'] = $orig_post["uri"];
930         $likedata['contact-id'] = $contactid;
931         $likedata['app'] = $post->generator->displayName;
932         $likedata['author-name'] = $post->actor->displayName;
933         $likedata['author-link'] = $post->actor->url;
934         $likedata['author-avatar'] = $post->actor->image->url;
935
936         $author  = '[url=' . $likedata['author-link'] . ']' . $likedata['author-name'] . '[/url]';
937         $objauthor =  '[url=' . $orig_post['author-link'] . ']' . $orig_post['author-name'] . '[/url]';
938         $post_type = t('status');
939         $plink = '[url=' . $orig_post['plink'] . ']' . $post_type . '[/url]';
940         $likedata['object-type'] = ACTIVITY_OBJ_NOTE;
941
942         $likedata['body'] = sprintf( t('%1$s likes %2$s\'s %3$s'), $author, $objauthor, $plink);
943
944         $likedata['object'] = '<object><type>' . ACTIVITY_OBJ_NOTE . '</type><local>1</local>' .
945                 '<id>' . $orig_post['uri'] . '</id><link>' . xmlify('<link rel="alternate" type="text/html" href="' . xmlify($orig_post['plink']) . '" />') . '</link><title>' . $orig_post['title'] . '</title><content>' . $orig_post['body'] . '</content></object>';
946
947         $ret = item_store($likedata);
948
949         logger("pumpio_dolike: ".$ret." User ".$own_id." ".$uid." Contact: ".$contactid." Url ".$orig_post['uri']);
950 }
951
952 function pumpio_get_contact($uid, $contact, $no_insert = false) {
953
954         update_gcontact(array("url" => $contact->url, "network" => NETWORK_PUMPIO, "generation" => 2,
955                         "photo" => $contact->image->url, "name" => $contact->displayName,  "hide" => true,
956                         "nick" => $contact->preferredUsername, "location" => $contact->location->displayName,
957                         "about" => $contact->summary, "addr" => str_replace("acct:", "", $contact->id)));
958
959         $cid = get_contact($contact->url, $uid);
960
961         if ($no_insert)
962                 return($cid);
963
964         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' LIMIT 1",
965                 intval($uid), dbesc($contact->url));
966
967         if(!count($r)) {
968                 // create contact record
969                 q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
970                                         `name`, `nick`, `photo`, `network`, `rel`, `priority`,
971                                         `writable`, `blocked`, `readonly`, `pending` )
972                                 VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, 0, 0, 0 ) ",
973                         intval($uid),
974                         dbesc(datetime_convert()),
975                         dbesc($contact->url),
976                         dbesc(normalise_link($contact->url)),
977                         dbesc(str_replace("acct:", "", $contact->id)),
978                         dbesc(''),
979                         dbesc($contact->id), // What is it for?
980                         dbesc('pump.io ' . $contact->id), // What is it for?
981                         dbesc($contact->displayName),
982                         dbesc($contact->preferredUsername),
983                         dbesc($contact->image->url),
984                         dbesc(NETWORK_PUMPIO),
985                         intval(CONTACT_IS_FRIEND),
986                         intval(1),
987                         intval(1)
988                 );
989
990                 $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1",
991                         dbesc($contact->url),
992                         intval($uid)
993                         );
994
995                 if(! count($r))
996                         return(false);
997
998                 $contact_id  = $r[0]['id'];
999
1000                 $g = q("select def_gid from user where uid = %d limit 1",
1001                         intval($uid)
1002                 );
1003
1004                 if($g && intval($g[0]['def_gid'])) {
1005                         require_once('include/group.php');
1006                         group_add_member($uid,'',$contact_id,$g[0]['def_gid']);
1007                 }
1008
1009                 if (DB_UPDATE_VERSION >= "1177")
1010                         q("UPDATE `contact` SET `location` = '%s',
1011                                                 `about` = '%s'
1012                                         WHERE `id` = %d",
1013                                 dbesc($contact->location->displayName),
1014                                 dbesc($contact->summary),
1015                                 intval($contact_id)
1016                         );
1017         } else {
1018                 $contact_id = $r[0]["id"];
1019
1020                 /*      if (DB_UPDATE_VERSION >= "1177")
1021                                 q("UPDATE `contact` SET `location` = '%s',
1022                                                         `about` = '%s'
1023                                                 WHERE `id` = %d",
1024                                         dbesc($contact->location->displayName),
1025                                         dbesc($contact->summary),
1026                                         intval($r[0]['id'])
1027                                 );
1028                 */
1029         }
1030
1031         update_contact_avatar($contact->image->url, $uid, $contact_id);
1032
1033         return($contact_id);
1034 }
1035
1036 function pumpio_dodelete(&$a, $uid, $self, $post, $own_id) {
1037
1038         // Two queries for speed issues
1039         $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1040                                 dbesc($post->object->id),
1041                                 intval($uid)
1042                 );
1043
1044         if (count($r))
1045                 return drop_item($r[0]["id"], $false);
1046
1047         $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
1048                                 dbesc($post->object->id),
1049                                 intval($uid)
1050                 );
1051
1052         if (count($r))
1053                 return drop_item($r[0]["id"], $false);
1054 }
1055
1056 function pumpio_dopost(&$a, $client, $uid, $self, $post, $own_id, $threadcompletion = true) {
1057         require_once('include/items.php');
1058         require_once('include/html2bbcode.php');
1059
1060         if (($post->verb == "like") OR ($post->verb == "favorite"))
1061                 return pumpio_dolike($a, $uid, $self, $post, $own_id);
1062
1063         if (($post->verb == "unlike") OR ($post->verb == "unfavorite"))
1064                 return pumpio_dounlike($a, $uid, $self, $post, $own_id);
1065
1066         if ($post->verb == "delete")
1067                 return pumpio_dodelete($a, $uid, $self, $post, $own_id);
1068
1069         if ($post->verb != "update") {
1070                 // Two queries for speed issues
1071                 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1072                                         dbesc($post->object->id),
1073                                         intval($uid)
1074                         );
1075
1076                 if (count($r))
1077                         return false;
1078
1079                 $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
1080                                         dbesc($post->object->id),
1081                                         intval($uid)
1082                         );
1083
1084                 if (count($r))
1085                         return false;
1086         }
1087
1088         // Only handle these three types
1089         if (!strstr("post|share|update", $post->verb))
1090                 return false;
1091
1092         $receiptians = array();
1093         if (@is_array($post->cc))
1094                 $receiptians = array_merge($receiptians, $post->cc);
1095
1096         if (@is_array($post->to))
1097                 $receiptians = array_merge($receiptians, $post->to);
1098
1099         foreach ($receiptians AS $receiver)
1100                 if (is_string($receiver->objectType))
1101                         if ($receiver->id == "http://activityschema.org/collection/public")
1102                                 $public = true;
1103
1104         $postarray = array();
1105         $postarray['network'] = NETWORK_PUMPIO;
1106         $postarray['gravity'] = 0;
1107         $postarray['uid'] = $uid;
1108         $postarray['wall'] = 0;
1109         $postarray['uri'] = $post->object->id;
1110         $postarray['object-type'] = NAMESPACE_ACTIVITY_SCHEMA.strtolower($post->object->objectType);
1111
1112         if ($post->object->objectType != "comment") {
1113                 $contact_id = pumpio_get_contact($uid, $post->actor);
1114
1115                 if (!$contact_id)
1116                         $contact_id = $self[0]['id'];
1117
1118                 $postarray['parent-uri'] = $post->object->id;
1119
1120                 if (!$public) {
1121                         $postarray['private'] = 1;
1122                         $postarray['allow_cid'] = '<' . $self[0]['id'] . '>';
1123                 }
1124         } else {
1125                 $contact_id = pumpio_get_contact($uid, $post->actor, true);
1126
1127                 if (link_compare($post->actor->url, $own_id)) {
1128                         $contact_id = $self[0]['id'];
1129                         $post->actor->displayName = $self[0]['name'];
1130                         $post->actor->url = $self[0]['url'];
1131                         $post->actor->image->url = $self[0]['photo'];
1132                 } elseif ($contact_id == 0) {
1133                         // Take an existing contact, the contact of the note or - as a fallback - the id of the user
1134                         $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
1135                                 dbesc($post->actor->url),
1136                                 intval($uid)
1137                         );
1138
1139                         if(count($r))
1140                                 $contact_id = $r[0]['id'];
1141                         else {
1142                                 $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
1143                                         dbesc($post->actor->url),
1144                                         intval($uid)
1145                                 );
1146
1147                                 if(count($r))
1148                                         $contact_id = $r[0]['id'];
1149                                 else
1150                                         $contact_id = $self[0]['id'];
1151                         }
1152                 }
1153
1154                 $reply = new stdClass;
1155                 $reply->verb = "note";
1156                 $reply->cc = $post->cc;
1157                 $reply->to = $post->to;
1158                 $reply->object = new stdClass;
1159                 $reply->object->objectType = $post->object->inReplyTo->objectType;
1160                 $reply->object->content = $post->object->inReplyTo->content;
1161                 $reply->object->id = $post->object->inReplyTo->id;
1162                 $reply->actor = $post->object->inReplyTo->author;
1163                 $reply->url = $post->object->inReplyTo->url;
1164                 $reply->generator = new stdClass;
1165                 $reply->generator->displayName = "pumpio";
1166                 $reply->published = $post->object->inReplyTo->published;
1167                 $reply->received = $post->object->inReplyTo->updated;
1168                 $reply->url = $post->object->inReplyTo->url;
1169                 pumpio_dopost($a, $client, $uid, $self, $reply, $own_id, false);
1170
1171                 $postarray['parent-uri'] = $post->object->inReplyTo->id;
1172         }
1173
1174         if ($post->object->pump_io->proxyURL)
1175                 $postarray['extid'] = $post->object->pump_io->proxyURL;
1176
1177         $postarray['contact-id'] = $contact_id;
1178         $postarray['verb'] = ACTIVITY_POST;
1179         $postarray['owner-name'] = $post->actor->displayName;
1180         $postarray['owner-link'] = $post->actor->url;
1181         $postarray['owner-avatar'] = $post->actor->image->url;
1182         $postarray['author-name'] = $post->actor->displayName;
1183         $postarray['author-link'] = $post->actor->url;
1184         $postarray['author-avatar'] = $post->actor->image->url;
1185         $postarray['plink'] = $post->object->url;
1186         $postarray['app'] = $post->generator->displayName;
1187         $postarray['body'] = html2bbcode($post->object->content);
1188         $postarray['object'] = json_encode($post);
1189
1190         if ($post->object->fullImage->url != "")
1191                 $postarray["body"] = "[url=".$post->object->fullImage->url."][img]".$post->object->image->url."[/img][/url]\n".$postarray["body"];
1192
1193         if ($post->object->displayName != "")
1194                 $postarray['title'] = $post->object->displayName;
1195
1196         $postarray['created'] = datetime_convert('UTC','UTC',$post->published);
1197         if (isset($post->updated))
1198                 $postarray['edited'] = datetime_convert('UTC','UTC',$post->updated);
1199         elseif (isset($post->received))
1200                 $postarray['edited'] = datetime_convert('UTC','UTC',$post->received);
1201         else
1202                 $postarray['edited'] = $postarray['created'];
1203
1204         if ($post->verb == "share") {
1205                 if (!intval(get_config('system','wall-to-wall_share'))) {
1206                         if (isset($post->object->author->displayName) AND ($post->object->author->displayName != ""))
1207                                 $share_author = $post->object->author->displayName;
1208                         elseif (isset($post->object->author->preferredUsername) AND ($post->object->author->preferredUsername != ""))
1209                                 $share_author = $post->object->author->preferredUsername;
1210                         else
1211                                 $share_author = $post->object->author->url;
1212
1213                         $postarray['body'] = share_header($share_author, $post->object->author->url,
1214                                                         $post->object->author->image->url, "",
1215                                                         datetime_convert('UTC','UTC',$post->object->created),
1216                                                         $post->links->self->href).
1217                                                 $postarray['body']."[/share]";
1218
1219                         /*
1220                         $postarray['body'] = "[share author='".$share_author.
1221                                         "' profile='".$post->object->author->url.
1222                                         "' avatar='".$post->object->author->image->url.
1223                                         "' posted='".datetime_convert('UTC','UTC',$post->object->created).
1224                                         "' link='".$post->links->self->href."']".$postarray['body']."[/share]";
1225                         */
1226                 } else {
1227                         // Let shares look like wall-to-wall posts
1228                         $postarray['author-name'] = $post->object->author->displayName;
1229                         $postarray['author-link'] = $post->object->author->url;
1230                         $postarray['author-avatar'] = $post->object->author->image->url;
1231                 }
1232         }
1233
1234         if (trim($postarray['body']) == "")
1235                 return false;
1236
1237         $top_item = item_store($postarray);
1238         $postarray["id"] = $top_item;
1239
1240         if (($top_item == 0) AND ($post->verb == "update")) {
1241                 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s' , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d",
1242                         dbesc($postarray["title"]),
1243                         dbesc($postarray["body"]),
1244                         dbesc($postarray["edited"]),
1245                         dbesc($postarray["uri"]),
1246                         intval($uid)
1247                         );
1248         }
1249
1250         if ($post->object->objectType == "comment") {
1251
1252                 if ($threadcompletion)
1253                         pumpio_fetchallcomments($a, $uid, $postarray['parent-uri']);
1254
1255                 $user = q("SELECT * FROM `user` WHERE `uid` = %d AND `account_expired` = 0 LIMIT 1",
1256                                 intval($uid)
1257                         );
1258
1259                 if(!count($user))
1260                         return $top_item;
1261
1262                 $importer_url = $a->get_baseurl() . '/profile/' . $user[0]['nickname'];
1263
1264                 if (link_compare($own_id, $postarray['author-link']))
1265                         return $top_item;
1266
1267                 if (!function_exists("check_item_notification")) {
1268                         $myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 AND `deleted` = 0",
1269                                         dbesc($postarray['parent-uri']),
1270                                         intval($uid)
1271                                         );
1272
1273                         if(count($myconv)) {
1274
1275                                 foreach($myconv as $conv) {
1276                                         // now if we find a match, it means we're in this conversation
1277
1278                                         if(!link_compare($conv['author-link'],$importer_url) AND !link_compare($conv['author-link'],$own_id))
1279                                                 continue;
1280
1281                                         require_once('include/enotify.php');
1282
1283                                         $conv_parent = $conv['parent'];
1284
1285                                         notification(array(
1286                                                 'type'         => NOTIFY_COMMENT,
1287                                                 'notify_flags' => $user[0]['notify-flags'],
1288                                                 'language'     => $user[0]['language'],
1289                                                 'to_name'      => $user[0]['username'],
1290                                                 'to_email'     => $user[0]['email'],
1291                                                 'uid'          => $user[0]['uid'],
1292                                                 'item'         => $postarray,
1293                                                 'link'         => $a->get_baseurl().'/display/'.urlencode(get_item_guid($top_item)),
1294                                                 'source_name'  => $postarray['author-name'],
1295                                                 'source_link'  => $postarray['author-link'],
1296                                                 'source_photo' => $postarray['author-avatar'],
1297                                                 'verb'         => ACTIVITY_POST,
1298                                                 'otype'        => 'item',
1299                                                 'parent'       => $conv_parent,
1300                                                 ));
1301
1302                                         // only send one notification
1303                                         break;
1304                                 }
1305                         }
1306                 }
1307         }
1308
1309         return $top_item;
1310 }
1311
1312 function pumpio_fetchinbox(&$a, $uid) {
1313
1314         $ckey    = get_pconfig($uid, 'pumpio', 'consumer_key');
1315         $csecret = get_pconfig($uid, 'pumpio', 'consumer_secret');
1316         $otoken  = get_pconfig($uid, 'pumpio', 'oauth_token');
1317         $osecret = get_pconfig($uid, 'pumpio', 'oauth_token_secret');
1318         $lastdate = get_pconfig($uid, 'pumpio', 'lastdate');
1319         $hostname = get_pconfig($uid, 'pumpio','host');
1320         $username = get_pconfig($uid, "pumpio", "user");
1321
1322         $own_id = "https://".$hostname."/".$username;
1323
1324         $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1325                 intval($uid));
1326
1327         $lastitems = q("SELECT uri FROM `item` WHERE `network` = '%s' AND `uid` = %d AND
1328                         `extid` != '' AND `id` = `parent`
1329                         ORDER BY `commented` DESC LIMIT 10",
1330                                 dbesc(NETWORK_PUMPIO),
1331                                 intval($uid)
1332                         );
1333
1334         $client = new oauth_client_class;
1335         $client->oauth_version = '1.0a';
1336         $client->authorization_header = true;
1337         $client->url_parameters = false;
1338
1339         $client->client_id = $ckey;
1340         $client->client_secret = $csecret;
1341         $client->access_token = $otoken;
1342         $client->access_token_secret = $osecret;
1343
1344         $last_id = get_pconfig($uid,'pumpio','last_id');
1345
1346         $url = 'https://'.$hostname.'/api/user/'.$username.'/inbox';
1347
1348         if ($last_id != "")
1349                 $url .= '?since='.urlencode($last_id);
1350
1351         if (pumpio_reachable($url))
1352                 $success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $user);
1353         else
1354                 $success = false;
1355
1356         if ($user->items) {
1357             $posts = array_reverse($user->items);
1358
1359             if (count($posts))
1360                     foreach ($posts as $post) {
1361                             $last_id = $post->id;
1362                             pumpio_dopost($a, $client, $uid, $self, $post, $own_id, true);
1363                     }
1364         }
1365
1366         foreach ($lastitems AS $item)
1367                 pumpio_fetchallcomments($a, $uid, $item["uri"]);
1368
1369         set_pconfig($uid,'pumpio','last_id', $last_id);
1370 }
1371
1372 function pumpio_getallusers(&$a, $uid) {
1373         $ckey    = get_pconfig($uid, 'pumpio', 'consumer_key');
1374         $csecret = get_pconfig($uid, 'pumpio', 'consumer_secret');
1375         $otoken  = get_pconfig($uid, 'pumpio', 'oauth_token');
1376         $osecret = get_pconfig($uid, 'pumpio', 'oauth_token_secret');
1377         $hostname = get_pconfig($uid, 'pumpio','host');
1378         $username = get_pconfig($uid, "pumpio", "user");
1379
1380         $client = new oauth_client_class;
1381         $client->oauth_version = '1.0a';
1382         $client->authorization_header = true;
1383         $client->url_parameters = false;
1384
1385         $client->client_id = $ckey;
1386         $client->client_secret = $csecret;
1387         $client->access_token = $otoken;
1388         $client->access_token_secret = $osecret;
1389
1390         $url = 'https://'.$hostname.'/api/user/'.$username.'/following';
1391
1392         if (pumpio_reachable($url))
1393                 $success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $users);
1394         else
1395                 $success = false;
1396
1397         if ($users->totalItems > count($users->items)) {
1398                 $url = 'https://'.$hostname.'/api/user/'.$username.'/following?count='.$users->totalItems;
1399
1400                 if (pumpio_reachable($url))
1401                         $success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $users);
1402                 else
1403                         $success = false;
1404         }
1405
1406         foreach ($users->items AS $user)
1407                 pumpio_get_contact($uid, $user);
1408 }
1409
1410 function pumpio_queue_hook(&$a,&$b) {
1411
1412         $qi = q("SELECT * FROM `queue` WHERE `network` = '%s'",
1413                 dbesc(NETWORK_PUMPIO)
1414         );
1415         if(! count($qi))
1416                 return;
1417
1418         require_once('include/queue_fn.php');
1419
1420         foreach($qi as $x) {
1421                 if($x['network'] !== NETWORK_PUMPIO)
1422                         continue;
1423
1424                 logger('pumpio_queue: run');
1425
1426                 $r = q("SELECT `user`.* FROM `user` LEFT JOIN `contact` on `contact`.`uid` = `user`.`uid` 
1427                         WHERE `contact`.`self` = 1 AND `contact`.`id` = %d LIMIT 1",
1428                         intval($x['cid'])
1429                 );
1430                 if(! count($r))
1431                         continue;
1432
1433                 $userdata = $r[0];
1434
1435                 //logger('pumpio_queue: fetching userdata '.print_r($userdata, true));
1436
1437                 $oauth_token = get_pconfig($userdata['uid'], "pumpio", "oauth_token");
1438                 $oauth_token_secret = get_pconfig($userdata['uid'], "pumpio", "oauth_token_secret");
1439                 $consumer_key = get_pconfig($userdata['uid'], "pumpio","consumer_key");
1440                 $consumer_secret = get_pconfig($userdata['uid'], "pumpio","consumer_secret");
1441
1442                 $host = get_pconfig($userdata['uid'], "pumpio", "host");
1443                 $user = get_pconfig($userdata['uid'], "pumpio", "user");
1444
1445                 $success = false;
1446
1447                 if ($oauth_token AND $oauth_token_secret AND
1448                         $consumer_key AND $consumer_secret) {
1449                         $username = $user.'@'.$host;
1450
1451                         logger('pumpio_queue: able to post for user '.$username);
1452
1453                         $z = unserialize($x['content']);
1454
1455                         $client = new oauth_client_class;
1456                         $client->oauth_version = '1.0a';
1457                         $client->url_parameters = false;
1458                         $client->authorization_header = true;
1459                         $client->access_token = $oauth_token;
1460                         $client->access_token_secret = $oauth_token_secret;
1461                         $client->client_id = $consumer_key;
1462                         $client->client_secret = $consumer_secret;
1463
1464                         if (pumpio_reachable($z['url']))
1465                                 $success = $client->CallAPI($z['url'], 'POST', $z['post'], array('FailOnAccessError'=>true, 'RequestContentType'=>'application/json'), $user);
1466                         else
1467                                 $success = false;
1468
1469                         if($success) {
1470                                 $post_id = $user->object->id;
1471                                 logger('pumpio_queue: send '.$username.': success '.$post_id);
1472                                 if($post_id AND $iscomment) {
1473                                         logger('pumpio_send '.$username.': Update extid '.$post_id." for post id ".$z['item']);
1474                                         q("UPDATE `item` SET `extid` = '%s' WHERE `id` = %d",
1475                                                 dbesc($post_id),
1476                                                 intval($z['item'])
1477                                         );
1478                                 }
1479                                 remove_queue_item($x['id']);
1480                         } else
1481                                 logger('pumpio_queue: send '.$username.': '.$url.' general error: ' . print_r($user,true));
1482                 } else
1483                         logger("pumpio_queue: Error getting tokens for user ".$userdata['uid']);
1484
1485                 if (!$success) {
1486                         logger('pumpio_queue: delayed');
1487                         update_queue_time($x['id']);
1488                 }
1489         }
1490 }
1491
1492 function pumpio_getreceiver(&$a, $b) {
1493
1494         $receiver = array();
1495
1496         if (!$b["private"]) {
1497
1498                 if(! strstr($b['postopts'],'pumpio'))
1499                         return $receiver;
1500
1501                 $public = get_pconfig($b['uid'], "pumpio", "public");
1502
1503                 if ($public)
1504                         $receiver["to"][] = Array(
1505                                                 "objectType" => "collection",
1506                                                 "id" => "http://activityschema.org/collection/public");
1507         } else {
1508                 $cids = explode("><", $b["allow_cid"]);
1509                 $gids = explode("><", $b["allow_gid"]);
1510
1511                 foreach ($cids AS $cid) {
1512                         $cid = trim($cid, " <>");
1513
1514                         $r = q("SELECT `name`, `nick`, `url` FROM `contact` WHERE `id` = %d AND `uid` = %d AND `network` = '%s' AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
1515                                 intval($cid),
1516                                 intval($b["uid"]),
1517                                 dbesc(NETWORK_PUMPIO)
1518                                 );
1519
1520                         if (count($r)) {
1521                                 $receiver["bcc"][] = Array(
1522                                                         "displayName" => $r[0]["name"],
1523                                                         "objectType" => "person",
1524                                                         "preferredUsername" => $r[0]["nick"],
1525                                                         "url" => $r[0]["url"]);
1526                         }
1527                 }
1528                 foreach ($gids AS $gid) {
1529                         $gid = trim($gid, " <>");
1530
1531                         $r = q("SELECT `contact`.`name`, `contact`.`nick`, `contact`.`url`, `contact`.`network` ".
1532                                 "FROM `group_member`, `contact` WHERE `group_member`.`gid` = %d AND `group_member`.`uid` = %d ".
1533                                 "AND `contact`.`id` = `group_member`.`contact-id` AND `contact`.`network` = '%s'",
1534                                         intval($gid),
1535                                         intval($b["uid"]),
1536                                         dbesc(NETWORK_PUMPIO)
1537                                 );
1538
1539                         foreach ($r AS $row)
1540                                 $receiver["bcc"][] = Array(
1541                                                         "displayName" => $row["name"],
1542                                                         "objectType" => "person",
1543                                                         "preferredUsername" => $row["nick"],
1544                                                         "url" => $row["url"]);
1545                 }
1546         }
1547
1548         if ($b["inform"] != "") {
1549
1550                 $inform = explode(",", $b["inform"]);
1551
1552                 foreach ($inform AS $cid) {
1553                         if (substr($cid, 0, 4) != "cid:")
1554                                 continue;
1555
1556                         $cid = str_replace("cid:", "", $cid);
1557
1558                         $r = q("SELECT `name`, `nick`, `url` FROM `contact` WHERE `id` = %d AND `uid` = %d AND `network` = '%s' AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
1559                                 intval($cid),
1560                                 intval($b["uid"]),
1561                                 dbesc(NETWORK_PUMPIO)
1562                                 );
1563
1564                         if (count($r)) {
1565                                         $receiver["to"][] = Array(
1566                                                                 "displayName" => $r[0]["name"],
1567                                                                 "objectType" => "person",
1568                                                                 "preferredUsername" => $r[0]["nick"],
1569                                                                 "url" => $r[0]["url"]);
1570                         }
1571                 }
1572         }
1573
1574         return $receiver;
1575 }
1576
1577 function pumpio_fetchallcomments(&$a, $uid, $id) {
1578         $ckey    = get_pconfig($uid, 'pumpio', 'consumer_key');
1579         $csecret = get_pconfig($uid, 'pumpio', 'consumer_secret');
1580         $otoken  = get_pconfig($uid, 'pumpio', 'oauth_token');
1581         $osecret = get_pconfig($uid, 'pumpio', 'oauth_token_secret');
1582         $hostname = get_pconfig($uid, 'pumpio','host');
1583         $username = get_pconfig($uid, "pumpio", "user");
1584
1585         logger("pumpio_fetchallcomments: completing comment for user ".$uid." post id ".$id);
1586
1587         $own_id = "https://".$hostname."/".$username;
1588
1589         $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1590                 intval($uid));
1591
1592         // Fetching the original post
1593         $r = q("SELECT `extid` FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `extid` != '' LIMIT 1",
1594                         dbesc($id),
1595                         intval($uid)
1596                 );
1597
1598         if (!count($r))
1599                 return false;
1600
1601         $url = $r[0]["extid"];
1602
1603         $client = new oauth_client_class;
1604         $client->oauth_version = '1.0a';
1605         $client->authorization_header = true;
1606         $client->url_parameters = false;
1607
1608         $client->client_id = $ckey;
1609         $client->client_secret = $csecret;
1610         $client->access_token = $otoken;
1611         $client->access_token_secret = $osecret;
1612
1613         logger("pumpio_fetchallcomments: fetching comment for user ".$uid." url ".$url);
1614
1615         if (pumpio_reachable($url))
1616                 $success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $item);
1617         else
1618                 $success = false;
1619
1620         if (!$success)
1621                 return;
1622
1623         if ($item->likes->totalItems != 0) {
1624                 foreach ($item->likes->items AS $post) {
1625                         $like = new stdClass;
1626                         $like->object = new stdClass;
1627                         $like->object->id = $item->id;
1628                         $like->actor = new stdClass;
1629                         $like->actor->displayName = $item->displayName;
1630                         $like->actor->preferredUsername = $item->preferredUsername;
1631                         $like->actor->url = $item->url;
1632                         $like->actor->image = $item->image;
1633                         $like->generator = new stdClass;
1634                         $like->generator->displayName = "pumpio";
1635                         pumpio_dolike($a, $uid, $self, $post, $own_id, false);
1636                 }
1637         }
1638
1639         if ($item->replies->totalItems == 0)
1640                 return;
1641
1642         foreach ($item->replies->items AS $item) {
1643                 if ($item->id == $id)
1644                         continue;
1645
1646                 // Checking if the comment already exists - Two queries for speed issues
1647                 $r = q("SELECT extid FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1648                                 dbesc($item->id),
1649                                 intval($uid)
1650                         );
1651
1652                 if (count($r))
1653                         continue;
1654
1655                 $r = q("SELECT extid FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
1656                                 dbesc($item->id),
1657                                 intval($uid)
1658                         );
1659
1660                 if (count($r))
1661                         continue;
1662
1663                 $post = new stdClass;
1664                 $post->verb = "post";
1665                 $post->actor = $item->author;
1666                 $post->published = $item->published;
1667                 $post->received = $item->updated;
1668                 $post->generator = new stdClass;
1669                 $post->generator->displayName = "pumpio";
1670                 // To-Do: Check for public post
1671
1672                 unset($item->author);
1673                 unset($item->published);
1674                 unset($item->updated);
1675
1676                 $post->object = $item;
1677
1678                 logger("pumpio_fetchallcomments: posting comment ".$post->object->id." ".print_r($post, true));
1679                 pumpio_dopost($a, $client, $uid, $self, $post, $own_id, false);
1680         }
1681 }
1682
1683
1684 function pumpio_reachable($url) {
1685         $data = z_fetch_url($url, false, $redirects, array('timeout'=>10));
1686         return(intval($data['return_code']) != 0);
1687 }
1688
1689 /*
1690 To-Do:
1691  - edit own notes
1692  - delete own notes
1693 */