streams/Zotlabs/Module/Wfinger.php

186 lines
4.3 KiB
PHP
Raw Normal View History

<?php
namespace Zotlabs\Module;
require_once('include/zot.php');
class Wfinger extends \Zotlabs\Web\Controller {
function init() {
2017-02-09 03:47:34 +00:00
session_write_close();
$result = array();
$scheme = '';
if(x($_SERVER,'HTTPS') && $_SERVER['HTTPS'])
$scheme = 'https';
elseif(x($_SERVER,'SERVER_PORT') && (intval($_SERVER['SERVER_PORT']) == 443))
$scheme = 'https';
$zot = intval($_REQUEST['zot']);
if(($scheme !== 'https') && (! $zot)) {
header($_SERVER["SERVER_PROTOCOL"] . ' ' . 500 . ' ' . 'Webfinger requires HTTPS');
killme();
}
$resource = $_REQUEST['resource'];
logger('webfinger: ' . $resource,LOGGER_DEBUG);
2017-09-08 03:42:03 +00:00
$root_resource = false;
if(strcasecmp(rtrim($resource,'/'),z_root()) === 0)
$root_resource = true;
$r = null;
2017-09-08 03:42:03 +00:00
if(($resource) && (! $root_resource)) {
if(strpos($resource,'acct:') === 0) {
$channel = str_replace('acct:','',$resource);
if(strpos($channel,'@') !== false) {
$host = substr($channel,strpos($channel,'@')+1);
2017-04-12 05:02:29 +00:00
// If the webfinger address points off site, redirect to the correct site
if(strcasecmp($host,\App::get_hostname())) {
goaway('https://' . $host . '/.well-known/webfinger?f=&resource=' . $resource . (($zot) ? '&zot=' . $zot : ''));
}
$channel = substr($channel,0,strpos($channel,'@'));
}
}
if(strpos($resource,'http') === 0) {
$channel = str_replace('~','',basename($resource));
}
$r = q("select * from channel left join xchan on channel_hash = xchan_hash
where channel_address = '%s' limit 1",
dbesc($channel)
);
}
header('Access-Control-Allow-Origin: *');
2017-09-08 03:42:03 +00:00
if($root_resource) {
$result['subject'] = $resource;
$result['properties'] = [
'https://w3id.org/security/v1#publicKeyPem' => get_config('system','pubkey')
];
$result['links'] = [
[
'rel' => 'http://purl.org/openwebauth/v1',
'type' => 'application/x-zot+json',
'href' => z_root() . '/owa',
],
];
2017-09-08 03:42:03 +00:00
}
if($resource && $r) {
$h = q("select hubloc_addr from hubloc where hubloc_hash = '%s' and hubloc_deleted = 0",
dbesc($r[0]['channel_hash'])
);
$result['subject'] = $resource;
$aliases = array(
z_root() . '/channel/' . $r[0]['channel_address'],
z_root() . '/~' . $r[0]['channel_address']
);
if($h) {
foreach($h as $hh) {
$aliases[] = 'acct:' . $hh['hubloc_addr'];
}
}
2017-04-12 05:02:29 +00:00
$result['aliases'] = [];
2017-04-12 05:02:29 +00:00
$result['properties'] = [
'http://webfinger.net/ns/name' => $r[0]['channel_name'],
2017-09-08 03:42:03 +00:00
'http://xmlns.com/foaf/0.1/name' => $r[0]['channel_name'],
'https://w3id.org/security/v1#publicKeyPem' => $r[0]['xchan_pubkey']
2017-04-12 05:02:29 +00:00
];
foreach($aliases as $alias)
if($alias != $resource)
$result['aliases'][] = $alias;
2017-04-12 05:02:29 +00:00
$result['links'] = [
2017-04-12 05:02:29 +00:00
[
'rel' => 'http://webfinger.net/rel/avatar',
'type' => $r[0]['xchan_photo_mimetype'],
'href' => $r[0]['xchan_photo_l']
2017-04-12 05:02:29 +00:00
],
2017-04-12 05:02:29 +00:00
[
'rel' => 'http://webfinger.net/rel/profile-page',
'href' => z_root() . '/profile/' . $r[0]['channel_address'],
2017-04-12 05:02:29 +00:00
],
2017-04-12 05:02:29 +00:00
[
'rel' => 'http://schemas.google.com/g/2010#updates-from',
'type' => 'application/atom+xml',
'href' => z_root() . '/ofeed/' . $r[0]['channel_address']
],
[
'rel' => 'http://webfinger.net/rel/blog',
'href' => z_root() . '/channel/' . $r[0]['channel_address'],
2017-04-12 05:02:29 +00:00
],
2017-04-12 05:02:29 +00:00
[
'rel' => 'http://ostatus.org/schema/1.0/subscribe',
2017-07-14 21:03:56 +00:00
'template' => z_root() . '/follow?f=&url={uri}',
2017-04-12 05:02:29 +00:00
],
2017-04-12 05:02:29 +00:00
[
'rel' => 'http://purl.org/zot/protocol',
'href' => z_root() . '/.well-known/zot-info' . '?address=' . $r[0]['xchan_addr'],
2017-04-12 05:02:29 +00:00
],
2017-09-08 02:04:35 +00:00
[
'rel' => 'http://purl.org/openwebauth/v1',
'type' => 'application/x-zot+json',
'href' => z_root() . '/owa',
],
2017-04-12 05:02:29 +00:00
[
'rel' => 'magic-public-key',
'href' => 'data:application/magic-public-key,' . salmon_key($r[0]['channel_pubkey']),
2017-04-12 05:02:29 +00:00
]
];
if($zot) {
// get a zotinfo packet and return it with webfinger
2017-04-12 05:02:29 +00:00
$result['zot'] = zotinfo( [ 'address' => $r[0]['xchan_addr'] ]);
}
}
2017-09-08 03:42:03 +00:00
if(! $result) {
header($_SERVER["SERVER_PROTOCOL"] . ' ' . 400 . ' ' . 'Bad Request');
killme();
}
2017-04-12 05:02:29 +00:00
$arr = [ 'channel' => $r[0], 'request' => $_REQUEST, 'result' => $result ];
call_hooks('webfinger',$arr);
2017-09-08 03:42:03 +00:00
json_return_and_die($arr['result'],'application/jrd+json');
}
}