153 lines
2.4 KiB
PHP
153 lines
2.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2022 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
|
|
namespace OCA\Circles\Tools\Model;
|
|
|
|
use OCP\Http\Client\IClient;
|
|
|
|
class NCRequest extends Request {
|
|
/** @var IClient */
|
|
private $client;
|
|
|
|
/** @var array */
|
|
private $clientOptions = [];
|
|
|
|
/** @var bool */
|
|
private $localAddressAllowed = false;
|
|
|
|
/** @var NCRequestResult */
|
|
private $result;
|
|
|
|
/** @var NCRequestResult[] */
|
|
private $previousResults = [];
|
|
|
|
|
|
/**
|
|
* @param IClient $client
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function setClient(IClient $client): self {
|
|
$this->client = $client;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return IClient
|
|
*/
|
|
public function getClient(): IClient {
|
|
return $this->client;
|
|
}
|
|
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getClientOptions(): array {
|
|
return $this->clientOptions;
|
|
}
|
|
|
|
/**
|
|
* @param array $clientOptions
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setClientOptions(array $clientOptions): self {
|
|
$this->clientOptions = $clientOptions;
|
|
|
|
return $this;
|
|
}
|
|
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isLocalAddressAllowed(): bool {
|
|
return $this->localAddressAllowed;
|
|
}
|
|
|
|
/**
|
|
* @param bool $allowed
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setLocalAddressAllowed(bool $allowed): self {
|
|
$this->localAddressAllowed = $allowed;
|
|
|
|
return $this;
|
|
}
|
|
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function hasResult(): bool {
|
|
return ($this->result !== null);
|
|
}
|
|
|
|
/**
|
|
* @return NCRequestResult
|
|
*/
|
|
public function getResult(): NCRequestResult {
|
|
return $this->result;
|
|
}
|
|
|
|
/**
|
|
* @param NCRequestResult $result
|
|
*
|
|
* @return self
|
|
*/
|
|
public function setResult(NCRequestResult $result): self {
|
|
if (!is_null($this->result)) {
|
|
$this->previousResults[] = $this->result;
|
|
}
|
|
|
|
$this->result = $result;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return NCRequestResult[]
|
|
*/
|
|
public function getPreviousResults(): array {
|
|
return $this->previousResults;
|
|
}
|
|
|
|
/**
|
|
* @return NCRequestResult[]
|
|
*/
|
|
public function getAllResults(): array {
|
|
return array_values(array_merge([$this->getResult()], $this->previousResults));
|
|
}
|
|
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function jsonSerialize(): array {
|
|
$result = null;
|
|
if ($this->hasResult()) {
|
|
$result = $this->getResult();
|
|
}
|
|
|
|
return array_merge(
|
|
parent::jsonSerialize(),
|
|
[
|
|
'clientOptions' => $this->getClientOptions(),
|
|
'localAddressAllowed' => $this->isLocalAddressAllowed(),
|
|
'result' => $result
|
|
]
|
|
);
|
|
}
|
|
}
|