179 lines
3.4 KiB
PHP
179 lines
3.4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2017 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
/**
|
|
* Circles - Bring cloud-users closer together.
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Maxence Lange <maxence@artificial-owl.com>
|
|
* @copyright 2022
|
|
* @license GNU AGPL version 3 or any later version
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
|
|
|
|
namespace OCA\Circles\Tools\Model;
|
|
|
|
use JsonSerializable;
|
|
use OCA\Circles\Tools\Traits\TArrayTools;
|
|
|
|
class NCWebfinger implements JsonSerializable {
|
|
use TArrayTools;
|
|
|
|
|
|
/** @var string */
|
|
private $subject = '';
|
|
|
|
/** @var array */
|
|
private $aliases = [];
|
|
|
|
/** @var array */
|
|
private $properties = [];
|
|
|
|
/** @var NCWellKnownLink[] */
|
|
private $links = [];
|
|
|
|
|
|
/**
|
|
* NC22Webfinger constructor.
|
|
*
|
|
* @param array $json
|
|
*/
|
|
public function __construct(array $json = []) {
|
|
$this->setSubject($this->get('subject', $json));
|
|
$this->setAliases($this->getArray('subject', $json));
|
|
$this->setProperties($this->getArray('properties', $json));
|
|
|
|
foreach ($this->getArray('links', $json) as $link) {
|
|
$this->addLink(new NCWellKnownLink($link));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getSubject(): string {
|
|
return $this->subject;
|
|
}
|
|
|
|
/**
|
|
* @param string $subject
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setSubject(string $subject): self {
|
|
$this->subject = $subject;
|
|
|
|
return $this;
|
|
}
|
|
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getAliases(): array {
|
|
return $this->aliases;
|
|
}
|
|
|
|
/**
|
|
* @param array $aliases
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setAliases(array $aliases): self {
|
|
$this->aliases = $aliases;
|
|
|
|
return $this;
|
|
}
|
|
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getProperties(): array {
|
|
return $this->properties;
|
|
}
|
|
|
|
/**
|
|
* @param array $properties
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setProperties(array $properties): self {
|
|
$this->properties = $properties;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @param string $key
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getProperty(string $key): string {
|
|
return $this->get($key, $this->properties);
|
|
}
|
|
|
|
|
|
/**
|
|
* @return NCWellKnownLink[]
|
|
*/
|
|
public function getLinks(): array {
|
|
return $this->links;
|
|
}
|
|
|
|
/**
|
|
* @param NCWellKnownLink[] $links
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setLinks(array $links): self {
|
|
$this->links = $links;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function addLink(NCWellKnownLink $link): self {
|
|
$this->links[] = $link;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function jsonSerialize(): array {
|
|
return array_filter(
|
|
[
|
|
'subject' => $this->getSubject(),
|
|
'aliases' => $this->getAliases(),
|
|
'properties' => $this->getProperties(),
|
|
'links' => $this->getLinks()
|
|
]
|
|
);
|
|
}
|
|
}
|