37 lines
822 B
PHP
37 lines
822 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
final class FingerprintDeleteController extends AbstractController
|
|
{
|
|
protected string $route = '/api/v1/fingerprint/{fingerprintId}';
|
|
|
|
private int $fingerprintId;
|
|
|
|
public function __construct(string $url)
|
|
{
|
|
parent::__construct($url);
|
|
|
|
$this->fingerprintId = (int)$this->getUrlParamInt('fingerprintId');
|
|
}
|
|
|
|
public function handle(): void
|
|
{
|
|
parent::handle();
|
|
|
|
if ($this->response->getStatus() !== ServerStatus::OK) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
$fingerprint = new Fingerprint($this->fingerprintId);
|
|
$fingerprint->Delete();
|
|
|
|
$this->response = new ApiJsonResponse();
|
|
} catch (Throwable $e) {
|
|
$this->response = new ApiJsonResponse(ServerStatus::BAD_REQUEST);
|
|
$this->response->setParameter('success', false);
|
|
$this->response->setMessage($e->getMessage());
|
|
}
|
|
}
|
|
} |