streams/include/gprobe.php

39 lines
581 B
PHP
Raw Normal View History

2013-02-26 01:09:40 +00:00
<?php /** @file */
require_once('include/cli_startup.php');
require_once('include/zot.php');
function gprobe_run($argv, $argc){
cli_startup();
$a = get_app();
if($argc != 2)
return;
$url = hex2bin($argv[1]);
2015-09-19 05:00:33 +00:00
if(! strpos($url,'@'))
return;
$r = q("select * from xchan where xchan_addr = '%s' limit 1",
dbesc($url)
);
if(! $r) {
$x = zot_finger($url,null);
2013-02-18 23:15:55 +00:00
if($x['success']) {
$j = json_decode($x['body'],true);
$y = import_xchan($j);
2012-05-01 08:34:47 +00:00
}
}
return;
}
if (array_search(__file__,get_included_files())===0){
gprobe_run($argv,$argc);
killme();
}