]> git.mxchange.org Git - friendica-addons.git/blob - pumpio/pumpio.php
pumpio: Doing likes
[friendica-addons.git] / pumpio / pumpio.php
1 <?php
2 /**
3  * Name: pump.io Post Connector
4  * Description: Post to pump.io
5  * Version: 0.1
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
11 define('PUMPIO_DEFAULT_POLL_INTERVAL', 5); // given in minutes
12
13 function pumpio_install() {
14     register_hook('post_local',           'addon/pumpio/pumpio.php', 'pumpio_post_local');
15     register_hook('notifier_normal',      'addon/pumpio/pumpio.php', 'pumpio_send');
16     register_hook('jot_networks',         'addon/pumpio/pumpio.php', 'pumpio_jot_nets');
17     register_hook('connector_settings',      'addon/pumpio/pumpio.php', 'pumpio_settings');
18     register_hook('connector_settings_post', 'addon/pumpio/pumpio.php', 'pumpio_settings_post');
19     register_hook('cron', 'addon/pumpio/pumpio.php', 'pumpio_cron');
20     register_hook('queue_predeliver', 'addon/pumpio/pumpio.php', 'pumpio_queue_hook');
21 }
22
23 function pumpio_uninstall() {
24     unregister_hook('post_local',       'addon/pumpio/pumpio.php', 'pumpio_post_local');
25     unregister_hook('notifier_normal',  'addon/pumpio/pumpio.php', 'pumpio_send');
26     unregister_hook('jot_networks',     'addon/pumpio/pumpio.php', 'pumpio_jot_nets');
27     unregister_hook('connector_settings',      'addon/pumpio/pumpio.php', 'pumpio_settings');
28     unregister_hook('connector_settings_post', 'addon/pumpio/pumpio.php', 'pumpio_settings_post');
29     unregister_hook('cron', 'addon/pumpio/pumpio.php', 'pumpio_cron');
30     unregister_hook('queue_predeliver', 'addon/pumpio/pumpio.php', 'pumpio_queue_hook');
31 }
32
33 function pumpio_module() {}
34
35 function pumpio_content(&$a) {
36
37         if(! local_user()) {
38                 notice( t('Permission denied.') . EOL);
39                 return '';
40         }
41
42         if (isset($a->argv[1]))
43                 switch ($a->argv[1]) {
44                         case "connect":
45                                 $o = pumpio_connect($a);
46                                 break;
47                         default:
48                                 $o = print_r($a->argv, true);
49                                 break;
50                 }
51         else
52                 $o = pumpio_connect($a);
53
54         return $o;
55 }
56
57 function pumpio_registerclient($a, $host) {
58
59         $url = "https://".$host."/api/client/register";
60
61         $params = array();
62
63         $application_name  = get_config('pumpio', 'application_name');
64
65         if ($application_name == "")
66                 $application_name = $a->get_hostname();
67
68         $params["type"] = "client_associate";
69         $params["contacts"] = $a->config['admin_email'];
70         $params["application_type"] = "native";
71         $params["application_name"] = $application_name;
72         $params["logo_url"] = $a->get_baseurl()."/images/friendica-256.png";
73         $params["redirect_uris"] = $a->get_baseurl()."/pumpio/connect";
74
75         $ch = curl_init($url);
76         curl_setopt($ch, CURLOPT_HEADER, false);
77         curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
78         curl_setopt($ch, CURLOPT_POST,1);
79         curl_setopt($ch, CURLOPT_POSTFIELDS,$params);
80         curl_setopt($ch, CURLOPT_USERAGENT, "Friendica");
81
82         $s = curl_exec($ch);
83         $curl_info = curl_getinfo($ch);
84
85         if ($curl_info["http_code"] == "200") {
86                 $values = json_decode($s);
87                 return($values);
88         }
89         return(false);
90 }
91
92 function pumpio_connect($a) {
93         // Start a session.  This is necessary to hold on to  a few keys the callback script will also need
94         session_start();
95
96         // Define the needed keys
97         $consumer_key = get_pconfig(local_user(), 'pumpio','consumer_key');
98         $consumer_secret = get_pconfig(local_user(), 'pumpio','consumer_secret');
99         $hostname = get_pconfig(local_user(), 'pumpio','host');
100
101         if ((($consumer_key == "") OR ($consumer_secret == "")) AND ($hostname != "")) {
102                 $clientdata = pumpio_registerclient($a, $hostname);
103                 set_pconfig(local_user(), 'pumpio','consumer_key', $clientdata->client_id);
104                 set_pconfig(local_user(), 'pumpio','consumer_secret', $clientdata->client_secret);
105
106                 $consumer_key = get_pconfig(local_user(), 'pumpio','consumer_key');
107                 $consumer_secret = get_pconfig(local_user(), 'pumpio','consumer_secret');
108         }
109
110         if (($consumer_key == "") OR ($consumer_secret == ""))
111                 return;
112
113         // The callback URL is the script that gets called after the user authenticates with pumpio
114         $callback_url = $a->get_baseurl()."/pumpio/connect";
115
116         // Let's begin.  First we need a Request Token.  The request token is required to send the user
117         // to pumpio's login page.
118
119         // Create a new instance of the TumblrOAuth library.  For this step, all we need to give the library is our
120         // Consumer Key and Consumer Secret
121         $client = new oauth_client_class;
122         $client->debug = 1;
123         $client->server = '';
124         $client->oauth_version = '1.0a';
125         $client->request_token_url = 'https://'.$hostname.'/oauth/request_token';
126         $client->dialog_url = 'https://'.$hostname.'/oauth/authorize';
127         $client->access_token_url = 'https://'.$hostname.'/oauth/access_token';
128         $client->url_parameters = false;
129         $client->authorization_header = true;
130         $client->redirect_uri = $callback_url;
131         $client->client_id = $consumer_key;
132         $client->client_secret = $consumer_secret;
133
134         if (($success = $client->Initialize())) {
135                 if (($success = $client->Process())) {
136                         if (strlen($client->access_token)) {
137                                 set_pconfig(local_user(), "pumpio", "oauth_token", $client->access_token);
138                                 set_pconfig(local_user(), "pumpio", "oauth_token_secret", $client->access_token_secret);
139                         }
140                 }
141                 $success = $client->Finalize($success);
142         }
143         if($client->exit)
144             $o = 'Could not connect to pumpio. Refresh the page or try again later.';
145
146         if($success) {
147                 $o .= t("You are now authenticated to pumpio.");
148                 $o .= '<br /><a href="'.$a->get_baseurl().'/settings/connectors">'.t("return to the connector page").'</a>';
149         }
150
151         return($o);
152 }
153
154 function pumpio_jot_nets(&$a,&$b) {
155     if(! local_user())
156         return;
157
158     $pumpio_post = get_pconfig(local_user(),'pumpio','post');
159     if(intval($pumpio_post) == 1) {
160         $pumpio_defpost = get_pconfig(local_user(),'pumpio','post_by_default');
161         $selected = ((intval($pumpio_defpost) == 1) ? ' checked="checked" ' : '');
162         $b .= '<div class="profile-jot-net"><input type="checkbox" name="pumpio_enable"' . $selected . ' value="1" /> '
163             . t('Post to pumpio') . '</div>';
164     }
165 }
166
167
168 function pumpio_settings(&$a,&$s) {
169
170     if(! local_user())
171         return;
172
173     /* Add our stylesheet to the page so we can make our settings look nice */
174
175     $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/pumpio/pumpio.css' . '" media="all" />' . "\r\n";
176
177     /* Get the current state of our config variables */
178
179     $import_enabled = get_pconfig(local_user(),'pumpio','import');
180     $import_checked = (($import_enabled) ? ' checked="checked" ' : '');
181
182     $enabled = get_pconfig(local_user(),'pumpio','post');
183     $checked = (($enabled) ? ' checked="checked" ' : '');
184
185     $def_enabled = get_pconfig(local_user(),'pumpio','post_by_default');
186     $def_checked = (($def_enabled) ? ' checked="checked" ' : '');
187
188     $public_enabled = get_pconfig(local_user(),'pumpio','public');
189     $public_checked = (($public_enabled) ? ' checked="checked" ' : '');
190
191     $mirror_enabled = get_pconfig(local_user(),'pumpio','mirror');
192     $mirror_checked = (($mirror_enabled) ? ' checked="checked" ' : '');
193
194     $servername = get_pconfig(local_user(), "pumpio", "host");
195     $username = get_pconfig(local_user(), "pumpio", "user");
196
197     /* Add some HTML to the existing form */
198
199     $s .= '<div class="settings-block">';
200     $s .= '<h3>' . t('Pump.io Post Settings') . '</h3>';
201
202     $s .= '<div id="pumpio-username-wrapper">';
203     $s .= '<label id="pumpio-username-label" for="pumpio-username">'.t('pump.io username (without the servername)').'</label>';
204     $s .= '<input id="pumpio-username" type="text" name="pumpio_user" value="'.$username.'" />';
205     $s .= '</div><div class="clear"></div>';
206
207     $s .= '<div id="pumpio-servername-wrapper">';
208     $s .= '<label id="pumpio-servername-label" for="pumpio-servername">'.t('pump.io servername (without "http://" or "https://" )').'</label>';
209     $s .= '<input id="pumpio-servername" type="text" name="pumpio_host" value="'.$servername.'" />';
210     $s .= '</div><div class="clear"></div>';
211
212     if (($username != '') AND ($servername != '')) {
213
214         $oauth_token = get_pconfig(local_user(), "pumpio", "oauth_token");
215         $oauth_token_secret = get_pconfig(local_user(), "pumpio", "oauth_token_secret");
216
217         $s .= '<div id="pumpio-password-wrapper">';
218         if (($oauth_token == "") OR ($oauth_token_secret == "")) {
219                 $s .= '<div id="pumpio-authenticate-wrapper">';
220                 $s .= '<a href="'.$a->get_baseurl().'/pumpio/connect">'.t("Authenticate your pump.io connection").'</a>';
221                 $s .= '</div><div class="clear"></div>';
222
223                 //$s .= t("You are not authenticated to pumpio");
224         } else {
225                 $s .= '<div id="pumpio-import-wrapper">';
226                 $s .= '<label id="pumpio-import-label" for="pumpio-import">' . t('Import the remote timeline') . '</label>';
227                 $s .= '<input id="pumpio-import" type="checkbox" name="pumpio_import" value="1" ' . $import_checked . '/>';
228                 $s .= '</div><div class="clear"></div>';
229
230                 $s .= '<div id="pumpio-enable-wrapper">';
231                 $s .= '<label id="pumpio-enable-label" for="pumpio-checkbox">' . t('Enable pump.io Post Plugin') . '</label>';
232                 $s .= '<input id="pumpio-checkbox" type="checkbox" name="pumpio" value="1" ' . $checked . '/>';
233                 $s .= '</div><div class="clear"></div>';
234
235                 $s .= '<div id="pumpio-bydefault-wrapper">';
236                 $s .= '<label id="pumpio-bydefault-label" for="pumpio-bydefault">' . t('Post to pump.io by default') . '</label>';
237                 $s .= '<input id="pumpio-bydefault" type="checkbox" name="pumpio_bydefault" value="1" ' . $def_checked . '/>';
238                 $s .= '</div><div class="clear"></div>';
239
240                 $s .= '<div id="pumpio-public-wrapper">';
241                 $s .= '<label id="pumpio-public-label" for="pumpio-public">' . t('Should posts be public?') . '</label>';
242                 $s .= '<input id="pumpio-public" type="checkbox" name="pumpio_public" value="1" ' . $public_checked . '/>';
243                 $s .= '</div><div class="clear"></div>';
244
245                 $s .= '<div id="pumpio-mirror-wrapper">';
246                 $s .= '<label id="pumpio-mirror-label" for="pumpio-mirror">' . t('Mirror all public posts') . '</label>';
247                 $s .= '<input id="pumpio-mirror" type="checkbox" name="pumpio_mirror" value="1" ' . $mirror_checked . '/>';
248                 $s .= '</div><div class="clear"></div>';
249
250                 $s .= '<div id="pumpio-delete-wrapper">';
251                 $s .= '<label id="pumpio-delete-label" for="pumpio-delete">' . t('Check to delete this preset') . '</label>';
252                 $s .= '<input id="pumpio-delete" type="checkbox" name="pumpio_delete" value="1" />';
253                 $s .= '</div><div class="clear"></div>';
254
255                 //$s .= '<div id="pumpio-authenticate-wrapper">';
256                 //$s .= '<a href="'.$a->get_baseurl().'/pumpio/connect">'.t("Reauthenticate your pump.io connection").'</a>';
257                 //$s .= '</div><div class="clear"></div>';
258
259         }
260
261         $s .= '</div><div class="clear"></div>';
262     }
263
264     /* provide a submit button */
265
266     $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="pumpio-submit" name="pumpio-submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
267
268 }
269
270
271 function pumpio_settings_post(&$a,&$b) {
272
273         if(x($_POST,'pumpio-submit')) {
274                 if(x($_POST,'pumpio_delete')) {
275                         set_pconfig(local_user(),'pumpio','consumer_key','');
276                         set_pconfig(local_user(),'pumpio','consumer_secret','');
277                         set_pconfig(local_user(),'pumpio','host','');
278                         set_pconfig(local_user(),'pumpio','oauth_token','');
279                         set_pconfig(local_user(),'pumpio','oauth_token_secret','');
280                         set_pconfig(local_user(),'pumpio','post',false);
281                         set_pconfig(local_user(),'pumpio','post_by_default',false);
282                         set_pconfig(local_user(),'pumpio','user','');
283                 } else {
284                         // filtering the username if it is filled wrong
285                         $user = $_POST['pumpio_user'];
286                         if (strstr($user, "@")) {
287                                 $pos = strpos($user, "@");
288                                 if ($pos > 0)
289                                         $user = substr($user, 0, $pos);
290                         }
291
292                         // Filtering the hostname if someone is entering it with "http"
293                         $host = $_POST['pumpio_host'];
294                         $host = trim($host);
295                         $host = str_replace(array("https://", "http://"), array("", ""), $host);
296
297                         set_pconfig(local_user(),'pumpio','post',intval($_POST['pumpio']));
298                         set_pconfig(local_user(),'pumpio','import',$_POST['pumpio_import']);
299                         set_pconfig(local_user(),'pumpio','host',$host);
300                         set_pconfig(local_user(),'pumpio','user',$user);
301                         set_pconfig(local_user(),'pumpio','public',$_POST['pumpio_public']);
302                         set_pconfig(local_user(),'pumpio','mirror',$_POST['pumpio_mirror']);
303                         set_pconfig(local_user(),'pumpio','post_by_default',intval($_POST['pumpio_bydefault']));
304                 }
305         }
306 }
307
308 function pumpio_post_local(&$a,&$b) {
309
310         // This can probably be changed to allow editing by pointing to a different API endpoint
311
312         if($b['edit'])
313                 return;
314
315         if((! local_user()) || (local_user() != $b['uid']))
316                 return;
317
318         if($b['private'] || $b['parent'])
319                 return;
320
321         $pumpio_post   = intval(get_pconfig(local_user(),'pumpio','post'));
322
323         $pumpio_enable = (($pumpio_post && x($_REQUEST,'pumpio_enable')) ? intval($_REQUEST['pumpio_enable']) : 0);
324
325         if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'pumpio','post_by_default')))
326                 $pumpio_enable = 1;
327
328         if(! $pumpio_enable)
329                 return;
330
331         if(strlen($b['postopts']))
332                 $b['postopts'] .= ',';
333
334         $b['postopts'] .= 'pumpio';
335 }
336
337
338
339
340 function pumpio_send(&$a,&$b) {
341         logger("pumpio_send: parameter ".print_r($b, true));
342
343         if($b['verb'] == ACTIVITY_LIKE) {
344                 if ($b['deleted'])
345                         pumpio_like($a, $b["uid"], $b["thr-parent"], "unlike");
346                 else
347                         pumpio_like($a, $b["uid"], $b["thr-parent"], "like");
348                 return;
349         }
350
351         if($b['verb'] == ACTIVITY_DISLIKE)
352                 return;
353
354         if($b['deleted'] || ($b['created'] !== $b['edited']))
355                 return;
356
357         if($b['parent'] != $b['id']) {
358                 // Looking if its a reply to a pumpio post
359                 $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",
360                         intval($b["parent"]),
361                         intval($b["uid"]),
362                         dbesc(NETWORK_PUMPIO));
363
364                 if(!count($r))
365                         return;
366                 else {
367                         $iscomment = true;
368                         $orig_post = $r[0];
369                 }
370         } else {
371                 $iscomment = false;
372
373                 if(! strstr($b['postopts'],'pumpio'))
374                         return;
375
376                 if($b['private'])
377                         return;
378         }
379
380         // if post comes from pump.io don't send it back
381         if($b['app'] == "pump.io")
382                 return;
383
384
385         $oauth_token = get_pconfig($b['uid'], "pumpio", "oauth_token");
386         $oauth_token_secret = get_pconfig($b['uid'], "pumpio", "oauth_token_secret");
387         $consumer_key = get_pconfig($b['uid'], "pumpio","consumer_key");
388         $consumer_secret = get_pconfig($b['uid'], "pumpio","consumer_secret");
389
390         $host = get_pconfig($b['uid'], "pumpio", "host");
391         $user = get_pconfig($b['uid'], "pumpio", "user");
392         $public = get_pconfig($b['uid'], "pumpio", "public");
393
394         if($oauth_token && $oauth_token_secret) {
395
396                 require_once('include/bbcode.php');
397
398                 $title = trim($b['title']);
399
400                 if ($title != '')
401                         $title = "<h4>".$title."</h4>";
402
403                 $content = bbcode($b['body'], false, false);
404
405                 // Enhance the way, videos are displayed
406                 $content = preg_replace('/<a.*?href="(https?:\/\/www.youtube.com\/.*?)".*?>(.*?)<\/a>/ism',"\n[url]$1[/url]\n",$content);
407                 $content = preg_replace('/<a.*?href="(https?:\/\/youtu.be\/.*?)".*?>(.*?)<\/a>/ism',"\n$1\n",$content);
408                 $content = preg_replace('/<a.*?href="(https?:\/\/vimeo.com\/.*?)".*?>(.*?)<\/a>/ism',"\n$1\n",$content);
409                 $content = preg_replace('/<a.*?href="(https?:\/\/player.vimeo.com\/.*?)".*?>(.*?)<\/a>/ism',"\n$1\n",$content);
410
411                 $URLSearchString = "^\[\]";
412                 $content = preg_replace_callback("/\[url\]([$URLSearchString]*)\[\/url\]/ism",'tryoembed',$content);
413
414                 $params = array();
415
416                 $params["verb"] = "post";
417
418                 if (!$iscomment) {
419                         $params["object"] = array(
420                                                 'objectType' => "note",
421                                                 'content' => $title.$content);
422
423                         if ($public)
424                                 $params["to"] = array(Array(
425                                                         "objectType" => "collection",
426                                                         "id" => "http://activityschema.org/collection/public"));
427                  } else {
428                         $inReplyTo = array("id" => $orig_post["uri"],
429                                         "objectType" => "note");
430
431                         $params["object"] = array(
432                                                 'objectType' => "comment",
433                                                 'content' => $title.$content,
434                                                 'inReplyTo' => $inReplyTo);
435                 }
436
437                 $client = new oauth_client_class;
438                 $client->oauth_version = '1.0a';
439                 $client->url_parameters = false;
440                 $client->authorization_header = true;
441                 $client->access_token = $oauth_token;
442                 $client->access_token_secret = $oauth_token_secret;
443                 $client->client_id = $consumer_key;
444                 $client->client_secret = $consumer_secret;
445
446                 $username = $user.'@'.$host;
447                 $url = 'https://'.$host.'/api/user/'.$user.'/feed';
448
449                 $success = $client->CallAPI($url, 'POST', $params, array('FailOnAccessError'=>true, 'RequestContentType'=>'application/json'), $user);
450                 //$success = false;
451
452                 if($success) {
453                         $post_id = $user->object->id;
454                         logger('pumpio_send '.$username.': success '.$post_id);
455                         if($post_id AND $iscomment) {
456                                 logger('pumpio_send '.$username.': Update extid '.$post_id." for post id ".$b['id']);
457                                 q("UPDATE `item` SET `extid` = '%s' WHERE `id` = %d LIMIT 1",
458                                         dbesc($post_id),
459                                         intval($b['id'])
460                                 );
461                         }
462                 } else {
463                         logger('pumpio_send '.$username.': '.$url.' general error: ' . print_r($user,true));
464
465                         $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self`", $b['uid']);
466                         if (count($r))
467                                 $a->contact = $r[0]["id"];
468
469                         $s = serialize(array('url' => $url, 'item' => $b['id'], 'post' => $params));
470                         require_once('include/queue_fn.php');
471                         add_to_queue($a->contact,NETWORK_PUMPIO,$s);
472                         notice(t('Pump.io post failed. Queued for retry.').EOL);
473                 }
474
475         }
476 }
477
478 function pumpio_like($a, $uid, $uri, $action) {
479         $ckey    = get_pconfig($uid, 'pumpio', 'consumer_key');
480         $csecret = get_pconfig($uid, 'pumpio', 'consumer_secret');
481         $otoken  = get_pconfig($uid, 'pumpio', 'oauth_token');
482         $osecret = get_pconfig($uid, 'pumpio', 'oauth_token_secret');
483         $hostname = get_pconfig($uid, 'pumpio','host');
484         $username = get_pconfig($uid, "pumpio", "user");
485
486         $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
487                                 dbesc($uri),
488                                 intval($uid)
489         );
490
491         if (!count($r))
492                 return;
493
494         $orig_post = $r[0];
495
496         if ($orig_post["extid"])
497                 $uri = $orig_post["extid"];
498         else
499                 $uri = $orig_post["uri"];
500
501         if (strstr($uri, "/api/comment/"))
502                 $objectType = "comment";
503         elseif (strstr($uri, "/api/note/"))
504                 $objectType = "note";
505         elseif (strstr($uri, "/api/image/"))
506                 $objectType = "image";
507
508         $params["verb"] = $action;
509         $params["object"] = array('id' => $uri, "objectType" => $objectType);
510
511         $client = new oauth_client_class;
512         $client->oauth_version = '1.0a';
513         $client->authorization_header = true;
514         $client->url_parameters = false;
515
516         $client->client_id = $ckey;
517         $client->client_secret = $csecret;
518         $client->access_token = $otoken;
519         $client->access_token_secret = $osecret;
520
521         $url = 'https://'.$hostname.'/api/user/'.$username.'/feed';
522
523         $success = $client->CallAPI($url, 'POST', $params, array('FailOnAccessError'=>true, 'RequestContentType'=>'application/json'), $user);
524
525         if($success)
526                 logger('pumpio_like '.$username.' '.$action.': success '.$uri);
527         else {
528                 logger('pumpio_like '.$username.' '.$action.': general error: '.$uri.' '.print_r($user,true));
529
530                 $r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `self`", $b['uid']);
531                 if (count($r))
532                         $a->contact = $r[0]["id"];
533
534                 $s = serialize(array('url' => $url, 'item' => $orig_post["id"], 'post' => $params));
535                 require_once('include/queue_fn.php');
536                 add_to_queue($a->contact,NETWORK_PUMPIO,$s);
537                 notice(t('Pump.io like failed. Queued for retry.').EOL);
538         }
539 }
540
541
542 function pumpio_cron($a,$b) {
543         $last = get_config('pumpio','last_poll');
544
545         $poll_interval = intval(get_config('pumpio','poll_interval'));
546         if(! $poll_interval)
547                 $poll_interval = PUMPIO_DEFAULT_POLL_INTERVAL;
548
549         if($last) {
550                 $next = $last + ($poll_interval * 60);
551                 if($next > time()) {
552                         logger('pumpio: poll intervall not reached');
553                         return;
554                 }
555         }
556         logger('pumpio: cron_start');
557
558         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'pumpio' AND `k` = 'mirror' AND `v` = '1' ORDER BY RAND() ");
559         if(count($r)) {
560                 foreach($r as $rr) {
561                         logger('pumpio: mirroring user '.$rr['uid']);
562                         pumpio_fetchtimeline($a, $rr['uid']);
563                 }
564         }
565
566         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'pumpio' AND `k` = 'import' AND `v` = '1' ORDER BY RAND() ");
567         if(count($r)) {
568                 foreach($r as $rr) {
569                         logger('pumpio: importing timeline from user '.$rr['uid']);
570                         pumpio_fetchinbox($a, $rr['uid']);
571                 }
572         }
573
574         // To-Do:
575         //pumpio_getallusers($a, $uid);
576
577         logger('pumpio: cron_end');
578
579         set_config('pumpio','last_poll', time());
580 }
581
582 function pumpio_fetchtimeline($a, $uid) {
583         $ckey    = get_pconfig($uid, 'pumpio', 'consumer_key');
584         $csecret = get_pconfig($uid, 'pumpio', 'consumer_secret');
585         $otoken  = get_pconfig($uid, 'pumpio', 'oauth_token');
586         $osecret = get_pconfig($uid, 'pumpio', 'oauth_token_secret');
587         $lastdate = get_pconfig($uid, 'pumpio', 'lastdate');
588         $hostname = get_pconfig($uid, 'pumpio','host');
589         $username = get_pconfig($uid, "pumpio", "user");
590
591         $application_name  = get_config('pumpio', 'application_name');
592
593         if ($application_name == "")
594                 $application_name = $a->get_hostname();
595
596         $first_time = ($lastdate == "");
597
598         $client = new oauth_client_class;
599         $client->oauth_version = '1.0a';
600         $client->authorization_header = true;
601         $client->url_parameters = false;
602
603         $client->client_id = $ckey;
604         $client->client_secret = $csecret;
605         $client->access_token = $otoken;
606         $client->access_token_secret = $osecret;
607
608         $url = 'https://'.$hostname.'/api/user/'.$username.'/feed/major';
609
610         logger('pumpio: fetching for user '.$uid.' '.$url.' C:'.$client->client_id.' CS:'.$client->client_secret.' T:'.$client->access_token.' TS:'.$client->access_token_secret);
611
612         $username = $user.'@'.$host;
613
614         $success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $user);
615
616         if (!$success) {
617                 logger('pumpio: error fetching posts for user '.$uid." ".$username." ".print_r($user, true));
618                 return;
619         }
620
621         $posts = array_reverse($user->items);
622
623         $initiallastdate = $lastdate;
624         $lastdate = '';
625
626         if (count($posts)) {
627                 foreach ($posts as $post) {
628                         if ($post->generator->published <= $initiallastdate)
629                                 continue;
630
631                         if ($lastdate < $post->generator->published)
632                                 $lastdate = $post->generator->published;
633
634                         if ($first_time)
635                                 continue;
636
637                         $receiptians = array();
638                         if (@is_array($post->cc))
639                                 $receiptians = array_merge($receiptians, $post->cc);
640
641                         if (@is_array($post->to))
642                                 $receiptians = array_merge($receiptians, $post->to);
643
644                         $public = false;
645                         foreach ($receiptians AS $receiver)
646                                 if (is_string($receiver->objectType))
647                                         if ($receiver->id == "http://activityschema.org/collection/public")
648                                                 $public = true;
649
650                         if ($public AND !strstr($post->generator->displayName, $application_name)) {
651                                 require_once('include/html2bbcode.php');
652
653                                 $_SESSION["authenticated"] = true;
654                                 $_SESSION["uid"] = $uid;
655
656                                 unset($_REQUEST);
657                                 $_REQUEST["type"] = "wall";
658                                 $_REQUEST["api_source"] = true;
659                                 $_REQUEST["profile_uid"] = $uid;
660                                 $_REQUEST["source"] = "pump.io";
661
662                                 if ($post->object->displayName != "")
663                                         $_REQUEST["title"] = html2bbcode($post->object->displayName);
664                                 else
665                                         $_REQUEST["title"] = "";
666
667                                 $_REQUEST["body"] = html2bbcode($post->object->content);
668
669                                 if ($post->object->fullImage->url != "")
670                                         $_REQUEST["body"] = "[url=".$post->object->fullImage->url."][img]".$post->object->image->url."[/img][/url]\n".$_REQUEST["body"];
671
672                                 logger('pumpio: posting for user '.$uid);
673
674                                 require_once('mod/item.php');
675                                 //print_r($_REQUEST);
676                                 item_post($a);
677                                 logger('pumpio: posting done - user '.$uid);
678                         }
679                 }
680         }
681
682         //$lastdate = '2013-05-16T20:22:12Z';
683
684         if ($lastdate != 0)
685                 set_pconfig($uid,'pumpio','lastdate', $lastdate);
686 }
687
688 function pumpio_dounlike(&$a, $uid, $self, $post) {
689 }
690
691 function pumpio_dolike(&$a, $uid, $self, $post) {
692
693 /*
694     // If we posted the like locally, it will be found with our url, not the FB url.
695
696     $second_url = (($likes->id == $fb_id) ? $self[0]['url'] : 'http://facebook.com/profile.php?id=' . $likes->id);
697
698     $r = q("SELECT * FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `verb` = '%s'
699         AND ( `author-link` = '%s' OR `author-link` = '%s' ) LIMIT 1",
700         dbesc($orig_post['uri']),
701         intval($uid),
702         dbesc(ACTIVITY_LIKE),
703         dbesc('http://facebook.com/profile.php?id=' . $likes->id),
704         dbesc($second_url)
705     );
706
707     if(count($r))
708         return;
709 */
710
711         // To-Do
712         $own_id = "123455678";
713
714         // Two queries for speed issues
715         $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
716                                 dbesc($post->object->id),
717                                 intval($uid)
718                 );
719
720         if (count($r))
721                 $orig_post = $r[0];
722         else {
723                 $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
724                                         dbesc($post->object->id),
725                                         intval($uid)
726                         );
727
728                 if (!count($r))
729                         return;
730                 else
731                         $orig_post = $r[0];
732         }
733
734         $r = q("SELECT parent FROM `item` WHERE `verb` = '%s' AND `uid` = %d AND `author-link` = '%s' AND parent = %d LIMIT 1",
735                 dbesc(ACTIVITY_LIKE),
736                 intval($uid),
737                 dbesc($post->actor->url),
738                 intval($orig_post['id'])
739         );
740
741         if(count($r))
742                 return;
743
744         $likedata = array();
745         $likedata['parent'] = $orig_post['id'];
746         $likedata['verb'] = ACTIVITY_LIKE;
747         $likedata['gravity'] = 3;
748         $likedata['uid'] = $uid;
749         $likedata['wall'] = 0;
750         $likedata['uri'] = item_new_uri($a->get_baseurl(), $uid);
751         $likedata['parent-uri'] = $orig_post["uri"];
752
753         if($likes->id == $own_id)
754                 $likedata['contact-id'] = $self[0]['id'];
755         else {
756                 $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d AND `blocked` = 0 AND `readonly` = 0 LIMIT 1",
757                         dbesc($post->actor->url),
758                         intval($uid)
759                 );
760
761                 if(count($r))
762                         $likedata['contact-id'] = $r[0]['id'];
763         }
764         if(! x($likedata,'contact-id'))
765                 $likedata['contact-id'] = $orig_post['contact-id'];
766
767         $likedata['app'] = $post->generator->displayName;
768         $likedata['verb'] = ACTIVITY_LIKE;
769         $likedata['author-name'] = $post->actor->displayName;
770         $likedata['author-link'] = $post->actor->url;
771         $likedata['author-avatar'] = $post->actor->image->url;
772
773         $author  = '[url=' . $likedata['author-link'] . ']' . $likedata['author-name'] . '[/url]';
774         $objauthor =  '[url=' . $orig_post['author-link'] . ']' . $orig_post['author-name'] . '[/url]';
775         $post_type = t('status');
776         $plink = '[url=' . $orig_post['plink'] . ']' . $post_type . '[/url]';
777         $likedata['object-type'] = ACTIVITY_OBJ_NOTE;
778
779         $likedata['body'] = sprintf( t('%1$s likes %2$s\'s %3$s'), $author, $objauthor, $plink);
780
781         $likedata['object'] = '<object><type>' . ACTIVITY_OBJ_NOTE . '</type><local>1</local>' .
782                 '<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>';
783
784         item_store($likedata);
785 }
786
787 function pumpio_get_contact($uid, $contact) {
788
789         $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `url` = '%s' LIMIT 1",
790                 intval($uid), dbesc($contact->url));
791
792         if(!count($r)) {
793                 // create contact record
794                 q("INSERT INTO `contact` ( `uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
795                                         `name`, `nick`, `photo`, `network`, `rel`, `priority`,
796                                         `writable`, `blocked`, `readonly`, `pending` )
797                                 VALUES ( %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, %d, 0, 0, 0 ) ",
798                         intval($uid),
799                         dbesc(datetime_convert()),
800                         dbesc($contact->url),
801                         dbesc(normalise_link($contact->url)),
802                         dbesc(str_replace("acct:", "", $contact->id)),
803                         dbesc(''),
804                         dbesc($contact->id), // To-Do?
805                         dbesc('pump.io ' . $contact->id), // To-Do?
806                         dbesc($contact->displayName),
807                         dbesc($contact->preferredUsername),
808                         dbesc($contact->image->url),
809                         dbesc(NETWORK_PUMPIO),
810                         intval(CONTACT_IS_FRIEND),
811                         intval(1),
812                         intval(1)
813                 );
814
815                 $r = q("SELECT * FROM `contact` WHERE `url` = '%s' AND `uid` = %d LIMIT 1",
816                         dbesc($contact->url),
817                         intval($uid)
818                         );
819
820                 if(! count($r))
821                         return(false);
822
823                 $contact_id  = $r[0]['id'];
824
825                 $g = q("select def_gid from user where uid = %d limit 1",
826                         intval($uid)
827                 );
828
829                 if($g && intval($g[0]['def_gid'])) {
830                         require_once('include/group.php');
831                         group_add_member($uid,'',$contact_id,$g[0]['def_gid']);
832                 }
833
834                 require_once("Photo.php");
835
836                 $photos = import_profile_photo($contact->image->url,$uid,$contact_id);
837
838                 q("UPDATE `contact` SET `photo` = '%s',
839                                         `thumb` = '%s',
840                                         `micro` = '%s',
841                                         `name-date` = '%s',
842                                         `uri-date` = '%s',
843                                         `avatar-date` = '%s'
844                                 WHERE `id` = %d LIMIT 1
845                         ",
846                 dbesc($photos[0]),
847                 dbesc($photos[1]),
848                 dbesc($photos[2]),
849                 dbesc(datetime_convert()),
850                 dbesc(datetime_convert()),
851                 dbesc(datetime_convert()),
852                 intval($contact_id)
853                 );
854         } else {
855                 // update profile photos once every two weeks as we have no notification of when they change.
856
857                 $update_photo = (($r[0]['avatar-date'] < datetime_convert('','','now -14 days')) ? true : false);
858
859                 // check that we have all the photos, this has been known to fail on occasion
860
861                 if((! $r[0]['photo']) || (! $r[0]['thumb']) || (! $r[0]['micro']) || ($update_photo)) {
862                         require_once("Photo.php");
863
864                         $photos = import_profile_photo($contact->image->url, $uid, $r[0]['id']);
865
866                         q("UPDATE `contact` SET `photo` = '%s',
867                                         `thumb` = '%s',
868                                         `micro` = '%s',
869                                         `name-date` = '%s',
870                                         `uri-date` = '%s',
871                                         `avatar-date` = '%s'
872                                         WHERE `id` = %d LIMIT 1
873                                 ",
874                         dbesc($photos[0]),
875                         dbesc($photos[1]),
876                         dbesc($photos[2]),
877                         dbesc(datetime_convert()),
878                         dbesc(datetime_convert()),
879                         dbesc(datetime_convert()),
880                         intval($r[0]['id'])
881                         );
882                 }
883
884         }
885
886         return($r[0]["id"]);
887 }
888
889 function pumpio_dodelete(&$a, $client, $uid, $self, $post) {
890
891         // Two queries for speed issues
892         $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
893                                 dbesc($post->object->id),
894                                 intval($uid)
895                 );
896
897         if (count($r)) {
898                 drop_item($r[0]["id"], $false);
899                 return;
900         }
901
902         $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
903                                 dbesc($post->object->id),
904                                 intval($uid)
905                 );
906
907         if (count($r)) {
908                 drop_item($r[0]["id"], $false);
909                 return;
910         }
911 }
912
913 function pumpio_dopost(&$a, $client, $uid, $self, $post) {
914         require_once('include/items.php');
915
916         if (($post->verb == "like") OR ($post->verb == "favorite")) {
917                 pumpio_dolike(&$a, $uid, $self, $post);
918                 return;
919         }
920
921         if (($post->verb == "unlike") OR ($post->verb == "unfavorite")) {
922                 pumpio_dounlike(&$a, $uid, $self, $post);
923                 return;
924         }
925
926         if ($post->verb == "delete") {
927                 pumpio_dodelete(&$a, $uid, $self, $post);
928                 return;
929         }
930
931         // Only handle these three types
932         if (!strstr("post|share|update", $post->verb))
933                 return;
934
935         if ($post->verb != "update") {
936                 // Two queries for speed issues
937                 $r = q("SELECT * FROM `item` WHERE `uri` = '%s' AND `uid` = %d LIMIT 1",
938                                         dbesc($post->object->id),
939                                         intval($uid)
940                         );
941
942                 if (count($r))
943                         return;
944
945                 $r = q("SELECT * FROM `item` WHERE `extid` = '%s' AND `uid` = %d LIMIT 1",
946                                         dbesc($post->object->id),
947                                         intval($uid)
948                         );
949
950                 if (count($r))
951                         return;
952         }
953
954         $receiptians = array();
955         if (@is_array($post->cc))
956                 $receiptians = array_merge($receiptians, $post->cc);
957
958         if (@is_array($post->to))
959                 $receiptians = array_merge($receiptians, $post->to);
960
961         foreach ($receiptians AS $receiver)
962                 if (is_string($receiver->objectType))
963                         if ($receiver->id == "http://activityschema.org/collection/public")
964                                 $public = true;
965
966         $contact_id = pumpio_get_contact($uid, $post->actor);
967
968         if (!$contact_id)
969                 $contact_id = $self[0]['id'];
970
971         $postarray = array();
972         $postarray['gravity'] = 0;
973         $postarray['uid'] = $uid;
974         $postarray['wall'] = 0;
975         $postarray['uri'] = $post->object->id;
976
977         if ($post->object->objectType != "comment") {
978                 $postarray['parent-uri'] = $post->object->id;
979         } else {
980                 //echo($post->object->inReplyTo->url."\n");
981                 //print_r($post->object->inReplyTo);
982                 //echo $post->object->inReplyTo->likes->url."\n";
983                 //$replies = $post->object->inReplyTo->replies->url;
984                 //$replies = $post->object->likes->pump_io->proxyURL;
985                 //$replies = $post->object->replies->pump_io->proxyURL;
986
987                 /*
988                 //$replies = $post->object->replies->pump_io->proxyURL;
989
990                 if ($replies != "") {
991                         $success = $client->CallAPI($replies, 'GET', array(), array('FailOnAccessError'=>true), $replydata);
992                         print_r($replydata);
993                 } else
994                         print_r($post);
995                 */
996
997                 $reply->verb = "note";
998                 $reply->cc = $post->cc;
999                 $reply->to = $post->to;
1000                 $reply->object->objectType = $post->object->inReplyTo->objectType;
1001                 $reply->object->content = $post->object->inReplyTo->content;
1002                 $reply->object->id = $post->object->inReplyTo->id;
1003                 $reply->actor = $post->object->inReplyTo->author;
1004                 $reply->url = $post->object->inReplyTo->url;
1005                 $reply->generator->displayName = "pumpio";
1006                 $reply->published = $post->object->inReplyTo->published;
1007                 $reply->received = $post->object->inReplyTo->updated;
1008                 $reply->url = $post->object->inReplyTo->url;
1009                 pumpio_dopost(&$a, $client, $uid, $self, $reply);
1010
1011                 $postarray['parent-uri'] = $post->object->inReplyTo->id;
1012         }
1013
1014         $postarray['contact-id'] = $contact_id;
1015         $postarray['verb'] = ACTIVITY_POST;
1016         $postarray['owner-name'] = $post->actor->displayName;
1017         $postarray['owner-link'] = $post->actor->url;
1018         $postarray['owner-avatar'] = $post->actor->image->url;
1019         $postarray['author-name'] = $post->actor->displayName;
1020         $postarray['author-link'] = $post->actor->url;
1021         $postarray['author-avatar'] = $post->actor->image->url;
1022         $postarray['plink'] = $post->object->url;
1023         $postarray['app'] = $post->generator->displayName;
1024         $postarray['body'] = html2bbcode($post->object->content);
1025
1026         if ($post->object->fullImage->url != "")
1027                 $postarray["body"] = "[url=".$post->object->fullImage->url."][img]".$post->object->image->url."[/img][/url]\n".$postarray["body"];
1028
1029         if ($post->object->displayName != "")
1030                 $postarray['title'] = $post->object->displayName;
1031
1032         //$postarray['location'] = ""
1033         $postarray['created'] = datetime_convert('UTC','UTC',$post->published);
1034         $postarray['edited'] = datetime_convert('UTC','UTC',$post->received);
1035         if (!$public) {
1036                 $postarray['private'] = 1;
1037                 $postarray['allow_cid'] = '<' . $self[0]['id'] . '>';
1038         }
1039
1040         if ($post->verb == "share") {
1041                 $postarray['body'] = "[share author='".$post->object->author->displayName.
1042                                 "' profile='".$post->object->author->url.
1043                                 "' avatar='".$post->object->author->image->url.
1044                                 "' link='".$post->links->self->href."']".$postarray['body']."[/share]";
1045         }
1046
1047         if (trim($postarray['body']) == "")
1048                 return;
1049
1050         $top_item = item_store($postarray);
1051
1052         if (($top_item == 0) AND ($post->verb == "update")) {
1053                 $r = q("UPDATE `item` SET `title` = '%s', `body` = '%s' , `changed` = '%s' WHERE `uri` = '%s' AND `uid` = %d",
1054                         dbesc($postarray["title"]),
1055                         dbesc($postarray["body"]),
1056                         dbesc($postarray["edited"]),
1057                         dbesc($postarray["uri"]),
1058                         intval($uid)
1059                         );
1060         }
1061
1062         if ($post->object->objectType == "comment") {
1063
1064                 $hostname = get_pconfig($uid, 'pumpio','host');
1065                 $username = get_pconfig($uid, "pumpio", "user");
1066
1067                 $foreign_url = "https://".$hostname."/".$username;
1068
1069                 $user = q("SELECT * FROM `user` WHERE `uid` = %d AND `account_expired` = 0 LIMIT 1",
1070                                 intval($uid)
1071                         );
1072
1073                 if(!count($user))
1074                         return;
1075
1076                 $importer_url = $a->get_baseurl() . '/profile/' . $user[0]['nickname'];
1077
1078                 if (link_compare($foreign_url, $postarray['author-link']))
1079                         return;
1080
1081                 $myconv = q("SELECT `author-link`, `author-avatar`, `parent` FROM `item` WHERE `parent-uri` = '%s' AND `uid` = %d AND `parent` != 0 AND `deleted` = 0",
1082                                 dbesc($postarray['parent-uri']),
1083                                 intval($uid)
1084                                 );
1085
1086                 if(count($myconv)) {
1087
1088                         foreach($myconv as $conv) {
1089                                 // now if we find a match, it means we're in this conversation
1090
1091                                 if(!link_compare($conv['author-link'],$importer_url) AND !link_compare($conv['author-link'],$foreign_url))
1092                                         continue;
1093
1094                                 require_once('include/enotify.php');
1095
1096                                 $conv_parent = $conv['parent'];
1097
1098                                 notification(array(
1099                                         'type'         => NOTIFY_COMMENT,
1100                                         'notify_flags' => $user[0]['notify-flags'],
1101                                         'language'     => $user[0]['language'],
1102                                         'to_name'      => $user[0]['username'],
1103                                         'to_email'     => $user[0]['email'],
1104                                         'uid'          => $user[0]['uid'],
1105                                         'item'         => $postarray,
1106                                         'link'             => $a->get_baseurl() . '/display/' . $user[0]['nickname'] . '/' . $top_item,
1107                                         'source_name'  => $postarray['author-name'],
1108                                         'source_link'  => $postarray['author-link'],
1109                                         'source_photo' => $postarray['author-avatar'],
1110                                         'verb'         => ACTIVITY_POST,
1111                                         'otype'        => 'item',
1112                                         'parent'       => $conv_parent,
1113                                         ));
1114
1115                                 // only send one notification
1116                                 break;
1117                         }
1118                 }
1119         }
1120 }
1121
1122 function pumpio_fetchinbox($a, $uid) {
1123
1124         $ckey    = get_pconfig($uid, 'pumpio', 'consumer_key');
1125         $csecret = get_pconfig($uid, 'pumpio', 'consumer_secret');
1126         $otoken  = get_pconfig($uid, 'pumpio', 'oauth_token');
1127         $osecret = get_pconfig($uid, 'pumpio', 'oauth_token_secret');
1128         $lastdate = get_pconfig($uid, 'pumpio', 'lastdate');
1129         $hostname = get_pconfig($uid, 'pumpio','host');
1130         $username = get_pconfig($uid, "pumpio", "user");
1131
1132         $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
1133                 intval($uid));
1134
1135         $client = new oauth_client_class;
1136         $client->oauth_version = '1.0a';
1137         $client->authorization_header = true;
1138         $client->url_parameters = false;
1139
1140         $client->client_id = $ckey;
1141         $client->client_secret = $csecret;
1142         $client->access_token = $otoken;
1143         $client->access_token_secret = $osecret;
1144
1145         $last_id = get_pconfig($uid,'pumpio','last_id');
1146
1147         $url = 'https://'.$hostname.'/api/user/'.$username.'/inbox';
1148
1149         if ($last_id != "")
1150                 $url .= '?since='.urlencode($last_id);
1151
1152         $success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $user);
1153         $posts = array_reverse($user->items);
1154
1155         if (count($posts))
1156                 foreach ($posts as $post) {
1157                         $last_id = $post->id;
1158                         pumpio_dopost(&$a, $client, $uid, $self, $post);
1159                 }
1160
1161         set_pconfig($uid,'pumpio','last_id', $last_id);
1162
1163         // Fetching the minor events
1164         $last_minor_id = get_pconfig($uid,'pumpio','last_minor_id');
1165
1166         $url = 'https://'.$hostname.'/api/user/'.$username.'/inbox/minor';
1167
1168         if ($last_minor_id != "")
1169                 $url .= '?since='.urlencode($last_minor_id);
1170
1171         $success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $user);
1172         $posts = array_reverse($user->items);
1173
1174         if (count($posts))
1175                 foreach ($posts as $post) {
1176                         $last_minor_id = $post->id;
1177                         pumpio_dopost(&$a, $client, $uid, $self, $post);
1178                 }
1179
1180         set_pconfig($uid,'pumpio','last_minor_id', $last_minor_id);
1181 }
1182
1183 function pumpio_getallusers($a, $uid) {
1184         $ckey    = get_pconfig($uid, 'pumpio', 'consumer_key');
1185         $csecret = get_pconfig($uid, 'pumpio', 'consumer_secret');
1186         $otoken  = get_pconfig($uid, 'pumpio', 'oauth_token');
1187         $osecret = get_pconfig($uid, 'pumpio', 'oauth_token_secret');
1188         $hostname = get_pconfig($uid, 'pumpio','host');
1189         $username = get_pconfig($uid, "pumpio", "user");
1190
1191         $client = new oauth_client_class;
1192         $client->oauth_version = '1.0a';
1193         $client->authorization_header = true;
1194         $client->url_parameters = false;
1195
1196         $client->client_id = $ckey;
1197         $client->client_secret = $csecret;
1198         $client->access_token = $otoken;
1199         $client->access_token_secret = $osecret;
1200
1201         $url = 'https://'.$hostname.'/api/user/'.$username.'/following';
1202
1203         $success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $users);
1204
1205         if ($users->totalItems > count($users->items)) {
1206                 $url = 'https://'.$hostname.'/api/user/'.$username.'/following?count='.$users->totalItems;
1207
1208                 $success = $client->CallAPI($url, 'GET', array(), array('FailOnAccessError'=>true), $users);
1209         }
1210
1211         foreach ($users->items AS $user)
1212                 echo pumpio_get_contact($uid, $user)."\n";
1213 }
1214
1215 function pumpio_queue_hook(&$a,&$b) {
1216
1217         $qi = q("SELECT * FROM `queue` WHERE `network` = '%s'",
1218                 dbesc(NETWORK_PUMPIO)
1219         );
1220         if(! count($qi))
1221                 return;
1222
1223         require_once('include/queue_fn.php');
1224
1225         foreach($qi as $x) {
1226                 if($x['network'] !== NETWORK_PUMPIO)
1227                         continue;
1228
1229                 logger('pumpio_queue: run');
1230
1231                 $r = q("SELECT `user`.* FROM `user` LEFT JOIN `contact` on `contact`.`uid` = `user`.`uid` 
1232                         WHERE `contact`.`self` = 1 AND `contact`.`id` = %d LIMIT 1",
1233                         intval($x['cid'])
1234                 );
1235                 if(! count($r))
1236                         continue;
1237
1238                 $user = $r[0];
1239
1240                 $oauth_token = get_pconfig($user['uid'], "pumpio", "oauth_token");
1241                 $oauth_token_secret = get_pconfig($user['uid'], "pumpio", "oauth_token_secret");
1242                 $consumer_key = get_pconfig($user['uid'], "pumpio","consumer_key");
1243                 $consumer_secret = get_pconfig($user['uid'], "pumpio","consumer_secret");
1244
1245                 $host = get_pconfig($user['uid'], "pumpio", "host");
1246                 $user = get_pconfig($user['uid'], "pumpio", "user");
1247
1248                 $success = false;
1249
1250                 if ($oauth_token AND $oauth_token_secret AND
1251                         $consumer_key AND $consumer_secret) {
1252                         $username = $user.'@'.$host;
1253
1254                         logger('pumpio_queue: able to post for user '.$username);
1255
1256                         $z = unserialize($x['content']);
1257
1258                         $client = new oauth_client_class;
1259                         $client->oauth_version = '1.0a';
1260                         $client->url_parameters = false;
1261                         $client->authorization_header = true;
1262                         $client->access_token = $oauth_token;
1263                         $client->access_token_secret = $oauth_token_secret;
1264                         $client->client_id = $consumer_key;
1265                         $client->client_secret = $consumer_secret;
1266
1267                         $success = $client->CallAPI($z['url'], 'POST', $z['post'], array('FailOnAccessError'=>true, 'RequestContentType'=>'application/json'), $user);
1268
1269                         if($success) {
1270                                 $post_id = $user->object->id;
1271                                 logger('pumpio_queue: send '.$username.': success '.$post_id);
1272                                 if($post_id AND $iscomment) {
1273                                         logger('pumpio_send '.$username.': Update extid '.$post_id." for post id ".$z['item']);
1274                                         q("UPDATE `item` SET `extid` = '%s' WHERE `id` = %d LIMIT 1",
1275                                                 dbesc($post_id),
1276                                                 intval($z['item'])
1277                                         );
1278                                 }
1279                                 remove_queue_item($x['id']);
1280                         } else
1281                                 logger('pumpio_queue: send '.$username.': '.$url.' general error: ' . print_r($user,true));
1282                 } else
1283                         logger("pumpio_queue: Error getting tokens for user ".$user['uid']);
1284
1285                 if (!$success) {
1286                         logger('pumpio_queue: delayed');
1287                         update_queue_time($x['id']);
1288                 }
1289         }
1290 }
1291
1292 /*
1293 To-Do:
1294  - double likes?
1295  - importing unlike
1296
1297 Could be hard to do:
1298  - Threads completion
1299  - edit own posts
1300  - delete own posts
1301
1302 Problem:
1303  - refresh after post
1304
1305 */