2021-10-18 13:22:02 +01:00
|
|
|
<?php
|
|
|
|
|
2021-12-26 09:48:16 +00:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2021-10-18 13:22:02 +01:00
|
|
|
namespace Component\FreeNetwork\Util\WebfingerResource;
|
|
|
|
|
|
|
|
use App\Core\Event;
|
|
|
|
use App\Entity\Note;
|
|
|
|
use Component\FreeNetwork\Util\WebfingerResource;
|
|
|
|
use PharIo\Manifest\InvalidUrlException;
|
|
|
|
use XML_XRD;
|
|
|
|
use XML_XRD_Element_Link;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WebFinger resource for Note objects
|
|
|
|
*
|
|
|
|
* @package GNUsocial
|
|
|
|
*
|
|
|
|
* @author Mikael Nordfeldth
|
|
|
|
* @copyright 2013 Free Software Foundation, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
*
|
|
|
|
* @see http://status.net/
|
|
|
|
*/
|
|
|
|
class WebfingerResourceNote extends WebfingerResource
|
|
|
|
{
|
2021-12-26 09:48:16 +00:00
|
|
|
public function __construct(?Note $object = null)
|
2021-10-18 13:22:02 +01:00
|
|
|
{
|
|
|
|
// The type argument above verifies that it's our class
|
|
|
|
parent::__construct($object);
|
|
|
|
}
|
|
|
|
|
2021-12-04 19:52:14 +00:00
|
|
|
/**
|
|
|
|
* Update given XRD with self's data
|
|
|
|
*/
|
2021-10-18 13:22:02 +01:00
|
|
|
public function updateXRD(XML_XRD $xrd)
|
|
|
|
{
|
|
|
|
if (Event::handle('StartWebFingerNoticeLinks', [$xrd, $this->object])) {
|
|
|
|
if ($this->object->isLocal()) {
|
2021-12-26 09:48:16 +00:00
|
|
|
$xrd->links[] = new XML_XRD_Element_Link(
|
|
|
|
'alternate',
|
|
|
|
common_local_url(
|
|
|
|
'ApiStatusesShow',
|
2021-10-18 13:22:02 +01:00
|
|
|
['id' => $this->object->id,
|
2021-12-26 09:48:16 +00:00
|
|
|
'format' => 'atom', ],
|
|
|
|
),
|
|
|
|
'application/atom+xml',
|
|
|
|
);
|
2021-10-18 13:22:02 +01:00
|
|
|
|
2021-12-26 09:48:16 +00:00
|
|
|
$xrd->links[] = new XML_XRD_Element_Link(
|
|
|
|
'alternate',
|
|
|
|
common_local_url(
|
|
|
|
'ApiStatusesShow',
|
2021-10-18 13:22:02 +01:00
|
|
|
['id' => $this->object->id,
|
2021-12-26 09:48:16 +00:00
|
|
|
'format' => 'json', ],
|
|
|
|
),
|
|
|
|
'application/json',
|
|
|
|
);
|
2021-10-18 13:22:02 +01:00
|
|
|
} else {
|
|
|
|
try {
|
2021-12-26 09:48:16 +00:00
|
|
|
$xrd->links[] = new XML_XRD_Element_Link(
|
|
|
|
'alternate',
|
2021-10-18 13:22:02 +01:00
|
|
|
$this->object->getUrl(),
|
2021-12-26 09:48:16 +00:00
|
|
|
'text/html',
|
|
|
|
);
|
2021-10-18 13:22:02 +01:00
|
|
|
} catch (InvalidUrlException $e) {
|
|
|
|
// don't do a fallback in webfinger
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Event::handle('EndWebFingerNoticeLinks', [$xrd, $this->object]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|