12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
- declare(strict_types=1);
- namespace OC\Core\Controller;
- use Exception;
- use OCP\AppFramework\Controller;
- use OCP\AppFramework\Http;
- use OCP\AppFramework\Http\Attribute\FrontpageRoute;
- use OCP\AppFramework\Http\Attribute\NoCSRFRequired;
- use OCP\AppFramework\Http\Attribute\PublicPage;
- use OCP\AppFramework\Http\DataResponse;
- use OCP\Capabilities\ICapability;
- use OCP\IAppConfig;
- use OCP\IRequest;
- use OCP\Server;
- use Psr\Container\ContainerExceptionInterface;
- use Psr\Log\LoggerInterface;
- class OCMController extends Controller {
- public function __construct(
- IRequest $request,
- private readonly IAppConfig $appConfig,
- private LoggerInterface $logger,
- ) {
- parent::__construct('core', $request);
- }
-
-
-
-
- public function discovery(): DataResponse {
- try {
- $cap = Server::get(
- $this->appConfig->getValueString(
- 'core', 'ocm_providers',
- \OCA\CloudFederationAPI\Capabilities::class,
- lazy: true
- )
- );
- if (!($cap instanceof ICapability)) {
- throw new Exception('loaded class does not implements OCP\Capabilities\ICapability');
- }
- return new DataResponse(
- $cap->getCapabilities()['ocm'] ?? ['enabled' => false],
- Http::STATUS_OK,
- [
- 'X-NEXTCLOUD-OCM-PROVIDERS' => true,
- 'Content-Type' => 'application/json'
- ]
- );
- } catch (ContainerExceptionInterface|Exception $e) {
- $this->logger->error('issue during OCM discovery request', ['exception' => $e]);
- return new DataResponse(
- ['message' => '/ocm-provider/ not supported'],
- Http::STATUS_INTERNAL_SERVER_ERROR
- );
- }
- }
- }
|