X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fupdate_gcontact.php;h=97c825352eb26919930ea92c99727077875389d9;hb=0cd9db9cb7f4c96f597e37590a536eaae123238d;hp=b5ea30a0a4d8803bedb8c0a80dc02ee3d977d283;hpb=c00772204100a44267c38f7a2533268b5dff1248;p=friendica.git diff --git a/include/update_gcontact.php b/include/update_gcontact.php index b5ea30a0a4..97c825352e 100644 --- a/include/update_gcontact.php +++ b/include/update_gcontact.php @@ -1,62 +1,33 @@ set_baseurl(get_config('system','url')); - - load_hooks(); + require_once 'include/probe.php'; + require_once 'include/socgraph.php'; logger('update_gcontact: start'); - if(($argc > 1) && (intval($argv[1]))) + if (($argc > 1) && (intval($argv[1]))) { $contact_id = intval($argv[1]); + } - if(!$contact_id) { + if (!$contact_id) { logger('update_gcontact: no contact'); return; } - $lockpath = get_lockpath(); - if ($lockpath != '') { - $pidfile = new pidfile($lockpath, 'update_gcontact'.$contact_id); - if ($pidfile->is_already_running()) { - logger("update_gcontact: Already running for contact ".$contact_id); - if ($pidfile->running_time() > 9*60) { - $pidfile->kill(); - logger("killed stale process"); - } - exit; - } - } - $r = q("SELECT * FROM `gcontact` WHERE `id` = %d", intval($contact_id)); - if (!$r) + if (!dbm::is_result($r)) { return; + } - if (!in_array($r[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) + if (!in_array($r[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) { return; + } $data = probe_url($r[0]["url"]); @@ -69,16 +40,16 @@ function update_gcontact_run(&$argv, &$argc){ return; } - if (($data["name"] == "") AND ($r[0]['name'] != "")) + if (($data["name"] == "") && ($r[0]['name'] != "")) $data["name"] = $r[0]['name']; - if (($data["nick"] == "") AND ($r[0]['nick'] != "")) + if (($data["nick"] == "") && ($r[0]['nick'] != "")) $data["nick"] = $r[0]['nick']; - if (($data["addr"] == "") AND ($r[0]['addr'] != "")) + if (($data["addr"] == "") && ($r[0]['addr'] != "")) $data["addr"] = $r[0]['addr']; - if (($data["photo"] == "") AND ($r[0]['photo'] != "")) + if (($data["photo"] == "") && ($r[0]['photo'] != "")) $data["photo"] = $r[0]['photo']; @@ -106,8 +77,3 @@ function update_gcontact_run(&$argv, &$argc){ dbesc(normalise_link($data["url"])) ); } - -if (array_search(__file__,get_included_files())===0){ - update_gcontact_run($_SERVER["argv"],$_SERVER["argc"]); - killme(); -}