1
0
Fork 0
pixelfed/app/Util/Webfinger/Webfinger.php

80 lines
1.4 KiB
PHP
Raw Normal View History

2018-04-20 01:17:15 +00:00
<?php
namespace App\Util\Webfinger;
use App\User;
use App\Util\Lexer\Nickname;
class Webfinger {
public $user;
public $subject;
public $aliases;
public $links;
public function __construct($user)
{
$this->user = $user;
$this->subject = '';
$this->aliases = array();
$this->links = array();
}
public function setSubject()
{
$host = parse_url(config('app.url'), PHP_URL_HOST);
$username = $this->user->username;
$this->subject = 'acct:'.$username.'@'.$host;
return $this;
}
public function generateAliases()
{
$this->aliases = [
2018-08-05 19:30:11 +00:00
$this->user->url(),
$this->user->permalink()
2018-04-20 01:17:15 +00:00
];
return $this;
}
public function generateLinks()
{
$user = $this->user;
$this->links = [
[
'rel' => 'http://webfinger.net/rel/profile-page',
'type' => 'text/html',
'href' => $user->url()
],
[
'rel' => 'http://schemas.google.com/g/2010#updates-from',
'type' => 'application/atom+xml',
2018-08-05 19:30:11 +00:00
'href' => $user->permalink('.atom')
2018-04-20 01:17:15 +00:00
],
[
2018-05-20 03:04:18 +00:00
'rel' => 'self',
'type' => 'application/activity+json',
'href' => $user->permalink()
2018-04-20 01:17:15 +00:00
]
];
return $this;
}
public function generate()
{
$this->setSubject();
$this->generateAliases();
$this->generateLinks();
return [
'subject' => $this->subject,
'aliases' => $this->aliases,
'links' => $this->links
];
}
}