3 * @file include/socgraph.php
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
10 require_once('include/datetime.php');
11 require_once("include/Scrape.php");
12 require_once("include/html2bbcode.php");
13 require_once("include/Contact.php");
14 require_once("include/Photo.php");
19 * Given a contact-id (minimum), load the PortableContacts friend list for that contact,
20 * and add the entries to the gcontact (Global Contact) table, or update existing entries
21 * if anything (name or photo) has changed.
22 * We use normalised urls for comparison which ignore http vs https and www.domain vs domain
24 * Once the global contact is stored add (if necessary) the contact linkage which associates
25 * the given uid, cid to the global contact entry. There can be many uid/cid combinations
26 * pointing to the same global contact id.
33 function poco_load($cid,$uid = 0,$zcid = 0,$url = null) {
38 if((! $url) || (! $uid)) {
39 $r = q("select `poco`, `uid` from `contact` where `id` = %d limit 1",
54 $url = $url . (($uid) ? '/@me/@all?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation' : '?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation') ;
56 logger('poco_load: ' . $url, LOGGER_DEBUG);
60 logger('poco_load: returns ' . $s, LOGGER_DATA);
62 logger('poco_load: return code: ' . $a->get_curl_code(), LOGGER_DEBUG);
64 if(($a->get_curl_code() > 299) || (! $s))
69 logger('poco_load: json: ' . print_r($j,true),LOGGER_DATA);
71 if(! isset($j->entry))
75 foreach($j->entry as $entry) {
83 $updated = '0000-00-00 00:00:00';
90 $name = $entry->displayName;
92 if(isset($entry->urls)) {
93 foreach($entry->urls as $url) {
94 if($url->type == 'profile') {
95 $profile_url = $url->value;
98 if($url->type == 'webfinger') {
99 $connect_url = str_replace('acct:' , '', $url->value);
104 if(isset($entry->photos)) {
105 foreach($entry->photos as $photo) {
106 if($photo->type == 'profile') {
107 $profile_photo = $photo->value;
113 if(isset($entry->updated))
114 $updated = date("Y-m-d H:i:s", strtotime($entry->updated));
116 if(isset($entry->network))
117 $network = $entry->network;
119 if(isset($entry->currentLocation))
120 $location = $entry->currentLocation;
122 if(isset($entry->aboutMe))
123 $about = html2bbcode($entry->aboutMe);
125 if(isset($entry->gender))
126 $gender = $entry->gender;
128 if(isset($entry->generation) AND ($entry->generation > 0))
129 $generation = ++$entry->generation;
131 if(isset($entry->tags))
132 foreach($entry->tags as $tag)
133 $keywords = implode(", ", $tag);
135 // If you query a Friendica server for its profiles, the network has to be Friendica
136 /// TODO It could also be a Redmatrix server
138 // $network = NETWORK_DFRN;
140 poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $generation, $cid, $uid, $zcid);
142 // Update the Friendica contacts. Diaspora is doing it via a message. (See include/diaspora.php)
143 // Deactivated because we now update Friendica contacts in dfrn.php
144 //if (($location != "") OR ($about != "") OR ($keywords != "") OR ($gender != ""))
145 // q("UPDATE `contact` SET `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s'
146 // WHERE `nurl` = '%s' AND NOT `self` AND `network` = '%s'",
151 // dbesc(normalise_link($profile_url)),
152 // dbesc(NETWORK_DFRN));
154 logger("poco_load: loaded $total entries",LOGGER_DEBUG);
156 q("DELETE FROM `glink` WHERE `cid` = %d AND `uid` = %d AND `zcid` = %d AND `updated` < UTC_TIMESTAMP - INTERVAL 2 DAY",
164 function poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $generation, $cid = 0, $uid = 0, $zcid = 0) {
170 // 1: Profiles on this server
171 // 2: Contacts of profiles on this server
172 // 3: Contacts of contacts of profiles on this server
177 if ($profile_url == "")
180 $urlparts = parse_url($profile_url);
181 if (!isset($urlparts["scheme"]))
184 if (in_array($urlparts["host"], array("www.facebook.com", "facebook.com", "twitter.com",
185 "identi.ca", "alpha.app.net")))
188 // Don't store the statusnet connector as network
189 // We can't simply set this to NETWORK_OSTATUS since the connector could have fetched posts from friendica as well
190 if ($network == NETWORK_STATUSNET)
193 // Assure that there are no parameter fragments in the profile url
194 if (in_array($network, array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, "")))
195 $profile_url = clean_contact_url($profile_url);
197 $alternate = poco_alternate_ostatus_url($profile_url);
199 $orig_updated = $updated;
201 // The global contacts should contain the original picture, not the cached one
202 if (($generation != 1) AND stristr(normalise_link($profile_photo), normalise_link($a->get_baseurl()."/photo/")))
205 $r = q("SELECT `network` FROM `contact` WHERE `nurl` = '%s' AND `network` != '' AND `network` != '%s' LIMIT 1",
206 dbesc(normalise_link($profile_url)), dbesc(NETWORK_STATUSNET)
209 $network = $r[0]["network"];
211 if (($network == "") OR ($network == NETWORK_OSTATUS)) {
212 $r = q("SELECT `network`, `url` FROM `contact` WHERE `alias` IN ('%s', '%s') AND `network` != '' AND `network` != '%s' LIMIT 1",
213 dbesc($profile_url), dbesc(normalise_link($profile_url)), dbesc(NETWORK_STATUSNET)
216 $network = $r[0]["network"];
217 //$profile_url = $r[0]["url"];
221 $x = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s' LIMIT 1",
222 dbesc(normalise_link($profile_url))
226 if (($network == "") AND ($x[0]["network"] != NETWORK_STATUSNET))
227 $network = $x[0]["network"];
229 if ($updated == "0000-00-00 00:00:00")
230 $updated = $x[0]["updated"];
232 $created = $x[0]["created"];
233 $server_url = $x[0]["server_url"];
234 $nick = $x[0]["nick"];
235 $addr = $x[0]["addr"];
236 $alias = $x[0]["alias"];
237 $notify = $x[0]["notify"];
239 $created = "0000-00-00 00:00:00";
242 $urlparts = parse_url($profile_url);
243 $nick = end(explode("/", $urlparts["path"]));
249 if ((($network == "") OR ($name == "") OR ($addr == "") OR ($profile_photo == "") OR ($server_url == "") OR $alternate)
250 AND poco_reachable($profile_url, $server_url, $network, false)) {
251 $data = probe_url($profile_url);
253 $orig_profile = $profile_url;
255 $network = $data["network"];
256 $name = $data["name"];
257 $nick = $data["nick"];
258 $addr = $data["addr"];
259 $alias = $data["alias"];
260 $notify = $data["notify"];
261 $profile_url = $data["url"];
262 $profile_photo = $data["photo"];
263 $server_url = $data["baseurl"];
265 if ($alternate AND ($network == NETWORK_OSTATUS)) {
266 // Delete the old entry - if it exists
267 $r = q("SELECT `id` FROM `gcontact` WHERE `nurl` = '%s'", dbesc(normalise_link($orig_profile)));
269 q("DELETE FROM `gcontact` WHERE `nurl` = '%s'", dbesc(normalise_link($orig_profile)));
270 q("DELETE FROM `glink` WHERE `gcid` = %d", intval($r[0]["id"]));
273 // possibly create a new entry
274 poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $generation, $cid, $uid, $zcid);
278 if ($alternate AND ($network == NETWORK_OSTATUS))
281 if (count($x) AND ($x[0]["network"] == "") AND ($network != "")) {
282 q("UPDATE `gcontact` SET `network` = '%s' WHERE `nurl` = '%s'",
284 dbesc(normalise_link($profile_url))
288 if (($name == "") OR ($profile_photo == ""))
291 if (!in_array($network, array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA)))
294 logger("profile-check generation: ".$generation." Network: ".$network." URL: ".$profile_url." name: ".$name." avatar: ".$profile_photo, LOGGER_DEBUG);
296 poco_check_server($server_url, $network);
298 $gcontact = array("url" => $profile_url,
302 "network" => $network,
303 "photo" => $profile_photo,
305 "location" => $location,
307 "keywords" => $keywords,
308 "server_url" => $server_url,
309 "connect" => $connect_url,
311 "updated" => $updated,
312 "generation" => $generation);
314 $gcid = update_gcontact($gcontact);
319 $r = q("SELECT * FROM `glink` WHERE `cid` = %d AND `uid` = %d AND `gcid` = %d AND `zcid` = %d LIMIT 1",
326 q("INSERT INTO `glink` (`cid`,`uid`,`gcid`,`zcid`, `updated`) VALUES (%d,%d,%d,%d, '%s') ",
331 dbesc(datetime_convert())
334 q("UPDATE `glink` SET `updated` = '%s' WHERE `cid` = %d AND `uid` = %d AND `gcid` = %d AND `zcid` = %d",
335 dbesc(datetime_convert()),
346 function poco_reachable($profile, $server = "", $network = "", $force = false) {
349 $server = poco_detect_server($profile);
354 return poco_check_server($server, $network, $force);
357 function poco_detect_server($profile) {
359 // Try to detect the server path based upon some known standard paths
362 if ($server_url == "") {
363 $friendica = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $profile);
364 if ($friendica != $profile) {
365 $server_url = $friendica;
366 $network = NETWORK_DFRN;
370 if ($server_url == "") {
371 $diaspora = preg_replace("=(https?://)(.*)/u/(.*)=ism", "$1$2", $profile);
372 if ($diaspora != $profile) {
373 $server_url = $diaspora;
374 $network = NETWORK_DIASPORA;
378 if ($server_url == "") {
379 $red = preg_replace("=(https?://)(.*)/channel/(.*)=ism", "$1$2", $profile);
380 if ($red != $profile) {
382 $network = NETWORK_DIASPORA;
389 function poco_alternate_ostatus_url($url) {
390 return(preg_match("=https?://.+/user/\d+=ism", $url, $matches));
393 function poco_last_updated($profile, $force = false) {
395 $gcontacts = q("SELECT * FROM `gcontact` WHERE `nurl` = '%s'",
396 dbesc(normalise_link($profile)));
398 if ($gcontacts[0]["created"] == "0000-00-00 00:00:00")
399 q("UPDATE `gcontact` SET `created` = '%s' WHERE `nurl` = '%s'",
400 dbesc(datetime_convert()), dbesc(normalise_link($profile)));
402 if ($gcontacts[0]["server_url"] != "")
403 $server_url = $gcontacts[0]["server_url"];
405 $server_url = poco_detect_server($profile);
407 if (!in_array($gcontacts[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_FEED, NETWORK_OSTATUS, ""))) {
408 logger("Profile ".$profile.": Network type ".$gcontacts[0]["network"]." can't be checked", LOGGER_DEBUG);
412 if ($server_url != "") {
413 if (!poco_check_server($server_url, $gcontacts[0]["network"], $force)) {
416 q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'",
417 dbesc(datetime_convert()), dbesc(normalise_link($profile)));
419 logger("Profile ".$profile.": Server ".$server_url." wasn't reachable.", LOGGER_DEBUG);
423 q("UPDATE `gcontact` SET `server_url` = '%s' WHERE `nurl` = '%s'",
424 dbesc($server_url), dbesc(normalise_link($profile)));
427 if (in_array($gcontacts[0]["network"], array("", NETWORK_FEED))) {
428 $server = q("SELECT `network` FROM `gserver` WHERE `nurl` = '%s' AND `network` != ''",
429 dbesc(normalise_link($server_url)));
432 q("UPDATE `gcontact` SET `network` = '%s' WHERE `nurl` = '%s'",
433 dbesc($server[0]["network"]), dbesc(normalise_link($profile)));
438 // noscrape is really fast so we don't cache the call.
439 if (($gcontacts[0]["server_url"] != "") AND ($gcontacts[0]["nick"] != "")) {
441 // Use noscrape if possible
442 $server = q("SELECT `noscrape`, `network` FROM `gserver` WHERE `nurl` = '%s' AND `noscrape` != ''", dbesc(normalise_link($gcontacts[0]["server_url"])));
445 $noscraperet = z_fetch_url($server[0]["noscrape"]."/".$gcontacts[0]["nick"]);
447 if ($noscraperet["success"] AND ($noscraperet["body"] != "")) {
449 $noscrape = json_decode($noscraperet["body"], true);
451 if (is_array($noscrape)) {
452 $contact = array("url" => $profile,
453 "network" => $server[0]["network"],
454 "generation" => $gcontacts[0]["generation"]);
456 $contact["name"] = $noscrape["fn"];
457 $contact["community"] = $noscrape["comm"];
459 if (isset($noscrape["tags"])) {
460 $keywords = implode(" ", $noscrape["tags"]);
462 $contact["keywords"] = $keywords;
465 $location = formatted_location($noscrape);
467 $contact["location"] = $location;
469 $contact["notify"] = $noscrape["dfrn-notify"];
471 // Remove all fields that are not present in the gcontact table
472 unset($noscrape["fn"]);
473 unset($noscrape["key"]);
474 unset($noscrape["homepage"]);
475 unset($noscrape["comm"]);
476 unset($noscrape["tags"]);
477 unset($noscrape["locality"]);
478 unset($noscrape["region"]);
479 unset($noscrape["country-name"]);
480 unset($noscrape["contacts"]);
481 unset($noscrape["dfrn-request"]);
482 unset($noscrape["dfrn-confirm"]);
483 unset($noscrape["dfrn-notify"]);
484 unset($noscrape["dfrn-poll"]);
486 // Set the date of the last contact
487 /// @todo By now the function "update_gcontact" doesn't work with this field
488 //$contact["last_contact"] = datetime_convert();
490 $contact = array_merge($contact, $noscrape);
492 update_gcontact($contact);
494 if (trim($noscrape["updated"]) != "") {
495 q("UPDATE `gcontact` SET `last_contact` = '%s' WHERE `nurl` = '%s'",
496 dbesc(datetime_convert()), dbesc(normalise_link($profile)));
498 logger("Profile ".$profile." was last updated at ".$noscrape["updated"]." (noscrape)", LOGGER_DEBUG);
500 return $noscrape["updated"];
507 // If we only can poll the feed, then we only do this once a while
508 if (!$force AND !poco_do_update($gcontacts[0]["created"], $gcontacts[0]["updated"], $gcontacts[0]["last_failure"], $gcontacts[0]["last_contact"])) {
509 logger("Profile ".$profile." was last updated at ".$gcontacts[0]["updated"]." (cached)", LOGGER_DEBUG);
510 return $gcontacts[0]["updated"];
513 $data = probe_url($profile);
515 // Is the profile link the alternate OStatus link notation? (http://domain.tld/user/4711)
516 // Then check the other link and delete this one
517 if (($data["network"] == NETWORK_OSTATUS) AND poco_alternate_ostatus_url($profile) AND
518 (normalise_link($profile) == normalise_link($data["alias"])) AND
519 (normalise_link($profile) != normalise_link($data["url"]))) {
521 // Delete the old entry
522 q("DELETE FROM `gcontact` WHERE `nurl` = '%s'", dbesc(normalise_link($profile)));
523 q("DELETE FROM `glink` WHERE `gcid` = %d", intval($gcontacts[0]["id"]));
525 poco_check($data["url"], $data["name"], $data["network"], $data["photo"], $gcontacts[0]["about"], $gcontacts[0]["location"],
526 $gcontacts[0]["gender"], $gcontacts[0]["keywords"], $data["addr"], $gcontacts[0]["updated"], $gcontacts[0]["generation"]);
528 poco_last_updated($data["url"], $force);
530 logger("Profile ".$profile." was deleted", LOGGER_DEBUG);
534 if (($data["poll"] == "") OR (in_array($data["network"], array(NETWORK_FEED, NETWORK_PHANTOM)))) {
535 q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'",
536 dbesc(datetime_convert()), dbesc(normalise_link($profile)));
538 logger("Profile ".$profile." wasn't reachable (profile)", LOGGER_DEBUG);
542 $contact = array("generation" => $gcontacts[0]["generation"]);
544 $contact = array_merge($contact, $data);
546 $contact["server_url"] = $data["baseurl"];
548 unset($contact["batch"]);
549 unset($contact["poll"]);
550 unset($contact["request"]);
551 unset($contact["confirm"]);
552 unset($contact["poco"]);
553 unset($contact["priority"]);
554 unset($contact["pubkey"]);
555 unset($contact["baseurl"]);
557 update_gcontact($contact);
559 $feedret = z_fetch_url($data["poll"]);
561 if (!$feedret["success"]) {
562 q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'",
563 dbesc(datetime_convert()), dbesc(normalise_link($profile)));
565 logger("Profile ".$profile." wasn't reachable (no feed)", LOGGER_DEBUG);
569 $doc = new DOMDocument();
570 @$doc->loadXML($feedret["body"]);
572 $xpath = new DomXPath($doc);
573 $xpath->registerNamespace('atom', "http://www.w3.org/2005/Atom");
575 $entries = $xpath->query('/atom:feed/atom:entry');
579 foreach ($entries AS $entry) {
580 $published = $xpath->query('atom:published/text()', $entry)->item(0)->nodeValue;
581 $updated = $xpath->query('atom:updated/text()', $entry)->item(0)->nodeValue;
583 if ($last_updated < $published)
584 $last_updated = $published;
586 if ($last_updated < $updated)
587 $last_updated = $updated;
590 // Maybe there aren't any entries. Then check if it is a valid feed
591 if ($last_updated == "")
592 if ($xpath->query('/atom:feed')->length > 0)
593 $last_updated = "0000-00-00 00:00:00";
595 q("UPDATE `gcontact` SET `updated` = '%s', `last_contact` = '%s' WHERE `nurl` = '%s'",
596 dbesc($last_updated), dbesc(datetime_convert()), dbesc(normalise_link($profile)));
598 if (($gcontacts[0]["generation"] == 0))
599 q("UPDATE `gcontact` SET `generation` = 9 WHERE `nurl` = '%s'",
600 dbesc(normalise_link($profile)));
602 logger("Profile ".$profile." was last updated at ".$last_updated, LOGGER_DEBUG);
604 return($last_updated);
607 function poco_do_update($created, $updated, $last_failure, $last_contact) {
608 $now = strtotime(datetime_convert());
610 if ($updated > $last_contact)
611 $contact_time = strtotime($updated);
613 $contact_time = strtotime($last_contact);
615 $failure_time = strtotime($last_failure);
616 $created_time = strtotime($created);
618 // If there is no "created" time then use the current time
619 if ($created_time <= 0)
620 $created_time = $now;
622 // If the last contact was less than 24 hours then don't update
623 if (($now - $contact_time) < (60 * 60 * 24))
626 // If the last failure was less than 24 hours then don't update
627 if (($now - $failure_time) < (60 * 60 * 24))
630 // If the last contact was less than a week ago and the last failure is older than a week then don't update
631 //if ((($now - $contact_time) < (60 * 60 * 24 * 7)) AND ($contact_time > $failure_time))
634 // 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
635 if ((($now - $contact_time) > (60 * 60 * 24 * 7)) AND (($now - $created_time) > (60 * 60 * 24 * 7)) AND (($now - $failure_time) < (60 * 60 * 24 * 7)))
638 // 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
639 if ((($now - $contact_time) > (60 * 60 * 24 * 30)) AND (($now - $created_time) > (60 * 60 * 24 * 30)) AND (($now - $failure_time) < (60 * 60 * 24 * 30)))
645 function poco_to_boolean($val) {
646 if (($val == "true") OR ($val == 1))
648 if (($val == "false") OR ($val == 0))
654 function poco_check_server($server_url, $network = "", $force = false) {
656 // Unify the server address
657 $server_url = trim($server_url, "/");
658 $server_url = str_replace("/index.php", "", $server_url);
660 if ($server_url == "")
663 $servers = q("SELECT * FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url)));
666 if ($servers[0]["created"] == "0000-00-00 00:00:00")
667 q("UPDATE `gserver` SET `created` = '%s' WHERE `nurl` = '%s'",
668 dbesc(datetime_convert()), dbesc(normalise_link($server_url)));
670 $poco = $servers[0]["poco"];
671 $noscrape = $servers[0]["noscrape"];
674 $network = $servers[0]["network"];
676 $last_contact = $servers[0]["last_contact"];
677 $last_failure = $servers[0]["last_failure"];
678 $version = $servers[0]["version"];
679 $platform = $servers[0]["platform"];
680 $site_name = $servers[0]["site_name"];
681 $info = $servers[0]["info"];
682 $register_policy = $servers[0]["register_policy"];
684 if (!$force AND !poco_do_update($servers[0]["created"], "", $last_failure, $last_contact)) {
685 logger("Use cached data for server ".$server_url, LOGGER_DEBUG);
686 return ($last_contact >= $last_failure);
695 $register_policy = -1;
697 $last_contact = "0000-00-00 00:00:00";
698 $last_failure = "0000-00-00 00:00:00";
700 logger("Server ".$server_url." is outdated or unknown. Start discovery. Force: ".$force." Created: ".$servers[0]["created"]." Failure: ".$last_failure." Contact: ".$last_contact, LOGGER_DEBUG);
703 $orig_last_failure = $last_failure;
705 // Check if the page is accessible via SSL.
706 $server_url = str_replace("http://", "https://", $server_url);
707 $serverret = z_fetch_url($server_url."/.well-known/host-meta");
709 // Maybe the page is unencrypted only?
710 $xmlobj = @simplexml_load_string($serverret["body"],'SimpleXMLElement',0, "http://docs.oasis-open.org/ns/xri/xrd-1.0");
711 if (!$serverret["success"] OR ($serverret["body"] == "") OR (@sizeof($xmlobj) == 0) OR !is_object($xmlobj)) {
712 $server_url = str_replace("https://", "http://", $server_url);
713 $serverret = z_fetch_url($server_url."/.well-known/host-meta");
715 $xmlobj = @simplexml_load_string($serverret["body"],'SimpleXMLElement',0, "http://docs.oasis-open.org/ns/xri/xrd-1.0");
718 if (!$serverret["success"] OR ($serverret["body"] == "") OR (sizeof($xmlobj) == 0) OR !is_object($xmlobj)) {
719 // Workaround for bad configured servers (known nginx problem)
720 if ($serverret["debug"]["http_code"] != "403") {
721 $last_failure = datetime_convert();
724 } elseif ($network == NETWORK_DIASPORA)
725 $last_contact = datetime_convert();
729 $serverret = z_fetch_url($server_url);
731 if (!$serverret["success"] OR ($serverret["body"] == ""))
734 $lines = explode("\n",$serverret["header"]);
736 foreach($lines as $line) {
738 if(stristr($line,'X-Diaspora-Version:')) {
739 $platform = "Diaspora";
740 $version = trim(str_replace("X-Diaspora-Version:", "", $line));
741 $version = trim(str_replace("x-diaspora-version:", "", $version));
742 $network = NETWORK_DIASPORA;
743 $versionparts = explode("-", $version);
744 $version = $versionparts[0];
751 // Test for Statusnet
752 // Will also return data for Friendica and GNU Social - but it will be overwritten later
753 // The "not implemented" is a special treatment for really, really old Friendica versions
754 $serverret = z_fetch_url($server_url."/api/statusnet/version.json");
755 if ($serverret["success"] AND ($serverret["body"] != '{"error":"not implemented"}') AND
756 ($serverret["body"] != '') AND (strlen($serverret["body"]) < 30)) {
757 $platform = "StatusNet";
758 $version = trim($serverret["body"], '"');
759 $network = NETWORK_OSTATUS;
762 // Test for GNU Social
763 $serverret = z_fetch_url($server_url."/api/gnusocial/version.json");
764 if ($serverret["success"] AND ($serverret["body"] != '{"error":"not implemented"}') AND
765 ($serverret["body"] != '') AND (strlen($serverret["body"]) < 30)) {
766 $platform = "GNU Social";
767 $version = trim($serverret["body"], '"');
768 $network = NETWORK_OSTATUS;
771 $serverret = z_fetch_url($server_url."/api/statusnet/config.json");
772 if ($serverret["success"]) {
773 $data = json_decode($serverret["body"]);
775 if (isset($data->site->server)) {
776 $last_contact = datetime_convert();
778 if (isset($data->site->hubzilla)) {
779 $platform = $data->site->hubzilla->PLATFORM_NAME;
780 $version = $data->site->hubzilla->RED_VERSION;
781 $network = NETWORK_DIASPORA;
783 if (isset($data->site->redmatrix)) {
784 if (isset($data->site->redmatrix->PLATFORM_NAME))
785 $platform = $data->site->redmatrix->PLATFORM_NAME;
786 elseif (isset($data->site->redmatrix->RED_PLATFORM))
787 $platform = $data->site->redmatrix->RED_PLATFORM;
789 $version = $data->site->redmatrix->RED_VERSION;
790 $network = NETWORK_DIASPORA;
792 if (isset($data->site->friendica)) {
793 $platform = $data->site->friendica->FRIENDICA_PLATFORM;
794 $version = $data->site->friendica->FRIENDICA_VERSION;
795 $network = NETWORK_DFRN;
798 $site_name = $data->site->name;
800 $data->site->closed = poco_to_boolean($data->site->closed);
801 $data->site->private = poco_to_boolean($data->site->private);
802 $data->site->inviteonly = poco_to_boolean($data->site->inviteonly);
804 if (!$data->site->closed AND !$data->site->private and $data->site->inviteonly)
805 $register_policy = REGISTER_APPROVE;
806 elseif (!$data->site->closed AND !$data->site->private)
807 $register_policy = REGISTER_OPEN;
809 $register_policy = REGISTER_CLOSED;
814 // Query statistics.json. Optional package for Diaspora, Friendica and Redmatrix
816 $serverret = z_fetch_url($server_url."/statistics.json");
817 if ($serverret["success"]) {
818 $data = json_decode($serverret["body"]);
820 $version = $data->version;
822 $site_name = $data->name;
824 if (isset($data->network) AND ($platform == ""))
825 $platform = $data->network;
827 if ($platform == "Diaspora")
828 $network = NETWORK_DIASPORA;
830 if ($data->registrations_open)
831 $register_policy = REGISTER_OPEN;
833 $register_policy = REGISTER_CLOSED;
835 if (isset($data->version))
836 $last_contact = datetime_convert();
840 // Check for noscrape
841 // Friendica servers could be detected as OStatus servers
842 if (!$failure AND in_array($network, array(NETWORK_DFRN, NETWORK_OSTATUS))) {
843 $serverret = z_fetch_url($server_url."/friendica/json");
845 if (!$serverret["success"])
846 $serverret = z_fetch_url($server_url."/friendika/json");
848 if ($serverret["success"]) {
849 $data = json_decode($serverret["body"]);
851 if (isset($data->version)) {
852 $last_contact = datetime_convert();
853 $network = NETWORK_DFRN;
855 $noscrape = $data->no_scrape_url;
856 $version = $data->version;
857 $site_name = $data->site_name;
859 $register_policy_str = $data->register_policy;
860 $platform = $data->platform;
862 switch ($register_policy_str) {
863 case "REGISTER_CLOSED":
864 $register_policy = REGISTER_CLOSED;
866 case "REGISTER_APPROVE":
867 $register_policy = REGISTER_APPROVE;
869 case "REGISTER_OPEN":
870 $register_policy = REGISTER_OPEN;
879 $serverret = z_fetch_url($server_url."/poco");
880 if ($serverret["success"]) {
881 $data = json_decode($serverret["body"]);
882 if (isset($data->totalResults)) {
883 $poco = $server_url."/poco";
884 $last_contact = datetime_convert();
889 // Check again if the server exists
890 $servers = q("SELECT `nurl` FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url)));
892 $version = strip_tags($version);
893 $site_name = strip_tags($site_name);
894 $info = strip_tags($info);
895 $platform = strip_tags($platform);
898 q("UPDATE `gserver` SET `url` = '%s', `version` = '%s', `site_name` = '%s', `info` = '%s', `register_policy` = %d, `poco` = '%s', `noscrape` = '%s',
899 `network` = '%s', `platform` = '%s', `last_contact` = '%s', `last_failure` = '%s' WHERE `nurl` = '%s'",
904 intval($register_policy),
909 dbesc($last_contact),
910 dbesc($last_failure),
911 dbesc(normalise_link($server_url))
914 q("INSERT INTO `gserver` (`url`, `nurl`, `version`, `site_name`, `info`, `register_policy`, `poco`, `noscrape`, `network`, `platform`, `created`, `last_contact`, `last_failure`)
915 VALUES ('%s', '%s', '%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', '%s')",
917 dbesc(normalise_link($server_url)),
921 intval($register_policy),
926 dbesc(datetime_convert()),
927 dbesc($last_contact),
928 dbesc($last_failure),
929 dbesc(datetime_convert())
932 logger("End discovery for server ".$server_url, LOGGER_DEBUG);
937 function count_common_friends($uid,$cid) {
939 $r = q("SELECT count(*) as `total`
940 FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
941 WHERE `glink`.`cid` = %d AND `glink`.`uid` = %d AND
942 ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`))
943 AND `gcontact`.`nurl` IN (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 and id != %d ) ",
950 // logger("count_common_friends: $uid $cid {$r[0]['total']}");
952 return $r[0]['total'];
958 function common_friends($uid,$cid,$start = 0,$limit=9999,$shuffle = false) {
961 $sql_extra = " order by rand() ";
963 $sql_extra = " order by `gcontact`.`name` asc ";
965 $r = q("SELECT `gcontact`.*, `contact`.`id` AS `cid`
967 INNER JOIN `gcontact` ON `glink`.`gcid` = `gcontact`.`id`
968 INNER JOIN `contact` ON `gcontact`.`nurl` = `contact`.`nurl`
969 WHERE `glink`.`cid` = %d and `glink`.`uid` = %d
970 AND `contact`.`uid` = %d AND `contact`.`self` = 0 AND `contact`.`blocked` = 0
971 AND `contact`.`hidden` = 0 AND `contact`.`id` != %d
972 AND ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`))
973 $sql_extra LIMIT %d, %d",
987 function count_common_friends_zcid($uid,$zcid) {
989 $r = q("SELECT count(*) as `total`
990 FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
991 where `glink`.`zcid` = %d
992 and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 ) ",
998 return $r[0]['total'];
1003 function common_friends_zcid($uid,$zcid,$start = 0, $limit = 9999,$shuffle = false) {
1006 $sql_extra = " order by rand() ";
1008 $sql_extra = " order by `gcontact`.`name` asc ";
1010 $r = q("SELECT `gcontact`.*
1011 FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
1012 where `glink`.`zcid` = %d
1013 and `gcontact`.`nurl` in (select nurl from contact where uid = %d and self = 0 and blocked = 0 and hidden = 0 )
1014 $sql_extra limit %d, %d",
1026 function count_all_friends($uid,$cid) {
1028 $r = q("SELECT count(*) as `total`
1029 FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
1030 where `glink`.`cid` = %d and `glink`.`uid` = %d AND
1031 ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`))",
1037 return $r[0]['total'];
1043 function all_friends($uid,$cid,$start = 0, $limit = 80) {
1045 $r = q("SELECT `gcontact`.*, `contact`.`id` AS `cid`
1047 INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
1048 LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl` AND `contact`.`uid` = %d
1049 WHERE `glink`.`cid` = %d AND `glink`.`uid` = %d AND
1050 ((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`))
1051 ORDER BY `gcontact`.`name` ASC LIMIT %d, %d ",
1064 function suggestion_query($uid, $start = 0, $limit = 80) {
1069 $network = array(NETWORK_DFRN);
1071 if (get_config('system','diaspora_enabled'))
1072 $network[] = NETWORK_DIASPORA;
1074 if (!get_config('system','ostatus_disabled'))
1075 $network[] = NETWORK_OSTATUS;
1077 $sql_network = implode("', '", $network);
1078 //$sql_network = "'".$sql_network."', ''";
1079 $sql_network = "'".$sql_network."'";
1081 $r = q("SELECT count(glink.gcid) as `total`, gcontact.* from gcontact
1082 INNER JOIN `glink` ON `glink`.`gcid` = `gcontact`.`id`
1083 where uid = %d and not gcontact.nurl in ( select nurl from contact where uid = %d )
1084 AND NOT `gcontact`.`name` IN (SELECT `name` FROM `contact` WHERE `uid` = %d)
1085 AND NOT `gcontact`.`id` IN (SELECT `gcid` FROM `gcign` WHERE `uid` = %d)
1086 AND `gcontact`.`updated` != '0000-00-00 00:00:00'
1087 AND `gcontact`.`last_contact` >= `gcontact`.`last_failure`
1088 AND `gcontact`.`network` IN (%s)
1089 GROUP BY `glink`.`gcid` ORDER BY `gcontact`.`updated` DESC,`total` DESC LIMIT %d, %d",
1099 if(count($r) && count($r) >= ($limit -1))
1102 $r2 = q("SELECT gcontact.* FROM gcontact
1103 INNER JOIN `glink` ON `glink`.`gcid` = `gcontact`.`id`
1104 WHERE `glink`.`uid` = 0 AND `glink`.`cid` = 0 AND `glink`.`zcid` = 0 AND NOT `gcontact`.`nurl` IN (SELECT `nurl` FROM `contact` WHERE `uid` = %d)
1105 AND NOT `gcontact`.`name` IN (SELECT `name` FROM `contact` WHERE `uid` = %d)
1106 AND NOT `gcontact`.`id` IN (SELECT `gcid` FROM `gcign` WHERE `uid` = %d)
1107 AND `gcontact`.`updated` != '0000-00-00 00:00:00'
1108 AND `gcontact`.`last_contact` >= `gcontact`.`last_failure`
1109 AND `gcontact`.`network` IN (%s)
1110 ORDER BY rand() LIMIT %d, %d",
1120 foreach ($r2 AS $suggestion)
1121 $list[$suggestion["nurl"]] = $suggestion;
1123 foreach ($r AS $suggestion)
1124 $list[$suggestion["nurl"]] = $suggestion;
1126 while (sizeof($list) > ($limit))
1132 function update_suggestions() {
1138 /// TODO Check if it is really neccessary to poll the own server
1139 poco_load(0,0,0,$a->get_baseurl() . '/poco');
1141 $done[] = $a->get_baseurl() . '/poco';
1143 if(strlen(get_config('system','directory'))) {
1144 $x = fetch_url(get_server()."/pubsites");
1146 $j = json_decode($x);
1148 foreach($j->entries as $entry) {
1150 poco_check_server($entry->url);
1152 $url = $entry->url . '/poco';
1153 if(! in_array($url,$done))
1154 poco_load(0,0,0,$entry->url . '/poco');
1160 // Query your contacts from Friendica and Redmatrix/Hubzilla for their contacts
1161 $r = q("SELECT DISTINCT(`poco`) AS `poco` FROM `contact` WHERE `network` IN ('%s', '%s')",
1162 dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA)
1166 foreach($r as $rr) {
1167 $base = substr($rr['poco'],0,strrpos($rr['poco'],'/'));
1168 if(! in_array($base,$done))
1169 poco_load(0,0,0,$base);
1174 function poco_discover_federation() {
1175 $last = get_config('poco','last_federation_discovery');
1178 $next = $last + (24 * 60 * 60);
1183 // Discover Friendica, Hubzilla and Diaspora servers
1184 $serverdata = fetch_url("http://the-federation.info/pods.json");
1187 $servers = json_decode($serverdata);
1189 foreach($servers->pods AS $server)
1190 poco_check_server("https://".$server->host);
1193 // Discover GNU Social Servers
1194 if (!get_config('system','ostatus_disabled')) {
1195 $serverdata = "http://gstools.org/api/get_open_instances/";
1197 $result = z_fetch_url($serverdata);
1198 if ($result["success"]) {
1199 $servers = json_decode($result["body"]);
1201 foreach($servers->data AS $server)
1202 poco_check_server($server->instance_address);
1206 set_config('poco','last_federation_discovery', time());
1209 function poco_discover($complete = false) {
1211 // Update the server list
1212 poco_discover_federation();
1216 $requery_days = intval(get_config("system", "poco_requery_days"));
1218 if ($requery_days == 0)
1221 $last_update = date("c", time() - (60 * 60 * 24 * $requery_days));
1223 $r = q("SELECT `poco`, `nurl`, `url`, `network` FROM `gserver` WHERE `last_contact` >= `last_failure` AND `poco` != '' AND `last_poco_query` < '%s' ORDER BY RAND()", dbesc($last_update));
1225 foreach ($r AS $server) {
1227 if (!poco_check_server($server["url"], $server["network"])) {
1228 // The server is not reachable? Okay, then we will try it later
1229 q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"]));
1233 // Fetch all users from the other server
1234 $url = $server["poco"]."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation";
1236 logger("Fetch all users from the server ".$server["nurl"], LOGGER_DEBUG);
1238 $retdata = z_fetch_url($url);
1239 if ($retdata["success"]) {
1240 $data = json_decode($retdata["body"]);
1242 poco_discover_server($data, 2);
1244 if (get_config('system','poco_discovery') > 1) {
1246 $timeframe = get_config('system','poco_discovery_since');
1247 if ($timeframe == 0)
1250 $updatedSince = date("Y-m-d H:i:s", time() - $timeframe * 86400);
1252 // Fetch all global contacts from the other server (Not working with Redmatrix and Friendica versions before 3.3)
1253 $url = $server["poco"]."/@global?updatedSince=".$updatedSince."&fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation";
1257 $retdata = z_fetch_url($url);
1258 if ($retdata["success"]) {
1259 logger("Fetch all global contacts from the server ".$server["nurl"], LOGGER_DEBUG);
1260 $success = poco_discover_server(json_decode($retdata["body"]));
1263 if (!$success AND (get_config('system','poco_discovery') > 2)) {
1264 logger("Fetch contacts from users of the server ".$server["nurl"], LOGGER_DEBUG);
1265 poco_discover_server_users($data, $server);
1269 q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"]));
1270 if (!$complete AND (--$no_of_queries == 0))
1273 // If the server hadn't replied correctly, then force a sanity check
1274 poco_check_server($server["url"], $server["network"], true);
1276 // If we couldn't reach the server, we will try it some time later
1277 q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"]));
1282 function poco_discover_server_users($data, $server) {
1284 if (!isset($data->entry))
1287 foreach ($data->entry AS $entry) {
1289 if (isset($entry->urls)) {
1290 foreach($entry->urls as $url)
1291 if($url->type == 'profile') {
1292 $profile_url = $url->value;
1293 $urlparts = parse_url($profile_url);
1294 $username = end(explode("/", $urlparts["path"]));
1297 if ($username != "") {
1298 logger("Fetch contacts for the user ".$username." from the server ".$server["nurl"], LOGGER_DEBUG);
1300 // Fetch all contacts from a given user from the other server
1301 $url = $server["poco"]."/".$username."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,generation";
1303 $retdata = z_fetch_url($url);
1304 if ($retdata["success"])
1305 poco_discover_server(json_decode($retdata["body"]), 3);
1310 function poco_discover_server($data, $default_generation = 0) {
1312 if (!isset($data->entry) OR !count($data->entry))
1317 foreach ($data->entry AS $entry) {
1319 $profile_photo = '';
1323 $updated = '0000-00-00 00:00:00';
1328 $generation = $default_generation;
1330 $name = $entry->displayName;
1332 if(isset($entry->urls)) {
1333 foreach($entry->urls as $url) {
1334 if($url->type == 'profile') {
1335 $profile_url = $url->value;
1338 if($url->type == 'webfinger') {
1339 $connect_url = str_replace('acct:' , '', $url->value);
1345 if(isset($entry->photos)) {
1346 foreach($entry->photos as $photo) {
1347 if($photo->type == 'profile') {
1348 $profile_photo = $photo->value;
1354 if(isset($entry->updated))
1355 $updated = date("Y-m-d H:i:s", strtotime($entry->updated));
1357 if(isset($entry->network))
1358 $network = $entry->network;
1360 if(isset($entry->currentLocation))
1361 $location = $entry->currentLocation;
1363 if(isset($entry->aboutMe))
1364 $about = html2bbcode($entry->aboutMe);
1366 if(isset($entry->gender))
1367 $gender = $entry->gender;
1369 if(isset($entry->generation) AND ($entry->generation > 0))
1370 $generation = ++$entry->generation;
1372 if(isset($entry->tags))
1373 foreach($entry->tags as $tag)
1374 $keywords = implode(", ", $tag);
1376 if ($generation > 0) {
1379 logger("Store profile ".$profile_url, LOGGER_DEBUG);
1380 poco_check($profile_url, $name, $network, $profile_photo, $about, $location, $gender, $keywords, $connect_url, $updated, $generation, 0, 0, 0);
1381 logger("Done for profile ".$profile_url, LOGGER_DEBUG);
1388 * @brief Removes unwanted parts from a contact url
1390 * @param string $url Contact url
1391 * @return string Contact url with the wanted parts
1393 function clean_contact_url($url) {
1394 $parts = parse_url($url);
1396 if (!isset($parts["scheme"]) OR !isset($parts["host"]))
1399 $new_url = $parts["scheme"]."://".$parts["host"];
1401 if (isset($parts["port"]))
1402 $new_url .= ":".$parts["port"];
1404 if (isset($parts["path"]))
1405 $new_url .= $parts["path"];
1407 if ($new_url != $url)
1408 logger("Cleaned contact url ".$url." to ".$new_url." - Called by: ".App::callstack(), LOGGER_DEBUG);
1414 * @brief Replace alternate OStatus user format with the primary one
1416 * @param arr $contact contact array (called by reference)
1418 function fix_alternate_contact_address(&$contact) {
1419 if (($contact["network"] == NETWORK_OSTATUS) AND poco_alternate_ostatus_url($contact["url"])) {
1420 $data = probe_url($contact["url"]);
1421 if ($contact["network"] == NETWORK_OSTATUS) {
1422 logger("Fix primary url from ".$contact["url"]." to ".$data["url"]." - Called by: ".App::callstack(), LOGGER_DEBUG);
1423 $contact["url"] = $data["url"];
1424 $contact["addr"] = $data["addr"];
1425 $contact["alias"] = $data["alias"];
1426 $contact["server_url"] = $data["baseurl"];
1432 * @brief Fetch the gcontact id, add an entry if not existed
1434 * @param arr $contact contact array
1435 * @return bool|int Returns false if not found, integer if contact was found
1437 function get_gcontact_id($contact) {
1442 if (in_array($contact["network"], array(NETWORK_PHANTOM))) {
1443 logger("Invalid network for contact url ".$contact["url"]." - Called by: ".App::callstack(), LOGGER_DEBUG);
1447 if ($contact["network"] == NETWORK_STATUSNET)
1448 $contact["network"] = NETWORK_OSTATUS;
1450 // Replace alternate OStatus user format with the primary one
1451 fix_alternate_contact_address($contact);
1453 // Remove unwanted parts from the contact url (e.g. "?zrl=...")
1454 if (in_array($contact["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS)))
1455 $contact["url"] = clean_contact_url($contact["url"]);
1457 $r = q("SELECT `id`, `last_contact`, `last_failure`, `network` FROM `gcontact` WHERE `nurl` = '%s' ORDER BY `id` LIMIT 2",
1458 dbesc(normalise_link($contact["url"])));
1461 $gcontact_id = $r[0]["id"];
1463 // Update every 90 days
1464 if (in_array($r[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""))) {
1465 $last_failure_str = $r[0]["last_failure"];
1466 $last_failure = strtotime($r[0]["last_failure"]);
1467 $last_contact_str = $r[0]["last_contact"];
1468 $last_contact = strtotime($r[0]["last_contact"]);
1469 $doprobing = (((time() - $last_contact) > (90 * 86400)) AND ((time() - $last_failure) > (90 * 86400)));
1472 q("INSERT INTO `gcontact` (`name`, `nick`, `addr` , `network`, `url`, `nurl`, `photo`, `created`, `updated`, `location`, `about`, `generation`)
1473 VALUES ('%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d)",
1474 dbesc($contact["name"]),
1475 dbesc($contact["nick"]),
1476 dbesc($contact["addr"]),
1477 dbesc($contact["network"]),
1478 dbesc($contact["url"]),
1479 dbesc(normalise_link($contact["url"])),
1480 dbesc($contact["photo"]),
1481 dbesc(datetime_convert()),
1482 dbesc(datetime_convert()),
1483 dbesc($contact["location"]),
1484 dbesc($contact["about"]),
1485 intval($contact["generation"])
1488 $r = q("SELECT `id`, `network` FROM `gcontact` WHERE `nurl` = '%s' ORDER BY `id` LIMIT 2",
1489 dbesc(normalise_link($contact["url"])));
1492 $gcontact_id = $r[0]["id"];
1494 $doprobing = in_array($r[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""));
1499 logger("Last Contact: ". $last_contact_str." - Last Failure: ".$last_failure_str." - Checking: ".$contact["url"], LOGGER_DEBUG);
1500 proc_run('php', 'include/gprobe.php', bin2hex($contact["url"]));
1503 if ((count($r) > 1) AND ($gcontact_id > 0) AND ($contact["url"] != ""))
1504 q("DELETE FROM `gcontact` WHERE `nurl` = '%s' AND `id` != %d",
1505 dbesc(normalise_link($contact["url"])),
1506 intval($gcontact_id));
1508 return $gcontact_id;
1512 * @brief Updates the gcontact table from a given array
1514 * @param arr $contact contact array
1515 * @return bool|int Returns false if not found, integer if contact was found
1517 function update_gcontact($contact) {
1519 /// @todo update contact table as well
1521 $gcontact_id = get_gcontact_id($contact);
1526 $r = q("SELECT `name`, `nick`, `photo`, `location`, `about`, `addr`, `generation`, `birthday`, `gender`, `keywords`,
1527 `hide`, `nsfw`, `network`, `alias`, `notify`, `server_url`, `connect`, `updated`, `url`
1528 FROM `gcontact` WHERE `id` = %d LIMIT 1",
1529 intval($gcontact_id));
1531 // Get all field names
1533 foreach ($r[0] AS $field => $data)
1534 $fields[$field] = $data;
1536 unset($fields["url"]);
1537 unset($fields["updated"]);
1539 // Bugfix: We had an error in the storing of keywords which lead to the "0"
1540 // This value is still transmitted via poco.
1541 if ($contact["keywords"] == "0")
1542 unset($contact["keywords"]);
1544 if ($r[0]["keywords"] == "0")
1545 $r[0]["keywords"] = "";
1547 // assign all unassigned fields from the database entry
1548 foreach ($fields AS $field => $data)
1549 if (!isset($contact[$field]) OR ($contact[$field] == ""))
1550 $contact[$field] = $r[0][$field];
1552 if ($contact["network"] == NETWORK_STATUSNET)
1553 $contact["network"] = NETWORK_OSTATUS;
1555 // Replace alternate OStatus user format with the primary one
1556 fix_alternate_contact_address($contact);
1558 if (!isset($contact["updated"]))
1559 $contact["updated"] = datetime_convert();
1561 if ($contact["server_url"] == "") {
1562 $server_url = $contact["url"];
1564 $server_url = matching_url($server_url, $contact["alias"]);
1565 if ($server_url != "")
1566 $contact["server_url"] = $server_url;
1568 $server_url = matching_url($server_url, $contact["photo"]);
1569 if ($server_url != "")
1570 $contact["server_url"] = $server_url;
1572 $server_url = matching_url($server_url, $contact["notify"]);
1573 if ($server_url != "")
1574 $contact["server_url"] = $server_url;
1576 $contact["server_url"] = normalise_link($contact["server_url"]);
1578 if (($contact["addr"] == "") AND ($contact["server_url"] != "") AND ($contact["nick"] != "")) {
1579 $hostname = str_replace("http://", "", $contact["server_url"]);
1580 $contact["addr"] = $contact["nick"]."@".$hostname;
1583 // Check if any field changed
1585 unset($fields["generation"]);
1587 if ((($contact["generation"] > 0) AND ($contact["generation"] <= $r[0]["generation"])) OR ($r[0]["generation"] == 0)) {
1588 foreach ($fields AS $field => $data)
1589 if ($contact[$field] != $r[0][$field]) {
1590 logger("Difference for contact ".$contact["url"]." in field '".$field."'. New value: '".$contact[$field]."', old value '".$r[0][$field]."'", LOGGER_DEBUG);
1594 if ($contact["generation"] < $r[0]["generation"]) {
1595 logger("Difference for contact ".$contact["url"]." in field 'generation'. new value: '".$contact["generation"]."', old value '".$r[0]["generation"]."'", LOGGER_DEBUG);
1601 logger("Update gcontact for ".$contact["url"]." Callstack: ".App::callstack(), LOGGER_DEBUG);
1603 q("UPDATE `gcontact` SET `photo` = '%s', `name` = '%s', `nick` = '%s', `addr` = '%s', `network` = '%s',
1604 `birthday` = '%s', `gender` = '%s', `keywords` = '%s', `hide` = %d, `nsfw` = %d,
1605 `alias` = '%s', `notify` = '%s', `url` = '%s',
1606 `location` = '%s', `about` = '%s', `generation` = %d, `updated` = '%s',
1607 `server_url` = '%s', `connect` = '%s'
1608 WHERE `nurl` = '%s' AND (`generation` = 0 OR `generation` >= %d)",
1609 dbesc($contact["photo"]), dbesc($contact["name"]), dbesc($contact["nick"]),
1610 dbesc($contact["addr"]), dbesc($contact["network"]), dbesc($contact["birthday"]),
1611 dbesc($contact["gender"]), dbesc($contact["keywords"]), intval($contact["hide"]),
1612 intval($contact["nsfw"]), dbesc($contact["alias"]), dbesc($contact["notify"]),
1613 dbesc($contact["url"]), dbesc($contact["location"]), dbesc($contact["about"]),
1614 intval($contact["generation"]), dbesc($contact["updated"]),
1615 dbesc($contact["server_url"]), dbesc($contact["connect"]),
1616 dbesc(normalise_link($contact["url"])), intval($contact["generation"]));
1619 // Now update the contact entry with the user id "0" as well.
1620 // This is used for the shadow copies of public items.
1621 $r = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = 0 ORDER BY `id` LIMIT 1",
1622 dbesc(normalise_link($contact["url"])));
1625 logger("Update shadow contact ".$r[0]["id"], LOGGER_DEBUG);
1627 update_contact_avatar($contact["photo"], 0, $r[0]["id"]);
1629 q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `addr` = '%s',
1630 `network` = '%s', `bd` = '%s', `gender` = '%s',
1631 `keywords` = '%s', `alias` = '%s', `url` = '%s',
1632 `location` = '%s', `about` = '%s'
1634 dbesc($contact["name"]), dbesc($contact["nick"]), dbesc($contact["addr"]),
1635 dbesc($contact["network"]), dbesc($contact["birthday"]), dbesc($contact["gender"]),
1636 dbesc($contact["keywords"]), dbesc($contact["alias"]), dbesc($contact["url"]),
1637 dbesc($contact["location"]), dbesc($contact["about"]), intval($r[0]["id"]));
1641 return $gcontact_id;
1645 * @brief Updates the gcontact entry from probe
1647 * @param str $url profile link
1649 function update_gcontact_from_probe($url) {
1650 $data = probe_url($url);
1652 if (in_array($data["network"], array(NETWORK_PHANTOM))) {
1653 logger("Invalid network for contact url ".$data["url"]." - Called by: ".App::callstack(), LOGGER_DEBUG);
1657 update_gcontact($data);
1661 * @brief Fetches users of given GNU Social server
1663 * If the "Statistics" plugin is enabled (See http://gstools.org/ for details) we query user data with this.
1665 * @param str $server Server address
1667 function gs_fetch_users($server) {
1669 logger("Fetching users from GNU Social server ".$server, LOGGER_DEBUG);
1673 $url = $server."/main/statistics";
1675 $result = z_fetch_url($url);
1676 if (!$result["success"])
1679 $statistics = json_decode($result["body"]);
1681 if (is_object($statistics->config)) {
1682 if ($statistics->config->instance_with_ssl)
1683 $server = "https://";
1685 $server = "http://";
1687 $server .= $statistics->config->instance_address;
1689 $hostname = $statistics->config->instance_address;
1691 if ($statistics->instance_with_ssl)
1692 $server = "https://";
1694 $server = "http://";
1696 $server .= $statistics->instance_address;
1698 $hostname = $statistics->instance_address;
1701 if (is_object($statistics->users))
1702 foreach ($statistics->users AS $nick => $user) {
1703 $profile_url = $server."/".$user->nickname;
1705 $contact = array("url" => $profile_url,
1706 "name" => $user->fullname,
1707 "addr" => $user->nickname."@".$hostname,
1708 "nick" => $user->nickname,
1709 "about" => $user->bio,
1710 "network" => NETWORK_OSTATUS,
1711 "photo" => $a->get_baseurl()."/images/person-175.jpg");
1712 get_gcontact_id($contact);
1717 * @brief Asking GNU Social server on a regular base for their user data
1720 function gs_discover() {
1722 $requery_days = intval(get_config("system", "poco_requery_days"));
1724 $last_update = date("c", time() - (60 * 60 * 24 * $requery_days));
1726 $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",
1727 dbesc(NETWORK_OSTATUS), dbesc($last_update));
1732 foreach ($r AS $server) {
1733 gs_fetch_users($server["url"]);
1734 q("UPDATE `gserver` SET `last_poco_query` = '%s' WHERE `nurl` = '%s'", dbesc(datetime_convert()), dbesc($server["nurl"]));