26 lines
596 B
PHP
26 lines
596 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
// SPDX-FileCopyrightText: Andrea Rigoni Garola <andrea.rgn@gmail.com>
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace OCA\PhotoReduce\Controller;
|
|
|
|
use Closure;
|
|
|
|
use OCA\PhotoReduce\Service\NoteNotFound;
|
|
use OCP\AppFramework\Http;
|
|
|
|
use OCP\AppFramework\Http\DataResponse;
|
|
|
|
trait Errors {
|
|
protected function handleNotFound(Closure $callback): DataResponse {
|
|
try {
|
|
return new DataResponse($callback());
|
|
} catch (NoteNotFound $e) {
|
|
$message = ['message' => $e->getMessage()];
|
|
return new DataResponse($message, Http::STATUS_NOT_FOUND);
|
|
}
|
|
}
|
|
}
|