]> git.mxchange.org Git - friendica.git/blob - include/socgraph.php
Merge pull request #2267 from annando/1601-gs-discovery
[friendica.git] / include / socgraph.php
1 <?php
2 /**
3  * @file include/socgraph.php
4  * 
5  * @todo Move GNU Social URL schemata (http://server.tld/user/number) to http://server.tld/username
6  * @todo Fetch profile data from profile page for Redmatrix users
7  * @todo Detect if it is a forum
8  */
9
10 require_once('include/datetime.php');
11 require_once("include/Scrape.php");
12 require_once("include/html2bbcode.php");
13
14
15 /*
16  * poco_load
17  *
18  * Given a contact-id (minimum), load the PortableContacts friend list for that contact,
19  * and add the entries to the gcontact (Global Contact) table, or update existing entries
20  * if anything (name or photo) has changed.
21  * We use normalised urls for comparison which ignore http vs https and www.domain vs domain
22  *
23  * Once the global contact is stored add (if necessary) the contact linkage which associates
24  * the given uid, cid to the global contact entry. There can be many uid/cid combinations
25  * pointing to the same global contact id.
26  *
27  */
28
29
30
31
32 function poco_load($cid,$uid = 0,$zcid = 0,$url = null) {
33
34         $a = get_app();
35
36         if($cid) {
37                 if((! $url) || (! $uid)) {
38                         $r = q("select `poco`, `uid` from `contact` where `id` = %d limit 1",
39                                 intval($cid)
40                         );
41                         if(count($r)) {
42                                 $url = $r[0]['poco'];
43                                 $uid = $r[0]['uid'];
44                         }
45                 }
46                 if(! $uid)
47                         return;
48         }
49
50         if(! $url)
51                 return;
52
53         $url = $url . (($uid) ? '/@me/@all?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation' : '?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation') ;
54
55         logger('poco_load: ' . $url, LOGGER_DEBUG);
56
57         $s = fetch_url($url);
58
59         logger('poco_load: returns ' . $s, LOGGER_DATA);
60
61         logger('poco_load: return code: ' . $a->get_curl_code(), LOGGER_DEBUG);
62
63         if(($a->get_curl_code() > 299) || (! $s))
64                 return;
65
66         $j = json_decode($s);
67
68         logger('poco_load: json: ' . print_r($j,true),LOGGER_DATA);
69
70         if(! isset($j->entry))
71                 return;
72
73         $total = 0;
74         foreach($j->entry as $entry) {
75
76                 $total ++;
77                 $profile_url = '';
78                 $profile_photo = '';
79                 $connect_url = '';
80                 $name = '';
81                 $network = '';
82                 $updated = '0000-00-00 00:00:00';
83                 $location = '';
84                 $about = '';
85                 $keywords = '';
86                 $gender = '';
87                 $generation = 0;
88
89                 $name = $entry->displayName;
90
91                 if(isset($entry->urls)) {
92                         foreach($entry->urls as $url) {
93                                 if($url->type == 'profile') {
94                                         $profile_url = $url->value;
95                                         continue;
96                                 }
97                                 if($url->type == 'webfinger') {
98                                         $connect_url = str_replace('acct:' , '', $url->value);
99                                         continue;
100                                 }
101                         }
102                 }
103                 if(isset($entry->photos)) {
104                         foreach($entry->photos as $photo) {
105                                 if($photo->type == 'profile') {
106                                         $profile_photo = $photo->value;
107                                         continue;
108                                 }
109                         }
110                 }
111
112                 if(isset($entry->updated))
113                         $updated = date("Y-m-d H:i:s", strtotime($entry->updated));
114
115                 if(isset($entry->network))
116                         $network = $entry->network;
117
118                 if(isset($entry->currentLocation))
119                         $location = $entry->currentLocation;
120
121                 if(isset($entry->aboutMe))
122                         $about = html2bbcode($entry->aboutMe);
123
124                 if(isset($entry->gender))
125                         $gender = $entry->gender;
126
127                 if(isset($entry->generation) AND ($entry->generation > 0))
128                         $generation = ++$entry->generation;
129
130                 if(isset($entry->tags))
131                         foreach($entry->tags as $tag)
132                                 $keywords = implode(", ", $tag);
133
134                 // If you query a Friendica server for its profiles, the network has to be Friendica
135                 /// TODO It could also be a Redmatrix server
136                 //if ($uid == 0)
137                 //      $network = NETWORK_DFRN;
138
139                 poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $generation, $cid, $uid, $zcid);
140
141                 // Update the Friendica contacts. Diaspora is doing it via a message. (See include/diaspora.php)
142                 if (($location != "") OR ($about != "") OR ($keywords != "") OR ($gender != ""))
143                         q("UPDATE `contact` SET `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s'
144                                 WHERE `nurl` = '%s' AND NOT `self` AND `network` = '%s'",
145                                 dbesc($location),
146                                 dbesc($about),
147                                 dbesc($keywords),
148                                 dbesc($gender),
149                                 dbesc(normalise_link($profile_url)),
150                                 dbesc(NETWORK_DFRN));
151         }
152         logger("poco_load: loaded $total entries",LOGGER_DEBUG);
153
154         q("DELETE FROM `glink` WHERE `cid` = %d AND `uid` = %d AND `zcid` = %d AND `updated` < UTC_TIMESTAMP - INTERVAL 2 DAY",
155                 intval($cid),
156                 intval($uid),
157                 intval($zcid)
158         );
159
160 }
161
162 function poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $generation, $cid = 0, $uid = 0, $zcid = 0) {
163
164         $a = get_app();
165
166         // Generation:
167         //  0: No definition
168         //  1: Profiles on this server
169         //  2: Contacts of profiles on this server
170         //  3: Contacts of contacts of profiles on this server
171         //  4: ...
172
173         $gcid = "";
174
175         $alternate = poco_alternate_ostatus_url($profile_url);
176
177         if ($profile_url == "")
178                 return $gcid;
179
180         $urlparts = parse_url($profile_url);
181         if (!isset($urlparts["scheme"]))
182                 return $gcid;
183
184         if (in_array($urlparts["host"], array("www.facebook.com", "facebook.com", "twitter.com",
185                                                 "identi.ca", "alpha.app.net")))
186                 return $gcid;
187
188         $orig_updated = $updated;
189
190         // Don't store the statusnet connector as network
191         // We can't simply set this to NETWORK_OSTATUS since the connector could have fetched posts from friendica as well
192         if ($network == NETWORK_STATUSNET)
193                 $network = "";
194
195         // The global contacts should contain the original picture, not the cached one
196         if (($generation != 1) AND stristr(normalise_link($profile_photo), normalise_link($a->get_baseurl()."/photo/")))
197                 $profile_photo = "";
198
199         $r = q("SELECT `network` FROM `contact` WHERE `nurl` = '%s' AND `network` != '' AND `network` != '%s' LIMIT 1",
200                 dbesc(normalise_link($profile_url)), dbesc(NETWORK_STATUSNET)
201         );
202         if(count($r))
203                 $network = $r[0]["network"];
204
205         if (($network == "") OR ($network == NETWORK_OSTATUS)) {
206                 $r = q("SELECT `network`, `url` FROM `contact` WHERE `alias` IN ('%s', '%s') AND `network` != '' AND `network` != '%s' LIMIT 1",
207                         dbesc($profile_url), dbesc(normalise_link($profile_url)), dbesc(NETWORK_STATUSNET)
208                 );
209                 if(count($r)) {
210                         $network = $r[0]["network"];
211                         //$profile_url = $r[0]["url"];
212                 }
213         }
214
215         $x = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
216                 dbesc(normalise_link($profile_url))
217         );
218
219         if (count($x)) {
220                 if (($network == "") AND ($x[0]["network"] != NETWORK_STATUSNET))
221                         $network = $x[0]["network"];
222
223                 if ($updated == "0000-00-00 00:00:00")
224                         $updated = $x[0]["updated"];
225
226                 $created = $x[0]["created"];
227                 $server_url = $x[0]["server_url"];
228                 $nick = $x[0]["nick"];
229                 $addr = $x[0]["addr"];
230                 $alias =  $x[0]["alias"];
231                 $notify =  $x[0]["notify"];
232         } else {
233                 $created = "0000-00-00 00:00:00";
234                 $server_url = "";
235
236                 $urlparts = parse_url($profile_url);
237                 $nick = end(explode("/", $urlparts["path"]));
238                 $addr = "";
239                 $alias = "";
240                 $notify = "";
241         }
242
243         if ((($network == "") OR ($name == "") OR ($addr == "") OR ($profile_photo == "") OR ($server_url == "") OR $alternate)
244                 AND poco_reachable($profile_url, $server_url, $network, false)) {
245                 $data = probe_url($profile_url);
246
247                 $orig_profile = $profile_url;
248
249                 $network = $data["network"];
250                 $name = $data["name"];
251                 $nick = $data["nick"];
252                 $addr = $data["addr"];
253                 $alias = $data["alias"];
254                 $notify = $data["notify"];
255                 $profile_url = $data["url"];
256                 $profile_photo = $data["photo"];
257                 $server_url = $data["baseurl"];
258
259                 if ($alternate AND ($network == NETWORK_OSTATUS)) {
260                         // Delete the old entry - if it exists
261                         $r = q("SELECT `id` FROM `gcontact` WHERE `nurl` = '%s'", dbesc(normalise_link($orig_profile)));
262                         if ($r) {
263                                 q("DELETE FROM `gcontact` WHERE `nurl` = '%s'", dbesc(normalise_link($orig_profile)));
264                                 q("DELETE FROM `glink` WHERE `gcid` = %d", intval($r[0]["id"]));
265                         }
266
267                         // possibly create a new entry
268                         poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $generation, $cid, $uid, $zcid);
269                 }
270         }
271
272         if ($alternate AND ($network == NETWORK_OSTATUS))
273                 return $gcid;
274
275         if (count($x) AND ($x[0]["network"] == "") AND ($network != "")) {
276                 q("UPDATE `gcontact` SET `network` = '%s' WHERE `nurl` = '%s'",
277                         dbesc($network),
278                         dbesc(normalise_link($profile_url))
279                 );
280         }
281
282         if (($name == "") OR ($profile_photo == ""))
283                 return $gcid;
284
285         if (!in_array($network, array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA)))
286                 return $gcid;
287
288         logger("profile-check generation: ".$generation." Network: ".$network." URL: ".$profile_url." name: ".$name." avatar: ".$profile_photo, LOGGER_DEBUG);
289
290         poco_check_server($server_url, $network);
291
292         if(count($x)) {
293                 $gcid = $x[0]['id'];
294
295                 if (($location == "") AND ($x[0]['location'] != ""))
296                         $location = $x[0]['location'];
297
298                 if (($about == "") AND ($x[0]['about'] != ""))
299                         $about = $x[0]['about'];
300
301                 if (($gender == "") AND ($x[0]['gender'] != ""))
302                         $gender = $x[0]['gender'];
303
304                 if (($keywords == "") AND ($x[0]['keywords'] != ""))
305                         $keywords = $x[0]['keywords'];
306
307                 if (($addr == "") AND ($x[0]['addr'] != ""))
308                         $addr = $x[0]['addr'];
309
310                 if (($alias == "") AND ($x[0]['alias'] != ""))
311                         $alias = $x[0]['alias'];
312
313                 if (($notify == "") AND ($x[0]['notify'] != ""))
314                         $notify = $x[0]['notify'];
315
316                 if (($generation == 0) AND ($x[0]['generation'] > 0))
317                         $generation = $x[0]['generation'];
318
319                 if($x[0]['name'] != $name || $x[0]['photo'] != $profile_photo || $x[0]['updated'] < $updated) {
320                         q("UPDATE `gcontact` SET `name` = '%s', `addr` = '%s', `network` = '%s', `photo` = '%s', `connect` = '%s', `url` = '%s', `server_url` = '%s',
321                                 `updated` = '%s', `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s', `generation` = %d,
322                                 `alias` = '$s', `notify` = '%s'
323                                 WHERE (`generation` >= %d OR `generation` = 0) AND `nurl` = '%s'",
324                                 dbesc($name),
325                                 dbesc($addr),
326                                 dbesc($network),
327                                 dbesc($profile_photo),
328                                 dbesc($connect_url),
329                                 dbesc($profile_url),
330                                 dbesc($server_url),
331                                 dbesc($updated),
332                                 dbesc($location),
333                                 dbesc($about),
334                                 dbesc($keywords),
335                                 dbesc($gender),
336                                 dbesc($alias),
337                                 dbesc($notify),
338                                 intval($generation),
339                                 intval($generation),
340                                 dbesc(normalise_link($profile_url))
341                         );
342                 }
343         } else {
344                 // Maybe another process had inserted the entry after the first check, so it again
345                 $x = q("SELECT `id` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
346                         dbesc(normalise_link($profile_url))
347                 );
348                 if(!$x) {
349                         q("INSERT INTO `gcontact` (`name`, `nick`, `addr`, `network`, `url`, `nurl`, `photo`, `connect`, `server_url`, `created`, `updated`, `location`, `about`, `keywords`, `gender`, `alias`, `notify`, `generation`)
350                                 VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d)",
351                                 dbesc($name),
352                                 dbesc($nick),
353                                 dbesc($addr),
354                                 dbesc($network),
355                                 dbesc($profile_url),
356                                 dbesc(normalise_link($profile_url)),
357                                 dbesc($profile_photo),
358                                 dbesc($connect_url),
359                                 dbesc($server_url),
360                                 dbesc(datetime_convert()),
361                                 dbesc($updated),
362                                 dbesc($location),
363                                 dbesc($about),
364                                 dbesc($keywords),
365                                 dbesc($gender),
366                                 dbesc($alias),
367                                 dbesc($notify),
368                                 intval($generation)
369                         );
370                         $x = q("SELECT `id` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
371                                 dbesc(normalise_link($profile_url))
372                         );
373                 }
374                 if(count($x))
375                         $gcid = $x[0]['id'];
376         }
377
378         if(! $gcid)
379                 return $gcid;
380
381         $r = q("SELECT * FROM `glink` WHERE `cid` = %d AND `uid` = %d AND `gcid` = %d AND `zcid` = %d LIMIT 1",
382                 intval($cid),
383                 intval($uid),
384                 intval($gcid),
385                 intval($zcid)
386         );
387         if(! count($r)) {
388                 q("INSERT INTO `glink` (`cid`,`uid`,`gcid`,`zcid`, `updated`) VALUES (%d,%d,%d,%d, '%s') ",
389                         intval($cid),
390                         intval($uid),
391                         intval($gcid),
392                         intval($zcid),
393                         dbesc(datetime_convert())
394                 );
395         } else {
396                 q("UPDATE `glink` SET `updated` = '%s' WHERE `cid` = %d AND `uid` = %d AND `gcid` = %d AND `zcid` = %d",
397                         dbesc(datetime_convert()),
398                         intval($cid),
399                         intval($uid),
400                         intval($gcid),
401                         intval($zcid)
402                 );
403         }
404
405         // For unknown reasons there are sometimes duplicates
406         //q("DELETE FROM `gcontact` WHERE `nurl` = '%s' AND `id` != %d AND
407         //      NOT EXISTS (SELECT `gcid` FROM `glink` WHERE `gcid` = `gcontact`.`id`)",
408         //      dbesc(normalise_link($profile_url)),
409         //      intval($gcid)
410         //);
411
412         return $gcid;
413 }
414
415 function poco_reachable($profile, $server = "", $network = "", $force = false) {
416
417         if ($server == "")
418                 $server = poco_detect_server($profile);
419
420         if ($server == "")
421                 return true;
422
423         return poco_check_server($server, $network, $force);
424 }
425
426 function poco_detect_server($profile) {
427
428         // Try to detect the server path based upon some known standard paths
429         $server_url = "";
430
431         if ($server_url == "") {
432                 $friendica = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $profile);
433                 if ($friendica != $profile) {
434                         $server_url = $friendica;
435                         $network = NETWORK_DFRN;
436                 }
437         }
438
439         if ($server_url == "") {
440                 $diaspora = preg_replace("=(https?://)(.*)/u/(.*)=ism", "$1$2", $profile);
441                 if ($diaspora != $profile) {
442                         $server_url = $diaspora;
443                         $network = NETWORK_DIASPORA;
444                 }
445         }
446
447         if ($server_url == "") {
448                 $red = preg_replace("=(https?://)(.*)/channel/(.*)=ism", "$1$2", $profile);
449                 if ($red != $profile) {
450                         $server_url = $red;
451                         $network = NETWORK_DIASPORA;
452                 }
453         }
454
455         return $server_url;
456 }
457
458 function poco_alternate_ostatus_url($url) {
459         return(preg_match("=https?://.+/user/\d+=ism", $url, $matches));
460 }
461
462 function poco_last_updated($profile, $force = false) {
463
464         $gcontacts = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s'",
465                         dbesc(normalise_link($profile)));
466
467         if ($gcontacts[0]["created"] == "0000-00-00 00:00:00")
468                 q("UPDATE `gcontact` SET `created` = '%s' WHERE `nurl` = '%s'",
469                         dbesc(datetime_convert()), dbesc(normalise_link($profile)));
470
471         if ($gcontacts[0]["server_url"] != "")
472                 $server_url = $gcontacts[0]["server_url"];
473         else
474                 $server_url = poco_detect_server($profile);
475
476         if ($server_url != "") {
477                 if (!poco_check_server($server_url, $gcontacts[0]["network"], $force)) {
478
479                         if ($force)
480                                 q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'",
481                                         dbesc(datetime_convert()), dbesc(normalise_link($profile)));
482
483                         return false;
484                 }
485
486                 q("UPDATE `gcontact` SET `server_url` = '%s' WHERE `nurl` = '%s'",
487                         dbesc($server_url), dbesc(normalise_link($profile)));
488         }
489
490         if (in_array($gcontacts[0]["network"], array("", NETWORK_FEED))) {
491                 $server = q("SELECT `network` FROM `gserver` WHERE `nurl` = '%s' AND `network` != ''",
492                         dbesc(normalise_link($server_url)));
493
494                 if ($server)
495                         q("UPDATE `gcontact` SET `network` = '%s' WHERE `nurl` = '%s'",
496                                 dbesc($server[0]["network"]), dbesc(normalise_link($profile)));
497                 else
498                         return;
499         }
500
501         // noscrape is really fast so we don't cache the call.
502         if (($gcontacts[0]["server_url"] != "") AND ($gcontacts[0]["nick"] != "")) {
503
504                 //  Use noscrape if possible
505                 $server = q("SELECT `noscrape` FROM `gserver` WHERE `nurl` = '%s' AND `noscrape` != ''", dbesc(normalise_link($gcontacts[0]["server_url"])));
506
507                 if ($server) {
508                         $noscraperet = z_fetch_url($server[0]["noscrape"]."/".$gcontacts[0]["nick"]);
509
510                          if ($noscraperet["success"] AND ($noscraperet["body"] != "")) {
511
512                                 $noscrape = json_decode($noscraperet["body"], true);
513
514                                 if (($noscrape["fn"] != "") AND ($noscrape["fn"] != $gcontacts[0]["name"]))
515                                         q("UPDATE `gcontact` SET `name` = '%s' WHERE `nurl` = '%s'",
516                                                 dbesc($noscrape["fn"]), dbesc(normalise_link($profile)));
517
518                                 if (($noscrape["photo"] != "") AND ($noscrape["photo"] != $gcontacts[0]["photo"]))
519                                         q("UPDATE `gcontact` SET `photo` = '%s' WHERE `nurl` = '%s'",
520                                                 dbesc($noscrape["photo"]), dbesc(normalise_link($profile)));
521
522                                 if (($noscrape["updated"] != "") AND ($noscrape["updated"] != $gcontacts[0]["updated"]))
523                                         q("UPDATE `gcontact` SET `updated` = '%s' WHERE `nurl` = '%s'",
524                                                 dbesc($noscrape["updated"]), dbesc(normalise_link($profile)));
525
526                                 if (($noscrape["gender"] != "") AND ($noscrape["gender"] != $gcontacts[0]["gender"]))
527                                         q("UPDATE `gcontact` SET `gender` = '%s' WHERE `nurl` = '%s'",
528                                                 dbesc($noscrape["gender"]), dbesc(normalise_link($profile)));
529
530                                 if (($noscrape["pdesc"] != "") AND ($noscrape["pdesc"] != $gcontacts[0]["about"]))
531                                         q("UPDATE `gcontact` SET `about` = '%s' WHERE `nurl` = '%s'",
532                                                 dbesc($noscrape["pdesc"]), dbesc(normalise_link($profile)));
533
534                                 if (($noscrape["about"] != "") AND ($noscrape["about"] != $gcontacts[0]["about"]))
535                                         q("UPDATE `gcontact` SET `about` = '%s' WHERE `nurl` = '%s'",
536                                                 dbesc($noscrape["about"]), dbesc(normalise_link($profile)));
537
538                                 if (isset($noscrape["comm"]) AND ($noscrape["comm"] != $gcontacts[0]["community"]))
539                                         q("UPDATE `gcontact` SET `community` = %d WHERE `nurl` = '%s'",
540                                                 intval($noscrape["comm"]), dbesc(normalise_link($profile)));
541
542                                 if (isset($noscrape["tags"]))
543                                         $keywords = implode(" ", $noscrape["tags"]);
544                                 else
545                                         $keywords = "";
546
547                                 if (($keywords != "") AND ($keywords != $gcontacts[0]["keywords"]))
548                                         q("UPDATE `gcontact` SET `keywords` = '%s' WHERE `nurl` = '%s'",
549                                                 dbesc($keywords), dbesc(normalise_link($profile)));
550
551                                 $location = $noscrape["locality"];
552
553                                 if ($noscrape["region"] != "") {
554                                         if ($location != "")
555                                                 $location .= ", ";
556
557                                         $location .= $noscrape["region"];
558                                 }
559
560                                 if ($noscrape["country-name"] != "") {
561                                         if ($location != "")
562                                                 $location .= ", ";
563
564                                         $location .= $noscrape["country-name"];
565                                 }
566
567                                 if (($location != "") AND ($location != $gcontacts[0]["location"]))
568                                         q("UPDATE `gcontact` SET `location` = '%s' WHERE `nurl` = '%s'",
569                                                 dbesc($location), dbesc(normalise_link($profile)));
570
571                                 // If we got data from noscrape then mark the contact as reachable
572                                 if (is_array($noscrape) AND count($noscrape))
573                                         q("UPDATE `gcontact` SET `last_contact` = '%s' WHERE `nurl` = '%s'",
574                                                 dbesc(datetime_convert()), dbesc(normalise_link($profile)));
575
576                                 return $noscrape["updated"];
577                         }
578                 }
579         }
580
581         // If we only can poll the feed, then we only do this once a while
582         if (!$force AND !poco_do_update($gcontacts[0]["created"], $gcontacts[0]["updated"], $gcontacts[0]["last_failure"],  $gcontacts[0]["last_contact"]))
583                 return $gcontacts[0]["updated"];
584
585         $data = probe_url($profile);
586
587         // Is the profile link the alternate OStatus link notation? (http://domain.tld/user/4711)
588         // Then check the other link and delete this one
589         if (($data["network"] == NETWORK_OSTATUS) AND poco_alternate_ostatus_url($profile) AND
590                 (normalise_link($profile) == normalise_link($data["alias"])) AND
591                 (normalise_link($profile) != normalise_link($data["url"]))) {
592
593                 // Delete the old entry
594                 q("DELETE FROM `gcontact` WHERE `nurl` = '%s'", dbesc(normalise_link($profile)));
595                 q("DELETE FROM `glink` WHERE `gcid` = %d", intval($gcontacts[0]["id"]));
596
597                 poco_check($data["url"], $data["name"], $data["network"], $data["photo"], $gcontacts[0]["about"], $gcontacts[0]["location"],
598                                 $gcontacts[0]["gender"], $gcontacts[0]["keywords"], $data["addr"], $gcontacts[0]["updated"], $gcontacts[0]["generation"]);
599
600                 poco_last_updated($data["url"], $force);
601
602                 return false;
603         }
604
605         if (($data["poll"] == "") OR (in_array($data["network"], array(NETWORK_FEED, NETWORK_PHANTOM)))) {
606                 q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'",
607                         dbesc(datetime_convert()), dbesc(normalise_link($profile)));
608                 return false;
609         }
610
611         if (($data["name"] != "") AND ($data["name"] != $gcontacts[0]["name"]))
612                 q("UPDATE `gcontact` SET `name` = '%s' WHERE `nurl` = '%s'",
613                         dbesc($data["name"]), dbesc(normalise_link($profile)));
614
615         if (($data["nick"] != "") AND ($data["nick"] != $gcontacts[0]["nick"]))
616                 q("UPDATE `gcontact` SET `nick` = '%s' WHERE `nurl` = '%s'",
617                         dbesc($data["nick"]), dbesc(normalise_link($profile)));
618
619         if (($data["addr"] != "") AND ($data["addr"] != $gcontacts[0]["connect"]))
620                 q("UPDATE `gcontact` SET `connect` = '%s' WHERE `nurl` = '%s'",
621                         dbesc($data["addr"]), dbesc(normalise_link($profile)));
622
623         if (($data["photo"] != "") AND ($data["photo"] != $gcontacts[0]["photo"]))
624                 q("UPDATE `gcontact` SET `photo` = '%s' WHERE `nurl` = '%s'",
625                         dbesc($data["photo"]), dbesc(normalise_link($profile)));
626
627         if (($data["baseurl"] != "") AND ($data["baseurl"] != $gcontacts[0]["server_url"]))
628                 q("UPDATE `gcontact` SET `server_url` = '%s' WHERE `nurl` = '%s'",
629                         dbesc($data["baseurl"]), dbesc(normalise_link($profile)));
630
631         $feedret = z_fetch_url($data["poll"]);
632
633         if (!$feedret["success"]) {
634                 q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'",
635                         dbesc(datetime_convert()), dbesc(normalise_link($profile)));
636                 return false;
637         }
638
639         $doc = new DOMDocument();
640         @$doc->loadXML($feedret["body"]);
641
642         $xpath = new DomXPath($doc);
643         $xpath->registerNamespace('atom', "http://www.w3.org/2005/Atom");
644
645         $entries = $xpath->query('/atom:feed/atom:entry');
646
647         $last_updated = "";
648
649         foreach ($entries AS $entry) {
650                 $published = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue;
651                 $updated = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue;
652
653                 if ($last_updated < $published)
654                         $last_updated = $published;
655
656                 if ($last_updated < $updated)
657                         $last_updated = $updated;
658         }
659
660         // Maybe there aren't any entries. Then check if it is a valid feed
661         if ($last_updated == "")
662                 if ($xpath->query('/atom:feed')->length > 0)
663                         $last_updated = "0000-00-00 00:00:00";
664
665         q("UPDATE `gcontact` SET `updated` = '%s', `last_contact` = '%s' WHERE `nurl` = '%s'",
666                 dbesc($last_updated), dbesc(datetime_convert()), dbesc(normalise_link($profile)));
667
668         if (($gcontacts[0]["generation"] == 0))
669                 q("UPDATE `gcontact` SET `generation` = 9 WHERE `nurl` = '%s'",
670                         dbesc(normalise_link($profile)));
671
672         return($last_updated);
673 }
674
675 function poco_do_update($created, $updated, $last_failure,  $last_contact) {
676         $now = strtotime(datetime_convert());
677
678         if ($updated > $last_contact)
679                 $contact_time = strtotime($updated);
680         else
681                 $contact_time = strtotime($last_contact);
682
683         $failure_time = strtotime($last_failure);
684         $created_time = strtotime($created);
685
686         // If there is no "created" time then use the current time
687         if ($created_time <= 0)
688                 $created_time = $now;
689
690         // If the last contact was less than 24 hours then don't update
691         if (($now - $contact_time) < (60 * 60 * 24))
692                 return false;
693
694         // If the last failure was less than 24 hours then don't update
695         if (($now - $failure_time) < (60 * 60 * 24))
696                 return false;
697
698         // If the last contact was less than a week ago and the last failure is older than a week then don't update
699         //if ((($now - $contact_time) < (60 * 60 * 24 * 7)) AND ($contact_time > $failure_time))
700         //      return false;
701
702         // If the last contact time was more than a week ago and the contact was created more than a week ago, then only try once a week
703         if ((($now - $contact_time) > (60 * 60 * 24 * 7)) AND (($now - $created_time) > (60 * 60 * 24 * 7)) AND (($now - $failure_time) < (60 * 60 * 24 * 7)))
704                 return false;
705
706         // If the last contact time was more than a month ago and the contact was created more than a month ago, then only try once a month
707         if ((($now - $contact_time) > (60 * 60 * 24 * 30)) AND (($now - $created_time) > (60 * 60 * 24 * 30)) AND (($now - $failure_time) < (60 * 60 * 24 * 30)))
708                 return false;
709
710         return true;
711 }
712
713 function poco_to_boolean($val) {
714         if (($val == "true") OR ($val == 1))
715                 return(true);
716         if (($val == "false") OR ($val == 0))
717                 return(false);
718
719         return ($val);
720 }
721
722 function poco_check_server($server_url, $network = "", $force = false) {
723
724         // Unify the server address
725         $server_url = trim($server_url, "/");
726         $server_url = str_replace("/index.php", "", $server_url);
727
728         if ($server_url == "")
729                 return false;
730
731         $servers = q("SELECT * FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url)));
732         if ($servers) {
733
734                 if ($servers[0]["created"] == "0000-00-00 00:00:00")
735                         q("UPDATE `gserver` SET `created` = '%s' WHERE `nurl` = '%s'",
736                                 dbesc(datetime_convert()), dbesc(normalise_link($server_url)));
737
738                 $poco = $servers[0]["poco"];
739                 $noscrape = $servers[0]["noscrape"];
740
741                 if ($network == "")
742                         $network = $servers[0]["network"];
743
744                 $last_contact = $servers[0]["last_contact"];
745                 $last_failure = $servers[0]["last_failure"];
746                 $version = $servers[0]["version"];
747                 $platform = $servers[0]["platform"];
748                 $site_name = $servers[0]["site_name"];
749                 $info = $servers[0]["info"];
750                 $register_policy = $servers[0]["register_policy"];
751
752                 if (!$force AND !poco_do_update($servers[0]["created"], "", $last_failure, $last_contact)) {
753                         logger("Use cached data for server ".$server_url, LOGGER_DEBUG);
754                         return ($last_contact >= $last_failure);
755                 }
756         } else {
757                 $poco = "";
758                 $noscrape = "";
759                 $version = "";
760                 $platform = "";
761                 $site_name = "";
762                 $info = "";
763                 $register_policy = -1;
764
765                 $last_contact = "0000-00-00 00:00:00";
766                 $last_failure = "0000-00-00 00:00:00";
767         }
768         logger("Server ".$server_url." is outdated or unknown. Start discovery. Force: ".$force." Created: ".$servers[0]["created"]." Failure: ".$last_failure." Contact: ".$last_contact, LOGGER_DEBUG);
769
770         $failure = false;
771         $orig_last_failure = $last_failure;
772
773         // Check if the page is accessible via SSL.
774         $server_url = str_replace("http://", "https://", $server_url);
775         $serverret = z_fetch_url($server_url."/.well-known/host-meta");
776
777         // Maybe the page is unencrypted only?
778         $xmlobj = @simplexml_load_string($serverret["body"],'SimpleXMLElement',0, "http://docs.oasis-open.org/ns/xri/xrd-1.0");
779         if (!$serverret["success"] OR ($serverret["body"] == "") OR (@sizeof($xmlobj) == 0) OR !is_object($xmlobj)) {
780                 $server_url = str_replace("https://", "http://", $server_url);
781                 $serverret = z_fetch_url($server_url."/.well-known/host-meta");
782
783                 $xmlobj = @simplexml_load_string($serverret["body"],'SimpleXMLElement',0, "http://docs.oasis-open.org/ns/xri/xrd-1.0");
784         }
785
786         if (!$serverret["success"] OR ($serverret["body"] == "") OR (sizeof($xmlobj) == 0) OR !is_object($xmlobj)) {
787                 // Workaround for bad configured servers (known nginx problem)
788                 if ($serverret["debug"]["http_code"] != "403") {
789                         $last_failure = datetime_convert();
790                         $failure = true;
791                 }
792         } elseif ($network == NETWORK_DIASPORA)
793                 $last_contact = datetime_convert();
794
795         if (!$failure) {
796                 // Test for Diaspora
797                 $serverret = z_fetch_url($server_url);
798
799                 $lines = explode("\n",$serverret["header"]);
800                 if(count($lines))
801                         foreach($lines as $line) {
802                                 $line = trim($line);
803                                 if(stristr($line,'X-Diaspora-Version:')) {
804                                         $platform = "Diaspora";
805                                         $version = trim(str_replace("X-Diaspora-Version:", "", $line));
806                                         $version = trim(str_replace("x-diaspora-version:", "", $version));
807                                         $network = NETWORK_DIASPORA;
808                                         $versionparts = explode("-", $version);
809                                         $version = $versionparts[0];
810                                 }
811                         }
812         }
813
814         if (!$failure) {
815                 // Test for Statusnet
816                 // Will also return data for Friendica and GNU Social - but it will be overwritten later
817                 // The "not implemented" is a special treatment for really, really old Friendica versions
818                 $serverret = z_fetch_url($server_url."/api/statusnet/version.json");
819                 if ($serverret["success"] AND ($serverret["body"] != '{"error":"not implemented"}') AND ($serverret["body"] != '') AND (strlen($serverret["body"]) < 250)) {
820                         $platform = "StatusNet";
821                         $version = trim($serverret["body"], '"');
822                         $network = NETWORK_OSTATUS;
823                 }
824
825                 // Test for GNU Social
826                 $serverret = z_fetch_url($server_url."/api/gnusocial/version.json");
827                 if ($serverret["success"] AND ($serverret["body"] != '{"error":"not implemented"}') AND ($serverret["body"] != '') AND (strlen($serverret["body"]) < 250)) {
828                         $platform = "GNU Social";
829                         $version = trim($serverret["body"], '"');
830                         $network = NETWORK_OSTATUS;
831                 }
832
833                 $serverret = z_fetch_url($server_url."/api/statusnet/config.json");
834                 if ($serverret["success"]) {
835                         $data = json_decode($serverret["body"]);
836
837                         if (isset($data->site->server)) {
838                                 $last_contact = datetime_convert();
839
840                                 if (isset($data->site->hubzilla)) {
841                                         $platform = $data->site->hubzilla->PLATFORM_NAME;
842                                         $version = $data->site->hubzilla->RED_VERSION;
843                                         $network = NETWORK_DIASPORA;
844                                 }
845                                 if (isset($data->site->redmatrix)) {
846                                         if (isset($data->site->redmatrix->PLATFORM_NAME))
847                                                 $platform = $data->site->redmatrix->PLATFORM_NAME;
848                                         elseif (isset($data->site->redmatrix->RED_PLATFORM))
849                                                 $platform = $data->site->redmatrix->RED_PLATFORM;
850
851                                         $version = $data->site->redmatrix->RED_VERSION;
852                                         $network = NETWORK_DIASPORA;
853                                 }
854                                 if (isset($data->site->friendica)) {
855                                         $platform = $data->site->friendica->FRIENDICA_PLATFORM;
856                                         $version = $data->site->friendica->FRIENDICA_VERSION;
857                                         $network = NETWORK_DFRN;
858                                 }
859
860                                 $site_name = $data->site->name;
861
862                                 $data->site->closed = poco_to_boolean($data->site->closed);
863                                 $data->site->private = poco_to_boolean($data->site->private);
864                                 $data->site->inviteonly = poco_to_boolean($data->site->inviteonly);
865
866                                 if (!$data->site->closed AND !$data->site->private and $data->site->inviteonly)
867                                         $register_policy = REGISTER_APPROVE;
868                                 elseif (!$data->site->closed AND !$data->site->private)
869                                         $register_policy = REGISTER_OPEN;
870                                 else
871                                         $register_policy = REGISTER_CLOSED;
872                         }
873                 }
874         }
875
876         // Query statistics.json. Optional package for Diaspora, Friendica and Redmatrix
877         if (!$failure) {
878                 $serverret = z_fetch_url($server_url."/statistics.json");
879                 if ($serverret["success"]) {
880                         $data = json_decode($serverret["body"]);
881                         if ($version == "")
882                                 $version = $data->version;
883
884                         $site_name = $data->name;
885
886                         if (isset($data->network) AND ($platform == ""))
887                                 $platform = $data->network;
888
889                         if ($platform == "Diaspora")
890                                 $network = NETWORK_DIASPORA;
891
892                         if ($data->registrations_open)
893                                 $register_policy = REGISTER_OPEN;
894                         else
895                                 $register_policy = REGISTER_CLOSED;
896
897                         if (isset($data->version))
898                                 $last_contact = datetime_convert();
899                 }
900         }
901
902         // Check for noscrape
903         // Friendica servers could be detected as OStatus servers
904         if (!$failure AND in_array($network, array(NETWORK_DFRN, NETWORK_OSTATUS))) {
905                 $serverret = z_fetch_url($server_url."/friendica/json");
906
907                 if (!$serverret["success"])
908                         $serverret = z_fetch_url($server_url."/friendika/json");
909
910                 if ($serverret["success"]) {
911                         $data = json_decode($serverret["body"]);
912
913                         if (isset($data->version)) {
914                                 $last_contact = datetime_convert();
915                                 $network = NETWORK_DFRN;
916
917                                 $noscrape = $data->no_scrape_url;
918                                 $version = $data->version;
919                                 $site_name = $data->site_name;
920                                 $info = $data->info;
921                                 $register_policy_str = $data->register_policy;
922                                 $platform = $data->platform;
923
924                                 switch ($register_policy_str) {
925                                         case "REGISTER_CLOSED":
926                                                 $register_policy = REGISTER_CLOSED;
927                                                 break;
928                                         case "REGISTER_APPROVE":
929                                                 $register_policy = REGISTER_APPROVE;
930                                                 break;
931                                         case "REGISTER_OPEN":
932                                                 $register_policy = REGISTER_OPEN;
933                                                 break;
934                                 }
935                         }
936                 }
937         }
938
939         // Look for poco
940         if (!$failure) {
941                 $serverret = z_fetch_url($server_url."/poco");
942                 if ($serverret["success"]) {
943                         $data = json_decode($serverret["body"]);
944                         if (isset($data->totalResults)) {
945                                 $poco = $server_url."/poco";
946                                 $last_contact = datetime_convert();
947                         }
948                 }
949         }
950
951         // Check again if the server exists
952         $servers = q("SELECT `nurl` FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url)));
953
954         if ($servers)
955                  q("UPDATE `gserver` SET `url` = '%s', `version` = '%s', `site_name` = '%s', `info` = '%s', `register_policy` = %d, `poco` = '%s', `noscrape` = '%s',
956                         `network` = '%s', `platform` = '%s', `last_contact` = '%s', `last_failure` = '%s' WHERE `nurl` = '%s'",
957                         dbesc($server_url),
958                         dbesc($version),
959                         dbesc($site_name),
960                         dbesc($info),
961                         intval($register_policy),
962                         dbesc($poco),
963                         dbesc($noscrape),
964                         dbesc($network),
965                         dbesc($platform),
966                         dbesc($last_contact),
967                         dbesc($last_failure),
968                         dbesc(normalise_link($server_url))
969                 );
970         else
971                 q("INSERT INTO `gserver` (`url`, `nurl`, `version`, `site_name`, `info`, `register_policy`, `poco`, `noscrape`, `network`, `platform`, `created`, `last_contact`, `last_failure`)
972                                         VALUES ('%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s')",
973                                 dbesc($server_url),
974                                 dbesc(normalise_link($server_url)),
975                                 dbesc($version),
976                                 dbesc($site_name),
977                                 dbesc($info),
978                                 intval($register_policy),
979                                 dbesc($poco),
980                                 dbesc($noscrape),
981                                 dbesc($network),
982                                 dbesc($platform),
983                                 dbesc(datetime_convert()),
984                                 dbesc($last_contact),
985                                 dbesc($last_failure),
986                                 dbesc(datetime_convert())
987                 );
988
989         logger("End discovery for server ".$server_url, LOGGER_DEBUG);
990
991         return !$failure;
992 }
993
994 function poco_contact_from_body($body, $created, $cid, $uid) {
995         preg_replace_callback("/\[share(.*?)\].*?\[\/share\]/ism",
996                 function ($match) use ($created, $cid, $uid){
997                         return(sub_poco_from_share($match, $created, $cid, $uid));
998                 }, $body);
999 }
1000
1001 function sub_poco_from_share($share, $created, $cid, $uid) {
1002         $profile = "";
1003         preg_match("/profile='(.*?)'/ism", $share[1], $matches);
1004         if ($matches[1] != "")
1005                 $profile = $matches[1];
1006
1007         preg_match('/profile="(.*?)"/ism', $share[1], $matches);
1008         if ($matches[1] != "")
1009                 $profile = $matches[1];
1010
1011         if ($profile == "")
1012                 return;
1013
1014         logger("prepare poco_check for profile ".$profile, LOGGER_DEBUG);
1015         poco_check($profile, "", "", "", "", "", "", "", "", $created, 3, $cid, $uid);
1016 }
1017
1018 function poco_store($item) {
1019
1020         // Isn't it public?
1021         if ($item['private'])
1022                 return;
1023
1024         // Or is it from a network where we don't store the global contacts?
1025         if (!in_array($item["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, NETWORK_STATUSNET, "")))
1026                 return;
1027
1028         // Is it a global copy?
1029         $store_gcontact = ($item["uid"] == 0);
1030
1031         // Is it a comment on a global copy?
1032         if (!$store_gcontact AND ($item["uri"] != $item["parent-uri"])) {
1033                 $q = q("SELECT `id` FROM `item` WHERE `uri`='%s' AND `uid` = 0", $item["parent-uri"]);
1034                 $store_gcontact = count($q);
1035         }
1036
1037         if (!$store_gcontact)
1038                 return;
1039
1040         // "3" means: We don't know this contact directly (Maybe a reshared item)
1041         $generation = 3;
1042         $network = "";
1043         $profile_url = $item["author-link"];
1044
1045         // Is it a user from our server?
1046         $q = q("SELECT `id` FROM `contact` WHERE `self` AND `nurl` = '%s' LIMIT 1",
1047                 dbesc(normalise_link($item["author-link"])));
1048         if (count($q)) {
1049                 logger("Our user (generation 1): ".$item["author-link"], LOGGER_DEBUG);
1050                 $generation = 1;
1051                 $network = NETWORK_DFRN;
1052         } else { // Is it a contact from a user on our server?
1053                 $q = q("SELECT `network`, `url` FROM `contact` WHERE `uid` != 0 AND `network` != ''
1054                         AND (`nurl` = '%s' OR `alias` IN ('%s', '%s')) AND `network` != '%s' LIMIT 1",
1055                         dbesc(normalise_link($item["author-link"])),
1056                         dbesc(normalise_link($item["author-link"])),
1057                         dbesc($item["author-link"]),
1058                         dbesc(NETWORK_STATUSNET));
1059                 if (count($q)) {
1060                         $generation = 2;
1061                         $network = $q[0]["network"];
1062                         $profile_url = $q[0]["url"];
1063                         logger("Known contact (generation 2): ".$profile_url, LOGGER_DEBUG);
1064                 }
1065         }
1066
1067         if ($generation == 3)
1068                 logger("Unknown contact (generation 3): ".$item["author-link"], LOGGER_DEBUG);
1069
1070         poco_check($profile_url, $item["author-name"], $network, $item["author-avatar"], "", "", "", "", "", $item["received"], $generation, $item["contact-id"], $item["uid"]);
1071
1072         // Maybe its a body with a shared item? Then extract a global contact from it.
1073         poco_contact_from_body($item["body"], $item["received"], $item["contact-id"], $item["uid"]);
1074 }
1075
1076 function count_common_friends($uid,$cid) {
1077
1078         $r = q("SELECT count(*) as `total`
1079                 FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
1080                 WHERE `glink`.`cid` = %d AND `glink`.`uid` = %d AND
1081                 ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`))
1082                 AND `gcontact`.`nurl` IN (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 and id != %d ) ",
1083                 intval($cid),
1084                 intval($uid),
1085                 intval($uid),
1086                 intval($cid)
1087         );
1088
1089 //      logger("count_common_friends: $uid $cid {$r[0]['total']}");
1090         if(count($r))
1091                 return $r[0]['total'];
1092         return 0;
1093
1094 }
1095
1096
1097 function common_friends($uid,$cid,$start = 0,$limit=9999,$shuffle = false) {
1098
1099         if($shuffle)
1100                 $sql_extra = " order by rand() ";
1101         else
1102                 $sql_extra = " order by `gcontact`.`name` asc ";
1103
1104         $r = q("SELECT `gcontact`.*, `contact`.`id` AS `cid`
1105                 FROM `glink`
1106                 INNER JOIN `gcontact` ON `glink`.`gcid` = `gcontact`.`id`
1107                 INNER JOIN `contact` ON `gcontact`.`nurl` = `contact`.`nurl`
1108                 WHERE `glink`.`cid` = %d and `glink`.`uid` = %d
1109                         AND `contact`.`uid` = %d AND `contact`.`self` = 0 AND `contact`.`blocked` = 0
1110                         AND `contact`.`hidden` = 0 AND `contact`.`id` != %d
1111                         AND ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`))
1112                         $sql_extra LIMIT %d, %d",
1113                 intval($cid),
1114                 intval($uid),
1115                 intval($uid),
1116                 intval($cid),
1117                 intval($start),
1118                 intval($limit)
1119         );
1120
1121         return $r;
1122
1123 }
1124
1125
1126 function count_common_friends_zcid($uid,$zcid) {
1127
1128         $r = q("SELECT count(*) as `total`
1129                 FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
1130                 where `glink`.`zcid` = %d
1131                 and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 ) ",
1132                 intval($zcid),
1133                 intval($uid)
1134         );
1135
1136         if(count($r))
1137                 return $r[0]['total'];
1138         return 0;
1139
1140 }
1141
1142 function common_friends_zcid($uid,$zcid,$start = 0, $limit = 9999,$shuffle = false) {
1143
1144         if($shuffle)
1145                 $sql_extra = " order by rand() ";
1146         else
1147                 $sql_extra = " order by `gcontact`.`name` asc ";
1148
1149         $r = q("SELECT `gcontact`.*
1150                 FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
1151                 where `glink`.`zcid` = %d
1152                 and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 ) 
1153                 $sql_extra limit %d, %d",
1154                 intval($zcid),
1155                 intval($uid),
1156                 intval($start),
1157                 intval($limit)
1158         );
1159
1160         return $r;
1161
1162 }
1163
1164
1165 function count_all_friends($uid,$cid) {
1166
1167         $r = q("SELECT count(*) as `total`
1168                 FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
1169                 where `glink`.`cid` = %d and `glink`.`uid` = %d AND
1170                 ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`))",
1171                 intval($cid),
1172                 intval($uid)
1173         );
1174
1175         if(count($r))
1176                 return $r[0]['total'];
1177         return 0;
1178
1179 }
1180
1181
1182 function all_friends($uid,$cid,$start = 0, $limit = 80) {
1183
1184         $r = q("SELECT `gcontact`.*, `contact`.`id` AS `cid`
1185                 FROM `glink`
1186                 INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
1187                 LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl` AND `contact`.`uid` = %d
1188                 WHERE `glink`.`cid` = %d AND `glink`.`uid` = %d AND
1189                 ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`))
1190                 ORDER BY `gcontact`.`name` ASC LIMIT %d, %d ",
1191                 intval($uid),
1192                 intval($cid),
1193                 intval($uid),
1194                 intval($start),
1195                 intval($limit)
1196         );
1197
1198         return $r;
1199 }
1200
1201
1202
1203 function suggestion_query($uid, $start = 0, $limit = 80) {
1204
1205         if(! $uid)
1206                 return array();
1207
1208         $network = array(NETWORK_DFRN);
1209
1210         if (get_config('system','diaspora_enabled'))
1211                 $network[] = NETWORK_DIASPORA;
1212
1213         if (!get_config('system','ostatus_disabled'))
1214                 $network[] = NETWORK_OSTATUS;
1215
1216         $sql_network = implode("', '", $network);
1217         //$sql_network = "'".$sql_network."', ''";
1218         $sql_network = "'".$sql_network."'";
1219
1220         $r = q("SELECT count(glink.gcid) as `total`, gcontact.* from gcontact
1221                 INNER JOIN `glink` ON `glink`.`gcid` = `gcontact`.`id`
1222                 where uid = %d and not gcontact.nurl in ( select nurl from contact where uid = %d )
1223                 AND NOT `gcontact`.`name` IN (SELECT `name` FROM `contact` WHERE `uid` = %d)
1224                 AND NOT `gcontact`.`id` IN (SELECT `gcid` FROM `gcign` WHERE `uid` = %d)
1225                 AND `gcontact`.`updated` != '0000-00-00 00:00:00'
1226                 AND `gcontact`.`last_contact` >= `gcontact`.`last_failure`
1227                 AND `gcontact`.`network` IN (%s)
1228                 GROUP BY `glink`.`gcid` ORDER BY `gcontact`.`updated` DESC,`total` DESC LIMIT %d, %d",
1229                 intval($uid),
1230                 intval($uid),
1231                 intval($uid),
1232                 intval($uid),
1233                 $sql_network,
1234                 intval($start),
1235                 intval($limit)
1236         );
1237
1238         if(count($r) && count($r) >= ($limit -1))
1239                 return $r;
1240
1241         $r2 = q("SELECT gcontact.* FROM gcontact
1242                 INNER JOIN `glink` ON `glink`.`gcid` = `gcontact`.`id`
1243                 WHERE `glink`.`uid` = 0 AND `glink`.`cid` = 0 AND `glink`.`zcid` = 0 AND NOT `gcontact`.`nurl` IN (SELECT `nurl` FROM `contact` WHERE `uid` = %d)
1244                 AND NOT `gcontact`.`name` IN (SELECT `name` FROM `contact` WHERE `uid` = %d)
1245                 AND NOT `gcontact`.`id` IN (SELECT `gcid` FROM `gcign` WHERE `uid` = %d)
1246                 AND `gcontact`.`updated` != '0000-00-00 00:00:00'
1247                 AND `gcontact`.`last_contact` >= `gcontact`.`last_failure`
1248                 AND `gcontact`.`network` IN (%s)
1249                 ORDER BY rand() LIMIT %d, %d",
1250                 intval($uid),
1251                 intval($uid),
1252                 intval($uid),
1253                 $sql_network,
1254                 intval($start),
1255                 intval($limit)
1256         );
1257
1258         $list = array();
1259         foreach ($r2 AS $suggestion)
1260                 $list[$suggestion["nurl"]] = $suggestion;
1261
1262         foreach ($r AS $suggestion)
1263                 $list[$suggestion["nurl"]] = $suggestion;
1264
1265         while (sizeof($list) > ($limit))
1266                 array_pop($list);
1267
1268         return $list;
1269 }
1270
1271 function update_suggestions() {
1272
1273         $a = get_app();
1274
1275         $done = array();
1276
1277         /// TODO Check if it is really neccessary to poll the own server
1278         poco_load(0,0,0,$a->get_baseurl() . '/poco');
1279
1280         $done[] = $a->get_baseurl() . '/poco';
1281
1282         if(strlen(get_config('system','directory'))) {
1283                 $x = fetch_url(get_server()."/pubsites");
1284                 if($x) {
1285                         $j = json_decode($x);
1286                         if($j->entries) {
1287                                 foreach($j->entries as $entry) {
1288
1289                                         poco_check_server($entry->url);
1290
1291                                         $url = $entry->url . '/poco';
1292                                         if(! in_array($url,$done))
1293                                                 poco_load(0,0,0,$entry->url . '/poco');
1294                                 }
1295                         }
1296                 }
1297         }
1298
1299         // Query your contacts from Friendica and Redmatrix/Hubzilla for their contacts
1300         $r = q("SELECT DISTINCT(`poco`) AS `poco` FROM `contact` WHERE `network` IN ('%s', '%s')",
1301                 dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA)
1302         );
1303
1304         if(count($r)) {
1305                 foreach($r as $rr) {
1306                         $base = substr($rr['poco'],0,strrpos($rr['poco'],'/'));
1307                         if(! in_array($base,$done))
1308                                 poco_load(0,0,0,$base);
1309                 }
1310         }
1311 }
1312
1313 function poco_discover_federation() {
1314         $last = get_config('poco','last_federation_discovery');
1315
1316         if($last) {
1317                 $next = $last + (24 * 60 * 60);
1318                 if($next > time())
1319                         return;
1320         }
1321
1322         // Discover Friendica, Hubzilla and Diaspora servers
1323         $serverdata = fetch_url("http://the-federation.info/pods.json");
1324
1325         if ($serverdata) {
1326                 $servers = json_decode($serverdata);
1327
1328                 foreach($servers->pods AS $server)
1329                         poco_check_server("https://".$server->host);
1330         }
1331
1332         // Discover GNU Social Servers
1333         if (!get_config('system','ostatus_disabled')) {
1334                 $serverdata = "http://gstools.org/api/get_open_instances/";
1335
1336                 $result = z_fetch_url($serverdata);
1337                 if ($result["success"]) {
1338                         $servers = json_decode($result["body"]);
1339
1340                         foreach($servers->data AS $server)
1341                                 poco_check_server($server->instance_address);
1342                 }
1343         }
1344
1345         set_config('poco','last_federation_discovery', time());
1346 }
1347
1348 function poco_discover($complete = false) {
1349
1350         // Update the server list
1351         poco_discover_federation();
1352
1353         $no_of_queries = 5;
1354
1355         $requery_days = intval(get_config("system", "poco_requery_days"));
1356
1357         if ($requery_days == 0)
1358                 $requery_days = 7;
1359
1360         $last_update = date("c", time() - (60 * 60 * 24 * $requery_days));
1361
1362         $r = q("SELECT `poco`, `nurl`, `url`, `network` FROM `gserver` WHERE `last_contact` >= `last_failure` AND `poco` != '' AND `last_poco_query` < '%s' ORDER BY RAND()", dbesc($last_update));
1363         if ($r)
1364                 foreach ($r AS $server) {
1365
1366                         if (!poco_check_server($server["url"], $server["network"])) {
1367                                 // The server is not reachable? Okay, then we will try it later
1368                                 q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"]));
1369                                 continue;
1370                         }
1371
1372                         // Fetch all users from the other server
1373                         $url = $server["poco"]."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation";
1374
1375                         logger("Fetch all users from the server ".$server["nurl"], LOGGER_DEBUG);
1376
1377                         $retdata = z_fetch_url($url);
1378                         if ($retdata["success"]) {
1379                                 $data = json_decode($retdata["body"]);
1380
1381                                 poco_discover_server($data, 2);
1382
1383                                 if (get_config('system','poco_discovery') > 1) {
1384
1385                                         $timeframe = get_config('system','poco_discovery_since');
1386                                         if ($timeframe == 0)
1387                                                 $timeframe = 30;
1388
1389                                         $updatedSince = date("Y-m-d H:i:s", time() - $timeframe * 86400);
1390
1391                                         // Fetch all global contacts from the other server (Not working with Redmatrix and Friendica versions before 3.3)
1392                                         $url = $server["poco"]."/@global?updatedSince=".$updatedSince."&fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation";
1393
1394                                         $success = false;
1395
1396                                         $retdata = z_fetch_url($url);
1397                                         if ($retdata["success"]) {
1398                                                 logger("Fetch all global contacts from the server ".$server["nurl"], LOGGER_DEBUG);
1399                                                 $success = poco_discover_server(json_decode($retdata["body"]));
1400                                         }
1401
1402                                         if (!$success AND (get_config('system','poco_discovery') > 2)) {
1403                                                 logger("Fetch contacts from users of the server ".$server["nurl"], LOGGER_DEBUG);
1404                                                 poco_discover_server_users($data, $server);
1405                                         }
1406                                 }
1407
1408                                 q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"]));
1409                                 if (!$complete AND (--$no_of_queries == 0))
1410                                         break;
1411                         } else {
1412                                 // If the server hadn't replied correctly, then force a sanity check
1413                                 poco_check_server($server["url"], $server["network"], true);
1414
1415                                 // If we couldn't reach the server, we will try it some time later
1416                                 q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"]));
1417                         }
1418                 }
1419 }
1420
1421 function poco_discover_server_users($data, $server) {
1422
1423         if (!isset($data->entry))
1424                 return;
1425
1426         foreach ($data->entry AS $entry) {
1427                 $username = "";
1428                 if (isset($entry->urls)) {
1429                         foreach($entry->urls as $url)
1430                                 if($url->type == 'profile') {
1431                                         $profile_url = $url->value;
1432                                         $urlparts = parse_url($profile_url);
1433                                         $username = end(explode("/", $urlparts["path"]));
1434                                 }
1435                 }
1436                 if ($username != "") {
1437                         logger("Fetch contacts for the user ".$username." from the server ".$server["nurl"], LOGGER_DEBUG);
1438
1439                         // Fetch all contacts from a given user from the other server
1440                         $url = $server["poco"]."/".$username."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation";
1441
1442                         $retdata = z_fetch_url($url);
1443                         if ($retdata["success"])
1444                                 poco_discover_server(json_decode($retdata["body"]), 3);
1445                 }
1446         }
1447 }
1448
1449 function poco_discover_server($data, $default_generation = 0) {
1450
1451         if (!isset($data->entry) OR !count($data->entry))
1452                 return false;
1453
1454         $success = false;
1455
1456         foreach ($data->entry AS $entry) {
1457                 $profile_url = '';
1458                 $profile_photo = '';
1459                 $connect_url = '';
1460                 $name = '';
1461                 $network = '';
1462                 $updated = '0000-00-00 00:00:00';
1463                 $location = '';
1464                 $about = '';
1465                 $keywords = '';
1466                 $gender = '';
1467                 $generation = $default_generation;
1468
1469                 $name = $entry->displayName;
1470
1471                 if(isset($entry->urls)) {
1472                         foreach($entry->urls as $url) {
1473                                 if($url->type == 'profile') {
1474                                         $profile_url = $url->value;
1475                                         continue;
1476                                 }
1477                                 if($url->type == 'webfinger') {
1478                                         $connect_url = str_replace('acct:' , '', $url->value);
1479                                         continue;
1480                                 }
1481                         }
1482                 }
1483
1484                 if(isset($entry->photos)) {
1485                         foreach($entry->photos as $photo) {
1486                                 if($photo->type == 'profile') {
1487                                         $profile_photo = $photo->value;
1488                                         continue;
1489                                 }
1490                         }
1491                 }
1492
1493                 if(isset($entry->updated))
1494                         $updated = date("Y-m-d H:i:s", strtotime($entry->updated));
1495
1496                 if(isset($entry->network))
1497                         $network = $entry->network;
1498
1499                 if(isset($entry->currentLocation))
1500                         $location = $entry->currentLocation;
1501
1502                 if(isset($entry->aboutMe))
1503                         $about = html2bbcode($entry->aboutMe);
1504
1505                 if(isset($entry->gender))
1506                         $gender = $entry->gender;
1507
1508                 if(isset($entry->generation) AND ($entry->generation > 0))
1509                         $generation = ++$entry->generation;
1510
1511                 if(isset($entry->tags))
1512                         foreach($entry->tags as $tag)
1513                                 $keywords = implode(", ", $tag);
1514
1515                 if ($generation > 0) {
1516                         $success = true;
1517
1518                         logger("Store profile ".$profile_url, LOGGER_DEBUG);
1519                         poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $generation, 0, 0, 0);
1520                         logger("Done for profile ".$profile_url, LOGGER_DEBUG);
1521                 }
1522         }
1523         return $success;
1524 }
1525
1526 /**
1527  * @brief Fetch the gcontact id, add an entry if not existed
1528  *
1529  * @param arr $contact contact array
1530  * @return bool|int Returns false if not found, integer if contact was found
1531  */
1532 function get_gcontact_id($contact) {
1533
1534         $gcontact_id = 0;
1535
1536         if ($contact["network"] == NETWORK_STATUSNET)
1537                 $contact["network"] = NETWORK_OSTATUS;
1538
1539         $r = q("SELECT `id` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
1540                 dbesc(normalise_link($contact["url"])));
1541
1542         if ($r)
1543                 $gcontact_id = $r[0]["id"];
1544         else {
1545                 q("INSERT INTO `gcontact` (`name`, `nick`, `addr` , `network`, `url`, `nurl`, `photo`, `created`, `updated`, `location`, `about`, `generation`)
1546                         VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d)",
1547                         dbesc($contact["name"]),
1548                         dbesc($contact["nick"]),
1549                         dbesc($contact["addr"]),
1550                         dbesc($contact["network"]),
1551                         dbesc($contact["url"]),
1552                         dbesc(normalise_link($contact["url"])),
1553                         dbesc($contact["photo"]),
1554                         dbesc(datetime_convert()),
1555                         dbesc(datetime_convert()),
1556                         dbesc($contact["location"]),
1557                         dbesc($contact["about"]),
1558                         intval($contact["generation"])
1559                 );
1560
1561                 $r = q("SELECT `id` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
1562                         dbesc(normalise_link($contact["url"])));
1563
1564                 if ($r)
1565                         $gcontact_id = $r[0]["id"];
1566         }
1567
1568         return $gcontact_id;
1569 }
1570
1571 /**
1572  * @brief Updates the gcontact table from a given array
1573  *
1574  * @param arr $contact contact array
1575  * @return bool|int Returns false if not found, integer if contact was found
1576  */
1577 function update_gcontact($contact) {
1578
1579         /// @todo update contact table as well
1580
1581         $gcontact_id = get_gcontact_id($contact);
1582
1583         if (!$gcontact_id)
1584                 return false;
1585
1586         $r = q("SELECT `name`, `nick`, `photo`, `location`, `about`, `addr`, `generation`, `birthday`, `gender`, `keywords`, `hide`, `nsfw`, `network`, `alias`, `notify`, `url`
1587                 FROM `gcontact` WHERE `id` = %d LIMIT 1",
1588                 intval($gcontact_id));
1589
1590         if ($contact["generation"] == 0)
1591                 $contact["generation"] = $r[0]["generation"];
1592
1593         if ($contact["photo"] == "")
1594                 $contact["photo"] = $r[0]["photo"];
1595
1596         if ($contact["name"] == "")
1597                 $contact["name"] = $r[0]["name"];
1598
1599         if ($contact["nick"] == "")
1600                 $contact["nick"] = $r[0]["nick"];
1601
1602         if ($contact["addr"] == "")
1603                 $contact["addr"] = $r[0]["addr"];
1604
1605         if ($contact["location"] =="")
1606                 $contact["location"] = $r[0]["location"];
1607
1608         if ($contact["about"] =="")
1609                 $contact["about"] = $r[0]["about"];
1610
1611         if ($contact["birthday"] =="")
1612                 $contact["birthday"] = $r[0]["birthday"];
1613
1614         if ($contact["gender"] =="")
1615                 $contact["gender"] = $r[0]["gender"];
1616
1617         if ($contact["keywords"] =="")
1618                 $contact["keywords"] = $r[0]["keywords"];
1619
1620         if (!isset($contact["hide"]))
1621                 $contact["hide"] = $r[0]["hide"];
1622
1623         if (!isset($contact["nsfw"]))
1624                 $contact["nsfw"] = $r[0]["nsfw"];
1625
1626         if ($contact["network"] =="")
1627                 $contact["network"] = $r[0]["network"];
1628
1629         if ($contact["alias"] =="")
1630                 $contact["alias"] = $r[0]["alias"];
1631
1632         if ($contact["url"] =="")
1633                 $contact["url"] = $r[0]["url"];
1634
1635         if ($contact["notify"] =="")
1636                 $contact["notify"] = $r[0]["notify"];
1637
1638         if ($contact["network"] == NETWORK_STATUSNET)
1639                 $contact["network"] = NETWORK_OSTATUS;
1640
1641         if (($contact["photo"] != $r[0]["photo"]) OR ($contact["name"] != $r[0]["name"]) OR ($contact["nick"] != $r[0]["nick"]) OR ($contact["addr"] != $r[0]["addr"]) OR
1642                 ($contact["birthday"] != $r[0]["birthday"]) OR ($contact["gender"] != $r[0]["gender"]) OR ($contact["keywords"] != $r[0]["keywords"]) OR
1643                 ($contact["hide"] != $r[0]["hide"]) OR ($contact["nsfw"] != $r[0]["nsfw"]) OR ($contact["network"] != $r[0]["network"]) OR
1644                 ($contact["alias"] != $r[0]["alias"]) OR ($contact["notify"] != $r[0]["notify"]) OR ($contact["url"] != $r[0]["url"]) OR
1645                 ($contact["location"] != $r[0]["location"]) OR ($contact["about"] != $r[0]["about"]) OR ($contact["generation"] < $r[0]["generation"])) {
1646
1647                 q("UPDATE `gcontact` SET `photo` = '%s', `name` = '%s', `nick` = '%s', `addr` = '%s', `network` = '%s',
1648                                         `birthday` = '%s', `gender` = '%s', `keywords` = %d, `hide` = %d, `nsfw` = %d,
1649                                         `alias` = '%s', `notify` = '%s', `url` = '%s',
1650                                         `location` = '%s', `about` = '%s', `generation` = %d, `updated` = '%s'
1651                                 WHERE `nurl` = '%s' AND (`generation` = 0 OR `generation` >= %d)",
1652                         dbesc($contact["photo"]), dbesc($contact["name"]), dbesc($contact["nick"]),
1653                         dbesc($contact["addr"]), dbesc($contact["network"]), dbesc($contact["birthday"]),
1654                         dbesc($contact["gender"]), dbesc($contact["keywords"]), intval($contact["hide"]),
1655                         intval($contact["nsfw"]), dbesc($contact["alias"]), dbesc($contact["notify"]),
1656                         dbesc($contact["url"]), dbesc($contact["location"]), dbesc($contact["about"]),
1657                         intval($contact["generation"]), dbesc(datetime_convert()),
1658                         dbesc(normalise_link($contact["url"])), intval($contact["generation"]));
1659         }
1660
1661         return $gcontact_id;
1662 }
1663
1664 /**
1665  * @brief Updates the gcontact entry from probe
1666  *
1667  * @param str $url profile link
1668  */
1669 function update_gcontact_from_probe($url) {
1670         $data = probe_url($url);
1671
1672         if ($data["network"] != NETWORK_PHANTOM)
1673                 update_gcontact($data);
1674 }
1675
1676 /**
1677  * @brief Fetches users of given GNU Social server
1678  *
1679  * If the "Statistics" plugin is enabled (See http://gstools.org/ for details) we query user data with this.
1680  *
1681  * @param str $server Server address
1682  */
1683 function gs_fetch_users($server) {
1684
1685         logger("Fetching users from GNU Social server ".$server, LOGGER_DEBUG);
1686
1687         $a = get_app();
1688
1689         $url = $server."/main/statistics";
1690
1691         $result = z_fetch_url($url);
1692         if (!$result["success"])
1693                 return false;
1694
1695         $statistics = json_decode($result["body"]);
1696
1697         if (is_object($statistics->config)) {
1698                 if ($statistics->config->instance_with_ssl)
1699                         $server = "https://";
1700                 else
1701                         $server = "http://";
1702
1703                 $server .= $statistics->config->instance_address;
1704
1705                 $hostname = $statistics->config->instance_address;
1706         } else {
1707                 if ($statistics->instance_with_ssl)
1708                         $server = "https://";
1709                 else
1710                         $server = "http://";
1711
1712                 $server .= $statistics->instance_address;
1713
1714                 $hostname = $statistics->instance_address;
1715         }
1716
1717         foreach ($statistics->users AS $nick => $user) {
1718                 $profile_url = $server."/".$user->nickname;
1719
1720                 $contact = array("url" => $profile_url,
1721                                 "name" => $user->fullname,
1722                                 "addr" => $user->nickname."@".$hostname,
1723                                 "nick" => $user->nickname,
1724                                 "about" => $user->bio,
1725                                 "network" => NETWORK_OSTATUS,
1726                                 "photo" => $a->get_baseurl()."/images/person-175.jpg");
1727                 get_gcontact_id($contact);
1728         }
1729 }
1730
1731 /**
1732  * @brief Asking GNU Social server on a regular base for their user data
1733  *
1734  */
1735 function gs_discover() {
1736
1737         $requery_days = intval(get_config("system", "poco_requery_days"));
1738
1739         $last_update = date("c", time() - (60 * 60 * 24 * $requery_days));
1740
1741         $r = q("SELECT `nurl`, `url` FROM `gserver` WHERE `last_contact` >= `last_failure` AND `network` = '%s' AND `last_poco_query` < '%s' ORDER BY RAND() LIMIT 5",
1742                 dbesc(NETWORK_OSTATUS), dbesc($last_update));
1743
1744         if (!$r)
1745                 return;
1746
1747         foreach ($r AS $server) {
1748                 gs_fetch_users($server["url"]);
1749                 q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"]));
1750         }
1751 }
1752 ?>