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