%PDF- %PDF-
| Direktori : /data/www_bck/varak.net_bck/nextcloud.varak.net/apps/circles/lib/Service/ |
| Current File : //data/www_bck/varak.net_bck/nextcloud.varak.net/apps/circles/lib/Service/GlobalScaleService.php |
<?php
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 2019
* @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\Service;
use OC\Security\IdentityProof\Signer;
use OCA\Circles\Db\EventWrapperRequest;
use OCA\Circles\Exceptions\GSStatusException;
use OCA\Circles\Tools\Exceptions\RequestNetworkException;
use OCA\Circles\Tools\Model\NCRequest;
use OCA\Circles\Tools\Model\Request;
use OCA\Circles\Tools\Traits\TNCRequest;
use OCA\Circles\Tools\Traits\TStringTools;
use OCP\IURLGenerator;
use OCP\IUserManager;
use OCP\IUserSession;
/**
* Class GlobalScaleService
*
* @package OCA\Circles\Service
*/
class GlobalScaleService {
use TNCRequest;
use TStringTools;
/** @var IURLGenerator */
private $urlGenerator;
/** @var IUserManager */
private $userManager;
/** @var IUserSession */
private $userSession;
/** @var Signer */
private $signer;
/** @var EventWrapperRequest */
private $eventWrapperRequest;
/** @var ConfigService */
private $configService;
/** @var MiscService */
private $miscService;
/**
* GlobalScaleService constructor.
*
* @param IURLGenerator $urlGenerator
* @param IUserManager $userManager
* @param IUserSession $userSession
* @param Signer $signer
* @param EventWrapperRequest $eventWrapperRequest
* @param ConfigService $configService
* @param MiscService $miscService
*/
public function __construct(
IURLGenerator $urlGenerator,
IUserManager $userManager,
IUserSession $userSession,
Signer $signer,
EventWrapperRequest $eventWrapperRequest,
ConfigService $configService,
MiscService $miscService
) {
$this->urlGenerator = $urlGenerator;
$this->userManager = $userManager;
$this->userSession = $userSession;
$this->signer = $signer;
$this->eventWrapperRequest = $eventWrapperRequest;
$this->configService = $configService;
$this->miscService = $miscService;
}
/**
* @return array
*/
public function getGlobalScaleInstances(): array {
$mockup = $this->configService->getGSSMockup();
if (!empty($mockup)) {
return $mockup;
}
try {
$lookup = $this->configService->getGSLookup();
$request = new NCRequest(ConfigService::GS_LOOKUP_INSTANCES, Request::TYPE_POST);
$this->configService->configureRequest($request);
$request->basedOnUrl($lookup);
$request->addData('authKey', $this->configService->getGSInfo(ConfigService::GS_KEY));
try {
return $this->retrieveJson($request);
} catch (RequestNetworkException $e) {
$this->e($e);
}
} catch (GSStatusException $e) {
}
return [];
}
}