3 use \Friendica\Core\Config;
5 require_once('include/socgraph.php');
6 require_once('include/datetime.php');
8 function discover_poco_run(&$argv, &$argc) {
11 This function can be called in these ways:
12 - dirsearch <search pattern>: Searches for "search pattern" in the directory. "search pattern" is url encoded.
13 - checkcontact: Updates gcontact entries
14 - suggestions: Discover other servers for their contacts.
15 - server <poco url>: Searches for the poco server list. "poco url" is base64 encoded.
16 - update_server: Frequently check the first 250 servers for vitality.
17 - update_server_directory: Discover the given server id for their contacts
18 - poco_load: Load POCO data from a given POCO address
19 - check_profile: Update remote profile data
22 if (($argc > 2) && ($argv[1] == "dirsearch")) {
23 $search = urldecode($argv[2]);
25 } elseif (($argc == 2) && ($argv[1] == "checkcontact")) {
27 } elseif (($argc == 2) && ($argv[1] == "suggestions")) {
29 } elseif (($argc == 3) && ($argv[1] == "server")) {
31 } elseif (($argc == 2) && ($argv[1] == "update_server")) {
33 } elseif (($argc == 3) && ($argv[1] == "update_server_directory")) {
35 } elseif (($argc > 5) && ($argv[1] == "poco_load")) {
37 } elseif (($argc == 3) && ($argv[1] == "check_profile")) {
39 } elseif ($argc == 1) {
43 die("Unknown or missing parameter ".$argv[1]."\n");
46 logger('start '.$search);
49 $profile_url = base64_decode($argv[2]);
50 if ($profile_url != "") {
51 poco_last_updated($profile_url, true);
53 } elseif ($mode == 7) {
55 $url = base64_decode($argv[5]);
59 poco_load_worker(intval($argv[2]), intval($argv[3]), intval($argv[4]), $url);
60 } elseif ($mode == 6) {
61 poco_discover_single_server(intval($argv[2]));
62 } elseif ($mode == 5) {
64 } elseif ($mode == 4) {
65 $server_url = base64_decode($argv[2]);
66 if ($server_url == "") {
69 $server_url = filter_var($server_url, FILTER_SANITIZE_URL);
70 if (substr(normalise_link($server_url), 0, 7) != "http://") {
73 $result = "Checking server ".$server_url." - ";
74 $ret = poco_check_server($server_url);
80 logger($result, LOGGER_DEBUG);
81 } elseif ($mode == 3) {
83 } elseif (($mode == 2) AND get_config('system','poco_completion')) {
85 } elseif (($mode == 1) AND ($search != "") and get_config('system','poco_local_search')) {
86 discover_directory($search);
87 gs_search_user($search);
88 } elseif (($mode == 0) AND ($search == "") and (get_config('system','poco_discovery') > 0)) {
89 // Query Friendica and Hubzilla servers for their users
92 // Query GNU Social servers for their users ("statistics" addon has to be enabled on the GS server)
93 if (!get_config('system','ostatus_disabled'))
97 logger('end '.$search);
103 * @brief Updates the first 250 servers
106 function update_server() {
107 $r = q("SELECT `url`, `created`, `last_failure`, `last_contact` FROM `gserver` ORDER BY rand()");
109 if (!dbm::is_result($r)) {
115 foreach ($r AS $server) {
116 if (!poco_do_update($server["created"], "", $server["last_failure"], $server["last_contact"])) {
119 logger('Update server status for server '.$server["url"], LOGGER_DEBUG);
121 proc_run(PRIORITY_LOW, "include/discover_poco.php", "server", base64_encode($server["url"]));
123 if (++$updated > 250) {
129 function discover_users() {
130 logger("Discover users", LOGGER_DEBUG);
134 $users = q("SELECT `url`, `created`, `updated`, `last_failure`, `last_contact`, `server_url`, `network` FROM `gcontact`
135 WHERE `last_contact` < UTC_TIMESTAMP - INTERVAL 1 MONTH AND
136 `last_failure` < UTC_TIMESTAMP - INTERVAL 1 MONTH AND
137 `network` IN ('%s', '%s', '%s', '%s', '') ORDER BY rand()",
138 dbesc(NETWORK_DFRN), dbesc(NETWORK_DIASPORA),
139 dbesc(NETWORK_OSTATUS), dbesc(NETWORK_FEED));
146 foreach ($users AS $user) {
148 $urlparts = parse_url($user["url"]);
149 if (!isset($urlparts["scheme"])) {
150 q("UPDATE `gcontact` SET `network` = '%s' WHERE `nurl` = '%s'",
151 dbesc(NETWORK_PHANTOM), dbesc(normalise_link($user["url"])));
155 if (in_array($urlparts["host"], array("www.facebook.com", "facebook.com", "twitter.com",
156 "identi.ca", "alpha.app.net"))) {
157 $networks = array("www.facebook.com" => NETWORK_FACEBOOK,
158 "facebook.com" => NETWORK_FACEBOOK,
159 "twitter.com" => NETWORK_TWITTER,
160 "identi.ca" => NETWORK_PUMPIO,
161 "alpha.app.net" => NETWORK_APPNET);
163 q("UPDATE `gcontact` SET `network` = '%s' WHERE `nurl` = '%s'",
164 dbesc($networks[$urlparts["host"]]), dbesc(normalise_link($user["url"])));
168 $server_url = poco_detect_server($user["url"]);
169 $force_update = false;
171 if ($user["server_url"] != "") {
173 $force_update = (normalise_link($user["server_url"]) != normalise_link($server_url));
175 $server_url = $user["server_url"];
178 if ((($server_url == "") AND ($user["network"] == NETWORK_FEED)) OR $force_update OR poco_check_server($server_url, $user["network"])) {
179 logger('Check profile '.$user["url"]);
180 proc_run(PRIORITY_LOW, "include/discover_poco.php", "check_profile", base64_encode($user["url"]));
182 if (++$checked > 100) {
186 q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `nurl` = '%s'",
187 dbesc(datetime_convert()), dbesc(normalise_link($user["url"])));
190 // Quit the loop after 3 minutes
191 if (time() > ($starttime + 180)) {
197 function discover_directory($search) {
199 $data = Cache::get("dirsearch:".$search);
200 if (!is_null($data)) {
201 // Only search for the same item every 24 hours
202 if (time() < $data + (60 * 60 * 24)) {
203 logger("Already searched for ".$search." in the last 24 hours", LOGGER_DEBUG);
208 $x = fetch_url(get_server()."/lsearch?p=1&n=500&search=".urlencode($search));
209 $j = json_decode($x);
211 if (count($j->results)) {
212 foreach($j->results as $jj) {
213 // Check if the contact already exists
214 $exists = q("SELECT `id`, `last_contact`, `last_failure`, `updated` FROM `gcontact` WHERE `nurl` = '%s'", normalise_link($jj->url));
216 logger("Profile ".$jj->url." already exists (".$search.")", LOGGER_DEBUG);
218 if (($exists[0]["last_contact"] < $exists[0]["last_failure"]) AND
219 ($exists[0]["updated"] < $exists[0]["last_failure"])) {
222 // Update the contact
223 poco_last_updated($jj->url);
227 $server_url = poco_detect_server($jj->url);
228 if ($server_url != '') {
229 if (!poco_check_server($server_url)) {
230 logger("Friendica server ".$server_url." doesn't answer.", LOGGER_DEBUG);
233 logger("Friendica server ".$server_url." seems to be okay.", LOGGER_DEBUG);
236 $data = probe_url($jj->url);
237 if ($data["network"] == NETWORK_DFRN) {
238 logger("Profile ".$jj->url." is reachable (".$search.")", LOGGER_DEBUG);
239 logger("Add profile ".$jj->url." to local directory (".$search.")", LOGGER_DEBUG);
241 if ($jj->tags != "") {
242 $data["keywords"] = $jj->tags;
245 $data["server_url"] = $data["baseurl"];
247 update_gcontact($data);
249 logger("Profile ".$jj->url." is not responding or no Friendica contact - but network ".$data["network"], LOGGER_DEBUG);
253 Cache::set("dirsearch:".$search, time(), CACHE_DAY);
257 * @brief Search for GNU Social user with gstools.org
259 * @param str $search User name
261 function gs_search_user($search) {
263 // Currently disabled, since the service isn't available anymore.
264 // It is not removed since I hope that there will be a successor.
269 $url = "http://gstools.org/api/users_search/".urlencode($search);
271 $result = z_fetch_url($url);
272 if (!$result["success"]) {
275 $contacts = json_decode($result["body"]);
277 if ($contacts->status == 'ERROR') {
280 foreach($contacts->data AS $user) {
281 $contact = probe_url($user->site_address."/".$user->name);
282 if ($contact["network"] != NETWORK_PHANTOM) {
283 $contact["about"] = $user->description;
284 update_gcontact($contact);