3 * @file src/Protocol/PortableContact.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 namespace Friendica\Protocol;
12 use Friendica\Content\Text\HTML;
13 use Friendica\Core\Config;
14 use Friendica\Core\Worker;
15 use Friendica\Database\DBM;
16 use Friendica\Model\GContact;
17 use Friendica\Model\Profile;
18 use Friendica\Network\Probe;
19 use Friendica\Util\DateTimeFormat;
20 use Friendica\Util\Network;
26 require_once 'include/dba.php';
31 * @brief Fetch POCO data
33 * @param integer $cid Contact ID
34 * @param integer $uid User ID
35 * @param integer $zcid Global Contact ID
36 * @param integer $url POCO address that should be polled
38 * Given a contact-id (minimum), load the PortableContacts friend list for that contact,
39 * and add the entries to the gcontact (Global Contact) table, or update existing entries
40 * if anything (name or photo) has changed.
41 * We use normalised urls for comparison which ignore http vs https and www.domain vs domain
43 * Once the global contact is stored add (if necessary) the contact linkage which associates
44 * the given uid, cid to the global contact entry. There can be many uid/cid combinations
45 * pointing to the same global contact id.
48 public static function loadWorker($cid, $uid = 0, $zcid = 0, $url = null)
50 // Call the function "load" via the worker
51 Worker::add(PRIORITY_LOW, "DiscoverPoCo", "load", (int)$cid, (int)$uid, (int)$zcid, $url);
55 * @brief Fetch POCO data from the worker
57 * @param integer $cid Contact ID
58 * @param integer $uid User ID
59 * @param integer $zcid Global Contact ID
60 * @param integer $url POCO address that should be polled
63 public static function load($cid, $uid, $zcid, $url)
69 $contact = dba::selectFirst('contact', ['poco', 'uid'], ['id' => $cid]);
70 if (DBM::is_result($contact)) {
71 $url = $contact['poco'];
72 $uid = $contact['uid'];
84 $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') ;
86 logger('load: ' . $url, LOGGER_DEBUG);
88 $s = Network::fetchUrl($url);
90 logger('load: returns ' . $s, LOGGER_DATA);
92 logger('load: return code: ' . $a->get_curl_code(), LOGGER_DEBUG);
94 if (($a->get_curl_code() > 299) || (! $s)) {
100 logger('load: json: ' . print_r($j, true), LOGGER_DATA);
102 if (! isset($j->entry)) {
107 foreach ($j->entry as $entry) {
114 $updated = NULL_DATE;
122 $name = $entry->displayName;
124 if (isset($entry->urls)) {
125 foreach ($entry->urls as $url) {
126 if ($url->type == 'profile') {
127 $profile_url = $url->value;
130 if ($url->type == 'webfinger') {
131 $connect_url = str_replace('acct:', '', $url->value);
136 if (isset($entry->photos)) {
137 foreach ($entry->photos as $photo) {
138 if ($photo->type == 'profile') {
139 $profile_photo = $photo->value;
145 if (isset($entry->updated)) {
146 $updated = date(DateTimeFormat::MYSQL, strtotime($entry->updated));
149 if (isset($entry->network)) {
150 $network = $entry->network;
153 if (isset($entry->currentLocation)) {
154 $location = $entry->currentLocation;
157 if (isset($entry->aboutMe)) {
158 $about = HTML::toBBCode($entry->aboutMe);
161 if (isset($entry->gender)) {
162 $gender = $entry->gender;
165 if (isset($entry->generation) && ($entry->generation > 0)) {
166 $generation = ++$entry->generation;
169 if (isset($entry->tags)) {
170 foreach ($entry->tags as $tag) {
171 $keywords = implode(", ", $tag);
175 if (isset($entry->contactType) && ($entry->contactType >= 0)) {
176 $contact_type = $entry->contactType;
179 $gcontact = ["url" => $profile_url,
181 "network" => $network,
182 "photo" => $profile_photo,
184 "location" => $location,
186 "keywords" => $keywords,
187 "connect" => $connect_url,
188 "updated" => $updated,
189 "contact-type" => $contact_type,
190 "generation" => $generation];
193 $gcontact = GContact::sanitize($gcontact);
194 $gcid = GContact::update($gcontact);
196 GContact::link($gcid, $uid, $cid, $zcid);
197 } catch (Exception $e) {
198 logger($e->getMessage(), LOGGER_DEBUG);
201 logger("load: loaded $total entries", LOGGER_DEBUG);
203 $condition = ["`cid` = ? AND `uid` = ? AND `zcid` = ? AND `updated` < UTC_TIMESTAMP - INTERVAL 2 DAY", $cid, $uid, $zcid];
204 dba::delete('glink', $condition);
207 public static function reachable($profile, $server = "", $network = "", $force = false)
210 $server = self::detectServer($profile);
217 return self::checkServer($server, $network, $force);
220 public static function detectServer($profile)
222 // Try to detect the server path based upon some known standard paths
225 if ($server_url == "") {
226 $friendica = preg_replace("=(https?://)(.*)/profile/(.*)=ism", "$1$2", $profile);
227 if ($friendica != $profile) {
228 $server_url = $friendica;
229 $network = NETWORK_DFRN;
233 if ($server_url == "") {
234 $diaspora = preg_replace("=(https?://)(.*)/u/(.*)=ism", "$1$2", $profile);
235 if ($diaspora != $profile) {
236 $server_url = $diaspora;
237 $network = NETWORK_DIASPORA;
241 if ($server_url == "") {
242 $red = preg_replace("=(https?://)(.*)/channel/(.*)=ism", "$1$2", $profile);
243 if ($red != $profile) {
245 $network = NETWORK_DIASPORA;
250 if ($server_url == "") {
251 $mastodon = preg_replace("=(https?://)(.*)/users/(.*)=ism", "$1$2", $profile);
252 if ($mastodon != $profile) {
253 $server_url = $mastodon;
254 $network = NETWORK_OSTATUS;
258 // Numeric OStatus variant
259 if ($server_url == "") {
260 $ostatus = preg_replace("=(https?://)(.*)/user/(.*)=ism", "$1$2", $profile);
261 if ($ostatus != $profile) {
262 $server_url = $ostatus;
263 $network = NETWORK_OSTATUS;
268 if ($server_url == "") {
269 $base = preg_replace("=(https?://)(.*?)/(.*)=ism", "$1$2", $profile);
270 if ($base != $profile) {
272 $network = NETWORK_PHANTOM;
276 if ($server_url == "") {
281 "SELECT `id` FROM `gserver` WHERE `nurl` = '%s' AND `last_contact` > `last_failure`",
282 dbesc(normalise_link($server_url))
285 if (DBM::is_result($r)) {
289 // Fetch the host-meta to check if this really is a server
290 $serverret = Network::curl($server_url."/.well-known/host-meta");
291 if (!$serverret["success"]) {
298 public static function alternateOStatusUrl($url)
300 return(preg_match("=https?://.+/user/\d+=ism", $url, $matches));
303 public static function lastUpdated($profile, $force = false)
306 "SELECT * FROM `gcontact` WHERE `nurl` = '%s'",
307 dbesc(normalise_link($profile))
310 if (!DBM::is_result($gcontacts)) {
314 $contact = ["url" => $profile];
316 if ($gcontacts[0]["created"] <= NULL_DATE) {
317 $contact['created'] = DateTimeFormat::utcNow();
322 $server_url = normalise_link(self::detectServer($profile));
325 if (($server_url == '') && ($gcontacts[0]["server_url"] != "")) {
326 $server_url = $gcontacts[0]["server_url"];
329 if (!$force && (($server_url == '') || ($gcontacts[0]["server_url"] == $gcontacts[0]["nurl"]))) {
330 $server_url = normalise_link(self::detectServer($profile));
333 if (!in_array($gcontacts[0]["network"], [NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_FEED, NETWORK_OSTATUS, ""])) {
334 logger("Profile ".$profile.": Network type ".$gcontacts[0]["network"]." can't be checked", LOGGER_DEBUG);
338 if ($server_url != "") {
339 if (!self::checkServer($server_url, $gcontacts[0]["network"], $force)) {
341 $fields = ['last_failure' => DateTimeFormat::utcNow()];
342 dba::update('gcontact', $fields, ['nurl' => normalise_link($profile)]);
345 logger("Profile ".$profile.": Server ".$server_url." wasn't reachable.", LOGGER_DEBUG);
348 $contact['server_url'] = $server_url;
351 if (in_array($gcontacts[0]["network"], ["", NETWORK_FEED])) {
353 "SELECT `network` FROM `gserver` WHERE `nurl` = '%s' AND `network` != ''",
354 dbesc(normalise_link($server_url))
358 $contact['network'] = $server[0]["network"];
364 // noscrape is really fast so we don't cache the call.
365 if (($server_url != "") && ($gcontacts[0]["nick"] != "")) {
366 // Use noscrape if possible
367 $server = q("SELECT `noscrape`, `network` FROM `gserver` WHERE `nurl` = '%s' AND `noscrape` != ''", dbesc(normalise_link($server_url)));
370 $noscraperet = Network::curl($server[0]["noscrape"]."/".$gcontacts[0]["nick"]);
372 if ($noscraperet["success"] && ($noscraperet["body"] != "")) {
373 $noscrape = json_decode($noscraperet["body"], true);
375 if (is_array($noscrape)) {
376 $contact["network"] = $server[0]["network"];
378 if (isset($noscrape["fn"])) {
379 $contact["name"] = $noscrape["fn"];
381 if (isset($noscrape["comm"])) {
382 $contact["community"] = $noscrape["comm"];
384 if (isset($noscrape["tags"])) {
385 $keywords = implode(" ", $noscrape["tags"]);
386 if ($keywords != "") {
387 $contact["keywords"] = $keywords;
391 $location = Profile::formatLocation($noscrape);
393 $contact["location"] = $location;
395 if (isset($noscrape["dfrn-notify"])) {
396 $contact["notify"] = $noscrape["dfrn-notify"];
398 // Remove all fields that are not present in the gcontact table
399 unset($noscrape["fn"]);
400 unset($noscrape["key"]);
401 unset($noscrape["homepage"]);
402 unset($noscrape["comm"]);
403 unset($noscrape["tags"]);
404 unset($noscrape["locality"]);
405 unset($noscrape["region"]);
406 unset($noscrape["country-name"]);
407 unset($noscrape["contacts"]);
408 unset($noscrape["dfrn-request"]);
409 unset($noscrape["dfrn-confirm"]);
410 unset($noscrape["dfrn-notify"]);
411 unset($noscrape["dfrn-poll"]);
413 // Set the date of the last contact
414 /// @todo By now the function "update_gcontact" doesn't work with this field
415 //$contact["last_contact"] = DateTimeFormat::utcNow();
417 $contact = array_merge($contact, $noscrape);
419 GContact::update($contact);
421 if (trim($noscrape["updated"]) != "") {
422 $fields = ['last_contact' => DateTimeFormat::utcNow()];
423 dba::update('gcontact', $fields, ['nurl' => normalise_link($profile)]);
425 logger("Profile ".$profile." was last updated at ".$noscrape["updated"]." (noscrape)", LOGGER_DEBUG);
427 return $noscrape["updated"];
434 // If we only can poll the feed, then we only do this once a while
435 if (!$force && !self::updateNeeded($gcontacts[0]["created"], $gcontacts[0]["updated"], $gcontacts[0]["last_failure"], $gcontacts[0]["last_contact"])) {
436 logger("Profile ".$profile." was last updated at ".$gcontacts[0]["updated"]." (cached)", LOGGER_DEBUG);
438 GContact::update($contact);
439 return $gcontacts[0]["updated"];
442 $data = Probe::uri($profile);
444 // Is the profile link the alternate OStatus link notation? (http://domain.tld/user/4711)
445 // Then check the other link and delete this one
446 if (($data["network"] == NETWORK_OSTATUS) && self::alternateOStatusUrl($profile)
447 && (normalise_link($profile) == normalise_link($data["alias"]))
448 && (normalise_link($profile) != normalise_link($data["url"]))
450 // Delete the old entry
451 dba::delete('gcontact', ['nurl' => normalise_link($profile)]);
453 $gcontact = array_merge($gcontacts[0], $data);
455 $gcontact["server_url"] = $data["baseurl"];
458 $gcontact = GContact::sanitize($gcontact);
459 GContact::update($gcontact);
461 self::lastUpdated($data["url"], $force);
462 } catch (Exception $e) {
463 logger($e->getMessage(), LOGGER_DEBUG);
466 logger("Profile ".$profile." was deleted", LOGGER_DEBUG);
470 if (($data["poll"] == "") || (in_array($data["network"], [NETWORK_FEED, NETWORK_PHANTOM]))) {
471 $fields = ['last_failure' => DateTimeFormat::utcNow()];
472 dba::update('gcontact', $fields, ['nurl' => normalise_link($profile)]);
474 logger("Profile ".$profile." wasn't reachable (profile)", LOGGER_DEBUG);
478 $contact = array_merge($contact, $data);
480 $contact["server_url"] = $data["baseurl"];
482 GContact::update($contact);
484 $feedret = Network::curl($data["poll"]);
486 if (!$feedret["success"]) {
487 $fields = ['last_failure' => DateTimeFormat::utcNow()];
488 dba::update('gcontact', $fields, ['nurl' => normalise_link($profile)]);
490 logger("Profile ".$profile." wasn't reachable (no feed)", LOGGER_DEBUG);
494 $doc = new DOMDocument();
495 @$doc->loadXML($feedret["body"]);
497 $xpath = new DOMXPath($doc);
498 $xpath->registerNamespace('atom', "http://www.w3.org/2005/Atom");
500 $entries = $xpath->query('/atom:feed/atom:entry');
504 foreach ($entries as $entry) {
505 $published = DateTimeFormat::utc($xpath->query('atom:published/text()', $entry)->item(0)->nodeValue);
506 $updated = DateTimeFormat::utc($xpath->query('atom:updated/text()' , $entry)->item(0)->nodeValue);
508 if ($last_updated < $published) {
509 $last_updated = $published;
512 if ($last_updated < $updated) {
513 $last_updated = $updated;
517 // Maybe there aren't any entries. Then check if it is a valid feed
518 if ($last_updated == "") {
519 if ($xpath->query('/atom:feed')->length > 0) {
520 $last_updated = NULL_DATE;
524 $fields = ['updated' => $last_updated, 'last_contact' => DateTimeFormat::utcNow()];
525 dba::update('gcontact', $fields, ['nurl' => normalise_link($profile)]);
527 if (($gcontacts[0]["generation"] == 0)) {
528 $fields = ['generation' => 9];
529 dba::update('gcontact', $fields, ['nurl' => normalise_link($profile)]);
532 logger("Profile ".$profile." was last updated at ".$last_updated, LOGGER_DEBUG);
534 return $last_updated;
537 public static function updateNeeded($created, $updated, $last_failure, $last_contact)
539 $now = strtotime(DateTimeFormat::utcNow());
541 if ($updated > $last_contact) {
542 $contact_time = strtotime($updated);
544 $contact_time = strtotime($last_contact);
547 $failure_time = strtotime($last_failure);
548 $created_time = strtotime($created);
550 // If there is no "created" time then use the current time
551 if ($created_time <= 0) {
552 $created_time = $now;
555 // If the last contact was less than 24 hours then don't update
556 if (($now - $contact_time) < (60 * 60 * 24)) {
560 // If the last failure was less than 24 hours then don't update
561 if (($now - $failure_time) < (60 * 60 * 24)) {
565 // If the last contact was less than a week ago and the last failure is older than a week then don't update
566 //if ((($now - $contact_time) < (60 * 60 * 24 * 7)) && ($contact_time > $failure_time))
569 // 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
570 if ((($now - $contact_time) > (60 * 60 * 24 * 7)) && (($now - $created_time) > (60 * 60 * 24 * 7)) && (($now - $failure_time) < (60 * 60 * 24 * 7))) {
574 // 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
575 if ((($now - $contact_time) > (60 * 60 * 24 * 30)) && (($now - $created_time) > (60 * 60 * 24 * 30)) && (($now - $failure_time) < (60 * 60 * 24 * 30))) {
582 private static function toBoolean($val)
584 if (($val == "true") || ($val == 1)) {
586 } elseif (($val == "false") || ($val == 0)) {
594 * @brief Detect server type (Hubzilla or Friendica) via the poco data
596 * @param object $data POCO data
597 * @return array Server data
599 private static function detectPocoData($data)
603 if (!isset($data->entry)) {
607 if (count($data->entry) == 0) {
611 if (!isset($data->entry[0]->urls)) {
615 if (count($data->entry[0]->urls) == 0) {
619 foreach ($data->entry[0]->urls as $url) {
620 if ($url->type == 'zot') {
622 $server["platform"] = 'Hubzilla';
623 $server["network"] = NETWORK_DIASPORA;
631 * @brief Detect server type by using the nodeinfo data
633 * @param string $server_url address of the server
634 * @return array Server data
636 private static function fetchNodeinfo($server_url)
638 $serverret = Network::curl($server_url."/.well-known/nodeinfo");
639 if (!$serverret["success"]) {
643 $nodeinfo = json_decode($serverret['body']);
645 if (!is_object($nodeinfo)) {
649 if (!is_array($nodeinfo->links)) {
656 foreach ($nodeinfo->links as $link) {
657 if ($link->rel == 'http://nodeinfo.diaspora.software/ns/schema/1.0') {
658 $nodeinfo1_url = $link->href;
660 if ($link->rel == 'http://nodeinfo.diaspora.software/ns/schema/2.0') {
661 $nodeinfo2_url = $link->href;
665 if ($nodeinfo1_url . $nodeinfo2_url == '') {
671 // When the nodeinfo url isn't on the same host, then there is obviously something wrong
672 if (!empty($nodeinfo2_url) && (parse_url($server_url, PHP_URL_HOST) == parse_url($nodeinfo2_url, PHP_URL_HOST))) {
673 $server = self::parseNodeinfo2($nodeinfo2_url);
676 // When the nodeinfo url isn't on the same host, then there is obviously something wrong
677 if (empty($server) && !empty($nodeinfo1_url) && (parse_url($server_url, PHP_URL_HOST) == parse_url($nodeinfo1_url, PHP_URL_HOST))) {
678 $server = self::parseNodeinfo1($nodeinfo1_url);
685 * @brief Parses Nodeinfo 1
687 * @param string $nodeinfo_url address of the nodeinfo path
688 * @return array Server data
690 private static function parseNodeinfo1($nodeinfo_url)
692 $serverret = Network::curl($nodeinfo_url);
693 if (!$serverret["success"]) {
697 $nodeinfo = json_decode($serverret['body']);
698 if (!is_object($nodeinfo)) {
704 $server['register_policy'] = REGISTER_CLOSED;
706 if (is_bool($nodeinfo->openRegistrations) && $nodeinfo->openRegistrations) {
707 $server['register_policy'] = REGISTER_OPEN;
710 if (is_object($nodeinfo->software)) {
711 if (isset($nodeinfo->software->name)) {
712 $server['platform'] = $nodeinfo->software->name;
715 if (isset($nodeinfo->software->version)) {
716 $server['version'] = $nodeinfo->software->version;
717 // Version numbers on Nodeinfo are presented with additional info, e.g.:
718 // 0.6.3.0-p1702cc1c, 0.6.99.0-p1b9ab160 or 3.4.3-2-1191.
719 $server['version'] = preg_replace("=(.+)-(.{4,})=ism", "$1", $server['version']);
723 if (is_object($nodeinfo->metadata)) {
724 if (isset($nodeinfo->metadata->nodeName)) {
725 $server['site_name'] = $nodeinfo->metadata->nodeName;
729 if (!empty($nodeinfo->usage->users->total)) {
730 $server['registered-users'] = $nodeinfo->usage->users->total;
737 if (is_array($nodeinfo->protocols->inbound)) {
738 foreach ($nodeinfo->protocols->inbound as $inbound) {
739 if ($inbound == 'diaspora') {
742 if ($inbound == 'friendica') {
745 if ($inbound == 'gnusocial') {
752 $server['network'] = NETWORK_OSTATUS;
755 $server['network'] = NETWORK_DIASPORA;
758 $server['network'] = NETWORK_DFRN;
769 * @brief Parses Nodeinfo 2
771 * @param string $nodeinfo_url address of the nodeinfo path
772 * @return array Server data
774 private static function parseNodeinfo2($nodeinfo_url)
776 $serverret = Network::curl($nodeinfo_url);
777 if (!$serverret["success"]) {
781 $nodeinfo = json_decode($serverret['body']);
782 if (!is_object($nodeinfo)) {
788 $server['register_policy'] = REGISTER_CLOSED;
790 if (is_bool($nodeinfo->openRegistrations) && $nodeinfo->openRegistrations) {
791 $server['register_policy'] = REGISTER_OPEN;
794 if (is_object($nodeinfo->software)) {
795 if (isset($nodeinfo->software->name)) {
796 $server['platform'] = $nodeinfo->software->name;
799 if (isset($nodeinfo->software->version)) {
800 $server['version'] = $nodeinfo->software->version;
801 // Version numbers on Nodeinfo are presented with additional info, e.g.:
802 // 0.6.3.0-p1702cc1c, 0.6.99.0-p1b9ab160 or 3.4.3-2-1191.
803 $server['version'] = preg_replace("=(.+)-(.{4,})=ism", "$1", $server['version']);
807 if (is_object($nodeinfo->metadata)) {
808 if (isset($nodeinfo->metadata->nodeName)) {
809 $server['site_name'] = $nodeinfo->metadata->nodeName;
813 if (!empty($nodeinfo->usage->users->total)) {
814 $server['registered-users'] = $nodeinfo->usage->users->total;
821 if (is_array($nodeinfo->protocols)) {
822 foreach ($nodeinfo->protocols as $protocol) {
823 if ($protocol == 'diaspora') {
826 if ($protocol == 'friendica') {
829 if ($protocol == 'gnusocial') {
836 $server['network'] = NETWORK_OSTATUS;
839 $server['network'] = NETWORK_DIASPORA;
842 $server['network'] = NETWORK_DFRN;
853 * @brief Detect server type (Hubzilla or Friendica) via the front page body
855 * @param string $body Front page of the server
856 * @return array Server data
858 private static function detectServerType($body)
862 $doc = new DOMDocument();
863 @$doc->loadHTML($body);
864 $xpath = new DOMXPath($doc);
866 $list = $xpath->query("//meta[@name]");
868 foreach ($list as $node) {
870 if ($node->attributes->length) {
871 foreach ($node->attributes as $attribute) {
872 $attr[$attribute->name] = $attribute->value;
875 if ($attr['name'] == 'generator') {
876 $version_part = explode(" ", $attr['content']);
877 if (count($version_part) == 2) {
878 if (in_array($version_part[0], ["Friendika", "Friendica"])) {
880 $server["platform"] = $version_part[0];
881 $server["version"] = $version_part[1];
882 $server["network"] = NETWORK_DFRN;
889 $list = $xpath->query("//meta[@property]");
891 foreach ($list as $node) {
893 if ($node->attributes->length) {
894 foreach ($node->attributes as $attribute) {
895 $attr[$attribute->name] = $attribute->value;
898 if ($attr['property'] == 'generator' && in_array($attr['content'], ["hubzilla", "BlaBlaNet"])) {
900 $server["platform"] = $attr['content'];
901 $server["version"] = "";
902 $server["network"] = NETWORK_DIASPORA;
911 $server["site_name"] = $xpath->evaluate("//head/title/text()")->item(0)->nodeValue;
915 public static function checkServer($server_url, $network = "", $force = false)
917 // Unify the server address
918 $server_url = trim($server_url, "/");
919 $server_url = str_replace("/index.php", "", $server_url);
921 if ($server_url == "") {
925 $gserver = dba::selectFirst('gserver', [], ['nurl' => normalise_link($server_url)]);
926 if (DBM::is_result($gserver)) {
927 if ($gserver["created"] <= NULL_DATE) {
928 $fields = ['created' => DateTimeFormat::utcNow()];
929 $condition = ['nurl' => normalise_link($server_url)];
930 dba::update('gserver', $fields, $condition);
932 $poco = $gserver["poco"];
933 $noscrape = $gserver["noscrape"];
935 if ($network == "") {
936 $network = $gserver["network"];
939 $last_contact = $gserver["last_contact"];
940 $last_failure = $gserver["last_failure"];
941 $version = $gserver["version"];
942 $platform = $gserver["platform"];
943 $site_name = $gserver["site_name"];
944 $info = $gserver["info"];
945 $register_policy = $gserver["register_policy"];
946 $registered_users = $gserver["registered-users"];
948 // See discussion under https://forum.friendi.ca/display/0b6b25a8135aabc37a5a0f5684081633
949 // It can happen that a zero date is in the database, but storing it again is forbidden.
950 if ($last_contact < NULL_DATE) {
951 $last_contact = NULL_DATE;
953 if ($last_failure < NULL_DATE) {
954 $last_failure = NULL_DATE;
957 if (!$force && !self::updateNeeded($gserver["created"], "", $last_failure, $last_contact)) {
958 logger("Use cached data for server ".$server_url, LOGGER_DEBUG);
959 return ($last_contact >= $last_failure);
968 $register_policy = -1;
969 $registered_users = 0;
971 $last_contact = NULL_DATE;
972 $last_failure = NULL_DATE;
974 logger("Server ".$server_url." is outdated or unknown. Start discovery. Force: ".$force." Created: ".$gserver["created"]." Failure: ".$last_failure." Contact: ".$last_contact, LOGGER_DEBUG);
977 $possible_failure = false;
978 $orig_last_failure = $last_failure;
979 $orig_last_contact = $last_contact;
981 // Mastodon uses the "@" for user profiles.
982 // But this can be misunderstood.
983 if (parse_url($server_url, PHP_URL_USER) != '') {
984 dba::update('gserver', ['last_failure' => DateTimeFormat::utcNow()], ['nurl' => normalise_link($server_url)]);
988 // Check if the page is accessible via SSL.
989 $orig_server_url = $server_url;
990 $server_url = str_replace("http://", "https://", $server_url);
992 // We set the timeout to 20 seconds since this operation should be done in no time if the server was vital
993 $serverret = Network::curl($server_url."/.well-known/host-meta", false, $redirects, ['timeout' => 20]);
995 // Quit if there is a timeout.
996 // But we want to make sure to only quit if we are mostly sure that this server url fits.
997 if (DBM::is_result($gserver) && ($orig_server_url == $server_url) &&
998 ($serverret['errno'] == CURLE_OPERATION_TIMEDOUT)) {
999 logger("Connection to server ".$server_url." timed out.", LOGGER_DEBUG);
1000 dba::update('gserver', ['last_failure' => DateTimeFormat::utcNow()], ['nurl' => normalise_link($server_url)]);
1004 // Maybe the page is unencrypted only?
1005 $xmlobj = @simplexml_load_string($serverret["body"], 'SimpleXMLElement', 0, "http://docs.oasis-open.org/ns/xri/xrd-1.0");
1006 if (!$serverret["success"] || ($serverret["body"] == "") || (@sizeof($xmlobj) == 0) || !is_object($xmlobj)) {
1007 $server_url = str_replace("https://", "http://", $server_url);
1009 // We set the timeout to 20 seconds since this operation should be done in no time if the server was vital
1010 $serverret = Network::curl($server_url."/.well-known/host-meta", false, $redirects, ['timeout' => 20]);
1012 // Quit if there is a timeout
1013 if ($serverret['errno'] == CURLE_OPERATION_TIMEDOUT) {
1014 logger("Connection to server ".$server_url." timed out.", LOGGER_DEBUG);
1015 dba::update('gserver', ['last_failure' => DateTimeFormat::utcNow()], ['nurl' => normalise_link($server_url)]);
1019 $xmlobj = @simplexml_load_string($serverret["body"], 'SimpleXMLElement', 0, "http://docs.oasis-open.org/ns/xri/xrd-1.0");
1022 if (!$serverret["success"] || ($serverret["body"] == "") || (sizeof($xmlobj) == 0) || !is_object($xmlobj)) {
1023 // Workaround for bad configured servers (known nginx problem)
1024 if (!in_array($serverret["debug"]["http_code"], ["403", "404"])) {
1027 $possible_failure = true;
1030 // If the server has no possible failure we reset the cached data
1031 if (!$possible_failure) {
1036 $register_policy = -1;
1040 // This will be too low, but better than no value at all.
1041 $registered_users = dba::count('gcontact', ['server_url' => normalise_link($server_url)]);
1046 $serverret = Network::curl($server_url."/poco");
1047 if ($serverret["success"]) {
1048 $data = json_decode($serverret["body"]);
1049 if (isset($data->totalResults)) {
1050 $registered_users = $data->totalResults;
1051 $poco = $server_url."/poco";
1052 $server = self::detectPocoData($data);
1054 $platform = $server['platform'];
1055 $network = $server['network'];
1060 // There are servers out there who don't return 404 on a failure
1061 // We have to be sure that don't misunderstand this
1062 if (is_null($data)) {
1071 // Test for Diaspora, Hubzilla, Mastodon or older Friendica servers
1072 $serverret = Network::curl($server_url);
1074 if (!$serverret["success"] || ($serverret["body"] == "")) {
1077 $server = self::detectServerType($serverret["body"]);
1079 $platform = $server['platform'];
1080 $network = $server['network'];
1081 $version = $server['version'];
1082 $site_name = $server['site_name'];
1085 $lines = explode("\n", $serverret["header"]);
1086 if (count($lines)) {
1087 foreach ($lines as $line) {
1088 $line = trim($line);
1089 if (stristr($line, 'X-Diaspora-Version:')) {
1090 $platform = "Diaspora";
1091 $version = trim(str_replace("X-Diaspora-Version:", "", $line));
1092 $version = trim(str_replace("x-diaspora-version:", "", $version));
1093 $network = NETWORK_DIASPORA;
1094 $versionparts = explode("-", $version);
1095 $version = $versionparts[0];
1098 if (stristr($line, 'Server: Mastodon')) {
1099 $platform = "Mastodon";
1100 $network = NETWORK_OSTATUS;
1107 if (!$failure && ($poco == "")) {
1108 // Test for Statusnet
1109 // Will also return data for Friendica and GNU Social - but it will be overwritten later
1110 // The "not implemented" is a special treatment for really, really old Friendica versions
1111 $serverret = Network::curl($server_url."/api/statusnet/version.json");
1112 if ($serverret["success"] && ($serverret["body"] != '{"error":"not implemented"}') &&
1113 ($serverret["body"] != '') && (strlen($serverret["body"]) < 30)) {
1114 $platform = "StatusNet";
1115 // Remove junk that some GNU Social servers return
1116 $version = str_replace(chr(239).chr(187).chr(191), "", $serverret["body"]);
1117 $version = trim($version, '"');
1118 $network = NETWORK_OSTATUS;
1121 // Test for GNU Social
1122 $serverret = Network::curl($server_url."/api/gnusocial/version.json");
1123 if ($serverret["success"] && ($serverret["body"] != '{"error":"not implemented"}') &&
1124 ($serverret["body"] != '') && (strlen($serverret["body"]) < 30)) {
1125 $platform = "GNU Social";
1126 // Remove junk that some GNU Social servers return
1127 $version = str_replace(chr(239).chr(187).chr(191), "", $serverret["body"]);
1128 $version = trim($version, '"');
1129 $network = NETWORK_OSTATUS;
1132 // Test for Mastodon
1133 $orig_version = $version;
1134 $serverret = Network::curl($server_url."/api/v1/instance");
1135 if ($serverret["success"] && ($serverret["body"] != '')) {
1136 $data = json_decode($serverret["body"]);
1138 if (isset($data->version)) {
1139 $platform = "Mastodon";
1140 $version = $data->version;
1141 $site_name = $data->title;
1142 $info = $data->description;
1143 $network = NETWORK_OSTATUS;
1145 if (!empty($data->stats->user_count)) {
1146 $registered_users = $data->stats->user_count;
1149 if (strstr($orig_version.$version, 'Pleroma')) {
1150 $platform = 'Pleroma';
1151 $version = trim(str_replace('Pleroma', '', $version));
1156 // Test for Hubzilla and Red
1157 $serverret = Network::curl($server_url."/siteinfo.json");
1158 if ($serverret["success"]) {
1159 $data = json_decode($serverret["body"]);
1160 if (isset($data->url)) {
1161 $platform = $data->platform;
1162 $version = $data->version;
1163 $network = NETWORK_DIASPORA;
1165 if (!empty($data->site_name)) {
1166 $site_name = $data->site_name;
1168 if (!empty($data->channels_total)) {
1169 $registered_users = $data->channels_total;
1171 switch ($data->register_policy) {
1172 case "REGISTER_OPEN":
1173 $register_policy = REGISTER_OPEN;
1175 case "REGISTER_APPROVE":
1176 $register_policy = REGISTER_APPROVE;
1178 case "REGISTER_CLOSED":
1180 $register_policy = REGISTER_CLOSED;
1184 // Test for Hubzilla, Redmatrix or Friendica
1185 $serverret = Network::curl($server_url."/api/statusnet/config.json");
1186 if ($serverret["success"]) {
1187 $data = json_decode($serverret["body"]);
1188 if (isset($data->site->server)) {
1189 if (isset($data->site->platform)) {
1190 $platform = $data->site->platform->PLATFORM_NAME;
1191 $version = $data->site->platform->STD_VERSION;
1192 $network = NETWORK_DIASPORA;
1194 if (isset($data->site->BlaBlaNet)) {
1195 $platform = $data->site->BlaBlaNet->PLATFORM_NAME;
1196 $version = $data->site->BlaBlaNet->STD_VERSION;
1197 $network = NETWORK_DIASPORA;
1199 if (isset($data->site->hubzilla)) {
1200 $platform = $data->site->hubzilla->PLATFORM_NAME;
1201 $version = $data->site->hubzilla->RED_VERSION;
1202 $network = NETWORK_DIASPORA;
1204 if (isset($data->site->redmatrix)) {
1205 if (isset($data->site->redmatrix->PLATFORM_NAME)) {
1206 $platform = $data->site->redmatrix->PLATFORM_NAME;
1207 } elseif (isset($data->site->redmatrix->RED_PLATFORM)) {
1208 $platform = $data->site->redmatrix->RED_PLATFORM;
1211 $version = $data->site->redmatrix->RED_VERSION;
1212 $network = NETWORK_DIASPORA;
1214 if (isset($data->site->friendica)) {
1215 $platform = $data->site->friendica->FRIENDICA_PLATFORM;
1216 $version = $data->site->friendica->FRIENDICA_VERSION;
1217 $network = NETWORK_DFRN;
1220 $site_name = $data->site->name;
1222 $data->site->closed = self::toBoolean($data->site->closed);
1223 $data->site->private = self::toBoolean($data->site->private);
1224 $data->site->inviteonly = self::toBoolean($data->site->inviteonly);
1226 if (!$data->site->closed && !$data->site->private and $data->site->inviteonly) {
1227 $register_policy = REGISTER_APPROVE;
1228 } elseif (!$data->site->closed && !$data->site->private) {
1229 $register_policy = REGISTER_OPEN;
1231 $register_policy = REGISTER_CLOSED;
1238 // Query statistics.json. Optional package for Diaspora, Friendica and Redmatrix
1240 $serverret = Network::curl($server_url."/statistics.json");
1241 if ($serverret["success"]) {
1242 $data = json_decode($serverret["body"]);
1244 if (isset($data->version)) {
1245 $version = $data->version;
1246 // Version numbers on statistics.json are presented with additional info, e.g.:
1247 // 0.6.3.0-p1702cc1c, 0.6.99.0-p1b9ab160 or 3.4.3-2-1191.
1248 $version = preg_replace("=(.+)-(.{4,})=ism", "$1", $version);
1251 if (!empty($data->name)) {
1252 $site_name = $data->name;
1255 if (!empty($data->network)) {
1256 $platform = $data->network;
1259 if ($platform == "Diaspora") {
1260 $network = NETWORK_DIASPORA;
1263 if ($data->registrations_open) {
1264 $register_policy = REGISTER_OPEN;
1266 $register_policy = REGISTER_CLOSED;
1271 // Query nodeinfo. Working for (at least) Diaspora and Friendica.
1273 $server = self::fetchNodeinfo($server_url);
1275 $register_policy = $server['register_policy'];
1277 if (isset($server['platform'])) {
1278 $platform = $server['platform'];
1281 if (isset($server['network'])) {
1282 $network = $server['network'];
1285 if (isset($server['version'])) {
1286 $version = $server['version'];
1289 if (isset($server['site_name'])) {
1290 $site_name = $server['site_name'];
1293 if (isset($server['registered-users'])) {
1294 $registered_users = $server['registered-users'];
1299 // Check for noscrape
1300 // Friendica servers could be detected as OStatus servers
1301 if (!$failure && in_array($network, [NETWORK_DFRN, NETWORK_OSTATUS])) {
1302 $serverret = Network::curl($server_url."/friendica/json");
1304 if (!$serverret["success"]) {
1305 $serverret = Network::curl($server_url."/friendika/json");
1308 if ($serverret["success"]) {
1309 $data = json_decode($serverret["body"]);
1311 if (isset($data->version)) {
1312 $network = NETWORK_DFRN;
1314 $noscrape = defaults($data->no_scrape_url, '');
1315 $version = $data->version;
1316 $site_name = $data->site_name;
1317 $info = $data->info;
1318 $register_policy_str = $data->register_policy;
1319 $platform = $data->platform;
1321 switch ($register_policy_str) {
1322 case "REGISTER_CLOSED":
1323 $register_policy = REGISTER_CLOSED;
1325 case "REGISTER_APPROVE":
1326 $register_policy = REGISTER_APPROVE;
1328 case "REGISTER_OPEN":
1329 $register_policy = REGISTER_OPEN;
1336 // Every server has got at least an admin account
1337 if (!$failure && ($registered_users == 0)) {
1338 $registered_users = 1;
1341 if ($possible_failure && !$failure) {
1346 $last_contact = $orig_last_contact;
1347 $last_failure = DateTimeFormat::utcNow();
1349 $last_contact = DateTimeFormat::utcNow();
1350 $last_failure = $orig_last_failure;
1353 if (($last_contact <= $last_failure) && !$failure) {
1354 logger("Server ".$server_url." seems to be alive, but last contact wasn't set - could be a bug", LOGGER_DEBUG);
1355 } elseif (($last_contact >= $last_failure) && $failure) {
1356 logger("Server ".$server_url." seems to be dead, but last failure wasn't set - could be a bug", LOGGER_DEBUG);
1359 // Check again if the server exists
1360 $found = dba::exists('gserver', ['nurl' => normalise_link($server_url)]);
1362 $version = strip_tags($version);
1363 $site_name = strip_tags($site_name);
1364 $info = strip_tags($info);
1365 $platform = strip_tags($platform);
1367 $fields = ['url' => $server_url, 'version' => $version,
1368 'site_name' => $site_name, 'info' => $info, 'register_policy' => $register_policy,
1369 'poco' => $poco, 'noscrape' => $noscrape, 'network' => $network,
1370 'platform' => $platform, 'registered-users' => $registered_users,
1371 'last_contact' => $last_contact, 'last_failure' => $last_failure];
1374 dba::update('gserver', $fields, ['nurl' => normalise_link($server_url)]);
1375 } elseif (!$failure) {
1376 $fields['nurl'] = normalise_link($server_url);
1377 $fields['created'] = DateTimeFormat::utcNow();
1378 dba::insert('gserver', $fields);
1381 if (!$failure && in_array($fields['network'], [NETWORK_DFRN, NETWORK_DIASPORA])) {
1382 self::discoverRelay(server_url);
1385 logger("End discovery for server " . $server_url, LOGGER_DEBUG);
1390 private static function discoverRelay($server_url)
1392 logger("Discover relay data for server " . $server_url, LOGGER_DEBUG);
1394 $serverret = Network::curl($server_url."/.well-known/x-social-relay");
1395 if (!$serverret["success"]) {
1399 $data = json_decode($serverret['body']);
1400 if (!is_object($data)) {
1404 $gserver = dba::selectFirst('gserver', ['id'], ['nurl' => normalise_link($server_url)]);
1405 if (!DBM::is_result($gserver)) {
1409 $fields = ['relay-subscribe' => $data->subscribe, 'relay-scope' => $data->scope];
1410 dba::update('gserver', $fields, ['id' => $gserver['id']]);
1412 dba::delete('gserver-tag', ['gserver-id' => $gserver['id']]);
1413 if ($data->scope == 'tags') {
1414 foreach ($data->tags as $tag) {
1415 dba::insert('gserver-tag', ['gserver-id' => $gserver['id'], 'tag' => $tag]);
1421 * @brief Returns a list of all known servers
1422 * @return array List of server urls
1424 public static function serverlist()
1427 "SELECT `url`, `site_name` AS `displayName`, `network`, `platform`, `version` FROM `gserver`
1428 WHERE `network` IN ('%s', '%s', '%s') AND `last_contact` > `last_failure`
1429 ORDER BY `last_contact`
1431 dbesc(NETWORK_DFRN),
1432 dbesc(NETWORK_DIASPORA),
1433 dbesc(NETWORK_OSTATUS)
1436 if (!DBM::is_result($r)) {
1444 * @brief Fetch server list from remote servers and adds them when they are new.
1446 * @param string $poco URL to the POCO endpoint
1448 private static function fetchServerlist($poco)
1450 $serverret = Network::curl($poco."/@server");
1451 if (!$serverret["success"]) {
1454 $serverlist = json_decode($serverret['body']);
1456 if (!is_array($serverlist)) {
1460 foreach ($serverlist as $server) {
1461 $server_url = str_replace("/index.php", "", $server->url);
1463 $r = q("SELECT `nurl` FROM `gserver` WHERE `nurl` = '%s'", dbesc(normalise_link($server_url)));
1464 if (!DBM::is_result($r)) {
1465 logger("Call server check for server ".$server_url, LOGGER_DEBUG);
1466 Worker::add(PRIORITY_LOW, "DiscoverPoCo", "server", $server_url);
1471 private static function discoverFederation()
1473 $last = Config::get('poco', 'last_federation_discovery');
1476 $next = $last + (24 * 60 * 60);
1477 if ($next > time()) {
1482 // Discover Friendica, Hubzilla and Diaspora servers
1483 $serverdata = Network::fetchUrl("http://the-federation.info/pods.json");
1486 $servers = json_decode($serverdata);
1488 foreach ($servers->pods as $server) {
1489 Worker::add(PRIORITY_LOW, "DiscoverPoCo", "server", "https://".$server->host);
1493 // Disvover Mastodon servers
1494 if (!Config::get('system', 'ostatus_disabled')) {
1495 $accesstoken = Config::get('system', 'instances_social_key');
1496 if (!empty($accesstoken)) {
1497 $api = 'https://instances.social/api/1.0/instances/list?count=0';
1498 $header = ['Authorization: Bearer '.$accesstoken];
1499 $serverdata = Network::curl($api, false, $redirects, ['headers' => $header]);
1500 if ($serverdata['success']) {
1501 $servers = json_decode($serverdata['body']);
1502 foreach ($servers->instances as $server) {
1503 $url = (is_null($server->https_score) ? 'http' : 'https').'://'.$server->name;
1504 Worker::add(PRIORITY_LOW, "DiscoverPoCo", "server", $url);
1510 // Currently disabled, since the service isn't available anymore.
1511 // It is not removed since I hope that there will be a successor.
1512 // Discover GNU Social Servers.
1513 //if (!Config::get('system','ostatus_disabled')) {
1514 // $serverdata = "http://gstools.org/api/get_open_instances/";
1516 // $result = Network::curl($serverdata);
1517 // if ($result["success"]) {
1518 // $servers = json_decode($result["body"]);
1520 // foreach($servers->data as $server)
1521 // self::checkServer($server->instance_address);
1525 Config::set('poco', 'last_federation_discovery', time());
1528 public static function discoverSingleServer($id)
1530 $r = q("SELECT `poco`, `nurl`, `url`, `network` FROM `gserver` WHERE `id` = %d", intval($id));
1531 if (!DBM::is_result($r)) {
1537 // Discover new servers out there (Works from Friendica version 3.5.2)
1538 self::fetchServerlist($server["poco"]);
1540 // Fetch all users from the other server
1541 $url = $server["poco"]."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,contactType,generation";
1543 logger("Fetch all users from the server ".$server["url"], LOGGER_DEBUG);
1545 $retdata = Network::curl($url);
1546 if ($retdata["success"]) {
1547 $data = json_decode($retdata["body"]);
1549 self::discoverServer($data, 2);
1551 if (Config::get('system', 'poco_discovery') > 1) {
1552 $timeframe = Config::get('system', 'poco_discovery_since');
1553 if ($timeframe == 0) {
1557 $updatedSince = date(DateTimeFormat::MYSQL, time() - $timeframe * 86400);
1559 // Fetch all global contacts from the other server (Not working with Redmatrix and Friendica versions before 3.3)
1560 $url = $server["poco"]."/@global?updatedSince=".$updatedSince."&fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,contactType,generation";
1564 $retdata = Network::curl($url);
1565 if ($retdata["success"]) {
1566 logger("Fetch all global contacts from the server ".$server["nurl"], LOGGER_DEBUG);
1567 $success = self::discoverServer(json_decode($retdata["body"]));
1570 if (!$success && (Config::get('system', 'poco_discovery') > 2)) {
1571 logger("Fetch contacts from users of the server ".$server["nurl"], LOGGER_DEBUG);
1572 self::discoverServerUsers($data, $server);
1576 $fields = ['last_poco_query' => DateTimeFormat::utcNow()];
1577 dba::update('gserver', $fields, ['nurl' => $server["nurl"]]);
1581 // If the server hadn't replied correctly, then force a sanity check
1582 self::checkServer($server["url"], $server["network"], true);
1584 // If we couldn't reach the server, we will try it some time later
1585 $fields = ['last_poco_query' => DateTimeFormat::utcNow()];
1586 dba::update('gserver', $fields, ['nurl' => $server["nurl"]]);
1592 public static function discover($complete = false)
1594 // Update the server list
1595 self::discoverFederation();
1599 $requery_days = intval(Config::get("system", "poco_requery_days"));
1601 if ($requery_days == 0) {
1604 $last_update = date("c", time() - (60 * 60 * 24 * $requery_days));
1606 $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));
1607 if (DBM::is_result($r)) {
1608 foreach ($r as $server) {
1609 if (!self::checkServer($server["url"], $server["network"])) {
1610 // The server is not reachable? Okay, then we will try it later
1611 $fields = ['last_poco_query' => DateTimeFormat::utcNow()];
1612 dba::update('gserver', $fields, ['nurl' => $server["nurl"]]);
1616 logger('Update directory from server '.$server['url'].' with ID '.$server['id'], LOGGER_DEBUG);
1617 Worker::add(PRIORITY_LOW, "DiscoverPoCo", "update_server_directory", (int)$server['id']);
1619 if (!$complete && (--$no_of_queries == 0)) {
1626 private static function discoverServerUsers($data, $server)
1628 if (!isset($data->entry)) {
1632 foreach ($data->entry as $entry) {
1634 if (isset($entry->urls)) {
1635 foreach ($entry->urls as $url) {
1636 if ($url->type == 'profile') {
1637 $profile_url = $url->value;
1638 $urlparts = parse_url($profile_url);
1639 $username = end(explode("/", $urlparts["path"]));
1643 if ($username != "") {
1644 logger("Fetch contacts for the user ".$username." from the server ".$server["nurl"], LOGGER_DEBUG);
1646 // Fetch all contacts from a given user from the other server
1647 $url = $server["poco"]."/".$username."/?fields=displayName,urls,photos,updated,network,aboutMe,currentLocation,tags,gender,contactType,generation";
1649 $retdata = Network::curl($url);
1650 if ($retdata["success"]) {
1651 self::discoverServer(json_decode($retdata["body"]), 3);
1657 private static function discoverServer($data, $default_generation = 0)
1659 if (!isset($data->entry) || !count($data->entry)) {
1665 foreach ($data->entry as $entry) {
1667 $profile_photo = '';
1671 $updated = NULL_DATE;
1677 $generation = $default_generation;
1679 $name = $entry->displayName;
1681 if (isset($entry->urls)) {
1682 foreach ($entry->urls as $url) {
1683 if ($url->type == 'profile') {
1684 $profile_url = $url->value;
1687 if ($url->type == 'webfinger') {
1688 $connect_url = str_replace('acct:' , '', $url->value);
1694 if (isset($entry->photos)) {
1695 foreach ($entry->photos as $photo) {
1696 if ($photo->type == 'profile') {
1697 $profile_photo = $photo->value;
1703 if (isset($entry->updated)) {
1704 $updated = date(DateTimeFormat::MYSQL, strtotime($entry->updated));
1707 if (isset($entry->network)) {
1708 $network = $entry->network;
1711 if (isset($entry->currentLocation)) {
1712 $location = $entry->currentLocation;
1715 if (isset($entry->aboutMe)) {
1716 $about = HTML::toBBCode($entry->aboutMe);
1719 if (isset($entry->gender)) {
1720 $gender = $entry->gender;
1723 if (isset($entry->generation) && ($entry->generation > 0)) {
1724 $generation = ++$entry->generation;
1727 if (isset($entry->contactType) && ($entry->contactType >= 0)) {
1728 $contact_type = $entry->contactType;
1731 if (isset($entry->tags)) {
1732 foreach ($entry->tags as $tag) {
1733 $keywords = implode(", ", $tag);
1737 if ($generation > 0) {
1740 logger("Store profile ".$profile_url, LOGGER_DEBUG);
1742 $gcontact = ["url" => $profile_url,
1744 "network" => $network,
1745 "photo" => $profile_photo,
1747 "location" => $location,
1748 "gender" => $gender,
1749 "keywords" => $keywords,
1750 "connect" => $connect_url,
1751 "updated" => $updated,
1752 "contact-type" => $contact_type,
1753 "generation" => $generation];
1756 $gcontact = GContact::sanitize($gcontact);
1757 GContact::update($gcontact);
1758 } catch (Exception $e) {
1759 logger($e->getMessage(), LOGGER_DEBUG);
1762 logger("Done for profile ".$profile_url, LOGGER_DEBUG);