mirror of
https://github.com/nextcloud/app_api.git
synced 2026-01-13 20:19:21 +00:00
128 lines
3.8 KiB
PHP
128 lines
3.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\AppAPI\Controller;
|
|
|
|
use OCA\AppAPI\AppInfo\Application;
|
|
use OCA\AppAPI\Attribute\AppAPIAuth;
|
|
use OCA\AppAPI\Db\Translation\TranslationQueueMapper;
|
|
use OCA\AppAPI\Service\ProvidersAI\TranslationService;
|
|
use OCP\AppFramework\Db\DoesNotExistException;
|
|
use OCP\AppFramework\Db\MultipleObjectsReturnedException;
|
|
use OCP\AppFramework\Http;
|
|
use OCP\AppFramework\Http\Attribute\NoCSRFRequired;
|
|
use OCP\AppFramework\Http\Attribute\PublicPage;
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
use OCP\AppFramework\Http\Response;
|
|
use OCP\AppFramework\OCSController;
|
|
use OCP\DB\Exception;
|
|
use OCP\IConfig;
|
|
use OCP\IRequest;
|
|
|
|
class TranslationController extends OCSController {
|
|
protected $request;
|
|
|
|
public function __construct(
|
|
IRequest $request,
|
|
private readonly IConfig $config,
|
|
private readonly TranslationService $translationService,
|
|
private readonly TranslationQueueMapper $mapper,
|
|
) {
|
|
parent::__construct(Application::APP_ID, $request);
|
|
|
|
$this->request = $request;
|
|
}
|
|
|
|
#[NoCSRFRequired]
|
|
#[PublicPage]
|
|
#[AppAPIAuth]
|
|
public function registerProvider(
|
|
string $name,
|
|
string $displayName,
|
|
array $fromLanguages,
|
|
array $toLanguages,
|
|
string $actionHandler,
|
|
string $actionDetectLang = '',
|
|
): DataResponse {
|
|
$ncVersion = $this->config->getSystemValueString('version', '0.0.0');
|
|
if (version_compare($ncVersion, '29.0', '<')) {
|
|
return new DataResponse([], Http::STATUS_NOT_IMPLEMENTED);
|
|
}
|
|
|
|
$provider = $this->translationService->registerTranslationProvider(
|
|
$this->request->getHeader('EX-APP-ID'), $name, $displayName,
|
|
$fromLanguages, $toLanguages, $actionHandler, $actionDetectLang,
|
|
);
|
|
|
|
if ($provider === null) {
|
|
return new DataResponse([], Http::STATUS_BAD_REQUEST);
|
|
}
|
|
|
|
return new DataResponse();
|
|
}
|
|
|
|
#[NoCSRFRequired]
|
|
#[PublicPage]
|
|
#[AppAPIAuth]
|
|
public function unregisterProvider(string $name): Response {
|
|
$ncVersion = $this->config->getSystemValueString('version', '0.0.0');
|
|
if (version_compare($ncVersion, '29.0', '<')) {
|
|
return new DataResponse([], Http::STATUS_NOT_IMPLEMENTED);
|
|
}
|
|
|
|
$unregistered = $this->translationService->unregisterTranslationProvider(
|
|
$this->request->getHeader('EX-APP-ID'), $name
|
|
);
|
|
|
|
if ($unregistered === null) {
|
|
return new DataResponse([], Http::STATUS_NOT_FOUND);
|
|
}
|
|
|
|
return new DataResponse();
|
|
}
|
|
|
|
#[NoCSRFRequired]
|
|
#[PublicPage]
|
|
#[AppAPIAuth]
|
|
public function getProvider(string $name): DataResponse {
|
|
$ncVersion = $this->config->getSystemValueString('version', '0.0.0');
|
|
if (version_compare($ncVersion, '29.0', '<')) {
|
|
return new DataResponse([], Http::STATUS_NOT_IMPLEMENTED);
|
|
}
|
|
$result = $this->translationService->getExAppTranslationProvider(
|
|
$this->request->getHeader('EX-APP-ID'), $name
|
|
);
|
|
if (!$result) {
|
|
return new DataResponse([], Http::STATUS_NOT_FOUND);
|
|
}
|
|
return new DataResponse($result, Http::STATUS_OK);
|
|
}
|
|
|
|
#[NoCSRFRequired]
|
|
#[PublicPage]
|
|
#[AppAPIAuth]
|
|
public function reportResult(int $taskId, string $result, string $error = ""): DataResponse {
|
|
$ncVersion = $this->config->getSystemValueString('version', '0.0.0');
|
|
if (version_compare($ncVersion, '29.0', '<')) {
|
|
return new DataResponse([], Http::STATUS_NOT_IMPLEMENTED);
|
|
}
|
|
try {
|
|
$taskResult = $this->mapper->getById($taskId);
|
|
} catch (DoesNotExistException) {
|
|
return new DataResponse([], Http::STATUS_NOT_FOUND);
|
|
} catch (MultipleObjectsReturnedException | Exception) {
|
|
return new DataResponse([], Http::STATUS_INTERNAL_SERVER_ERROR);
|
|
}
|
|
$taskResult->setResult($result);
|
|
$taskResult->setError($error);
|
|
$taskResult->setFinished(1);
|
|
try {
|
|
$this->mapper->update($taskResult);
|
|
} catch (Exception) {
|
|
return new DataResponse([], Http::STATUS_BAD_REQUEST);
|
|
}
|
|
return new DataResponse([], Http::STATUS_OK);
|
|
}
|
|
}
|