3 use \Friendica\Core\Config;
5 require_once("boot.php");
7 function update_gcontact_run(&$argv, &$argc){
15 @include(".htconfig.php");
16 require_once("include/dba.php");
17 $db = new dba($db_host, $db_user, $db_pass, $db_data);
18 unset($db_host, $db_user, $db_pass, $db_data);
21 require_once('include/Scrape.php');
22 require_once("include/socgraph.php");
26 $a->set_baseurl(get_config('system','url'));
30 logger('update_gcontact: start');
32 if(($argc > 1) && (intval($argv[1])))
33 $contact_id = intval($argv[1]);
36 logger('update_gcontact: no contact');
40 // Don't check this stuff if the function is called by the poller
41 if (App::callstack() != "poller_run")
42 if (App::is_already_running('update_gcontact'.$contact_id, '', 540))
45 $r = q("SELECT * FROM `gcontact` WHERE `id` = %d", intval($contact_id));
50 if (!in_array($r[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS)))
53 $data = probe_url($r[0]["url"]);
55 if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) {
56 if ($r[0]["server_url"] != "")
57 poco_check_server($r[0]["server_url"], $r[0]["network"]);
59 q("UPDATE `gcontact` SET `last_failure` = '%s' WHERE `id` = %d",
60 dbesc(datetime_convert()), intval($contact_id));
64 if (($data["name"] == "") AND ($r[0]['name'] != ""))
65 $data["name"] = $r[0]['name'];
67 if (($data["nick"] == "") AND ($r[0]['nick'] != ""))
68 $data["nick"] = $r[0]['nick'];
70 if (($data["addr"] == "") AND ($r[0]['addr'] != ""))
71 $data["addr"] = $r[0]['addr'];
73 if (($data["photo"] == "") AND ($r[0]['photo'] != ""))
74 $data["photo"] = $r[0]['photo'];
77 q("UPDATE `gcontact` SET `name` = '%s', `nick` = '%s', `addr` = '%s', `photo` = '%s'
82 dbesc($data["photo"]),
86 q("UPDATE `contact` SET `name` = '%s', `nick` = '%s', `addr` = '%s', `photo` = '%s'
87 WHERE `uid` = 0 AND `addr` = '' AND `nurl` = '%s'",
91 dbesc($data["photo"]),
92 dbesc(normalise_link($data["url"]))
95 q("UPDATE `contact` SET `addr` = '%s'
96 WHERE `uid` != 0 AND `addr` = '' AND `nurl` = '%s'",
98 dbesc(normalise_link($data["url"]))
102 if (array_search(__file__,get_included_files())===0){
103 update_gcontact_run($_SERVER["argv"],$_SERVER["argc"]);