81 lines
1.7 KiB
PHP
81 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace OCA\UPschooling\Controller;
|
|
|
|
use OCA\UPschooling\AppInfo\Application;
|
|
use OCA\UPschooling\Service\TicketService;
|
|
use OCP\AppFramework\ApiController;
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
use OCP\IRequest;
|
|
|
|
class TicketApiController extends ApiController {
|
|
/** @var TicketService */
|
|
private $service;
|
|
|
|
/** @var string */
|
|
private $userId;
|
|
|
|
use Errors;
|
|
|
|
public function __construct(IRequest $request,
|
|
TicketService $service,
|
|
$userId) {
|
|
parent::__construct(Application::APP_ID, $request);
|
|
$this->service = $service;
|
|
$this->userId = $userId;
|
|
}
|
|
|
|
/**
|
|
* @CORS
|
|
* @NoCSRFRequired
|
|
* @NoAdminRequired
|
|
*/
|
|
public function index(): DataResponse {
|
|
return new DataResponse($this->service->findAll($this->userId));
|
|
}
|
|
|
|
/**
|
|
* @CORS
|
|
* @NoCSRFRequired
|
|
* @NoAdminRequired
|
|
*/
|
|
public function show(int $id): DataResponse {
|
|
return $this->handleNotFound(function () use ($id) {
|
|
return $this->service->find($id, $this->userId);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @CORS
|
|
* @NoCSRFRequired
|
|
* @NoAdminRequired
|
|
*/
|
|
public function create(string $title, string $content): DataResponse {
|
|
return new DataResponse($this->service->create($title, $content,
|
|
$this->userId));
|
|
}
|
|
|
|
/**
|
|
* @CORS
|
|
* @NoCSRFRequired
|
|
* @NoAdminRequired
|
|
*/
|
|
public function update(int $id, string $title,
|
|
string $content): DataResponse {
|
|
return $this->handleNotFound(function () use ($id, $title, $content) {
|
|
return $this->service->update($id, $title, $content, $this->userId);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @CORS
|
|
* @NoCSRFRequired
|
|
* @NoAdminRequired
|
|
*/
|
|
public function destroy(int $id): DataResponse {
|
|
return $this->handleNotFound(function () use ($id) {
|
|
return $this->service->delete($id, $this->userId);
|
|
});
|
|
}
|
|
}
|