79 lines
2.1 KiB
PHP
79 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace OCA\Radio\Controller;
|
|
|
|
use OCA\Radio\AppInfo\Application;
|
|
use OCA\Radio\Service\RecentService;
|
|
use OCP\AppFramework\Controller;
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
use OCP\IRequest;
|
|
|
|
class RecentController extends Controller {
|
|
/** @var RecentService */
|
|
private $service;
|
|
|
|
/** @var string */
|
|
private $userId;
|
|
|
|
use Errors;
|
|
|
|
public function __construct(IRequest $request,
|
|
RecentService $service,
|
|
$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 $urlresolved,
|
|
string $bitrate, string $country, string $language, string $homepage,
|
|
string $codec, string $tags): DataResponse {
|
|
return new DataResponse($this->service->create($stationuuid, $name,
|
|
$favicon, $urlresolved, $bitrate, $country, $language, $homepage, $codec,
|
|
$tags, $this->userId));
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*/
|
|
public function update(int $id, string $stationuuid, string $name,
|
|
string $favicon, string $urlresolved, string $bitrate, string $country,
|
|
string $language, string $homepage, string $codec, string $tags): DataResponse {
|
|
return $this->handleNotFound(function () use ($id, $stationuuid, $name,
|
|
$favicon, $urlresolved, $bitrate, $country, $language, $homepage, $codec,
|
|
$tags) {
|
|
return $this->service->update($id, $stationuuid, $name, $favicon,
|
|
$urlresolved, $bitrate, $country, $language, $homepage, $codec,
|
|
$tags, $this->userId);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @NoAdminRequired
|
|
*/
|
|
public function destroy(int $id): DataResponse {
|
|
return $this->handleNotFound(function () use ($id) {
|
|
return $this->service->delete($id, $this->userId);
|
|
});
|
|
}
|
|
}
|