nextcloud-app-radio/lib/Controller/StationController.php

69 lines
1.7 KiB
PHP
Raw Normal View History

2020-10-30 20:16:27 +00:00
<?php
namespace OCA\Radio\Controller;
use OCA\Radio\AppInfo\Application;
2020-10-31 11:10:02 +00:00
use OCA\Radio\Service\StationService;
2020-10-30 20:16:27 +00:00
use OCP\AppFramework\Controller;
use OCP\AppFramework\Http\DataResponse;
use OCP\IRequest;
2020-10-31 11:10:02 +00:00
class StationController extends Controller {
/** @var StationService */
2020-10-30 20:16:27 +00:00
private $service;
/** @var string */
private $userId;
public function __construct(IRequest $request,
2020-10-31 11:10:02 +00:00
StationService $service,
2020-10-30 20:16:27 +00:00
$userId) {
parent::__construct(Application::APP_ID, $request);
$this->service = $service;
$this->userId = $userId;
}
/**
* @NoAdminRequired
*/
public function index(): DataResponse {
return new DataResponse($this->service->findAll($this->userId));
}
/**
* @NoAdminRequired
*/
public function show(int $id): DataResponse {
return $this->handleNotFound(function () use ($id) {
return $this->service->find($id, $this->userId);
});
}
/**
* @NoAdminRequired
*/
public function create(string $stationuuid, string $name, string $favicon, string $url_resolved): DataResponse {
return new DataResponse($this->service->create($stationuuid, $name,
$favicon, $url_resolved, $this->userId));
2020-10-30 20:16:27 +00:00
}
/**
* @NoAdminRequired
*/
public function update(int $id, string $stationuuid,
string $name, string $favicon, string $url_resolved): DataResponse {
return $this->handleNotFound(function () use ($id, $stationuuid, $name, $favicon, $url_resolved) {
return $this->service->update($id, $stationuuid, $name, $favicon, $url_resolved, $this->userId);
2020-10-30 20:16:27 +00:00
});
}
/**
* @NoAdminRequired
*/
public function destroy(int $id): DataResponse {
return $this->handleNotFound(function () use ($id) {
return $this->service->delete($id, $this->userId);
});
}
}