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