]> git.mxchange.org Git - friendica-addons.git/blob - pumpio/pumpio.php
Make pumpio available for the master branch
[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         if (function_exists("update_gcontact")) {
955                 update_gcontact(array("url" => $contact->url, "network" => NETWORK_PUMPIO, "generation" => 2,
956                                 "photo" => $contact->image->url, "name" => $contact->displayName,  "hide" => true,
957                                 "nick" => $contact->preferredUsername, "location" => $contact->location->displayName,
958                                 "about" => $contact->summary, "addr" => str_replace("acct:", "", $contact->id)));
959
960                 $cid = get_contact($contact->url, $uid);
961         } else {
962                 // Old Code
963                 $r = q("SELECT id FROM unique_contacts WHERE url='%s' LIMIT 1",
964                         dbesc(normalise_link($contact->url)));
965
966                 if (count($r) == 0)
967                         q("INSERT INTO unique_contacts (url, name, nick, avatar) VALUES ('%s', '%s', '%s', '%s')",
968                                 dbesc(normalise_link($contact->url)),
969                                 dbesc($contact->displayName),
970                                 dbesc($contact->preferredUsername),
971                                 dbesc($contact->image->url));
972                 else
973                         q("UPDATE unique_contacts SET name = '%s', nick = '%s', avatar = '%s' WHERE url = '%s'",
974                                 dbesc($contact->displayName),
975                                 dbesc($contact->preferredUsername),
976                                 dbesc($contact->image->url),
977                                 dbesc(normalise_link($contact->url)));
978
979                 if (DB_UPDATE_VERSION >= "1177")
980                         q("UPDATE `unique_contacts` SET `location` = '%s', `about` = '%s' WHERE url = '%s'",
981                                 dbesc($contact->location->displayName),
982                                 dbesc($contact->summary),
983                                 dbesc(normalise_link($contact->url)));
984
985                 $cid = 0;
986         }
987
988         if ($no_insert)
989                 return($cid);
990
991         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' LIMIT 1",
992                 intval($uid), dbesc($contact->url));
993
994         if(!count($r)) {
995                 // create contact record
996                 q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
997                                         `name`, `nick`, `photo`, `network`, `rel`, `priority`,
998                                         `writable`, `blocked`, `readonly`, `pending` )
999                                 VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, 0, 0, 0 ) ",
1000                         intval($uid),
1001                         dbesc(datetime_convert()),
1002                         dbesc($contact->url),
1003                         dbesc(normalise_link($contact->url)),
1004                         dbesc(str_replace("acct:", "", $contact->id)),
1005                         dbesc(''),
1006                         dbesc($contact->id), // What is it for?
1007                         dbesc('pump.io ' . $contact->id), // What is it for?
1008                         dbesc($contact->displayName),
1009                         dbesc($contact->preferredUsername),
1010                         dbesc($contact->image->url),
1011                         dbesc(NETWORK_PUMPIO),
1012                         intval(CONTACT_IS_FRIEND),
1013                         intval(1),
1014                         intval(1)
1015                 );
1016
1017                 $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1",
1018                         dbesc($contact->url),
1019                         intval($uid)
1020                         );
1021
1022                 if(! count($r))
1023                         return(false);
1024
1025                 $contact_id  = $r[0]['id'];
1026
1027                 $g = q("select def_gid from user where uid = %d limit 1",
1028                         intval($uid)
1029                 );
1030
1031                 if($g && intval($g[0]['def_gid'])) {
1032                         require_once('include/group.php');
1033                         group_add_member($uid,'',$contact_id,$g[0]['def_gid']);
1034                 }
1035
1036                 if (DB_UPDATE_VERSION >= "1177")
1037                         q("UPDATE `contact` SET `location` = '%s',
1038                                                 `about` = '%s'
1039                                         WHERE `id` = %d",
1040                                 dbesc($contact->location->displayName),
1041                                 dbesc($contact->summary),
1042                                 intval($contact_id)
1043                         );
1044         } else {
1045                 $contact_id = $r[0]["id"];
1046
1047                 /*      if (DB_UPDATE_VERSION >= "1177")
1048                                 q("UPDATE `contact` SET `location` = '%s',
1049                                                         `about` = '%s'
1050                                                 WHERE `id` = %d",
1051                                         dbesc($contact->location->displayName),
1052                                         dbesc($contact->summary),
1053                                         intval($r[0]['id'])
1054                                 );
1055                 */
1056         }
1057
1058         update_contact_avatar($contact->image->url, $uid, $contact_id);
1059
1060         return($contact_id);
1061 }
1062
1063 function pumpio_dodelete(&$a, $uid, $self, $post, $own_id) {
1064
1065         // Two queries for speed issues
1066         $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1067                                 dbesc($post->object->id),
1068                                 intval($uid)
1069                 );
1070
1071         if (count($r))
1072                 return drop_item($r[0]["id"], $false);
1073
1074         $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
1075                                 dbesc($post->object->id),
1076                                 intval($uid)
1077                 );
1078
1079         if (count($r))
1080                 return drop_item($r[0]["id"], $false);
1081 }
1082
1083 function pumpio_dopost(&$a, $client, $uid, $self, $post, $own_id, $threadcompletion = true) {
1084         require_once('include/items.php');
1085         require_once('include/html2bbcode.php');
1086
1087         if (($post->verb == "like") OR ($post->verb == "favorite"))
1088                 return pumpio_dolike($a, $uid, $self, $post, $own_id);
1089
1090         if (($post->verb == "unlike") OR ($post->verb == "unfavorite"))
1091                 return pumpio_dounlike($a, $uid, $self, $post, $own_id);
1092
1093         if ($post->verb == "delete")
1094                 return pumpio_dodelete($a, $uid, $self, $post, $own_id);
1095
1096         if ($post->verb != "update") {
1097                 // Two queries for speed issues
1098                 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1099                                         dbesc($post->object->id),
1100                                         intval($uid)
1101                         );
1102
1103                 if (count($r))
1104                         return false;
1105
1106                 $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
1107                                         dbesc($post->object->id),
1108                                         intval($uid)
1109                         );
1110
1111                 if (count($r))
1112                         return false;
1113         }
1114
1115         // Only handle these three types
1116         if (!strstr("post|share|update", $post->verb))
1117                 return false;
1118
1119         $receiptians = array();
1120         if (@is_array($post->cc))
1121                 $receiptians = array_merge($receiptians, $post->cc);
1122
1123         if (@is_array($post->to))
1124                 $receiptians = array_merge($receiptians, $post->to);
1125
1126         foreach ($receiptians AS $receiver)
1127                 if (is_string($receiver->objectType))
1128                         if ($receiver->id == "http://activityschema.org/collection/public")
1129                                 $public = true;
1130
1131         $postarray = array();
1132         $postarray['network'] = NETWORK_PUMPIO;
1133         $postarray['gravity'] = 0;
1134         $postarray['uid'] = $uid;
1135         $postarray['wall'] = 0;
1136         $postarray['uri'] = $post->object->id;
1137         $postarray['object-type'] = NAMESPACE_ACTIVITY_SCHEMA.strtolower($post->object->objectType);
1138
1139         if ($post->object->objectType != "comment") {
1140                 $contact_id = pumpio_get_contact($uid, $post->actor);
1141
1142                 if (!$contact_id)
1143                         $contact_id = $self[0]['id'];
1144
1145                 $postarray['parent-uri'] = $post->object->id;
1146
1147                 if (!$public) {
1148                         $postarray['private'] = 1;
1149                         $postarray['allow_cid'] = '<' . $self[0]['id'] . '>';
1150                 }
1151         } else {
1152                 $contact_id = pumpio_get_contact($uid, $post->actor, true);
1153
1154                 if (link_compare($post->actor->url, $own_id)) {
1155                         $contact_id = $self[0]['id'];
1156                         $post->actor->displayName = $self[0]['name'];
1157                         $post->actor->url = $self[0]['url'];
1158                         $post->actor->image->url = $self[0]['photo'];
1159                 } elseif ($contact_id == 0) {
1160                         // Take an existing contact, the contact of the note or - as a fallback - the id of the user
1161                         $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
1162                                 dbesc($post->actor->url),
1163                                 intval($uid)
1164                         );
1165
1166                         if(count($r))
1167                                 $contact_id = $r[0]['id'];
1168                         else {
1169                                 $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
1170                                         dbesc($post->actor->url),
1171                                         intval($uid)
1172                                 );
1173
1174                                 if(count($r))
1175                                         $contact_id = $r[0]['id'];
1176                                 else
1177                                         $contact_id = $self[0]['id'];
1178                         }
1179                 }
1180
1181                 $reply = new stdClass;
1182                 $reply->verb = "note";
1183                 $reply->cc = $post->cc;
1184                 $reply->to = $post->to;
1185                 $reply->object = new stdClass;
1186                 $reply->object->objectType = $post->object->inReplyTo->objectType;
1187                 $reply->object->content = $post->object->inReplyTo->content;
1188                 $reply->object->id = $post->object->inReplyTo->id;
1189                 $reply->actor = $post->object->inReplyTo->author;
1190                 $reply->url = $post->object->inReplyTo->url;
1191                 $reply->generator = new stdClass;
1192                 $reply->generator->displayName = "pumpio";
1193                 $reply->published = $post->object->inReplyTo->published;
1194                 $reply->received = $post->object->inReplyTo->updated;
1195                 $reply->url = $post->object->inReplyTo->url;
1196                 pumpio_dopost($a, $client, $uid, $self, $reply, $own_id, false);
1197
1198                 $postarray['parent-uri'] = $post->object->inReplyTo->id;
1199         }
1200
1201         if ($post->object->pump_io->proxyURL)
1202                 $postarray['extid'] = $post->object->pump_io->proxyURL;
1203
1204         $postarray['contact-id'] = $contact_id;
1205         $postarray['verb'] = ACTIVITY_POST;
1206         $postarray['owner-name'] = $post->actor->displayName;
1207         $postarray['owner-link'] = $post->actor->url;
1208         $postarray['owner-avatar'] = $post->actor->image->url;
1209         $postarray['author-name'] = $post->actor->displayName;
1210         $postarray['author-link'] = $post->actor->url;
1211         $postarray['author-avatar'] = $post->actor->image->url;
1212         $postarray['plink'] = $post->object->url;
1213         $postarray['app'] = $post->generator->displayName;
1214         $postarray['body'] = html2bbcode($post->object->content);
1215         $postarray['object'] = json_encode($post);
1216
1217         if ($post->object->fullImage->url != "")
1218                 $postarray["body"] = "[url=".$post->object->fullImage->url."][img]".$post->object->image->url."[/img][/url]\n".$postarray["body"];
1219
1220         if ($post->object->displayName != "")
1221                 $postarray['title'] = $post->object->displayName;
1222
1223         $postarray['created'] = datetime_convert('UTC','UTC',$post->published);
1224         if (isset($post->updated))
1225                 $postarray['edited'] = datetime_convert('UTC','UTC',$post->updated);
1226         elseif (isset($post->received))
1227                 $postarray['edited'] = datetime_convert('UTC','UTC',$post->received);
1228         else
1229                 $postarray['edited'] = $postarray['created'];
1230
1231         if ($post->verb == "share") {
1232                 if (!intval(get_config('system','wall-to-wall_share'))) {
1233                         if (isset($post->object->author->displayName) AND ($post->object->author->displayName != ""))
1234                                 $share_author = $post->object->author->displayName;
1235                         elseif (isset($post->object->author->preferredUsername) AND ($post->object->author->preferredUsername != ""))
1236                                 $share_author = $post->object->author->preferredUsername;
1237                         else
1238                                 $share_author = $post->object->author->url;
1239
1240                         $postarray['body'] = share_header($share_author, $post->object->author->url,
1241                                                         $post->object->author->image->url, "",
1242                                                         datetime_convert('UTC','UTC',$post->object->created),
1243                                                         $post->links->self->href).
1244                                                 $postarray['body']."[/share]";
1245
1246                         /*
1247                         $postarray['body'] = "[share author='".$share_author.
1248                                         "' profile='".$post->object->author->url.
1249                                         "' avatar='".$post->object->author->image->url.
1250                                         "' posted='".datetime_convert('UTC','UTC',$post->object->created).
1251                                         "' link='".$post->links->self->href."']".$postarray['body']."[/share]";
1252                         */
1253                 } else {
1254                         // Let shares look like wall-to-wall posts
1255                         $postarray['author-name'] = $post->object->author->displayName;
1256                         $postarray['author-link'] = $post->object->author->url;
1257                         $postarray['author-avatar'] = $post->object->author->image->url;
1258                 }
1259         }
1260
1261         if (trim($postarray['body']) == "")
1262                 return false;
1263
1264         $top_item = item_store($postarray);
1265         $postarray["id"] = $top_item;
1266
1267         if (($top_item == 0) AND ($post->verb == "update")) {
1268                 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s' , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d",
1269                         dbesc($postarray["title"]),
1270                         dbesc($postarray["body"]),
1271                         dbesc($postarray["edited"]),
1272                         dbesc($postarray["uri"]),
1273                         intval($uid)
1274                         );
1275         }
1276
1277         if ($post->object->objectType == "comment") {
1278
1279                 if ($threadcompletion)
1280                         pumpio_fetchallcomments($a, $uid, $postarray['parent-uri']);
1281
1282                 $user = q("SELECT * FROM `user` WHERE `uid` = %d AND `account_expired` = 0 LIMIT 1",
1283                                 intval($uid)
1284                         );
1285
1286                 if(!count($user))
1287                         return $top_item;
1288
1289                 $importer_url = $a->get_baseurl() . '/profile/' . $user[0]['nickname'];
1290
1291                 if (link_compare($own_id, $postarray['author-link']))
1292                         return $top_item;
1293
1294                 if (!function_exists("check_item_notification")) {
1295                         $myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 AND `deleted` = 0",
1296                                         dbesc($postarray['parent-uri']),
1297                                         intval($uid)
1298                                         );
1299
1300                         if(count($myconv)) {
1301
1302                                 foreach($myconv as $conv) {
1303                                         // now if we find a match, it means we're in this conversation
1304
1305                                         if(!link_compare($conv['author-link'],$importer_url) AND !link_compare($conv['author-link'],$own_id))
1306                                                 continue;
1307
1308                                         require_once('include/enotify.php');
1309
1310                                         $conv_parent = $conv['parent'];
1311
1312                                         notification(array(
1313                                                 'type'         => NOTIFY_COMMENT,
1314                                                 'notify_flags' => $user[0]['notify-flags'],
1315                                                 'language'     => $user[0]['language'],
1316                                                 'to_name'      => $user[0]['username'],
1317                                                 'to_email'     => $user[0]['email'],
1318                                                 'uid'          => $user[0]['uid'],
1319                                                 'item'         => $postarray,
1320                                                 'link'         => $a->get_baseurl().'/display/'.urlencode(get_item_guid($top_item)),
1321                                                 'source_name'  => $postarray['author-name'],
1322                                                 'source_link'  => $postarray['author-link'],
1323                                                 'source_photo' => $postarray['author-avatar'],
1324                                                 'verb'         => ACTIVITY_POST,
1325                                                 'otype'        => 'item',
1326                                                 'parent'       => $conv_parent,
1327                                                 ));
1328
1329                                         // only send one notification
1330                                         break;
1331                                 }
1332                         }
1333                 }
1334         }
1335
1336         return $top_item;
1337 }
1338
1339 function pumpio_fetchinbox(&$a, $uid) {
1340
1341         $ckey    = get_pconfig($uid, 'pumpio', 'consumer_key');
1342         $csecret = get_pconfig($uid, 'pumpio', 'consumer_secret');
1343         $otoken  = get_pconfig($uid, 'pumpio', 'oauth_token');
1344         $osecret = get_pconfig($uid, 'pumpio', 'oauth_token_secret');
1345         $lastdate = get_pconfig($uid, 'pumpio', 'lastdate');
1346         $hostname = get_pconfig($uid, 'pumpio','host');
1347         $username = get_pconfig($uid, "pumpio", "user");
1348
1349         $own_id = "https://".$hostname."/".$username;
1350
1351         $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1352                 intval($uid));
1353
1354         $lastitems = q("SELECT uri FROM `item` WHERE `network` = '%s' AND `uid` = %d AND
1355                         `extid` != '' AND `id` = `parent`
1356                         ORDER BY `commented` DESC LIMIT 10",
1357                                 dbesc(NETWORK_PUMPIO),
1358                                 intval($uid)
1359                         );
1360
1361         $client = new oauth_client_class;
1362         $client->oauth_version = '1.0a';
1363         $client->authorization_header = true;
1364         $client->url_parameters = false;
1365
1366         $client->client_id = $ckey;
1367         $client->client_secret = $csecret;
1368         $client->access_token = $otoken;
1369         $client->access_token_secret = $osecret;
1370
1371         $last_id = get_pconfig($uid,'pumpio','last_id');
1372
1373         $url = 'https://'.$hostname.'/api/user/'.$username.'/inbox';
1374
1375         if ($last_id != "")
1376                 $url .= '?since='.urlencode($last_id);
1377
1378         if (pumpio_reachable($url))
1379                 $success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $user);
1380         else
1381                 $success = false;
1382
1383         if ($user->items) {
1384             $posts = array_reverse($user->items);
1385
1386             if (count($posts))
1387                     foreach ($posts as $post) {
1388                             $last_id = $post->id;
1389                             pumpio_dopost($a, $client, $uid, $self, $post, $own_id, true);
1390                     }
1391         }
1392
1393         foreach ($lastitems AS $item)
1394                 pumpio_fetchallcomments($a, $uid, $item["uri"]);
1395
1396         set_pconfig($uid,'pumpio','last_id', $last_id);
1397 }
1398
1399 function pumpio_getallusers(&$a, $uid) {
1400         $ckey    = get_pconfig($uid, 'pumpio', 'consumer_key');
1401         $csecret = get_pconfig($uid, 'pumpio', 'consumer_secret');
1402         $otoken  = get_pconfig($uid, 'pumpio', 'oauth_token');
1403         $osecret = get_pconfig($uid, 'pumpio', 'oauth_token_secret');
1404         $hostname = get_pconfig($uid, 'pumpio','host');
1405         $username = get_pconfig($uid, "pumpio", "user");
1406
1407         $client = new oauth_client_class;
1408         $client->oauth_version = '1.0a';
1409         $client->authorization_header = true;
1410         $client->url_parameters = false;
1411
1412         $client->client_id = $ckey;
1413         $client->client_secret = $csecret;
1414         $client->access_token = $otoken;
1415         $client->access_token_secret = $osecret;
1416
1417         $url = 'https://'.$hostname.'/api/user/'.$username.'/following';
1418
1419         if (pumpio_reachable($url))
1420                 $success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $users);
1421         else
1422                 $success = false;
1423
1424         if ($users->totalItems > count($users->items)) {
1425                 $url = 'https://'.$hostname.'/api/user/'.$username.'/following?count='.$users->totalItems;
1426
1427                 if (pumpio_reachable($url))
1428                         $success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $users);
1429                 else
1430                         $success = false;
1431         }
1432
1433         foreach ($users->items AS $user)
1434                 pumpio_get_contact($uid, $user);
1435 }
1436
1437 function pumpio_queue_hook(&$a,&$b) {
1438
1439         $qi = q("SELECT * FROM `queue` WHERE `network` = '%s'",
1440                 dbesc(NETWORK_PUMPIO)
1441         );
1442         if(! count($qi))
1443                 return;
1444
1445         require_once('include/queue_fn.php');
1446
1447         foreach($qi as $x) {
1448                 if($x['network'] !== NETWORK_PUMPIO)
1449                         continue;
1450
1451                 logger('pumpio_queue: run');
1452
1453                 $r = q("SELECT `user`.* FROM `user` LEFT JOIN `contact` on `contact`.`uid` = `user`.`uid` 
1454                         WHERE `contact`.`self` = 1 AND `contact`.`id` = %d LIMIT 1",
1455                         intval($x['cid'])
1456                 );
1457                 if(! count($r))
1458                         continue;
1459
1460                 $userdata = $r[0];
1461
1462                 //logger('pumpio_queue: fetching userdata '.print_r($userdata, true));
1463
1464                 $oauth_token = get_pconfig($userdata['uid'], "pumpio", "oauth_token");
1465                 $oauth_token_secret = get_pconfig($userdata['uid'], "pumpio", "oauth_token_secret");
1466                 $consumer_key = get_pconfig($userdata['uid'], "pumpio","consumer_key");
1467                 $consumer_secret = get_pconfig($userdata['uid'], "pumpio","consumer_secret");
1468
1469                 $host = get_pconfig($userdata['uid'], "pumpio", "host");
1470                 $user = get_pconfig($userdata['uid'], "pumpio", "user");
1471
1472                 $success = false;
1473
1474                 if ($oauth_token AND $oauth_token_secret AND
1475                         $consumer_key AND $consumer_secret) {
1476                         $username = $user.'@'.$host;
1477
1478                         logger('pumpio_queue: able to post for user '.$username);
1479
1480                         $z = unserialize($x['content']);
1481
1482                         $client = new oauth_client_class;
1483                         $client->oauth_version = '1.0a';
1484                         $client->url_parameters = false;
1485                         $client->authorization_header = true;
1486                         $client->access_token = $oauth_token;
1487                         $client->access_token_secret = $oauth_token_secret;
1488                         $client->client_id = $consumer_key;
1489                         $client->client_secret = $consumer_secret;
1490
1491                         if (pumpio_reachable($z['url']))
1492                                 $success = $client->CallAPI($z['url'], 'POST', $z['post'], array('FailOnAccessError'=>true, 'RequestContentType'=>'application/json'), $user);
1493                         else
1494                                 $success = false;
1495
1496                         if($success) {
1497                                 $post_id = $user->object->id;
1498                                 logger('pumpio_queue: send '.$username.': success '.$post_id);
1499                                 if($post_id AND $iscomment) {
1500                                         logger('pumpio_send '.$username.': Update extid '.$post_id." for post id ".$z['item']);
1501                                         q("UPDATE `item` SET `extid` = '%s' WHERE `id` = %d",
1502                                                 dbesc($post_id),
1503                                                 intval($z['item'])
1504                                         );
1505                                 }
1506                                 remove_queue_item($x['id']);
1507                         } else
1508                                 logger('pumpio_queue: send '.$username.': '.$url.' general error: ' . print_r($user,true));
1509                 } else
1510                         logger("pumpio_queue: Error getting tokens for user ".$userdata['uid']);
1511
1512                 if (!$success) {
1513                         logger('pumpio_queue: delayed');
1514                         update_queue_time($x['id']);
1515                 }
1516         }
1517 }
1518
1519 function pumpio_getreceiver(&$a, $b) {
1520
1521         $receiver = array();
1522
1523         if (!$b["private"]) {
1524
1525                 if(! strstr($b['postopts'],'pumpio'))
1526                         return $receiver;
1527
1528                 $public = get_pconfig($b['uid'], "pumpio", "public");
1529
1530                 if ($public)
1531                         $receiver["to"][] = Array(
1532                                                 "objectType" => "collection",
1533                                                 "id" => "http://activityschema.org/collection/public");
1534         } else {
1535                 $cids = explode("><", $b["allow_cid"]);
1536                 $gids = explode("><", $b["allow_gid"]);
1537
1538                 foreach ($cids AS $cid) {
1539                         $cid = trim($cid, " <>");
1540
1541                         $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",
1542                                 intval($cid),
1543                                 intval($b["uid"]),
1544                                 dbesc(NETWORK_PUMPIO)
1545                                 );
1546
1547                         if (count($r)) {
1548                                 $receiver["bcc"][] = Array(
1549                                                         "displayName" => $r[0]["name"],
1550                                                         "objectType" => "person",
1551                                                         "preferredUsername" => $r[0]["nick"],
1552                                                         "url" => $r[0]["url"]);
1553                         }
1554                 }
1555                 foreach ($gids AS $gid) {
1556                         $gid = trim($gid, " <>");
1557
1558                         $r = q("SELECT `contact`.`name`, `contact`.`nick`, `contact`.`url`, `contact`.`network` ".
1559                                 "FROM `group_member`, `contact` WHERE `group_member`.`gid` = %d AND `group_member`.`uid` = %d ".
1560                                 "AND `contact`.`id` = `group_member`.`contact-id` AND `contact`.`network` = '%s'",
1561                                         intval($gid),
1562                                         intval($b["uid"]),
1563                                         dbesc(NETWORK_PUMPIO)
1564                                 );
1565
1566                         foreach ($r AS $row)
1567                                 $receiver["bcc"][] = Array(
1568                                                         "displayName" => $row["name"],
1569                                                         "objectType" => "person",
1570                                                         "preferredUsername" => $row["nick"],
1571                                                         "url" => $row["url"]);
1572                 }
1573         }
1574
1575         if ($b["inform"] != "") {
1576
1577                 $inform = explode(",", $b["inform"]);
1578
1579                 foreach ($inform AS $cid) {
1580                         if (substr($cid, 0, 4) != "cid:")
1581                                 continue;
1582
1583                         $cid = str_replace("cid:", "", $cid);
1584
1585                         $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",
1586                                 intval($cid),
1587                                 intval($b["uid"]),
1588                                 dbesc(NETWORK_PUMPIO)
1589                                 );
1590
1591                         if (count($r)) {
1592                                         $receiver["to"][] = Array(
1593                                                                 "displayName" => $r[0]["name"],
1594                                                                 "objectType" => "person",
1595                                                                 "preferredUsername" => $r[0]["nick"],
1596                                                                 "url" => $r[0]["url"]);
1597                         }
1598                 }
1599         }
1600
1601         return $receiver;
1602 }
1603
1604 function pumpio_fetchallcomments(&$a, $uid, $id) {
1605         $ckey    = get_pconfig($uid, 'pumpio', 'consumer_key');
1606         $csecret = get_pconfig($uid, 'pumpio', 'consumer_secret');
1607         $otoken  = get_pconfig($uid, 'pumpio', 'oauth_token');
1608         $osecret = get_pconfig($uid, 'pumpio', 'oauth_token_secret');
1609         $hostname = get_pconfig($uid, 'pumpio','host');
1610         $username = get_pconfig($uid, "pumpio", "user");
1611
1612         logger("pumpio_fetchallcomments: completing comment for user ".$uid." post id ".$id);
1613
1614         $own_id = "https://".$hostname."/".$username;
1615
1616         $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1617                 intval($uid));
1618
1619         // Fetching the original post
1620         $r = q("SELECT `extid` FROM `item` WHERE `uri` = '%s' AND `uid` = %d AND `extid` != '' LIMIT 1",
1621                         dbesc($id),
1622                         intval($uid)
1623                 );
1624
1625         if (!count($r))
1626                 return false;
1627
1628         $url = $r[0]["extid"];
1629
1630         $client = new oauth_client_class;
1631         $client->oauth_version = '1.0a';
1632         $client->authorization_header = true;
1633         $client->url_parameters = false;
1634
1635         $client->client_id = $ckey;
1636         $client->client_secret = $csecret;
1637         $client->access_token = $otoken;
1638         $client->access_token_secret = $osecret;
1639
1640         logger("pumpio_fetchallcomments: fetching comment for user ".$uid." url ".$url);
1641
1642         if (pumpio_reachable($url))
1643                 $success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $item);
1644         else
1645                 $success = false;
1646
1647         if (!$success)
1648                 return;
1649
1650         if ($item->likes->totalItems != 0) {
1651                 foreach ($item->likes->items AS $post) {
1652                         $like = new stdClass;
1653                         $like->object = new stdClass;
1654                         $like->object->id = $item->id;
1655                         $like->actor = new stdClass;
1656                         $like->actor->displayName = $item->displayName;
1657                         $like->actor->preferredUsername = $item->preferredUsername;
1658                         $like->actor->url = $item->url;
1659                         $like->actor->image = $item->image;
1660                         $like->generator = new stdClass;
1661                         $like->generator->displayName = "pumpio";
1662                         pumpio_dolike($a, $uid, $self, $post, $own_id, false);
1663                 }
1664         }
1665
1666         if ($item->replies->totalItems == 0)
1667                 return;
1668
1669         foreach ($item->replies->items AS $item) {
1670                 if ($item->id == $id)
1671                         continue;
1672
1673                 // Checking if the comment already exists - Two queries for speed issues
1674                 $r = q("SELECT extid FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
1675                                 dbesc($item->id),
1676                                 intval($uid)
1677                         );
1678
1679                 if (count($r))
1680                         continue;
1681
1682                 $r = q("SELECT extid FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
1683                                 dbesc($item->id),
1684                                 intval($uid)
1685                         );
1686
1687                 if (count($r))
1688                         continue;
1689
1690                 $post = new stdClass;
1691                 $post->verb = "post";
1692                 $post->actor = $item->author;
1693                 $post->published = $item->published;
1694                 $post->received = $item->updated;
1695                 $post->generator = new stdClass;
1696                 $post->generator->displayName = "pumpio";
1697                 // To-Do: Check for public post
1698
1699                 unset($item->author);
1700                 unset($item->published);
1701                 unset($item->updated);
1702
1703                 $post->object = $item;
1704
1705                 logger("pumpio_fetchallcomments: posting comment ".$post->object->id." ".print_r($post, true));
1706                 pumpio_dopost($a, $client, $uid, $self, $post, $own_id, false);
1707         }
1708 }
1709
1710
1711 function pumpio_reachable($url) {
1712         $data = z_fetch_url($url, false, $redirects, array('timeout'=>10));
1713         return(intval($data['return_code']) != 0);
1714 }
1715
1716 /*
1717 To-Do:
1718  - edit own notes
1719  - delete own notes
1720 */