]> git.mxchange.org Git - friendica.git/blob - include/socgraph.php
Merge pull request #3442 from Alkarex/any_value_dbstructure
[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 use \Friendica\Core\Config;
11
12 require_once('include/datetime.php');
13 require_once("include/Scrape.php");
14 require_once("include/network.php");
15 require_once("include/html2bbcode.php");
16 require_once("include/Contact.php");
17 require_once("include/Photo.php");
18
19 /**
20  * @brief Fetch POCO data
21  *
22  * @param integer $cid Contact ID
23  * @param integer $uid User ID
24  * @param integer $zcid Global Contact ID
25  * @param integer $url POCO address that should be polled
26  *
27  * Given a contact-id (minimum), load the PortableContacts friend list for that contact,
28  * and add the entries to the gcontact (Global Contact) table, or update existing entries
29  * if anything (name or photo) has changed.
30  * We use normalised urls for comparison which ignore http vs https and www.domain vs domain
31  *
32  * Once the global contact is stored add (if necessary) the contact linkage which associates
33  * the given uid, cid to the global contact entry. There can be many uid/cid combinations
34  * pointing to the same global contact id.
35  *
36  */
37 function poco_load($cid, $uid = 0, $zcid = 0, $url = null) {
38         // Call the function "poco_load_worker" via the worker
39         proc_run(PRIORITY_LOW, "include/discover_poco.php", "poco_load", intval($cid), intval($uid), intval($zcid), base64_encode($url));
40 }
41
42 /**
43  * @brief Fetch POCO data from the worker
44  *
45  * @param integer $cid Contact ID
46  * @param integer $uid User ID
47  * @param integer $zcid Global Contact ID
48  * @param integer $url POCO address that should be polled
49  *
50  */
51 function poco_load_worker($cid, $uid, $zcid, $url) {
52         $a = get_app();
53
54         if($cid) {
55                 if((! $url) || (! $uid)) {
56                         $r = q("select `poco`, `uid` from `contact` where `id` = %d limit 1",
57                                 intval($cid)
58                         );
59                         if (dbm::is_result($r)) {
60                                 $url = $r[0]['poco'];
61                                 $uid = $r[0]['uid'];
62                         }
63                 }
64                 if(! $uid)
65                         return;
66         }
67
68         if(! $url)
69                 return;
70
71         $url = $url . (($uid) ? '/@me/@all?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,contactType,generation' : '?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,contactType,generation') ;
72
73         logger('poco_load: ' . $url, LOGGER_DEBUG);
74
75         $s = fetch_url($url);
76
77         logger('poco_load: returns ' . $s, LOGGER_DATA);
78
79         logger('poco_load: return code: ' . $a->get_curl_code(), LOGGER_DEBUG);
80
81         if(($a->get_curl_code() > 299) || (! $s))
82                 return;
83
84         $j = json_decode($s);
85
86         logger('poco_load: json: ' . print_r($j,true),LOGGER_DATA);
87
88         if(! isset($j->entry))
89                 return;
90
91         $total = 0;
92         foreach($j->entry as $entry) {
93
94                 $total ++;
95                 $profile_url = '';
96                 $profile_photo = '';
97                 $connect_url = '';
98                 $name = '';
99                 $network = '';
100                 $updated = NULL_DATE;
101                 $location = '';
102                 $about = '';
103                 $keywords = '';
104                 $gender = '';
105                 $contact_type = -1;
106                 $generation = 0;
107
108                 $name = $entry->displayName;
109
110                 if (isset($entry->urls)) {
111                         foreach ($entry->urls as $url) {
112                                 if ($url->type == 'profile') {
113                                         $profile_url = $url->value;
114                                         continue;
115                                 }
116                                 if ($url->type == 'webfinger') {
117                                         $connect_url = str_replace('acct:' , '', $url->value);
118                                         continue;
119                                 }
120                         }
121                 }
122                 if (isset($entry->photos)) {
123                         foreach ($entry->photos as $photo) {
124                                 if ($photo->type == 'profile') {
125                                         $profile_photo = $photo->value;
126                                         continue;
127                                 }
128                         }
129                 }
130
131                 if (isset($entry->updated)) {
132                         $updated = date("Y-m-d H:i:s", strtotime($entry->updated));
133                 }
134
135                 if (isset($entry->network)) {
136                         $network = $entry->network;
137                 }
138
139                 if (isset($entry->currentLocation)) {
140                         $location = $entry->currentLocation;
141                 }
142
143                 if (isset($entry->aboutMe)) {
144                         $about = html2bbcode($entry->aboutMe);
145                 }
146
147                 if (isset($entry->gender)) {
148                         $gender = $entry->gender;
149                 }
150
151                 if (isset($entry->generation) AND ($entry->generation > 0)) {
152                         $generation = ++$entry->generation;
153                 }
154
155                 if (isset($entry->tags)) {
156                         foreach($entry->tags as $tag) {
157                                 $keywords = implode(", ", $tag);
158                         }
159                 }
160
161                 if (isset($entry->contactType) AND ($entry->contactType >= 0))
162                         $contact_type = $entry->contactType;
163
164                 $gcontact = array("url" => $profile_url,
165                                 "name" => $name,
166                                 "network" => $network,
167                                 "photo" => $profile_photo,
168                                 "about" => $about,
169                                 "location" => $location,
170                                 "gender" => $gender,
171                                 "keywords" => $keywords,
172                                 "connect" => $connect_url,
173                                 "updated" => $updated,
174                                 "contact-type" => $contact_type,
175                                 "generation" => $generation);
176
177                 try {
178                         $gcontact = sanitize_gcontact($gcontact);
179                         $gcid = update_gcontact($gcontact);
180
181                         link_gcontact($gcid, $uid, $cid, $zcid);
182                 } catch (Exception $e) {
183                         logger($e->getMessage(), LOGGER_DEBUG);
184                 }
185         }
186         logger("poco_load: loaded $total entries",LOGGER_DEBUG);
187
188         q("DELETE FROM `glink` WHERE `cid` = %d AND `uid` = %d AND `zcid` = %d AND `updated` < UTC_TIMESTAMP - INTERVAL 2 DAY",
189                 intval($cid),
190                 intval($uid),
191                 intval($zcid)
192         );
193
194 }
195 /**
196  * @brief Sanitize the given gcontact data
197  *
198  * @param array $gcontact array with gcontact data
199  * @throw Exception
200  *
201  * Generation:
202  *  0: No definition
203  *  1: Profiles on this server
204  *  2: Contacts of profiles on this server
205  *  3: Contacts of contacts of profiles on this server
206  *  4: ...
207  *
208  */
209 function sanitize_gcontact($gcontact) {
210
211         if ($gcontact['url'] == "") {
212                 throw new Exception('URL is empty');
213         }
214
215         $urlparts = parse_url($gcontact['url']);
216         if (!isset($urlparts["scheme"])) {
217                 throw new Exception("This (".$gcontact['url'].") doesn't seem to be an url.");
218         }
219
220         if (in_array($urlparts["host"], array("www.facebook.com", "facebook.com", "twitter.com",
221                                                 "identi.ca", "alpha.app.net"))) {
222                 throw new Exception('Contact from a non federated network ignored. ('.$gcontact['url'].')');
223         }
224
225         // Don't store the statusnet connector as network
226         // We can't simply set this to NETWORK_OSTATUS since the connector could have fetched posts from friendica as well
227         if ($gcontact['network'] == NETWORK_STATUSNET) {
228                 $gcontact['network'] = "";
229         }
230
231         // Assure that there are no parameter fragments in the profile url
232         if (in_array($gcontact['network'], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""))) {
233                 $gcontact['url'] = clean_contact_url($gcontact['url']);
234         }
235
236         $alternate = poco_alternate_ostatus_url($gcontact['url']);
237
238         // The global contacts should contain the original picture, not the cached one
239         if (($gcontact['generation'] != 1) AND stristr(normalise_link($gcontact['photo']), normalise_link(App::get_baseurl()."/photo/"))) {
240                 $gcontact['photo'] = "";
241         }
242
243         if (!isset($gcontact['network'])) {
244                 $r = q("SELECT `network` FROM `contact` WHERE `uid` = 0 AND `nurl` = '%s' AND `network` != '' AND `network` != '%s' LIMIT 1",
245                         dbesc(normalise_link($gcontact['url'])), dbesc(NETWORK_STATUSNET)
246                 );
247                 if (dbm::is_result($r)) {
248                         $gcontact['network'] = $r[0]["network"];
249                 }
250
251                 if (($gcontact['network'] == "") OR ($gcontact['network'] == NETWORK_OSTATUS)) {
252                         $r = q("SELECT `network`, `url` FROM `contact` WHERE `uid` = 0 AND `alias` IN ('%s', '%s') AND `network` != '' AND `network` != '%s' LIMIT 1",
253                                 dbesc($gcontact['url']), dbesc(normalise_link($gcontact['url'])), dbesc(NETWORK_STATUSNET)
254                         );
255                         if (dbm::is_result($r)) {
256                                 $gcontact['network'] = $r[0]["network"];
257                         }
258                 }
259         }
260
261         $gcontact['server_url'] = '';
262         $gcontact['network'] = '';
263
264         $x = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
265                 dbesc(normalise_link($gcontact['url']))
266         );
267
268         if (count($x)) {
269                 if (!isset($gcontact['network']) AND ($x[0]["network"] != NETWORK_STATUSNET)) {
270                         $gcontact['network'] = $x[0]["network"];
271                 }
272                 if ($gcontact['updated'] <= NULL_DATE) {
273                         $gcontact['updated'] = $x[0]["updated"];
274                 }
275                 if (!isset($gcontact['server_url']) AND (normalise_link($x[0]["server_url"]) != normalise_link($x[0]["url"]))) {
276                         $gcontact['server_url'] = $x[0]["server_url"];
277                 }
278                 if (!isset($gcontact['addr'])) {
279                         $gcontact['addr'] = $x[0]["addr"];
280                 }
281         }
282
283         if ((!isset($gcontact['network']) OR !isset($gcontact['name']) OR !isset($gcontact['addr']) OR !isset($gcontact['photo']) OR !isset($gcontact['server_url']) OR $alternate)
284                 AND poco_reachable($gcontact['url'], $gcontact['server_url'], $gcontact['network'], false)) {
285                 $data = Probe::uri($gcontact['url']);
286
287                 if ($data["network"] == NETWORK_PHANTOM) {
288                         throw new Exception('Probing for URL '.$gcontact['url'].' failed');
289                 }
290
291                 $orig_profile = $gcontact['url'];
292
293                 $gcontact["server_url"] = $data["baseurl"];
294
295                 $gcontact = array_merge($gcontact, $data);
296
297                 if ($alternate AND ($gcontact['network'] == NETWORK_OSTATUS)) {
298                         // Delete the old entry - if it exists
299                         $r = q("SELECT `id` FROM `gcontact` WHERE `nurl` = '%s'", dbesc(normalise_link($orig_profile)));
300                         if ($r) {
301                                 q("DELETE FROM `gcontact` WHERE `nurl` = '%s'", dbesc(normalise_link($orig_profile)));
302                                 q("DELETE FROM `glink` WHERE `gcid` = %d", intval($r[0]["id"]));
303                         }
304                 }
305         }
306
307         if (!isset($gcontact['name']) OR !isset($gcontact['photo'])) {
308                 throw new Exception('No name and photo for URL '.$gcontact['url']);
309         }
310
311         if (!in_array($gcontact['network'], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) {
312                 throw new Exception('No federated network ('.$gcontact['network'].') detected for URL '.$gcontact['url']);
313         }
314
315         if (!isset($gcontact['server_url'])) {
316                 // We check the server url to be sure that it is a real one
317                 $server_url = poco_detect_server($gcontact['url']);
318
319                 // We are now sure that it is a correct URL. So we use it in the future
320                 if ($server_url != "") {
321                         $gcontact['server_url'] = $server_url;
322                 }
323         }
324
325         // The server URL doesn't seem to be valid, so we don't store it.
326         if (!poco_check_server($gcontact['server_url'], $gcontact['network'])) {
327                 $gcontact['server_url'] = "";
328         }
329
330         return $gcontact;
331 }
332
333 /**
334  * @brief Link the gcontact entry with user, contact and global contact
335  *
336  * @param integer $gcid Global contact ID
337  * @param integer $cid Contact ID
338  * @param integer $uid User ID
339  * @param integer $zcid Global Contact ID
340  * *
341  */
342 function link_gcontact($gcid, $uid = 0, $cid = 0, $zcid = 0) {
343
344         if ($gcid <= 0) {
345                 return;
346         }
347
348         $r = q("SELECT * FROM `glink` WHERE `cid` = %d AND `uid` = %d AND `gcid` = %d AND `zcid` = %d LIMIT 1",
349                 intval($cid),
350                 intval($uid),
351                 intval($gcid),
352                 intval($zcid)
353         );
354         if (!dbm::is_result($r)) {
355                 q("INSERT INTO `glink` (`cid`, `uid`, `gcid`, `zcid`, `updated`) VALUES (%d, %d, %d, %d, '%s') ",
356                         intval($cid),
357                         intval($uid),
358                         intval($gcid),
359                         intval($zcid),
360                         dbesc(datetime_convert())
361                 );
362         } else {
363                 q("UPDATE `glink` SET `updated` = '%s' WHERE `cid` = %d AND `uid` = %d AND `gcid` = %d AND `zcid` = %d",
364                         dbesc(datetime_convert()),
365                         intval($cid),
366                         intval($uid),
367                         intval($gcid),
368                         intval($zcid)
369                 );
370         }
371 }
372
373 function poco_reachable($profile, $server = "", $network = "", $force = false) {
374
375         if ($server == "")
376                 $server = poco_detect_server($profile);
377
378         if ($server == "")
379                 return true;
380
381         return poco_check_server($server, $network, $force);
382 }
383
384 function poco_detect_server($profile) {
385
386         // Try to detect the server path based upon some known standard paths
387         $server_url = "";
388
389         if ($server_url == "") {
390                 $friendica = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $profile);
391                 if ($friendica != $profile) {
392                         $server_url = $friendica;
393                         $network = NETWORK_DFRN;
394                 }
395         }
396
397         if ($server_url == "") {
398                 $diaspora = preg_replace("=(https?://)(.*)/u/(.*)=ism", "$1$2", $profile);
399                 if ($diaspora != $profile) {
400                         $server_url = $diaspora;
401                         $network = NETWORK_DIASPORA;
402                 }
403         }
404
405         if ($server_url == "") {
406                 $red = preg_replace("=(https?://)(.*)/channel/(.*)=ism", "$1$2", $profile);
407                 if ($red != $profile) {
408                         $server_url = $red;
409                         $network = NETWORK_DIASPORA;
410                 }
411         }
412
413         // Mastodon
414         if ($server_url == "") {
415                 $mastodon = preg_replace("=(https?://)(.*)/users/(.*)=ism", "$1$2", $profile);
416                 if ($mastodon != $profile) {
417                         $server_url = $mastodon;
418                         $network = NETWORK_OSTATUS;
419                 }
420         }
421
422         // Numeric OStatus variant
423         if ($server_url == "") {
424                 $ostatus = preg_replace("=(https?://)(.*)/user/(.*)=ism", "$1$2", $profile);
425                 if ($ostatus != $profile) {
426                         $server_url = $ostatus;
427                         $network = NETWORK_OSTATUS;
428                 }
429         }
430
431         // Wild guess
432         if ($server_url == "") {
433                 $base = preg_replace("=(https?://)(.*?)/(.*)=ism", "$1$2", $profile);
434                 if ($base != $profile) {
435                         $server_url = $base;
436                         $network = NETWORK_PHANTOM;
437                 }
438         }
439
440         if ($server_url == "") {
441                 return "";
442         }
443
444         $r = q("SELECT `id` FROM `gserver` WHERE `nurl` = '%s' AND `last_contact` > `last_failure`",
445                 dbesc(normalise_link($server_url)));
446         if (dbm::is_result($r)) {
447                 return $server_url;
448         }
449
450         // Fetch the host-meta to check if this really is a server
451         $serverret = z_fetch_url($server_url."/.well-known/host-meta");
452         if (!$serverret["success"]) {
453                 return "";
454         }
455
456         return $server_url;
457 }
458
459 function poco_alternate_ostatus_url($url) {
460         return(preg_match("=https?://.+/user/\d+=ism", $url, $matches));
461 }
462
463 function poco_last_updated($profile, $force = false) {
464
465         $gcontacts = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s'",
466                         dbesc(normalise_link($profile)));
467
468         if (!dbm::is_result($gcontacts)) {
469                 return false;
470         }
471
472         $contact = array("url" => $profile);
473
474         if ($gcontacts[0]["created"] <= NULL_DATE) {
475                 $contact['created'] = datetime_convert();
476         }
477
478         if ($force) {
479                 $server_url = normalise_link(poco_detect_server($profile));
480         }
481
482         if (($server_url == '') AND ($gcontacts[0]["server_url"] != "")) {
483                 $server_url = $gcontacts[0]["server_url"];
484         }
485
486         if (!$force AND (($server_url == '') OR ($gcontacts[0]["server_url"] == $gcontacts[0]["nurl"]))) {
487                 $server_url = normalise_link(poco_detect_server($profile));
488         }
489
490         if (!in_array($gcontacts[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_FEED, NETWORK_OSTATUS, ""))) {
491                 logger("Profile ".$profile.": Network type ".$gcontacts[0]["network"]." can't be checked", LOGGER_DEBUG);
492                 return false;
493         }
494
495         if ($server_url != "") {
496                 if (!poco_check_server($server_url, $gcontacts[0]["network"], $force)) {
497                         if ($force) {
498                                 q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'",
499                                         dbesc(datetime_convert()), dbesc(normalise_link($profile)));
500                         }
501
502                         logger("Profile ".$profile.": Server ".$server_url." wasn't reachable.", LOGGER_DEBUG);
503                         return false;
504                 }
505                 $contact['server_url'] = $server_url;
506         }
507
508         if (in_array($gcontacts[0]["network"], array("", NETWORK_FEED))) {
509                 $server = q("SELECT `network` FROM `gserver` WHERE `nurl` = '%s' AND `network` != ''",
510                         dbesc(normalise_link($server_url)));
511
512                 if ($server) {
513                         $contact['network'] = $server[0]["network"];
514                 } else {
515                         return false;
516                 }
517         }
518
519         // noscrape is really fast so we don't cache the call.
520         if (($server_url != "") AND ($gcontacts[0]["nick"] != "")) {
521
522                 //  Use noscrape if possible
523                 $server = q("SELECT `noscrape`, `network` FROM `gserver` WHERE `nurl` = '%s' AND `noscrape` != ''", dbesc(normalise_link($server_url)));
524
525                 if ($server) {
526                         $noscraperet = z_fetch_url($server[0]["noscrape"]."/".$gcontacts[0]["nick"]);
527
528                         if ($noscraperet["success"] AND ($noscraperet["body"] != "")) {
529
530                                 $noscrape = json_decode($noscraperet["body"], true);
531
532                                 if (is_array($noscrape)) {
533                                         $contact["network"] = $server[0]["network"];
534
535                                         if (isset($noscrape["fn"])) {
536                                                 $contact["name"] = $noscrape["fn"];
537                                         }
538                                         if (isset($noscrape["comm"])) {
539                                                 $contact["community"] = $noscrape["comm"];
540                                         }
541                                         if (isset($noscrape["tags"])) {
542                                                 $keywords = implode(" ", $noscrape["tags"]);
543                                                 if ($keywords != "") {
544                                                         $contact["keywords"] = $keywords;
545                                                 }
546                                         }
547
548                                         $location = formatted_location($noscrape);
549                                         if ($location) {
550                                                 $contact["location"] = $location;
551                                         }
552                                         if (isset($noscrape["dfrn-notify"])) {
553                                                 $contact["notify"] = $noscrape["dfrn-notify"];
554                                         }
555                                         // Remove all fields that are not present in the gcontact table
556                                         unset($noscrape["fn"]);
557                                         unset($noscrape["key"]);
558                                         unset($noscrape["homepage"]);
559                                         unset($noscrape["comm"]);
560                                         unset($noscrape["tags"]);
561                                         unset($noscrape["locality"]);
562                                         unset($noscrape["region"]);
563                                         unset($noscrape["country-name"]);
564                                         unset($noscrape["contacts"]);
565                                         unset($noscrape["dfrn-request"]);
566                                         unset($noscrape["dfrn-confirm"]);
567                                         unset($noscrape["dfrn-notify"]);
568                                         unset($noscrape["dfrn-poll"]);
569
570                                         // Set the date of the last contact
571                                         /// @todo By now the function "update_gcontact" doesn't work with this field
572                                         //$contact["last_contact"] = datetime_convert();
573
574                                         $contact = array_merge($contact, $noscrape);
575
576                                         update_gcontact($contact);
577
578                                         if (trim($noscrape["updated"]) != "") {
579                                                 q("UPDATE `gcontact` SET `last_contact` = '%s' WHERE `nurl` = '%s'",
580                                                         dbesc(datetime_convert()), dbesc(normalise_link($profile)));
581
582                                                 logger("Profile ".$profile." was last updated at ".$noscrape["updated"]." (noscrape)", LOGGER_DEBUG);
583
584                                                 return $noscrape["updated"];
585                                         }
586                                 }
587                         }
588                 }
589         }
590
591         // If we only can poll the feed, then we only do this once a while
592         if (!$force AND !poco_do_update($gcontacts[0]["created"], $gcontacts[0]["updated"], $gcontacts[0]["last_failure"], $gcontacts[0]["last_contact"])) {
593                 logger("Profile ".$profile." was last updated at ".$gcontacts[0]["updated"]." (cached)", LOGGER_DEBUG);
594
595                 update_gcontact($contact);
596                 return $gcontacts[0]["updated"];
597         }
598
599         $data = Probe::uri($profile);
600
601         // Is the profile link the alternate OStatus link notation? (http://domain.tld/user/4711)
602         // Then check the other link and delete this one
603         if (($data["network"] == NETWORK_OSTATUS) AND poco_alternate_ostatus_url($profile) AND
604                 (normalise_link($profile) == normalise_link($data["alias"])) AND
605                 (normalise_link($profile) != normalise_link($data["url"]))) {
606
607                 // Delete the old entry
608                 q("DELETE FROM `gcontact` WHERE `nurl` = '%s'", dbesc(normalise_link($profile)));
609                 q("DELETE FROM `glink` WHERE `gcid` = %d", intval($gcontacts[0]["id"]));
610
611                 $gcontact = array_merge($gcontacts[0], $data);
612
613                 $gcontact["server_url"] = $data["baseurl"];
614
615                 try {
616                         $gcontact = sanitize_gcontact($gcontact);
617                         update_gcontact($gcontact);
618
619                         poco_last_updated($data["url"], $force);
620                 } catch (Exception $e) {
621                         logger($e->getMessage(), LOGGER_DEBUG);
622                 }
623
624                 logger("Profile ".$profile." was deleted", LOGGER_DEBUG);
625                 return false;
626         }
627
628         if (($data["poll"] == "") OR (in_array($data["network"], array(NETWORK_FEED, NETWORK_PHANTOM)))) {
629                 q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'",
630                         dbesc(datetime_convert()), dbesc(normalise_link($profile)));
631
632                 logger("Profile ".$profile." wasn't reachable (profile)", LOGGER_DEBUG);
633                 return false;
634         }
635
636         $contact = array_merge($contact, $data);
637
638         $contact["server_url"] = $data["baseurl"];
639
640         update_gcontact($contact);
641
642         $feedret = z_fetch_url($data["poll"]);
643
644         if (!$feedret["success"]) {
645                 q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'",
646                         dbesc(datetime_convert()), dbesc(normalise_link($profile)));
647
648                 logger("Profile ".$profile." wasn't reachable (no feed)", LOGGER_DEBUG);
649                 return false;
650         }
651
652         $doc = new DOMDocument();
653         @$doc->loadXML($feedret["body"]);
654
655         $xpath = new DomXPath($doc);
656         $xpath->registerNamespace('atom', "http://www.w3.org/2005/Atom");
657
658         $entries = $xpath->query('/atom:feed/atom:entry');
659
660         $last_updated = "";
661
662         foreach ($entries AS $entry) {
663                 $published = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue;
664                 $updated = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue;
665
666                 if ($last_updated < $published)
667                         $last_updated = $published;
668
669                 if ($last_updated < $updated)
670                         $last_updated = $updated;
671         }
672
673         // Maybe there aren't any entries. Then check if it is a valid feed
674         if ($last_updated == "") {
675                 if ($xpath->query('/atom:feed')->length > 0) {
676                         $last_updated = NULL_DATE;
677                 }
678         }
679         q("UPDATE `gcontact` SET `updated` = '%s', `last_contact` = '%s' WHERE `nurl` = '%s'",
680                 dbesc(dbm::date($last_updated)), dbesc(dbm::date()), dbesc(normalise_link($profile)));
681
682         if (($gcontacts[0]["generation"] == 0)) {
683                 q("UPDATE `gcontact` SET `generation` = 9 WHERE `nurl` = '%s'",
684                         dbesc(normalise_link($profile)));
685         }
686
687         logger("Profile ".$profile." was last updated at ".$last_updated, LOGGER_DEBUG);
688
689         return($last_updated);
690 }
691
692 function poco_do_update($created, $updated, $last_failure,  $last_contact) {
693         $now = strtotime(datetime_convert());
694
695         if ($updated > $last_contact)
696                 $contact_time = strtotime($updated);
697         else
698                 $contact_time = strtotime($last_contact);
699
700         $failure_time = strtotime($last_failure);
701         $created_time = strtotime($created);
702
703         // If there is no "created" time then use the current time
704         if ($created_time <= 0)
705                 $created_time = $now;
706
707         // If the last contact was less than 24 hours then don't update
708         if (($now - $contact_time) < (60 * 60 * 24))
709                 return false;
710
711         // If the last failure was less than 24 hours then don't update
712         if (($now - $failure_time) < (60 * 60 * 24))
713                 return false;
714
715         // If the last contact was less than a week ago and the last failure is older than a week then don't update
716         //if ((($now - $contact_time) < (60 * 60 * 24 * 7)) AND ($contact_time > $failure_time))
717         //      return false;
718
719         // 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
720         if ((($now - $contact_time) > (60 * 60 * 24 * 7)) AND (($now - $created_time) > (60 * 60 * 24 * 7)) AND (($now - $failure_time) < (60 * 60 * 24 * 7)))
721                 return false;
722
723         // 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
724         if ((($now - $contact_time) > (60 * 60 * 24 * 30)) AND (($now - $created_time) > (60 * 60 * 24 * 30)) AND (($now - $failure_time) < (60 * 60 * 24 * 30)))
725                 return false;
726
727         return true;
728 }
729
730 function poco_to_boolean($val) {
731         if (($val == "true") OR ($val == 1))
732                 return(true);
733         if (($val == "false") OR ($val == 0))
734                 return(false);
735
736         return ($val);
737 }
738
739 /**
740  * @brief Detect server type (Hubzilla or Friendica) via the poco data
741  *
742  * @param object $data POCO data
743  * @return array Server data
744  */
745 function poco_detect_poco_data($data) {
746         $server = false;
747
748         if (!isset($data->entry)) {
749                 return false;
750         }
751
752         if (count($data->entry) == 0) {
753                 return false;
754         }
755
756         if (!isset($data->entry[0]->urls)) {
757                 return false;
758         }
759
760         if (count($data->entry[0]->urls) == 0) {
761                 return false;
762         }
763
764         foreach ($data->entry[0]->urls AS $url) {
765                 if ($url->type == 'zot') {
766                         $server = array();
767                         $server["platform"] = 'Hubzilla';
768                         $server["network"] = NETWORK_DIASPORA;
769                         return $server;
770                 }
771         }
772         return false;
773 }
774
775 /**
776  * @brief Detect server type by using the nodeinfo data
777  *
778  * @param string $server_url address of the server
779  * @return array Server data
780  */
781 function poco_fetch_nodeinfo($server_url) {
782         $serverret = z_fetch_url($server_url."/.well-known/nodeinfo");
783         if (!$serverret["success"]) {
784                 return false;
785         }
786
787         $nodeinfo = json_decode($serverret['body']);
788
789         if (!is_object($nodeinfo)) {
790                 return false;
791         }
792
793         if (!is_array($nodeinfo->links)) {
794                 return false;
795         }
796
797         $nodeinfo_url = '';
798
799         foreach ($nodeinfo->links AS $link) {
800                 if ($link->rel == 'http://nodeinfo.diaspora.software/ns/schema/1.0') {
801                         $nodeinfo_url = $link->href;
802                 }
803         }
804
805         if ($nodeinfo_url == '') {
806                 return false;
807         }
808
809         $serverret = z_fetch_url($nodeinfo_url);
810         if (!$serverret["success"]) {
811                 return false;
812         }
813
814         $nodeinfo = json_decode($serverret['body']);
815
816         if (!is_object($nodeinfo)) {
817                 return false;
818         }
819
820         $server = array();
821
822         $server['register_policy'] = REGISTER_CLOSED;
823
824         if (is_bool($nodeinfo->openRegistrations) AND $nodeinfo->openRegistrations) {
825                 $server['register_policy'] = REGISTER_OPEN;
826         }
827
828         if (is_object($nodeinfo->software)) {
829                 if (isset($nodeinfo->software->name)) {
830                         $server['platform'] = $nodeinfo->software->name;
831                 }
832
833                 if (isset($nodeinfo->software->version)) {
834                         $server['version'] = $nodeinfo->software->version;
835                         // Version numbers on Nodeinfo are presented with additional info, e.g.:
836                         // 0.6.3.0-p1702cc1c, 0.6.99.0-p1b9ab160 or 3.4.3-2-1191.
837                         $server['version'] = preg_replace("=(.+)-(.{4,})=ism", "$1", $server['version']);
838                 }
839         }
840
841         if (is_object($nodeinfo->metadata)) {
842                 if (isset($nodeinfo->metadata->nodeName)) {
843                         $server['site_name'] = $nodeinfo->metadata->nodeName;
844                 }
845         }
846
847         $diaspora = false;
848         $friendica = false;
849         $gnusocial = false;
850
851         if (is_array($nodeinfo->protocols->inbound)) {
852                 foreach ($nodeinfo->protocols->inbound AS $inbound) {
853                         if ($inbound == 'diaspora') {
854                                 $diaspora = true;
855                         }
856                         if ($inbound == 'friendica') {
857                                 $friendica = true;
858                         }
859                         if ($inbound == 'gnusocial') {
860                                 $gnusocial = true;
861                         }
862                 }
863         }
864
865         if ($gnusocial) {
866                 $server['network'] = NETWORK_OSTATUS;
867         }
868         if ($diaspora) {
869                 $server['network'] = NETWORK_DIASPORA;
870         }
871         if ($friendica) {
872                 $server['network'] = NETWORK_DFRN;
873         }
874
875         if (!$server) {
876                 return false;
877         }
878
879         return $server;
880 }
881
882 /**
883  * @brief Detect server type (Hubzilla or Friendica) via the front page body
884  *
885  * @param string $body Front page of the server
886  * @return array Server data
887  */
888 function poco_detect_server_type($body) {
889         $server = false;
890
891         $doc = new \DOMDocument();
892         @$doc->loadHTML($body);
893         $xpath = new \DomXPath($doc);
894
895         $list = $xpath->query("//meta[@name]");
896
897         foreach ($list as $node) {
898                 $attr = array();
899                 if ($node->attributes->length) {
900                         foreach ($node->attributes as $attribute) {
901                                 $attr[$attribute->name] = $attribute->value;
902                         }
903                 }
904                 if ($attr['name'] == 'generator') {
905                         $version_part = explode(" ", $attr['content']);
906                         if (count($version_part) == 2) {
907                                 if (in_array($version_part[0], array("Friendika", "Friendica"))) {
908                                         $server = array();
909                                         $server["platform"] = $version_part[0];
910                                         $server["version"] = $version_part[1];
911                                         $server["network"] = NETWORK_DFRN;
912                                 }
913                         }
914                 }
915         }
916
917         if (!$server) {
918                 $list = $xpath->query("//meta[@property]");
919
920                 foreach ($list as $node) {
921                         $attr = array();
922                         if ($node->attributes->length) {
923                                 foreach ($node->attributes as $attribute) {
924                                         $attr[$attribute->name] = $attribute->value;
925                                 }
926                         }
927                         if ($attr['property'] == 'generator') {
928                                 if (in_array($attr['content'], array("hubzilla", "BlaBlaNet"))) {
929                                         $server = array();
930                                         $server["platform"] = $attr['content'];
931                                         $server["version"] = "";
932                                         $server["network"] = NETWORK_DIASPORA;
933                                 }
934                         }
935                 }
936         }
937
938         if (!$server) {
939                 return false;
940         }
941
942         $server["site_name"] = $xpath->evaluate($element."//head/title/text()", $context)->item(0)->nodeValue;
943         return $server;
944 }
945
946 function poco_check_server($server_url, $network = "", $force = false) {
947
948         // Unify the server address
949         $server_url = trim($server_url, "/");
950         $server_url = str_replace("/index.php", "", $server_url);
951
952         if ($server_url == "")
953                 return false;
954
955         $servers = q("SELECT * FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url)));
956         if (dbm::is_result($servers)) {
957
958                 if ($servers[0]["created"] <= NULL_DATE) {
959                         q("UPDATE `gserver` SET `created` = '%s' WHERE `nurl` = '%s'",
960                                 dbesc(datetime_convert()), dbesc(normalise_link($server_url)));
961                 }
962                 $poco = $servers[0]["poco"];
963                 $noscrape = $servers[0]["noscrape"];
964
965                 if ($network == "")
966                         $network = $servers[0]["network"];
967
968                 $last_contact = $servers[0]["last_contact"];
969                 $last_failure = $servers[0]["last_failure"];
970                 $version = $servers[0]["version"];
971                 $platform = $servers[0]["platform"];
972                 $site_name = $servers[0]["site_name"];
973                 $info = $servers[0]["info"];
974                 $register_policy = $servers[0]["register_policy"];
975
976                 if (!$force AND !poco_do_update($servers[0]["created"], "", $last_failure, $last_contact)) {
977                         logger("Use cached data for server ".$server_url, LOGGER_DEBUG);
978                         return ($last_contact >= $last_failure);
979                 }
980         } else {
981                 $poco = "";
982                 $noscrape = "";
983                 $version = "";
984                 $platform = "";
985                 $site_name = "";
986                 $info = "";
987                 $register_policy = -1;
988
989                 $last_contact = NULL_DATE;
990                 $last_failure = NULL_DATE;
991         }
992         logger("Server ".$server_url." is outdated or unknown. Start discovery. Force: ".$force." Created: ".$servers[0]["created"]." Failure: ".$last_failure." Contact: ".$last_contact, LOGGER_DEBUG);
993
994         $failure = false;
995         $possible_failure = false;
996         $orig_last_failure = $last_failure;
997         $orig_last_contact = $last_contact;
998
999         // Check if the page is accessible via SSL.
1000         $orig_server_url = $server_url;
1001         $server_url = str_replace("http://", "https://", $server_url);
1002
1003         // We set the timeout to 20 seconds since this operation should be done in no time if the server was vital
1004         $serverret = z_fetch_url($server_url."/.well-known/host-meta", false, $redirects, array('timeout' => 20));
1005
1006         // Quit if there is a timeout.
1007         // But we want to make sure to only quit if we are mostly sure that this server url fits.
1008         if (dbm::is_result($servers) AND ($orig_server_url == $server_url) AND
1009                 ($serverret['errno'] == CURLE_OPERATION_TIMEDOUT)) {
1010                 logger("Connection to server ".$server_url." timed out.", LOGGER_DEBUG);
1011                 dba::p("UPDATE `gserver` SET `last_failure` = ? WHERE `nurl` = ?", datetime_convert(), normalise_link($server_url));
1012                 return false;
1013         }
1014
1015         // Maybe the page is unencrypted only?
1016         $xmlobj = @simplexml_load_string($serverret["body"],'SimpleXMLElement',0, "http://docs.oasis-open.org/ns/xri/xrd-1.0");
1017         if (!$serverret["success"] OR ($serverret["body"] == "") OR (@sizeof($xmlobj) == 0) OR !is_object($xmlobj)) {
1018                 $server_url = str_replace("https://", "http://", $server_url);
1019
1020                 // We set the timeout to 20 seconds since this operation should be done in no time if the server was vital
1021                 $serverret = z_fetch_url($server_url."/.well-known/host-meta", false, $redirects, array('timeout' => 20));
1022
1023                 // Quit if there is a timeout
1024                 if ($serverret['errno'] == CURLE_OPERATION_TIMEDOUT) {
1025                         logger("Connection to server ".$server_url." timed out.", LOGGER_DEBUG);
1026                         dba::p("UPDATE `gserver` SET `last_failure` = ? WHERE `nurl` = ?", datetime_convert(), normalise_link($server_url));
1027                         return false;
1028                 }
1029
1030                 $xmlobj = @simplexml_load_string($serverret["body"],'SimpleXMLElement',0, "http://docs.oasis-open.org/ns/xri/xrd-1.0");
1031         }
1032
1033         if (!$serverret["success"] OR ($serverret["body"] == "") OR (sizeof($xmlobj) == 0) OR !is_object($xmlobj)) {
1034                 // Workaround for bad configured servers (known nginx problem)
1035                 if (!in_array($serverret["debug"]["http_code"], array("403", "404"))) {
1036                         $failure = true;
1037                 }
1038                 $possible_failure = true;
1039         }
1040
1041         // If the server has no possible failure we reset the cached data
1042         if (!$possible_failure) {
1043                 $version = "";
1044                 $platform = "";
1045                 $site_name = "";
1046                 $info = "";
1047                 $register_policy = -1;
1048         }
1049
1050         // Look for poco
1051         if (!$failure) {
1052                 $serverret = z_fetch_url($server_url."/poco");
1053                 if ($serverret["success"]) {
1054                         $data = json_decode($serverret["body"]);
1055                         if (isset($data->totalResults)) {
1056                                 $poco = $server_url."/poco";
1057                                 $server = poco_detect_poco_data($data);
1058                                 if ($server) {
1059                                         $platform = $server['platform'];
1060                                         $network = $server['network'];
1061                                         $version = '';
1062                                         $site_name = '';
1063                                 }
1064                         }
1065                 }
1066         }
1067
1068         if (!$failure) {
1069                 // Test for Diaspora, Hubzilla, Mastodon or older Friendica servers
1070                 $serverret = z_fetch_url($server_url);
1071
1072                 if (!$serverret["success"] OR ($serverret["body"] == "")) {
1073                         $failure = true;
1074                 } else {
1075                         $server = poco_detect_server_type($serverret["body"]);
1076                         if ($server) {
1077                                 $platform = $server['platform'];
1078                                 $network = $server['network'];
1079                                 $version = $server['version'];
1080                                 $site_name = $server['site_name'];
1081                         }
1082
1083                         $lines = explode("\n",$serverret["header"]);
1084                         if(count($lines)) {
1085                                 foreach($lines as $line) {
1086                                         $line = trim($line);
1087                                         if(stristr($line,'X-Diaspora-Version:')) {
1088                                                 $platform = "Diaspora";
1089                                                 $version = trim(str_replace("X-Diaspora-Version:", "", $line));
1090                                                 $version = trim(str_replace("x-diaspora-version:", "", $version));
1091                                                 $network = NETWORK_DIASPORA;
1092                                                 $versionparts = explode("-", $version);
1093                                                 $version = $versionparts[0];
1094                                         }
1095
1096                                         if(stristr($line,'Server: Mastodon')) {
1097                                                 $platform = "Mastodon";
1098                                                 $network = NETWORK_OSTATUS;
1099                                         }
1100                                 }
1101                         }
1102                 }
1103         }
1104
1105         if (!$failure AND ($poco == "")) {
1106                 // Test for Statusnet
1107                 // Will also return data for Friendica and GNU Social - but it will be overwritten later
1108                 // The "not implemented" is a special treatment for really, really old Friendica versions
1109                 $serverret = z_fetch_url($server_url."/api/statusnet/version.json");
1110                 if ($serverret["success"] AND ($serverret["body"] != '{"error":"not implemented"}') AND
1111                         ($serverret["body"] != '') AND (strlen($serverret["body"]) < 30)) {
1112                         $platform = "StatusNet";
1113                         // Remove junk that some GNU Social servers return
1114                         $version = str_replace(chr(239).chr(187).chr(191), "", $serverret["body"]);
1115                         $version = trim($version, '"');
1116                         $network = NETWORK_OSTATUS;
1117                 }
1118
1119                 // Test for GNU Social
1120                 $serverret = z_fetch_url($server_url."/api/gnusocial/version.json");
1121                 if ($serverret["success"] AND ($serverret["body"] != '{"error":"not implemented"}') AND
1122                         ($serverret["body"] != '') AND (strlen($serverret["body"]) < 30)) {
1123                         $platform = "GNU Social";
1124                         // Remove junk that some GNU Social servers return
1125                         $version = str_replace(chr(239).chr(187).chr(191), "", $serverret["body"]);
1126                         $version = trim($version, '"');
1127                         $network = NETWORK_OSTATUS;
1128                 }
1129
1130                 // Test for Mastodon
1131                 $serverret = z_fetch_url($server_url."/api/v1/instance");
1132                 if ($serverret["success"] AND ($serverret["body"] != '')) {
1133                         $data = json_decode($serverret["body"]);
1134                         if (isset($data->version)) {
1135                                 $platform = "Mastodon";
1136                                 $version = $data->version;
1137                                 $site_name = $data->title;
1138                                 $info = $data->description;
1139                                 $network = NETWORK_OSTATUS;
1140                         }
1141                 }
1142         }
1143
1144         if (!$failure) {
1145                 // Test for Hubzilla, Redmatrix or Friendica
1146                 $serverret = z_fetch_url($server_url."/api/statusnet/config.json");
1147                 if ($serverret["success"]) {
1148                         $data = json_decode($serverret["body"]);
1149                         if (isset($data->site->server)) {
1150                                 if (isset($data->site->platform)) {
1151                                         $platform = $data->site->platform->PLATFORM_NAME;
1152                                         $version = $data->site->platform->STD_VERSION;
1153                                         $network = NETWORK_DIASPORA;
1154                                 }
1155                                 if (isset($data->site->BlaBlaNet)) {
1156                                         $platform = $data->site->BlaBlaNet->PLATFORM_NAME;
1157                                         $version = $data->site->BlaBlaNet->STD_VERSION;
1158                                         $network = NETWORK_DIASPORA;
1159                                 }
1160                                 if (isset($data->site->hubzilla)) {
1161                                         $platform = $data->site->hubzilla->PLATFORM_NAME;
1162                                         $version = $data->site->hubzilla->RED_VERSION;
1163                                         $network = NETWORK_DIASPORA;
1164                                 }
1165                                 if (isset($data->site->redmatrix)) {
1166                                         if (isset($data->site->redmatrix->PLATFORM_NAME))
1167                                                 $platform = $data->site->redmatrix->PLATFORM_NAME;
1168                                         elseif (isset($data->site->redmatrix->RED_PLATFORM))
1169                                                 $platform = $data->site->redmatrix->RED_PLATFORM;
1170
1171                                         $version = $data->site->redmatrix->RED_VERSION;
1172                                         $network = NETWORK_DIASPORA;
1173                                 }
1174                                 if (isset($data->site->friendica)) {
1175                                         $platform = $data->site->friendica->FRIENDICA_PLATFORM;
1176                                         $version = $data->site->friendica->FRIENDICA_VERSION;
1177                                         $network = NETWORK_DFRN;
1178                                 }
1179
1180                                 $site_name = $data->site->name;
1181
1182                                 $data->site->closed = poco_to_boolean($data->site->closed);
1183                                 $data->site->private = poco_to_boolean($data->site->private);
1184                                 $data->site->inviteonly = poco_to_boolean($data->site->inviteonly);
1185
1186                                 if (!$data->site->closed AND !$data->site->private and $data->site->inviteonly)
1187                                         $register_policy = REGISTER_APPROVE;
1188                                 elseif (!$data->site->closed AND !$data->site->private)
1189                                         $register_policy = REGISTER_OPEN;
1190                                 else
1191                                         $register_policy = REGISTER_CLOSED;
1192                         }
1193                 }
1194         }
1195
1196         // Query statistics.json. Optional package for Diaspora, Friendica and Redmatrix
1197         if (!$failure) {
1198                 $serverret = z_fetch_url($server_url."/statistics.json");
1199                 if ($serverret["success"]) {
1200                         $data = json_decode($serverret["body"]);
1201                         if (isset($data->version)) {
1202                                 $version = $data->version;
1203                                 // Version numbers on statistics.json are presented with additional info, e.g.:
1204                                 // 0.6.3.0-p1702cc1c, 0.6.99.0-p1b9ab160 or 3.4.3-2-1191.
1205                                 $version = preg_replace("=(.+)-(.{4,})=ism", "$1", $version);
1206                         }
1207
1208                         $site_name = $data->name;
1209
1210                         if (isset($data->network)) {
1211                                 $platform = $data->network;
1212                         }
1213
1214                         if ($platform == "Diaspora") {
1215                                 $network = NETWORK_DIASPORA;
1216                         }
1217
1218                         if ($data->registrations_open) {
1219                                 $register_policy = REGISTER_OPEN;
1220                         } else {
1221                                 $register_policy = REGISTER_CLOSED;
1222                         }
1223                 }
1224         }
1225
1226         // Query nodeinfo. Working for (at least) Diaspora and Friendica.
1227         if (!$failure) {
1228                 $server = poco_fetch_nodeinfo($server_url);
1229                 if ($server) {
1230                         $register_policy = $server['register_policy'];
1231
1232                         if (isset($server['platform'])) {
1233                                 $platform = $server['platform'];
1234                         }
1235
1236                         if (isset($server['network'])) {
1237                                 $network = $server['network'];
1238                         }
1239
1240                         if (isset($server['version'])) {
1241                                 $version = $server['version'];
1242                         }
1243
1244                         if (isset($server['site_name'])) {
1245                                 $site_name = $server['site_name'];
1246                         }
1247                 }
1248         }
1249
1250         // Check for noscrape
1251         // Friendica servers could be detected as OStatus servers
1252         if (!$failure AND in_array($network, array(NETWORK_DFRN, NETWORK_OSTATUS))) {
1253                 $serverret = z_fetch_url($server_url."/friendica/json");
1254
1255                 if (!$serverret["success"])
1256                         $serverret = z_fetch_url($server_url."/friendika/json");
1257
1258                 if ($serverret["success"]) {
1259                         $data = json_decode($serverret["body"]);
1260
1261                         if (isset($data->version)) {
1262                                 $network = NETWORK_DFRN;
1263
1264                                 $noscrape = $data->no_scrape_url;
1265                                 $version = $data->version;
1266                                 $site_name = $data->site_name;
1267                                 $info = $data->info;
1268                                 $register_policy_str = $data->register_policy;
1269                                 $platform = $data->platform;
1270
1271                                 switch ($register_policy_str) {
1272                                         case "REGISTER_CLOSED":
1273                                                 $register_policy = REGISTER_CLOSED;
1274                                                 break;
1275                                         case "REGISTER_APPROVE":
1276                                                 $register_policy = REGISTER_APPROVE;
1277                                                 break;
1278                                         case "REGISTER_OPEN":
1279                                                 $register_policy = REGISTER_OPEN;
1280                                                 break;
1281                                 }
1282                         }
1283                 }
1284         }
1285
1286         if ($possible_failure AND !$failure) {
1287                 $failure = true;
1288         }
1289
1290         if ($failure) {
1291                 $last_contact = $orig_last_contact;
1292                 $last_failure = datetime_convert();
1293         } else {
1294                 $last_contact = datetime_convert();
1295                 $last_failure = $orig_last_failure;
1296         }
1297
1298         if (($last_contact <= $last_failure) AND !$failure) {
1299                 logger("Server ".$server_url." seems to be alive, but last contact wasn't set - could be a bug", LOGGER_DEBUG);
1300         } else if (($last_contact >= $last_failure) AND $failure) {
1301                 logger("Server ".$server_url." seems to be dead, but last failure wasn't set - could be a bug", LOGGER_DEBUG);
1302         }
1303
1304         // Check again if the server exists
1305         $servers = q("SELECT `nurl` FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url)));
1306
1307         $version = strip_tags($version);
1308         $site_name = strip_tags($site_name);
1309         $info = strip_tags($info);
1310         $platform = strip_tags($platform);
1311
1312         if ($servers) {
1313                  q("UPDATE `gserver` SET `url` = '%s', `version` = '%s', `site_name` = '%s', `info` = '%s', `register_policy` = %d, `poco` = '%s', `noscrape` = '%s',
1314                         `network` = '%s', `platform` = '%s', `last_contact` = '%s', `last_failure` = '%s' WHERE `nurl` = '%s'",
1315                         dbesc($server_url),
1316                         dbesc($version),
1317                         dbesc($site_name),
1318                         dbesc($info),
1319                         intval($register_policy),
1320                         dbesc($poco),
1321                         dbesc($noscrape),
1322                         dbesc($network),
1323                         dbesc($platform),
1324                         dbesc($last_contact),
1325                         dbesc($last_failure),
1326                         dbesc(normalise_link($server_url))
1327                 );
1328         } elseif (!$failure) {
1329                 q("INSERT INTO `gserver` (`url`, `nurl`, `version`, `site_name`, `info`, `register_policy`, `poco`, `noscrape`, `network`, `platform`, `created`, `last_contact`, `last_failure`)
1330                                         VALUES ('%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s')",
1331                                 dbesc($server_url),
1332                                 dbesc(normalise_link($server_url)),
1333                                 dbesc($version),
1334                                 dbesc($site_name),
1335                                 dbesc($info),
1336                                 intval($register_policy),
1337                                 dbesc($poco),
1338                                 dbesc($noscrape),
1339                                 dbesc($network),
1340                                 dbesc($platform),
1341                                 dbesc(datetime_convert()),
1342                                 dbesc($last_contact),
1343                                 dbesc($last_failure),
1344                                 dbesc(datetime_convert())
1345                 );
1346         }
1347         logger("End discovery for server ".$server_url, LOGGER_DEBUG);
1348
1349         return !$failure;
1350 }
1351
1352 function count_common_friends($uid,$cid) {
1353
1354         $r = q("SELECT count(*) as `total`
1355                 FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
1356                 WHERE `glink`.`cid` = %d AND `glink`.`uid` = %d AND
1357                 ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`))
1358                 AND `gcontact`.`nurl` IN (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 and id != %d ) ",
1359                 intval($cid),
1360                 intval($uid),
1361                 intval($uid),
1362                 intval($cid)
1363         );
1364
1365 //      logger("count_common_friends: $uid $cid {$r[0]['total']}");
1366         if (dbm::is_result($r))
1367                 return $r[0]['total'];
1368         return 0;
1369
1370 }
1371
1372
1373 function common_friends($uid,$cid,$start = 0,$limit=9999,$shuffle = false) {
1374
1375         if($shuffle)
1376                 $sql_extra = " order by rand() ";
1377         else
1378                 $sql_extra = " order by `gcontact`.`name` asc ";
1379
1380         $r = q("SELECT `gcontact`.*, `contact`.`id` AS `cid`
1381                 FROM `glink`
1382                 INNER JOIN `gcontact` ON `glink`.`gcid` = `gcontact`.`id`
1383                 INNER JOIN `contact` ON `gcontact`.`nurl` = `contact`.`nurl`
1384                 WHERE `glink`.`cid` = %d and `glink`.`uid` = %d
1385                         AND `contact`.`uid` = %d AND `contact`.`self` = 0 AND `contact`.`blocked` = 0
1386                         AND `contact`.`hidden` = 0 AND `contact`.`id` != %d
1387                         AND ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`))
1388                         $sql_extra LIMIT %d, %d",
1389                 intval($cid),
1390                 intval($uid),
1391                 intval($uid),
1392                 intval($cid),
1393                 intval($start),
1394                 intval($limit)
1395         );
1396
1397         return $r;
1398
1399 }
1400
1401
1402 function count_common_friends_zcid($uid,$zcid) {
1403
1404         $r = q("SELECT count(*) as `total`
1405                 FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
1406                 where `glink`.`zcid` = %d
1407                 and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 ) ",
1408                 intval($zcid),
1409                 intval($uid)
1410         );
1411
1412         if (dbm::is_result($r))
1413                 return $r[0]['total'];
1414         return 0;
1415
1416 }
1417
1418 function common_friends_zcid($uid,$zcid,$start = 0, $limit = 9999,$shuffle = false) {
1419
1420         if($shuffle)
1421                 $sql_extra = " order by rand() ";
1422         else
1423                 $sql_extra = " order by `gcontact`.`name` asc ";
1424
1425         $r = q("SELECT `gcontact`.*
1426                 FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
1427                 where `glink`.`zcid` = %d
1428                 and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 ) 
1429                 $sql_extra limit %d, %d",
1430                 intval($zcid),
1431                 intval($uid),
1432                 intval($start),
1433                 intval($limit)
1434         );
1435
1436         return $r;
1437
1438 }
1439
1440
1441 function count_all_friends($uid,$cid) {
1442
1443         $r = q("SELECT count(*) as `total`
1444                 FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
1445                 where `glink`.`cid` = %d and `glink`.`uid` = %d AND
1446                 ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`))",
1447                 intval($cid),
1448                 intval($uid)
1449         );
1450
1451         if (dbm::is_result($r))
1452                 return $r[0]['total'];
1453         return 0;
1454
1455 }
1456
1457
1458 function all_friends($uid,$cid,$start = 0, $limit = 80) {
1459
1460         $r = q("SELECT `gcontact`.*, `contact`.`id` AS `cid`
1461                 FROM `glink`
1462                 INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
1463                 LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl` AND `contact`.`uid` = %d
1464                 WHERE `glink`.`cid` = %d AND `glink`.`uid` = %d AND
1465                 ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`))
1466                 ORDER BY `gcontact`.`name` ASC LIMIT %d, %d ",
1467                 intval($uid),
1468                 intval($cid),
1469                 intval($uid),
1470                 intval($start),
1471                 intval($limit)
1472         );
1473
1474         return $r;
1475 }
1476
1477
1478
1479 function suggestion_query($uid, $start = 0, $limit = 80) {
1480
1481         if (!$uid) {
1482                 return array();
1483         }
1484
1485 // Uncommented because the result of the queries are to big to store it in the cache.
1486 // We need to decide if we want to change the db column type or if we want to delete it.
1487 //      $list = Cache::get("suggestion_query:".$uid.":".$start.":".$limit);
1488 //      if (!is_null($list)) {
1489 //              return $list;
1490 //      }
1491
1492         $network = array(NETWORK_DFRN);
1493
1494         if (get_config('system','diaspora_enabled'))
1495                 $network[] = NETWORK_DIASPORA;
1496
1497         if (!get_config('system','ostatus_disabled'))
1498                 $network[] = NETWORK_OSTATUS;
1499
1500         $sql_network = implode("', '", $network);
1501         $sql_network = "'".$sql_network."'";
1502
1503         /// @todo This query is really slow
1504         // By now we cache the data for five minutes
1505         $r = q("SELECT count(glink.gcid) as `total`, gcontact.* from gcontact
1506                 INNER JOIN `glink` ON `glink`.`gcid` = `gcontact`.`id`
1507                 where uid = %d and not gcontact.nurl in ( select nurl from contact where uid = %d )
1508                 AND NOT `gcontact`.`name` IN (SELECT `name` FROM `contact` WHERE `uid` = %d)
1509                 AND NOT `gcontact`.`id` IN (SELECT `gcid` FROM `gcign` WHERE `uid` = %d)
1510                 AND `gcontact`.`updated` >= '%s'
1511                 AND `gcontact`.`last_contact` >= `gcontact`.`last_failure`
1512                 AND `gcontact`.`network` IN (%s)
1513                 GROUP BY `glink`.`gcid` ORDER BY `gcontact`.`updated` DESC,`total` DESC LIMIT %d, %d",
1514                 intval($uid),
1515                 intval($uid),
1516                 intval($uid),
1517                 intval($uid),
1518                 dbesc(NULL_DATE),
1519                 $sql_network,
1520                 intval($start),
1521                 intval($limit)
1522         );
1523
1524         if (dbm::is_result($r) && count($r) >= ($limit -1)) {
1525 // Uncommented because the result of the queries are to big to store it in the cache.
1526 // We need to decide if we want to change the db column type or if we want to delete it.
1527 //              Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $r, CACHE_FIVE_MINUTES);
1528
1529                 return $r;
1530         }
1531
1532         $r2 = q("SELECT gcontact.* FROM gcontact
1533                 INNER JOIN `glink` ON `glink`.`gcid` = `gcontact`.`id`
1534                 WHERE `glink`.`uid` = 0 AND `glink`.`cid` = 0 AND `glink`.`zcid` = 0 AND NOT `gcontact`.`nurl` IN (SELECT `nurl` FROM `contact` WHERE `uid` = %d)
1535                 AND NOT `gcontact`.`name` IN (SELECT `name` FROM `contact` WHERE `uid` = %d)
1536                 AND NOT `gcontact`.`id` IN (SELECT `gcid` FROM `gcign` WHERE `uid` = %d)
1537                 AND `gcontact`.`updated` >= '%s'
1538                 AND `gcontact`.`last_contact` >= `gcontact`.`last_failure`
1539                 AND `gcontact`.`network` IN (%s)
1540                 ORDER BY rand() LIMIT %d, %d",
1541                 intval($uid),
1542                 intval($uid),
1543                 intval($uid),
1544                 dbesc(NULL_DATE),
1545                 $sql_network,
1546                 intval($start),
1547                 intval($limit)
1548         );
1549
1550         $list = array();
1551         foreach ($r2 AS $suggestion)
1552                 $list[$suggestion["nurl"]] = $suggestion;
1553
1554         foreach ($r AS $suggestion)
1555                 $list[$suggestion["nurl"]] = $suggestion;
1556
1557         while (sizeof($list) > ($limit))
1558                 array_pop($list);
1559
1560 // Uncommented because the result of the queries are to big to store it in the cache.
1561 // We need to decide if we want to change the db column type or if we want to delete it.
1562 //      Cache::set("suggestion_query:".$uid.":".$start.":".$limit, $list, CACHE_FIVE_MINUTES);
1563         return $list;
1564 }
1565
1566 function update_suggestions() {
1567
1568         $a = get_app();
1569
1570         $done = array();
1571
1572         /// @TODO Check if it is really neccessary to poll the own server
1573         poco_load(0,0,0,App::get_baseurl() . '/poco');
1574
1575         $done[] = App::get_baseurl() . '/poco';
1576
1577         if (strlen(get_config('system','directory'))) {
1578                 $x = fetch_url(get_server()."/pubsites");
1579                 if ($x) {
1580                         $j = json_decode($x);
1581                         if ($j->entries) {
1582                                 foreach ($j->entries as $entry) {
1583
1584                                         poco_check_server($entry->url);
1585
1586                                         $url = $entry->url . '/poco';
1587                                         if (! in_array($url,$done)) {
1588                                                 poco_load(0,0,0,$entry->url . '/poco');
1589                                         }
1590                                 }
1591                         }
1592                 }
1593         }
1594
1595         // Query your contacts from Friendica and Redmatrix/Hubzilla for their contacts
1596         $r = q("SELECT DISTINCT(`poco`) AS `poco` FROM `contact` WHERE `network` IN ('%s', '%s')",
1597                 dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA)
1598         );
1599
1600         if (dbm::is_result($r)) {
1601                 foreach ($r as $rr) {
1602                         $base = substr($rr['poco'],0,strrpos($rr['poco'],'/'));
1603                         if(! in_array($base,$done))
1604                                 poco_load(0,0,0,$base);
1605                 }
1606         }
1607 }
1608
1609 /**
1610  * @brief Fetch server list from remote servers and adds them when they are new.
1611  *
1612  * @param string $poco URL to the POCO endpoint
1613  */
1614 function poco_fetch_serverlist($poco) {
1615         $serverret = z_fetch_url($poco."/@server");
1616         if (!$serverret["success"]) {
1617                 return;
1618         }
1619         $serverlist = json_decode($serverret['body']);
1620
1621         if (!is_array($serverlist)) {
1622                 return;
1623         }
1624
1625         foreach ($serverlist AS $server) {
1626                 $server_url = str_replace("/index.php", "", $server->url);
1627
1628                 $r = q("SELECT `nurl` FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url)));
1629                 if (!dbm::is_result($r)) {
1630                         logger("Call server check for server ".$server_url, LOGGER_DEBUG);
1631                         proc_run(PRIORITY_LOW, "include/discover_poco.php", "server", base64_encode($server_url));
1632                 }
1633         }
1634 }
1635
1636 function poco_discover_federation() {
1637         $last = get_config('poco','last_federation_discovery');
1638
1639         if ($last) {
1640                 $next = $last + (24 * 60 * 60);
1641                 if($next > time())
1642                         return;
1643         }
1644
1645         // Discover Friendica, Hubzilla and Diaspora servers
1646         $serverdata = fetch_url("http://the-federation.info/pods.json");
1647
1648         if ($serverdata) {
1649                 $servers = json_decode($serverdata);
1650
1651                 foreach ($servers->pods AS $server) {
1652                         proc_run(PRIORITY_LOW, "include/discover_poco.php", "server", base64_encode("https://".$server->host));
1653                 }
1654         }
1655
1656         // Disvover Mastodon servers
1657         if (!Config::get('system','ostatus_disabled')) {
1658                 $serverdata = fetch_url("https://instances.mastodon.xyz/instances.json");
1659
1660                 if ($serverdata) {
1661                         $servers = json_decode($serverdata);
1662
1663                         foreach ($servers AS $server) {
1664                                 $url = (is_null($server->https_score) ? 'http' : 'https').'://'.$server->name;
1665                                 proc_run(PRIORITY_LOW, "include/discover_poco.php", "server", base64_encode($url));
1666                         }
1667                 }
1668         }
1669
1670         // Currently disabled, since the service isn't available anymore.
1671         // It is not removed since I hope that there will be a successor.
1672         // Discover GNU Social Servers.
1673         //if (!get_config('system','ostatus_disabled')) {
1674         //      $serverdata = "http://gstools.org/api/get_open_instances/";
1675
1676         //      $result = z_fetch_url($serverdata);
1677         //      if ($result["success"]) {
1678         //              $servers = json_decode($result["body"]);
1679
1680         //              foreach($servers->data AS $server)
1681         //                      poco_check_server($server->instance_address);
1682         //      }
1683         //}
1684
1685         set_config('poco','last_federation_discovery', time());
1686 }
1687
1688 function poco_discover_single_server($id) {
1689         $r = q("SELECT `poco`, `nurl`, `url`, `network` FROM `gserver` WHERE `id` = %d", intval($id));
1690         if (!dbm::is_result($r)) {
1691                 return false;
1692         }
1693
1694         $server = $r[0];
1695
1696         // Discover new servers out there (Works from Friendica version 3.5.2)
1697         poco_fetch_serverlist($server["poco"]);
1698
1699         // Fetch all users from the other server
1700         $url = $server["poco"]."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,contactType,generation";
1701
1702         logger("Fetch all users from the server ".$server["url"], LOGGER_DEBUG);
1703
1704         $retdata = z_fetch_url($url);
1705         if ($retdata["success"]) {
1706                 $data = json_decode($retdata["body"]);
1707
1708                 poco_discover_server($data, 2);
1709
1710                 if (get_config('system','poco_discovery') > 1) {
1711
1712                         $timeframe = get_config('system','poco_discovery_since');
1713                         if ($timeframe == 0) {
1714                                 $timeframe = 30;
1715                         }
1716
1717                         $updatedSince = date("Y-m-d H:i:s", time() - $timeframe * 86400);
1718
1719                         // Fetch all global contacts from the other server (Not working with Redmatrix and Friendica versions before 3.3)
1720                         $url = $server["poco"]."/@global?updatedSince=".$updatedSince."&fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,contactType,generation";
1721
1722                         $success = false;
1723
1724                         $retdata = z_fetch_url($url);
1725                         if ($retdata["success"]) {
1726                                 logger("Fetch all global contacts from the server ".$server["nurl"], LOGGER_DEBUG);
1727                                 $success = poco_discover_server(json_decode($retdata["body"]));
1728                         }
1729
1730                         if (!$success AND (get_config('system','poco_discovery') > 2)) {
1731                                 logger("Fetch contacts from users of the server ".$server["nurl"], LOGGER_DEBUG);
1732                                 poco_discover_server_users($data, $server);
1733                         }
1734                 }
1735
1736                 q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"]));
1737
1738                 return true;
1739         } else {
1740                 // If the server hadn't replied correctly, then force a sanity check
1741                 poco_check_server($server["url"], $server["network"], true);
1742
1743                 // If we couldn't reach the server, we will try it some time later
1744                 q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"]));
1745
1746                 return false;
1747         }
1748 }
1749
1750 function poco_discover($complete = false) {
1751
1752         // Update the server list
1753         poco_discover_federation();
1754
1755         $no_of_queries = 5;
1756
1757         $requery_days = intval(get_config("system", "poco_requery_days"));
1758
1759         if ($requery_days == 0) {
1760                 $requery_days = 7;
1761         }
1762         $last_update = date("c", time() - (60 * 60 * 24 * $requery_days));
1763
1764         $r = q("SELECT `id`, `url`, `network` FROM `gserver` WHERE `last_contact` >= `last_failure` AND `poco` != '' AND `last_poco_query` < '%s' ORDER BY RAND()", dbesc($last_update));
1765         if (dbm::is_result($r)) {
1766                 foreach ($r AS $server) {
1767
1768                         if (!poco_check_server($server["url"], $server["network"])) {
1769                                 // The server is not reachable? Okay, then we will try it later
1770                                 q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"]));
1771                                 continue;
1772                         }
1773
1774                         logger('Update directory from server '.$server['url'].' with ID '.$server['id'], LOGGER_DEBUG);
1775                         proc_run(PRIORITY_LOW, "include/discover_poco.php", "update_server_directory", intval($server['id']));
1776
1777                         if (!$complete AND (--$no_of_queries == 0)) {
1778                                 break;
1779                         }
1780                 }
1781         }
1782 }
1783
1784 function poco_discover_server_users($data, $server) {
1785
1786         if (!isset($data->entry))
1787                 return;
1788
1789         foreach ($data->entry AS $entry) {
1790                 $username = "";
1791                 if (isset($entry->urls)) {
1792                         foreach($entry->urls as $url)
1793                                 if ($url->type == 'profile') {
1794                                         $profile_url = $url->value;
1795                                         $urlparts = parse_url($profile_url);
1796                                         $username = end(explode("/", $urlparts["path"]));
1797                                 }
1798                 }
1799                 if ($username != "") {
1800                         logger("Fetch contacts for the user ".$username." from the server ".$server["nurl"], LOGGER_DEBUG);
1801
1802                         // Fetch all contacts from a given user from the other server
1803                         $url = $server["poco"]."/".$username."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,contactType,generation";
1804
1805                         $retdata = z_fetch_url($url);
1806                         if ($retdata["success"])
1807                                 poco_discover_server(json_decode($retdata["body"]), 3);
1808                 }
1809         }
1810 }
1811
1812 function poco_discover_server($data, $default_generation = 0) {
1813
1814         if (!isset($data->entry) OR !count($data->entry))
1815                 return false;
1816
1817         $success = false;
1818
1819         foreach ($data->entry AS $entry) {
1820                 $profile_url = '';
1821                 $profile_photo = '';
1822                 $connect_url = '';
1823                 $name = '';
1824                 $network = '';
1825                 $updated = NULL_DATE;
1826                 $location = '';
1827                 $about = '';
1828                 $keywords = '';
1829                 $gender = '';
1830                 $contact_type = -1;
1831                 $generation = $default_generation;
1832
1833                 $name = $entry->displayName;
1834
1835                 if (isset($entry->urls)) {
1836                         foreach($entry->urls as $url) {
1837                                 if ($url->type == 'profile') {
1838                                         $profile_url = $url->value;
1839                                         continue;
1840                                 }
1841                                 if ($url->type == 'webfinger') {
1842                                         $connect_url = str_replace('acct:' , '', $url->value);
1843                                         continue;
1844                                 }
1845                         }
1846                 }
1847
1848                 if (isset($entry->photos)) {
1849                         foreach ($entry->photos as $photo) {
1850                                 if ($photo->type == 'profile') {
1851                                         $profile_photo = $photo->value;
1852                                         continue;
1853                                 }
1854                         }
1855                 }
1856
1857                 if (isset($entry->updated)) {
1858                         $updated = date("Y-m-d H:i:s", strtotime($entry->updated));
1859                 }
1860
1861                 if(isset($entry->network)) {
1862                         $network = $entry->network;
1863                 }
1864
1865                 if(isset($entry->currentLocation)) {
1866                         $location = $entry->currentLocation;
1867                 }
1868
1869                 if(isset($entry->aboutMe)) {
1870                         $about = html2bbcode($entry->aboutMe);
1871                 }
1872
1873                 if(isset($entry->gender)) {
1874                         $gender = $entry->gender;
1875                 }
1876
1877                 if(isset($entry->generation) AND ($entry->generation > 0)) {
1878                         $generation = ++$entry->generation;
1879                 }
1880
1881                 if(isset($entry->contactType) AND ($entry->contactType >= 0)) {
1882                         $contact_type = $entry->contactType;
1883                 }
1884
1885                 if(isset($entry->tags)) {
1886                         foreach ($entry->tags as $tag) {
1887                                 $keywords = implode(", ", $tag);
1888                         }
1889                 }
1890
1891                 if ($generation > 0) {
1892                         $success = true;
1893
1894                         logger("Store profile ".$profile_url, LOGGER_DEBUG);
1895
1896                         $gcontact = array("url" => $profile_url,
1897                                         "name" => $name,
1898                                         "network" => $network,
1899                                         "photo" => $profile_photo,
1900                                         "about" => $about,
1901                                         "location" => $location,
1902                                         "gender" => $gender,
1903                                         "keywords" => $keywords,
1904                                         "connect" => $connect_url,
1905                                         "updated" => $updated,
1906                                         "contact-type" => $contact_type,
1907                                         "generation" => $generation);
1908
1909                         try {
1910                                 $gcontact = sanitize_gcontact($gcontact);
1911                                 update_gcontact($gcontact);
1912                         } catch (Exception $e) {
1913                                 logger($e->getMessage(), LOGGER_DEBUG);
1914                         }
1915
1916                         logger("Done for profile ".$profile_url, LOGGER_DEBUG);
1917                 }
1918         }
1919         return $success;
1920 }
1921
1922 /**
1923  * @brief Removes unwanted parts from a contact url
1924  *
1925  * @param string $url Contact url
1926  * @return string Contact url with the wanted parts
1927  */
1928 function clean_contact_url($url) {
1929         $parts = parse_url($url);
1930
1931         if (!isset($parts["scheme"]) OR !isset($parts["host"]))
1932                 return $url;
1933
1934         $new_url = $parts["scheme"]."://".$parts["host"];
1935
1936         if (isset($parts["port"]))
1937                 $new_url .= ":".$parts["port"];
1938
1939         if (isset($parts["path"]))
1940                 $new_url .= $parts["path"];
1941
1942         if ($new_url != $url)
1943                 logger("Cleaned contact url ".$url." to ".$new_url." - Called by: ".App::callstack(), LOGGER_DEBUG);
1944
1945         return $new_url;
1946 }
1947
1948 /**
1949  * @brief Replace alternate OStatus user format with the primary one
1950  *
1951  * @param arr $contact contact array (called by reference)
1952  */
1953 function fix_alternate_contact_address(&$contact) {
1954         if (($contact["network"] == NETWORK_OSTATUS) AND poco_alternate_ostatus_url($contact["url"])) {
1955                 $data = probe_url($contact["url"]);
1956                 if ($contact["network"] == NETWORK_OSTATUS) {
1957                         logger("Fix primary url from ".$contact["url"]." to ".$data["url"]." - Called by: ".App::callstack(), LOGGER_DEBUG);
1958                         $contact["url"] = $data["url"];
1959                         $contact["addr"] = $data["addr"];
1960                         $contact["alias"] = $data["alias"];
1961                         $contact["server_url"] = $data["baseurl"];
1962                 }
1963         }
1964 }
1965
1966 /**
1967  * @brief Fetch the gcontact id, add an entry if not existed
1968  *
1969  * @param arr $contact contact array
1970  * @return bool|int Returns false if not found, integer if contact was found
1971  */
1972 function get_gcontact_id($contact) {
1973
1974         $gcontact_id = 0;
1975         $doprobing = false;
1976
1977         if (in_array($contact["network"], array(NETWORK_PHANTOM))) {
1978                 logger("Invalid network for contact url ".$contact["url"]." - Called by: ".App::callstack(), LOGGER_DEBUG);
1979                 return false;
1980         }
1981
1982         if ($contact["network"] == NETWORK_STATUSNET)
1983                 $contact["network"] = NETWORK_OSTATUS;
1984
1985         // All new contacts are hidden by default
1986         if (!isset($contact["hide"]))
1987                 $contact["hide"] = true;
1988
1989         // Replace alternate OStatus user format with the primary one
1990         fix_alternate_contact_address($contact);
1991
1992         // Remove unwanted parts from the contact url (e.g. "?zrl=...")
1993         if (in_array($contact["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS)))
1994                 $contact["url"] = clean_contact_url($contact["url"]);
1995
1996         $r = q("SELECT `id`, `last_contact`, `last_failure`, `network` FROM `gcontact` WHERE `nurl` = '%s' LIMIT 2",
1997                 dbesc(normalise_link($contact["url"])));
1998
1999         if ($r) {
2000                 $gcontact_id = $r[0]["id"];
2001
2002                 // Update every 90 days
2003                 if (in_array($r[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""))) {
2004                         $last_failure_str = $r[0]["last_failure"];
2005                         $last_failure = strtotime($r[0]["last_failure"]);
2006                         $last_contact_str = $r[0]["last_contact"];
2007                         $last_contact = strtotime($r[0]["last_contact"]);
2008                         $doprobing = (((time() - $last_contact) > (90 * 86400)) AND ((time() - $last_failure) > (90 * 86400)));
2009                 }
2010         } else {
2011                 q("INSERT INTO `gcontact` (`name`, `nick`, `addr` , `network`, `url`, `nurl`, `photo`, `created`, `updated`, `location`, `about`, `hide`, `generation`)
2012                         VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d)",
2013                         dbesc($contact["name"]),
2014                         dbesc($contact["nick"]),
2015                         dbesc($contact["addr"]),
2016                         dbesc($contact["network"]),
2017                         dbesc($contact["url"]),
2018                         dbesc(normalise_link($contact["url"])),
2019                         dbesc($contact["photo"]),
2020                         dbesc(datetime_convert()),
2021                         dbesc(datetime_convert()),
2022                         dbesc($contact["location"]),
2023                         dbesc($contact["about"]),
2024                         intval($contact["hide"]),
2025                         intval($contact["generation"])
2026                 );
2027
2028                 $r = q("SELECT `id`, `network` FROM `gcontact` WHERE `nurl` = '%s' ORDER BY `id` LIMIT 2",
2029                         dbesc(normalise_link($contact["url"])));
2030
2031                 if ($r) {
2032                         $gcontact_id = $r[0]["id"];
2033
2034                         $doprobing = in_array($r[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""));
2035                 }
2036         }
2037
2038         if ($doprobing) {
2039                 logger("Last Contact: ". $last_contact_str." - Last Failure: ".$last_failure_str." - Checking: ".$contact["url"], LOGGER_DEBUG);
2040                 proc_run(PRIORITY_LOW, 'include/gprobe.php', bin2hex($contact["url"]));
2041         }
2042
2043         if ((dbm::is_result($r)) AND (count($r) > 1) AND ($gcontact_id > 0) AND ($contact["url"] != ""))
2044          q("DELETE FROM `gcontact` WHERE `nurl` = '%s' AND `id` != %d",
2045                 dbesc(normalise_link($contact["url"])),
2046                 intval($gcontact_id));
2047
2048         return $gcontact_id;
2049 }
2050
2051 /**
2052  * @brief Updates the gcontact table from a given array
2053  *
2054  * @param arr $contact contact array
2055  * @return bool|int Returns false if not found, integer if contact was found
2056  */
2057 function update_gcontact($contact) {
2058
2059         // Check for invalid "contact-type" value
2060         if (isset($contact['contact-type']) AND (intval($contact['contact-type']) < 0)) {
2061                 $contact['contact-type'] = 0;
2062         }
2063
2064         /// @todo update contact table as well
2065
2066         $gcontact_id = get_gcontact_id($contact);
2067
2068         if (!$gcontact_id)
2069                 return false;
2070
2071         $r = q("SELECT `name`, `nick`, `photo`, `location`, `about`, `addr`, `generation`, `birthday`, `gender`, `keywords`,
2072                         `contact-type`, `hide`, `nsfw`, `network`, `alias`, `notify`, `server_url`, `connect`, `updated`, `url`
2073                 FROM `gcontact` WHERE `id` = %d LIMIT 1",
2074                 intval($gcontact_id));
2075
2076         // Get all field names
2077         $fields = array();
2078         foreach ($r[0] AS $field => $data)
2079                 $fields[$field] = $data;
2080
2081         unset($fields["url"]);
2082         unset($fields["updated"]);
2083         unset($fields["hide"]);
2084
2085         // Bugfix: We had an error in the storing of keywords which lead to the "0"
2086         // This value is still transmitted via poco.
2087         if ($contact["keywords"] == "0")
2088                 unset($contact["keywords"]);
2089
2090         if ($r[0]["keywords"] == "0")
2091                 $r[0]["keywords"] = "";
2092
2093         // assign all unassigned fields from the database entry
2094         foreach ($fields AS $field => $data)
2095                 if (!isset($contact[$field]) OR ($contact[$field] == ""))
2096                         $contact[$field] = $r[0][$field];
2097
2098         if (!isset($contact["hide"]))
2099                 $contact["hide"] = $r[0]["hide"];
2100
2101         $fields["hide"] = $r[0]["hide"];
2102
2103         if ($contact["network"] == NETWORK_STATUSNET)
2104                 $contact["network"] = NETWORK_OSTATUS;
2105
2106         // Replace alternate OStatus user format with the primary one
2107         fix_alternate_contact_address($contact);
2108
2109         if (!isset($contact["updated"]))
2110                 $contact["updated"] = dbm::date();
2111
2112         if ($contact["server_url"] == "") {
2113                 $server_url = $contact["url"];
2114
2115                 $server_url = matching_url($server_url, $contact["alias"]);
2116                 if ($server_url != "")
2117                         $contact["server_url"] = $server_url;
2118
2119                 $server_url = matching_url($server_url, $contact["photo"]);
2120                 if ($server_url != "")
2121                         $contact["server_url"] = $server_url;
2122
2123                 $server_url = matching_url($server_url, $contact["notify"]);
2124                 if ($server_url != "")
2125                         $contact["server_url"] = $server_url;
2126         } else
2127                 $contact["server_url"] = normalise_link($contact["server_url"]);
2128
2129         if (($contact["addr"] == "") AND ($contact["server_url"] != "") AND ($contact["nick"] != "")) {
2130                 $hostname = str_replace("http://", "", $contact["server_url"]);
2131                 $contact["addr"] = $contact["nick"]."@".$hostname;
2132         }
2133
2134         // Check if any field changed
2135         $update = false;
2136         unset($fields["generation"]);
2137
2138         if ((($contact["generation"] > 0) AND ($contact["generation"] <= $r[0]["generation"])) OR ($r[0]["generation"] == 0)) {
2139                 foreach ($fields AS $field => $data)
2140                         if ($contact[$field] != $r[0][$field]) {
2141                                 logger("Difference for contact ".$contact["url"]." in field '".$field."'. New value: '".$contact[$field]."', old value '".$r[0][$field]."'", LOGGER_DEBUG);
2142                                 $update = true;
2143                         }
2144
2145                 if ($contact["generation"] < $r[0]["generation"]) {
2146                         logger("Difference for contact ".$contact["url"]." in field 'generation'. new value: '".$contact["generation"]."', old value '".$r[0]["generation"]."'", LOGGER_DEBUG);
2147                         $update = true;
2148                 }
2149         }
2150
2151         if ($update) {
2152                 logger("Update gcontact for ".$contact["url"], LOGGER_DEBUG);
2153
2154                 q("UPDATE `gcontact` SET `photo` = '%s', `name` = '%s', `nick` = '%s', `addr` = '%s', `network` = '%s',
2155                                         `birthday` = '%s', `gender` = '%s', `keywords` = '%s', `hide` = %d, `nsfw` = %d,
2156                                         `contact-type` = %d, `alias` = '%s', `notify` = '%s', `url` = '%s',
2157                                         `location` = '%s', `about` = '%s', `generation` = %d, `updated` = '%s',
2158                                         `server_url` = '%s', `connect` = '%s'
2159                                 WHERE `nurl` = '%s' AND (`generation` = 0 OR `generation` >= %d)",
2160                         dbesc($contact["photo"]), dbesc($contact["name"]), dbesc($contact["nick"]),
2161                         dbesc($contact["addr"]), dbesc($contact["network"]), dbesc($contact["birthday"]),
2162                         dbesc($contact["gender"]), dbesc($contact["keywords"]), intval($contact["hide"]),
2163                         intval($contact["nsfw"]), intval($contact["contact-type"]), dbesc($contact["alias"]),
2164                         dbesc($contact["notify"]), dbesc($contact["url"]), dbesc($contact["location"]),
2165                         dbesc($contact["about"]), intval($contact["generation"]), dbesc(dbm::date($contact["updated"])),
2166                         dbesc($contact["server_url"]), dbesc($contact["connect"]),
2167                         dbesc(normalise_link($contact["url"])), intval($contact["generation"]));
2168
2169
2170                 // Now update the contact entry with the user id "0" as well.
2171                 // This is used for the shadow copies of public items.
2172                 $r = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = 0 ORDER BY `id` LIMIT 1",
2173                         dbesc(normalise_link($contact["url"])));
2174
2175                 if ($r) {
2176                         logger("Update shadow contact ".$r[0]["id"], LOGGER_DEBUG);
2177
2178                         update_contact_avatar($contact["photo"], 0, $r[0]["id"]);
2179
2180                         q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `addr` = '%s',
2181                                                 `network` = '%s', `bd` = '%s', `gender` = '%s',
2182                                                 `keywords` = '%s', `alias` = '%s', `contact-type` = %d,
2183                                                 `url` = '%s', `location` = '%s', `about` = '%s'
2184                                         WHERE `id` = %d",
2185                                 dbesc($contact["name"]), dbesc($contact["nick"]), dbesc($contact["addr"]),
2186                                 dbesc($contact["network"]), dbesc($contact["birthday"]), dbesc($contact["gender"]),
2187                                 dbesc($contact["keywords"]), dbesc($contact["alias"]), intval($contact["contact-type"]),
2188                                 dbesc($contact["url"]), dbesc($contact["location"]), dbesc($contact["about"]),
2189                                 intval($r[0]["id"]));
2190                 }
2191         }
2192
2193         return $gcontact_id;
2194 }
2195
2196 /**
2197  * @brief Updates the gcontact entry from probe
2198  *
2199  * @param str $url profile link
2200  */
2201 function update_gcontact_from_probe($url) {
2202         $data = probe_url($url);
2203
2204         if (in_array($data["network"], array(NETWORK_PHANTOM))) {
2205                 logger("Invalid network for contact url ".$data["url"]." - Called by: ".App::callstack(), LOGGER_DEBUG);
2206                 return;
2207         }
2208
2209         $data["server_url"] = $data["baseurl"];
2210
2211         update_gcontact($data);
2212 }
2213
2214 /**
2215  * @brief Update the gcontact entry for a given user id
2216  *
2217  * @param int $uid User ID
2218  */
2219 function update_gcontact_for_user($uid) {
2220         $r = q("SELECT `profile`.`locality`, `profile`.`region`, `profile`.`country-name`,
2221                         `profile`.`name`, `profile`.`about`, `profile`.`gender`,
2222                         `profile`.`pub_keywords`, `profile`.`dob`, `profile`.`photo`,
2223                         `profile`.`net-publish`, `user`.`nickname`, `user`.`hidewall`,
2224                         `contact`.`notify`, `contact`.`url`, `contact`.`addr`
2225                 FROM `profile`
2226                         INNER JOIN `user` ON `user`.`uid` = `profile`.`uid`
2227                         INNER JOIN `contact` ON `contact`.`uid` = `profile`.`uid`
2228                 WHERE `profile`.`uid` = %d AND `profile`.`is-default` AND `contact`.`self`",
2229                 intval($uid));
2230
2231         $location = formatted_location(array("locality" => $r[0]["locality"], "region" => $r[0]["region"],
2232                                                 "country-name" => $r[0]["country-name"]));
2233
2234         // The "addr" field was added in 3.4.3 so it can be empty for older users
2235         if ($r[0]["addr"] != "")
2236                 $addr = $r[0]["nickname"].'@'.str_replace(array("http://", "https://"), "", App::get_baseurl());
2237         else
2238                 $addr = $r[0]["addr"];
2239
2240         $gcontact = array("name" => $r[0]["name"], "location" => $location, "about" => $r[0]["about"],
2241                         "gender" => $r[0]["gender"], "keywords" => $r[0]["pub_keywords"],
2242                         "birthday" => $r[0]["dob"], "photo" => $r[0]["photo"],
2243                         "notify" => $r[0]["notify"], "url" => $r[0]["url"],
2244                         "hide" => ($r[0]["hidewall"] OR !$r[0]["net-publish"]),
2245                         "nick" => $r[0]["nickname"], "addr" => $addr,
2246                         "connect" => $addr, "server_url" => App::get_baseurl(),
2247                         "generation" => 1, "network" => NETWORK_DFRN);
2248
2249         update_gcontact($gcontact);
2250 }
2251
2252 /**
2253  * @brief Fetches users of given GNU Social server
2254  *
2255  * If the "Statistics" plugin is enabled (See http://gstools.org/ for details) we query user data with this.
2256  *
2257  * @param str $server Server address
2258  */
2259 function gs_fetch_users($server) {
2260
2261         logger("Fetching users from GNU Social server ".$server, LOGGER_DEBUG);
2262
2263         $url = $server."/main/statistics";
2264
2265         $result = z_fetch_url($url);
2266         if (!$result["success"])
2267                 return false;
2268
2269         $statistics = json_decode($result["body"]);
2270
2271         if (is_object($statistics->config)) {
2272                 if ($statistics->config->instance_with_ssl)
2273                         $server = "https://";
2274                 else
2275                         $server = "http://";
2276
2277                 $server .= $statistics->config->instance_address;
2278
2279                 $hostname = $statistics->config->instance_address;
2280         } else {
2281                 if ($statistics->instance_with_ssl)
2282                         $server = "https://";
2283                 else
2284                         $server = "http://";
2285
2286                 $server .= $statistics->instance_address;
2287
2288                 $hostname = $statistics->instance_address;
2289         }
2290
2291         if (is_object($statistics->users))
2292                 foreach ($statistics->users AS $nick => $user) {
2293                         $profile_url = $server."/".$user->nickname;
2294
2295                         $contact = array("url" => $profile_url,
2296                                         "name" => $user->fullname,
2297                                         "addr" => $user->nickname."@".$hostname,
2298                                         "nick" => $user->nickname,
2299                                         "about" => $user->bio,
2300                                         "network" => NETWORK_OSTATUS,
2301                                         "photo" => App::get_baseurl()."/images/person-175.jpg");
2302                         get_gcontact_id($contact);
2303                 }
2304 }
2305
2306 /**
2307  * @brief Asking GNU Social server on a regular base for their user data
2308  *
2309  */
2310 function gs_discover() {
2311
2312         $requery_days = intval(get_config("system", "poco_requery_days"));
2313
2314         $last_update = date("c", time() - (60 * 60 * 24 * $requery_days));
2315
2316         $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",
2317                 dbesc(NETWORK_OSTATUS), dbesc($last_update));
2318
2319         if (!$r)
2320                 return;
2321
2322         foreach ($r AS $server) {
2323                 gs_fetch_users($server["url"]);
2324                 q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"]));
2325         }
2326 }
2327
2328 /**
2329  * @brief Returns a list of all known servers
2330  * @return array List of server urls
2331  */
2332 function poco_serverlist() {
2333         $r = q("SELECT `url`, `site_name` AS `displayName`, `network`, `platform`, `version` FROM `gserver`
2334                 WHERE `network` IN ('%s', '%s', '%s') AND `last_contact` > `last_failure`
2335                 ORDER BY `last_contact`
2336                 LIMIT 1000",
2337                 dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_OSTATUS));
2338         if (!dbm::is_result($r)) {
2339                 return false;
2340         }
2341         return $r;
2342 }
2343 ?>