mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-04 19:53:44 +00:00
# Conflicts: # app/Api/V1/Controllers/Models/AvailableBudget/DestroyController.php # config/firefly.php # frontend/package.json # frontend/src/i18n/fr_FR/index.js # frontend/src/i18n/pt_BR/index.js # frontend/src/i18n/ru_RU/index.js # frontend/src/i18n/sl_SI/index.js # frontend/src/i18n/zh_CN/index.js # frontend/yarn.lock # public/v3/index.html # public/v3/js/1473.9b55dc17.js # public/v3/js/150.35592a2c.js # public/v3/js/1501.3980515e.js # public/v3/js/1543.010ec22e.js # public/v3/js/1730.207e6e59.js # public/v3/js/1864.d9ea853e.js # public/v3/js/1951.a5d70097.js # public/v3/js/2106.33b7eabd.js # public/v3/js/2124.bfc4091d.js # public/v3/js/2194.4baebc21.js # public/v3/js/2372.f07615ae.js # public/v3/js/2407.747d87e4.js # public/v3/js/2476.8af9976c.js # public/v3/js/2686.5e278d64.js # public/v3/js/2700.1251f369.js # public/v3/js/3232.0964e736.js # public/v3/js/3903.4e461032.js # public/v3/js/4640.601878ff.js # public/v3/js/4782.e1382ab6.js # public/v3/js/4851.3c27e6c7.js # public/v3/js/5221.fded0f96.js # public/v3/js/5266.e820dd38.js # public/v3/js/5348.109b8049.js # public/v3/js/5439.d75e5cb4.js # public/v3/js/5724.8b5fcafb.js # public/v3/js/576.e26ddde9.js # public/v3/js/6072.21c05085.js # public/v3/js/6323.69d55ffd.js # public/v3/js/6676.60b155c0.js # public/v3/js/6691.80040366.js # public/v3/js/6719.f9d4744f.js # public/v3/js/6826.74ed4602.js # public/v3/js/6882.c5970da7.js # public/v3/js/6919.cc55656e.js # public/v3/js/7044.96c481ac.js # public/v3/js/7083.c223af4f.js # public/v3/js/7222.86a095eb.js # public/v3/js/7480.b9bd8fed.js # public/v3/js/7499.c362f695.js # public/v3/js/7544.47af6552.js # public/v3/js/7552.ebdf1aef.js # public/v3/js/7586.29cf8776.js # public/v3/js/7697.4338f28d.js # public/v3/js/773.ff7cb3ef.js # public/v3/js/7919.910d5ebb.js # public/v3/js/7956.3e1c81cf.js # public/v3/js/8044.169b21f8.js # public/v3/js/8218.966b669d.js # public/v3/js/8344.119567b0.js # public/v3/js/8376.477a5508.js # public/v3/js/8387.a4c1d7d6.js # public/v3/js/8405.62235b41.js # public/v3/js/8493.48ada210.js # public/v3/js/8611.3ab24e6d.js # public/v3/js/8907.233f4719.js # public/v3/js/8928.8127fcdf.js # public/v3/js/9009.d0e97de6.js # public/v3/js/9038.06ad98ab.js # public/v3/js/9069.e81f039c.js # public/v3/js/9287.bc57ab91.js # public/v3/js/9597.0c124ce8.js # public/v3/js/9606.ce293dd2.js # public/v3/js/app.13f6ce91.js # public/v3/js/chunk-common.98b27fd7.js # public/v3/js/vendor.92714ea3.js # resources/assets/js/locales/fr.json # resources/assets/js/locales/ru.json # resources/assets/js/locales/sl.json # resources/assets/js/locales/zh-cn.json # resources/lang/de_DE/firefly.php # resources/lang/nl_NL/firefly.php # resources/lang/pt_BR/firefly.php # resources/lang/sl_SI/firefly.php # resources/lang/zh_CN/firefly.php
130 lines
3.8 KiB
PHP
130 lines
3.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* DestroyController.php
|
|
* Copyright (c) 2021 james@firefly-iii.org
|
|
*
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace FireflyIII\Api\V1\Controllers\Webhook;
|
|
|
|
use FireflyIII\Api\V1\Controllers\Controller;
|
|
use FireflyIII\Exceptions\FireflyException;
|
|
use FireflyIII\Models\Webhook;
|
|
use FireflyIII\Models\WebhookAttempt;
|
|
use FireflyIII\Models\WebhookMessage;
|
|
use FireflyIII\Repositories\Webhook\WebhookRepositoryInterface;
|
|
use Illuminate\Http\JsonResponse;
|
|
|
|
/**
|
|
* Class DestroyController
|
|
*/
|
|
class DestroyController extends Controller
|
|
{
|
|
private WebhookRepositoryInterface $repository;
|
|
|
|
/**
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->middleware(
|
|
function ($request, $next) {
|
|
$this->repository = app(WebhookRepositoryInterface::class);
|
|
$this->repository->setUser(auth()->user());
|
|
|
|
return $next($request);
|
|
}
|
|
);
|
|
}
|
|
|
|
/**
|
|
* This endpoint is documented at:
|
|
* https://api-docs.firefly-iii.org/#/webhooks/deleteWebhook
|
|
*
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @param Webhook $webhook
|
|
*
|
|
* @return JsonResponse
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function destroy(Webhook $webhook): JsonResponse
|
|
{
|
|
$this->repository->destroy($webhook);
|
|
app('preferences')->mark();
|
|
|
|
return response()->json([], 204);
|
|
}
|
|
|
|
/**
|
|
* This webhook is documented at:
|
|
* https://api-docs.firefly-iii.org/#/webhooks/deleteWebhookMessageAttempt
|
|
*
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @param Webhook $webhook
|
|
* @param WebhookMessage $message
|
|
* @param WebhookAttempt $attempt
|
|
*
|
|
* @return JsonResponse
|
|
* @throws FireflyException
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function destroyAttempt(Webhook $webhook, WebhookMessage $message, WebhookAttempt $attempt): JsonResponse
|
|
{
|
|
if ($message->webhook_id !== $webhook->id) {
|
|
throw new FireflyException('Webhook and webhook message are no match');
|
|
}
|
|
if ($attempt->webhook_message_id !== $message->id) {
|
|
throw new FireflyException('Webhook message and webhook attempt are no match');
|
|
}
|
|
|
|
$this->repository->destroyAttempt($attempt);
|
|
app('preferences')->mark();
|
|
|
|
return response()->json([], 204);
|
|
}
|
|
|
|
/**
|
|
* This endpoint is documented at:
|
|
* https://api-docs.firefly-iii.org/#/webhooks/deleteWebhookMessage
|
|
*
|
|
* Remove the specified resource from storage.
|
|
*
|
|
* @param Webhook $webhook
|
|
* @param WebhookMessage $message
|
|
*
|
|
* @return JsonResponse
|
|
* @throws FireflyException
|
|
* @codeCoverageIgnore
|
|
*/
|
|
public function destroyMessage(Webhook $webhook, WebhookMessage $message): JsonResponse
|
|
{
|
|
if ($message->webhook_id !== $webhook->id) {
|
|
throw new FireflyException('Webhook and webhook message are no match');
|
|
}
|
|
$this->repository->destroyMessage($message);
|
|
app('preferences')->mark();
|
|
|
|
return response()->json([], 204);
|
|
}
|
|
}
|