Files
firefly-iii/app/Repositories/Webhook/WebhookRepository.php

126 lines
3.9 KiB
PHP
Raw Normal View History

2020-11-29 18:35:49 +01:00
<?php
2021-01-29 18:50:35 +01:00
/*
* WebhookRepository.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/>.
*/
2020-12-22 05:35:06 +01:00
declare(strict_types=1);
2020-11-29 18:35:49 +01:00
namespace FireflyIII\Repositories\Webhook;
use FireflyIII\Models\Webhook;
2021-03-07 12:13:22 +01:00
use FireflyIII\Models\WebhookAttempt;
use FireflyIII\Models\WebhookMessage;
2025-02-23 12:28:27 +01:00
use FireflyIII\Support\Repositories\UserGroup\UserGroupInterface;
use FireflyIII\Support\Repositories\UserGroup\UserGroupTrait;
2020-11-29 18:35:49 +01:00
use Illuminate\Support\Collection;
2025-02-23 12:28:27 +01:00
use Illuminate\Support\Str;
2020-11-29 18:35:49 +01:00
/**
* Class WebhookRepository
*/
2025-02-23 12:28:27 +01:00
class WebhookRepository implements WebhookRepositoryInterface, UserGroupInterface
2020-11-29 18:35:49 +01:00
{
2025-02-23 12:28:27 +01:00
use UserGroupTrait;
2020-11-29 18:35:49 +01:00
public function all(): Collection
{
return $this->user->webhooks()->get();
}
2021-03-12 06:20:01 +01:00
public function destroy(Webhook $webhook): void
2020-11-29 18:35:49 +01:00
{
2021-03-12 06:20:01 +01:00
$webhook->delete();
2020-11-29 18:35:49 +01:00
}
2021-03-12 06:20:01 +01:00
public function destroyAttempt(WebhookAttempt $attempt): void
2020-11-29 18:35:49 +01:00
{
2021-03-12 06:20:01 +01:00
$attempt->delete();
2020-11-29 18:35:49 +01:00
}
2021-03-12 06:20:01 +01:00
public function destroyMessage(WebhookMessage $message): void
2020-11-29 18:35:49 +01:00
{
2021-03-12 06:20:01 +01:00
$message->delete();
2020-11-29 18:35:49 +01:00
}
2021-03-07 12:13:22 +01:00
2021-03-12 06:20:01 +01:00
public function getAttempts(WebhookMessage $webhookMessage): Collection
2021-03-07 12:13:22 +01:00
{
2021-03-12 06:20:01 +01:00
return $webhookMessage->webhookAttempts()->orderBy('created_at', 'DESC')->get(['webhook_attempts.*']);
2021-03-07 12:13:22 +01:00
}
2021-03-12 06:20:01 +01:00
public function getMessages(Webhook $webhook): Collection
2021-03-07 12:13:22 +01:00
{
2021-03-12 06:20:01 +01:00
return $webhook->webhookMessages()
->orderBy('created_at', 'DESC')
->get(['webhook_messages.*'])
;
2021-03-07 12:13:22 +01:00
}
public function getReadyMessages(Webhook $webhook): Collection
{
return $webhook->webhookMessages()
->where('webhook_messages.sent', 0)
->where('webhook_messages.errored', 0)
->get(['webhook_messages.*'])
->filter(
2025-05-04 13:47:00 +02:00
static fn(WebhookMessage $message) =>
// @phpstan-ignore-line
$message->webhookAttempts()->count() <= 2
)->splice(0, 3)
;
2021-03-07 12:13:22 +01:00
}
2021-03-07 15:26:42 +01:00
2021-03-12 06:20:01 +01:00
public function store(array $data): Webhook
2021-03-07 12:13:22 +01:00
{
2025-02-23 12:28:27 +01:00
$secret = Str::random(24);
2021-03-12 06:20:01 +01:00
$fullData = [
'user_id' => $this->user->id,
'user_group_id' => $this->user->user_group_id,
'active' => $data['active'] ?? false,
'title' => $data['title'] ?? null,
'trigger' => $data['trigger'],
'response' => $data['response'],
'delivery' => $data['delivery'],
'secret' => $secret,
'url' => $data['url'],
2021-03-12 06:20:01 +01:00
];
return Webhook::create($fullData);
}
public function update(Webhook $webhook, array $data): Webhook
{
$webhook->active = $data['active'] ?? $webhook->active;
$webhook->trigger = $data['trigger'] ?? $webhook->trigger;
$webhook->response = $data['response'] ?? $webhook->response;
$webhook->delivery = $data['delivery'] ?? $webhook->delivery;
$webhook->title = $data['title'] ?? $webhook->title;
$webhook->url = $data['url'] ?? $webhook->url;
if (true === $data['secret']) {
2025-02-23 12:28:27 +01:00
$secret = Str::random(24);
2021-03-12 06:20:01 +01:00
$webhook->secret = $secret;
}
$webhook->save();
return $webhook;
2021-03-07 12:13:22 +01:00
}
2020-12-22 05:35:06 +01:00
}