]> git.mxchange.org Git - friendica-addons.git/blob - fromgplus/fromgplus.php
Merge pull request #327 from rabuzarus/forumlist
[friendica-addons.git] / fromgplus / fromgplus.php
1 <?php
2 /**
3  * Name: From GPlus
4  * Description: Imports posts from a Google+ account and repeats them
5  * Version: 0.1
6  * Author: Michael Vogel <ike@piratenpartei.de>
7  *
8  */
9
10 define('FROMGPLUS_DEFAULT_POLL_INTERVAL', 30); // given in minutes
11
12 require_once('mod/share.php');
13
14 function fromgplus_install() {
15         register_hook('connector_settings', 'addon/fromgplus/fromgplus.php', 'fromgplus_addon_settings');
16         register_hook('connector_settings_post', 'addon/fromgplus/fromgplus.php', 'fromgplus_addon_settings_post');
17         register_hook('cron', 'addon/fromgplus/fromgplus.php', 'fromgplus_cron');
18 }
19
20 function fromgplus_uninstall() {
21         unregister_hook('connector_settings', 'addon/fromgplus/fromgplus.php', 'fromgplus_addon_settings');
22         unregister_hook('connector_settings_post', 'addon/fromgplus/fromgplus.php', 'fromgplus_addon_settings_post');
23         unregister_hook('cron', 'addon/fromgplus/fromgplus.php', 'fromgplus_cron');
24
25         // Old hooks
26         unregister_hook('plugin_settings', 'addon/fromgplus/fromgplus.php', 'fromgplus_addon_settings');
27         unregister_hook('plugin_settings_post', 'addon/fromgplus/fromgplus.php', 'fromgplus_addon_settings_post');
28 }
29
30 function fromgplus_addon_settings(&$a,&$s) {
31
32         if(! local_user())
33                 return;
34
35         // If "gpluspost" is installed as well, then the settings are displayed there
36         $result = q("SELECT `installed` FROM `addon` WHERE `name` = 'gpluspost' AND `installed`");
37         if (count($result) > 0)
38                 return;
39
40         $enable_checked = (intval(get_pconfig(local_user(),'fromgplus','enable')) ? ' checked="checked"' : '');
41         $account = get_pconfig(local_user(),'fromgplus','account');
42
43         $s .= '<span id="settings_fromgplus_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_fromgplus_expanded\'); openClose(\'settings_fromgplus_inflated\');">';
44         $s .= '<img class="connector" src="images/googleplus.png" /><h3 class="connector">'. t('Google+ Mirror').'</h3>';
45         $s .= '</span>';
46         $s .= '<div id="settings_fromgplus_expanded" class="settings-block" style="display: none;">';
47         $s .= '<span class="fakelink" onclick="openClose(\'settings_fromgplus_expanded\'); openClose(\'settings_fromgplus_inflated\');">';
48         $s .= '<img class="connector" src="images/googleplus.png" /><h3 class="connector">'. t('Google+ Mirror').'</h3>';
49         $s .= '</span>';
50
51         $s .= '<div id="fromgplus-wrapper">';
52
53         $s .= '<label id="fromgplus-enable-label" for="fromgplus-enable">'.t('Enable Google+ Import').'</label>';
54         $s .= '<input id="fromgplus-enable" type="checkbox" name="fromgplus-enable" value="1"'.$enable_checked.' />';
55         $s .= '<div class="clear"></div>';
56         $s .= '<label id="fromgplus-label" for="fromgplus-account">'.t('Google Account ID').' </label>';
57         $s .= '<input id="fromgplus-account" type="text" name="fromgplus-account" value="'.$account.'" />';
58         $s .= '</div><div class="clear"></div>';
59
60         $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="fromgplus-submit" name="fromgplus-submit" 
61 class="settings-submit" value="' . t('Save Settings') . '" /></div>';
62         $s .= '</div>';
63
64         return;
65 }
66
67 function fromgplus_addon_settings_post(&$a,&$b) {
68
69         if(! local_user())
70                 return;
71
72         if($_POST['fromgplus-submit']) {
73                 set_pconfig(local_user(),'fromgplus','account',trim($_POST['fromgplus-account']));
74                 $enable = ((x($_POST,'fromgplus-enable')) ? intval($_POST['fromgplus-enable']) : 0);
75                 set_pconfig(local_user(),'fromgplus','enable', $enable);
76
77                 if (!$enable)
78                         del_pconfig(local_user(),'fromgplus','lastdate');
79
80                 info( t('Google+ Import Settings saved.') . EOL);
81         }
82 }
83
84 function fromgplus_plugin_admin(&$a, &$o){
85         $t = get_markup_template("admin.tpl", "addon/fromgplus/");
86
87         $o = replace_macros($t, array(
88                 '$submit' => t('Save Settings'),
89                 '$key' => array('key', t('Key'), trim(get_config('fromgplus', 'key')), t('')),
90         ));
91 }
92
93 function fromgplus_plugin_admin_post(&$a){
94         $key = ((x($_POST,'key')) ? trim($_POST['key']) : '');
95         set_config('fromgplus','key',$key);
96         info( t('Settings updated.'). EOL );
97 }
98
99 function fromgplus_cron($a,$b) {
100         $last = get_config('fromgplus','last_poll');
101
102         $poll_interval = intval(get_config('fromgplus','poll_interval'));
103         if(! $poll_interval)
104                 $poll_interval = FROMGPLUS_DEFAULT_POLL_INTERVAL;
105
106         if($last) {
107                 $next = $last + ($poll_interval * 60);
108                 if($next > time()) {
109                         logger('fromgplus: poll intervall not reached');
110                         return;
111                 }
112         }
113
114         logger('fromgplus: cron_start');
115
116         $r = q("SELECT * FROM `pconfig` WHERE `cat` = 'fromgplus' AND `k` = 'enable' AND `v` = '1' ORDER BY RAND() ");
117         if(count($r)) {
118                 foreach($r as $rr) {
119                         $account = get_pconfig($rr['uid'],'fromgplus','account');
120                         if ($account) {
121                         logger('fromgplus: fetching for user '.$rr['uid']);
122                                 fromgplus_fetch($a, $rr['uid']);
123                         }
124                 }
125         }
126
127         logger('fromgplus: cron_end');
128
129         set_config('fromgplus','last_poll', time());
130 }
131
132 function fromgplus_post($a, $uid, $source, $body, $location) {
133
134         //$uid = 2;
135
136         // Don't know what it is. Maybe some trash from the mobile client
137         $trash = html_entity_decode("&#xFEFF;", ENT_QUOTES, 'UTF-8');
138         $body = str_replace($trash, "", $body);
139
140         $body = trim($body);
141
142         if (substr($body, 0, 3) == "[b]") {
143                 $pos = strpos($body, "[/b]");
144                 $title = substr($body, 3, $pos-3);
145                 $body = trim(substr($body, $pos+4));
146         } else
147                 $title = "";
148
149         $_SESSION['authenticated'] = true;
150         $_SESSION['uid'] = $uid;
151
152         unset($_REQUEST);
153         $_REQUEST['type'] = 'wall';
154         $_REQUEST['api_source'] = true;
155
156         $_REQUEST['profile_uid'] = $uid;
157         $_REQUEST['source'] = $source;
158         $_REQUEST['extid'] = NETWORK_GPLUS;
159
160         // $_REQUEST['verb']
161         // $_REQUEST['parent']
162         // $_REQUEST['parent_uri']
163
164         $_REQUEST['title'] = $title;
165         $_REQUEST['body'] = $body;
166         $_REQUEST['location'] = $location;
167
168         if (($_REQUEST['title'] == "") AND ($_REQUEST['body'] == "")) {
169                 logger('fromgplus: empty post for user '.$uid." ".print_r($_REQUEST, true));
170                 return;
171         }
172
173         require_once('mod/item.php');
174         //print_r($_REQUEST);
175         logger('fromgplus: posting for user '.$uid." ".print_r($_REQUEST, true));
176         item_post($a);
177         logger('fromgplus: done for user '.$uid);
178 }
179
180 function fromgplus_html2bbcode($html) {
181
182         $bbcode = html_entity_decode($html, ENT_QUOTES, 'UTF-8');
183
184         $bbcode = str_ireplace(array("\n"), array(""), $bbcode);
185         $bbcode = str_ireplace(array("<b>", "</b>"), array("[b]", "[/b]"), $bbcode);
186         $bbcode = str_ireplace(array("<i>", "</i>"), array("[i]", "[/i]"), $bbcode);
187         $bbcode = str_ireplace(array("<s>", "</s>"), array("[s]", "[/s]"), $bbcode);
188         $bbcode = str_ireplace(array("<br />"), array("\n"), $bbcode);
189         $bbcode = str_ireplace(array("<br/>"), array("\n"), $bbcode);
190         $bbcode = str_ireplace(array("<br>"), array("\n"), $bbcode);
191
192         $bbcode = trim(strip_tags($bbcode));
193         return($bbcode);
194 }
195
196 function fromgplus_parse_query($var)
197  {
198         /**
199         *  Use this function to parse out the query array element from
200         *  the output of parse_url().
201         */
202         $var  = parse_url($var, PHP_URL_QUERY);
203         $var  = html_entity_decode($var);
204         $var  = explode('&', $var);
205         $arr  = array();
206
207         foreach($var as $val) {
208                 $x          = explode('=', $val);
209                 $arr[$x[0]] = $x[1];
210         }
211         unset($val, $x, $var);
212         return $arr;
213 }
214
215 function fromgplus_cleanupgoogleproxy($fullImage, $image) {
216         //$preview = "/w".$fullImage->width."-h".$fullImage->height."/";
217         //$preview2 = "/w".$fullImage->width."-h".$fullImage->height."-p/";
218         //$fullImage = str_replace(array($preview, $preview2), array("/", "/"), $fullImage->url);
219         $fullImage = $fullImage->url;
220
221         //$preview = "/w".$image->width."-h".$image->height."/";
222         //$preview2 = "/w".$image->width."-h".$image->height."-p/";
223         //$image = str_replace(array($preview, $preview2), array("/", "/"), $image->url);
224         $image = $image->url;
225
226         $cleaned = array();
227
228         $queryvar = fromgplus_parse_query($fullImage);
229         if ($queryvar['url'] != "")
230                 $cleaned["full"] = urldecode($queryvar['url']);
231         else
232                 $cleaned["full"] = $fullImage;
233         if (@exif_imagetype($cleaned["full"]) == 0)
234                 $cleaned["full"] = "";
235
236         $queryvar = fromgplus_parse_query($image);
237         if ($queryvar['url'] != "")
238                 $cleaned["preview"] = urldecode($queryvar['url']);
239         else
240                 $cleaned["preview"] = $image;
241         if (@exif_imagetype($cleaned["preview"]) == 0)
242                 $cleaned["preview"] = "";
243
244         if ($cleaned["full"] == "") {
245                 $cleaned["full"] = $cleaned["preview"];
246                 $cleaned["preview"] = "";
247         }
248
249         if ($cleaned["full"] != "")
250                 $infoFull = get_photo_info($cleaned["full"]);
251         else
252                 $infoFull = array("0" => 0, "1" => 0);
253
254         if ($cleaned["preview"] != "")
255                 $infoPreview = get_photo_info($cleaned["preview"]);
256         else
257                 $infoFull = array("0" => 0, "1" => 0);
258
259         if (($infoPreview[0] >= $infoFull[0]) AND ($infoPreview[1] >= $infoFull[1])) {
260                 $temp = $cleaned["full"];
261                 $cleaned["full"] = $cleaned["preview"];
262                 $cleaned["preview"] = $temp;
263         }
264
265         if (($cleaned["full"] == $cleaned["preview"]) OR (($infoPreview[0] == $infoFull[0]) AND ($infoPreview[1] == $infoFull[1])))
266                 $cleaned["preview"] = "";
267
268         if ($cleaned["full"] == "")
269                 if (@exif_imagetype($fullImage) != 0)
270                         $cleaned["full"] = $fullImage;
271
272         if ($cleaned["full"] == "")
273                 if (@exif_imagetype($image) != 0)
274                         $cleaned["full"] = $image;
275
276         // Could be changed in the future to a link to the album
277         $cleaned["page"] = $cleaned["full"];
278
279         return($cleaned);
280 }
281
282 function fromgplus_cleantext($text) {
283
284         // Don't know what it is. But it is added to the text.
285         $trash = html_entity_decode("&#xFEFF;", ENT_QUOTES, 'UTF-8');
286
287         $text = strip_tags($text);
288         $text = html_entity_decode($text, ENT_QUOTES);
289         $text = trim($text);
290         $text = str_replace(array("\n", "\r", " ", $trash), array("", "", "", ""), $text);
291         return($text);
292 }
293
294 function fromgplus_handleattachments($a, $uid, $item, $displaytext, $shared) {
295         require_once("include/Photo.php");
296         require_once("include/items.php");
297         require_once("include/network.php");
298
299         $post = "";
300         $quote = "";
301         $pagedata = array();
302         $pagedata["type"] = "";
303
304         foreach ($item->object->attachments as $attachment) {
305                 switch($attachment->objectType) {
306                         case "video":
307                                 $pagedata["type"] = "video";
308                                 $pagedata["url"] = original_url($attachment->url);
309                                 $pagedata["title"] = fromgplus_html2bbcode($attachment->displayName);
310                                 break;
311
312                         case "article":
313                                 $pagedata["type"] = "link";
314                                 $pagedata["url"] = original_url($attachment->url);
315                                 $pagedata["title"] = fromgplus_html2bbcode($attachment->displayName);
316
317                                 $images = fromgplus_cleanupgoogleproxy($attachment->fullImage, $attachment->image);
318                                 if ($images["full"] != "")
319                                         $pagedata["images"][0]["src"] = $images["full"];
320
321                                 $quote = trim(fromgplus_html2bbcode($attachment->content));
322
323                                 if ($quote != "")
324                                         $pagedata["text"] = $quote;
325
326                                 break;
327
328                         case "photo":
329                                 // Don't store shared pictures in your wall photos (to prevent a possible violating of licenses)
330                                 if ($shared)
331                                         $images = fromgplus_cleanupgoogleproxy($attachment->fullImage, $attachment->image);
332                                 else {
333                                         if ($attachment->fullImage->url != "")
334                                                 $images = store_photo($a, $uid, "", $attachment->fullImage->url);
335                                         elseif ($attachment->image->url != "")
336                                                 $images = store_photo($a, $uid, "", $attachment->image->url);
337                                 }
338
339                                 if ($images["preview"] != "") {
340                                         $post .= "\n[url=".$images["page"]."][img]".$images["preview"]."[/img][/url]\n";
341                                         $pagedata["images"][0]["src"] = $images["preview"];
342                                         $pagedata["url"] = $images["page"];
343                                 } elseif ($images["full"] != "") {
344                                         $post .= "\n[img]".$images["full"]."[/img]\n";
345                                         $pagedata["images"][0]["src"] = $images["full"];
346
347                                         if ($images["preview"] != "")
348                                                 $pagedata["images"][1]["src"] = $images["preview"];
349                                 }
350
351                                 if (($attachment->displayName != "") AND (fromgplus_cleantext($attachment->displayName) != fromgplus_cleantext($displaytext))) {
352                                         $post .= fromgplus_html2bbcode($attachment->displayName)."\n";
353                                         $pagedata["title"] = fromgplus_html2bbcode($attachment->displayName);
354                                 }
355                                 break;
356
357                         case "photo-album":
358                                 $pagedata["url"] = original_url($attachment->url);
359                                 $pagedata["title"] = fromgplus_html2bbcode($attachment->displayName);
360                                 $post .= "\n\n[bookmark=".$pagedata["url"]."]".$pagedata["title"]."[/bookmark]\n";
361
362                                 $images = fromgplus_cleanupgoogleproxy($attachment->fullImage, $attachment->image);
363
364                                 if ($images["preview"] != "") {
365                                         $post .= "\n[url=".$images["full"]."][img]".$images["preview"]."[/img][/url]\n";
366                                         $pagedata["images"][0]["src"] = $images["preview"];
367                                         $pagedata["url"] = $images["full"];
368                                 } elseif ($images["full"] != "") {
369                                         $post .= "\n[img]".$images["full"]."[/img]\n";
370                                         $pagedata["images"][0]["src"] = $images["full"];
371
372                                         if ($images["preview"] != "")
373                                                 $pagedata["images"][1]["src"] = $images["preview"];
374                                 }
375                                 break;
376
377                         case "album":
378                                 $pagedata["type"] = "link";
379                                 $pagedata["url"] = original_url($attachment->url);
380                                 $pagedata["title"] = fromgplus_html2bbcode($attachment->displayName);
381
382                                 $thumb = $attachment->thumbnails[0];
383                                 $pagedata["images"][0]["src"] = $thumb->image->url;
384
385                                 $quote = trim(fromgplus_html2bbcode($thumb->description));
386                                 if ($quote != "")
387                                         $pagedata["text"] = $quote;
388
389                                 break;
390
391                         case "audio":
392                                 $pagedata["url"] = original_url($attachment->url);
393                                 $pagedata["title"] = fromgplus_html2bbcode($attachment->displayName);
394                                 $post .= "\n\n[bookmark=".$pagedata["url"]."]".$pagedata["title"]."[/bookmark]\n";
395                                 break;
396
397                         //default:
398                         //      die($attachment->objectType);
399                 }
400         }
401
402         if ($pagedata["type"] != "")
403                 return(add_page_info_data($pagedata));
404
405         return($post.$quote);
406 }
407
408 function fromgplus_fetch($a, $uid) {
409         $maxfetch = 20;
410
411         // Special blank to identify postings from the googleplus connector
412         $blank = html_entity_decode("&#x00A0;", ENT_QUOTES, 'UTF-8');
413
414         $account = get_pconfig($uid,'fromgplus','account');
415         $key = get_config('fromgplus','key');
416
417         $result = fetch_url("https://www.googleapis.com/plus/v1/people/".$account."/activities/public?alt=json&pp=1&key=".$key."&maxResults=".$maxfetch);
418         //$result = file_get_contents("google.txt");
419         //$result = file_get_contents("addon/fromgplus/album.txt");
420         //file_put_contents("google.txt", $result);
421
422         $activities = json_decode($result);
423
424         $initiallastdate = get_pconfig($uid,'fromgplus','lastdate');
425
426         $first_time = ($initiallastdate == "");
427
428         $lastdate = 0;
429
430         if (!is_array($activities->items))
431                 return;
432
433         $reversed = array_reverse($activities->items);
434
435         foreach($reversed as $item) {
436
437                 if (strtotime($item->published) <= $initiallastdate)
438                         continue;
439
440                 // Don't publish items that are too young
441                 if (strtotime($item->published) > (time() - 3*60)) {
442                         logger('fromgplus_fetch: item too new '.$item->published);
443                         continue;
444                 }
445
446                 if ($lastdate < strtotime($item->published))
447                         $lastdate = strtotime($item->published);
448
449                 if ($first_time)
450                         continue;
451
452                 if ($item->access->description == "Public") {
453
454                         // Loop prevention through the special blank from the googleplus connector
455                         //if (strstr($item->object->content, $blank))
456                         if (strrpos($item->object->content, $blank) >= strlen($item->object->content) - 5)
457                                 continue;
458
459                         switch($item->object->objectType) {
460                                 case "note":
461                                         $post = fromgplus_html2bbcode($item->object->content);
462
463                                         if (is_array($item->object->attachments))
464                                                 $post .= fromgplus_handleattachments($a, $uid, $item, $item->object->content, false);
465
466                                         // geocode, placeName
467                                         if (isset($item->address))
468                                                 $location = $item->address;
469                                         else
470                                                 $location = "";
471
472                                         //fromgplus_post($a, $uid, "Google+", $post, $location);
473                                         fromgplus_post($a, $uid, $item->provider->title, $post, $location);
474
475                                         break;
476
477                                 case "activity":
478                                         $post = fromgplus_html2bbcode($item->annotation)."\n";
479
480                                         if (!intval(get_config('system','old_share'))) {
481
482                                                 if (function_exists("share_header"))
483                                                         $post .= share_header($item->object->actor->displayName, $item->object->actor->url,
484                                                                                 $item->object->actor->image->url, "",
485                                                                                 datetime_convert('UTC','UTC',$item->object->published),$item->object->url);
486                                                 else
487                                                         $post .= "[share author='".str_replace("'", "&#039;",$item->object->actor->displayName).
488                                                                         "' profile='".$item->object->actor->url.
489                                                                         "' avatar='".$item->object->actor->image->url.
490                                                                         "' posted='".datetime_convert('UTC','UTC',$item->object->published).
491                                                                         "' link='".$item->object->url."']";
492
493                                                 $post .= fromgplus_html2bbcode($item->object->content);
494
495                                                 if (is_array($item->object->attachments))
496                                                         $post .= "\n".trim(fromgplus_handleattachments($a, $uid, $item, $item->object->content, true));
497
498                                                 $post .= "[/share]";
499                                         } else {
500                                                 $post .= fromgplus_html2bbcode("&#x2672;");
501                                                 $post .= " [url=".$item->object->actor->url."]".$item->object->actor->displayName."[/url] \n";
502                                                 $post .= fromgplus_html2bbcode($item->object->content);
503
504                                                 if (is_array($item->object->attachments))
505                                                         $post .= "\n".trim(fromgplus_handleattachments($a, $uid, $item, $item->object->content, true));
506                                         }
507
508                                         if (isset($item->address))
509                                                 $location = $item->address;
510                                         else
511                                                 $location = "";
512
513                                         //fromgplus_post($a, $uid, "Google+", $post, $location);
514                                         fromgplus_post($a, $uid, $item->provider->title, $post, $location);
515                                         break;
516                         }
517                 }
518         }
519         if ($lastdate != 0)
520                 set_pconfig($uid,'fromgplus','lastdate', $lastdate);
521 }