streams/Zotlabs/Daemon/Gprobe.php

39 lines
828 B
PHP
Raw Normal View History

2016-05-20 02:42:45 +00:00
<?php /** @file */
namespace Zotlabs\Daemon;
2018-06-01 02:42:13 +00:00
use Zotlabs\Lib\Libzot;
2018-08-28 02:09:48 +00:00
use Zotlabs\Lib\Webfinger;
use Zotlabs\Lib\Zotfinger;
2016-05-20 02:42:45 +00:00
// performs zot_finger on $argv[1], which is a hex_encoded webbie/reddress
class Gprobe {
static public function run($argc,$argv) {
if($argc != 2)
return;
$url = hex2bin($argv[1]);
if(! strpos($url,'@'))
return;
$r = q("select * from hubloc where hubloc_addr = '%s' limit 1",
2016-05-20 02:42:45 +00:00
dbesc($url)
);
if(! $r) {
2018-08-28 02:09:48 +00:00
$href = Webfinger::zot_url(punify($url));
2018-06-01 02:42:13 +00:00
if($href) {
2018-08-28 02:09:48 +00:00
$zf = Zotfinger::exec($href,$channel);
2018-06-01 02:42:13 +00:00
}
if(is_array($zf) && array_path_exists('signature/signer',$zf) && $zf['signature']['signer'] === $href && intval($zf['signature']['header_valid'])) {
2018-08-28 02:09:48 +00:00
$xc = Libzot::import_xchan($zf['data']);
2016-05-20 02:42:45 +00:00
}
}
return;
}
}