Remove unwanted, undocumented and unused methods from Commands controller

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2019-10-09 11:51:28 +02:00
Родитель 672409118a
Коммит 8aa2aa2efe
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7076EA9751AACDDA
2 изменённых файлов: 0 добавлений и 55 удалений

Просмотреть файл

@ -383,24 +383,6 @@ return [
'apiVersion' => 'v1', 'apiVersion' => 'v1',
], ],
], ],
[
'name' => 'Command#update',
'url' => '/api/{apiVersion}/command/{id}',
'verb' => 'PUT',
'requirements' => [
'apiVersion' => 'v1',
'id' => '^\d+$',
],
],
[
'name' => 'Command#destroy',
'url' => '/api/{apiVersion}/command/{id}',
'verb' => 'DELETE',
'requirements' => [
'apiVersion' => 'v1',
'id' => '^\d+$',
],
],
/** /**
* Webinar * Webinar

Просмотреть файл

@ -25,8 +25,6 @@ namespace OCA\Talk\Controller;
use OCA\Talk\Model\Command; use OCA\Talk\Model\Command;
use OCA\Talk\Service\CommandService; use OCA\Talk\Service\CommandService;
use OCP\AppFramework\Db\DoesNotExistException;
use OCP\AppFramework\Http;
use OCP\AppFramework\Http\DataResponse; use OCP\AppFramework\Http\DataResponse;
use OCP\AppFramework\OCSController; use OCP\AppFramework\OCSController;
use OCP\IRequest; use OCP\IRequest;
@ -60,39 +58,4 @@ class CommandController extends OCSController {
return new DataResponse($result); return new DataResponse($result);
} }
/**
* @param int $id
* @param int $response
* @param int $enabled
* @return DataResponse
*/
public function update(int $id, int $response, int $enabled): DataResponse {
try {
$command = $this->commandService->updateFromWeb($id, $response, $enabled);
} catch (DoesNotExistException $e) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
} catch (\InvalidArgumentException $e) {
return new DataResponse(['error' => $e->getMessage()], Http::STATUS_BAD_REQUEST);
}
return new DataResponse($command->asArray());
}
/**
* @param int $id
* @return DataResponse
*/
public function destroy(int $id): DataResponse {
try {
$this->commandService->delete($id);
} catch (DoesNotExistException $e) {
return new DataResponse([], Http::STATUS_NOT_FOUND);
} catch (\InvalidArgumentException $e) {
return new DataResponse(['error' => $e->getMessage()], Http::STATUS_BAD_REQUEST);
}
return new DataResponse();
}
} }