streams/Zotlabs/Daemon/Gprobe.php

57 lines
1.1 KiB
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 {
2016-05-20 02:42:45 +00:00
static public function run($argc,$argv) {
if ($argc != 2) {
2016-05-20 02:42:45 +00:00
return;
}
2016-05-20 02:42:45 +00:00
$url = hex2bin($argv[1]);
$protocols = [];
if (! strpos($url,'@')) {
2016-05-20 02:42:45 +00:00
return;
}
2016-05-20 02:42:45 +00:00
$r = q("select * from hubloc where hubloc_addr = '%s'",
2016-05-20 02:42:45 +00:00
dbesc($url)
);
if ($r) {
foreach ($r as $rv) {
if ($rv['hubloc_network'] === 'activitypub') {
$protocols[] = 'activitypub';
continue;
}
if ($rv['hubloc_network'] === 'zot6') {
$protocols[] = 'zot6';
continue;
}
}
}
if (! in_array('zot6',$protocols)) {
2018-08-28 02:09:48 +00:00
$href = Webfinger::zot_url(punify($url));
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']) && isset($zf['data']) && $zf['data']) {
2018-08-28 02:09:48 +00:00
$xc = Libzot::import_xchan($zf['data']);
2016-05-20 02:42:45 +00:00
}
}
return;
}
}