streams/Zotlabs/Lib/Zotfinger.php

88 lines
2.9 KiB
PHP
Raw Normal View History

2018-05-18 10:09:38 +00:00
<?php
namespace Zotlabs\Lib;
2018-06-20 02:33:50 +00:00
use Zotlabs\Web\HTTPSig;
2022-01-25 01:26:12 +00:00
use Zotlabs\Lib\Channel;
2021-12-02 23:02:31 +00:00
class Zotfinger
{
public static function exec($resource, $channel = null, $verify = true, $recurse = true)
2021-12-02 23:02:31 +00:00
{
if (!$resource) {
return false;
}
$m = parse_url($resource);
if ($m['host'] !== punify($m['host'])) {
$url = str_replace($m['host'], punify($m['host']), $url);
$m['host'] = punify($m['host']);
}
$data = json_encode(['zot_token' => random_string()]);
if ($channel && $m) {
$headers = [
'Accept' => 'application/x-nomad+json, application/x-zot+json',
'Content-Type' => 'application/x-nomad+json',
2021-12-02 23:02:31 +00:00
'X-Zot-Token' => random_string(),
'Digest' => HTTPSig::generate_digest_header($data),
'Host' => $m['host'],
'(request-target)' => 'post ' . get_request_string($resource)
];
2022-01-25 01:26:12 +00:00
$h = HTTPSig::create_sig($headers, $channel['channel_prvkey'], Channel::url($channel), false);
2021-12-02 23:02:31 +00:00
} else {
$h = ['Accept: application/x-nomad+json, application/x-zot+json'];
2021-12-02 23:02:31 +00:00
}
$result = [];
$redirects = 0;
$x = z_post_url($resource, $data, $redirects, ['headers' => $h]);
if (in_array(intval($x['return_code']), [ 404, 410 ]) && $recurse) {
// The resource has been deleted or doesn't exist at this location.
// Try to find another nomadic resource for this channel and return that.
// First, see if there's a hubloc for this site. Fetch that record to
// obtain the nomadic identity hash. Then use that to find any additional
// nomadic locations.
$h = Activity::get_actor_hublocs($resource, 'nomad');
if ($h) {
// mark this location deleted
hubloc_delete($h[0]);
$hubs = Activity::get_actor_hublocs($h[0]['hubloc_hash']);
if ($hubs) {
foreach ($hubs as $hub) {
if ($hub['hubloc_id_url'] !== $resource and !$hub['hubloc_deleted']) {
2022-01-25 02:42:17 +00:00
return self::exec($hub['hubloc_id_url'],$channel,$verify);
}
}
}
}
}
2021-12-02 23:02:31 +00:00
if ($x['success']) {
if ($verify) {
$result['signature'] = HTTPSig::verify($x, EMPTY_STR, 'zot6');
}
$result['data'] = json_decode($x['body'], true);
if ($result['data'] && is_array($result['data']) && array_key_exists('encrypted', $result['data']) && $result['data']['encrypted']) {
$result['data'] = json_decode(Crypto::unencapsulate($result['data'], get_config('system', 'prvkey')), true);
}
return $result;
}
return false;
}
2021-12-03 03:01:39 +00:00
}