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

201 lines
7.1 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\Exceptions\FireflyException;
2020-11-29 18:35:49 +01:00
use FireflyIII\Models\Webhook;
2021-03-07 12:13:22 +01:00
use FireflyIII\Models\WebhookAttempt;
use FireflyIII\Models\WebhookDelivery;
2021-03-07 12:13:22 +01:00
use FireflyIII\Models\WebhookMessage;
use FireflyIII\Models\WebhookResponse;
use FireflyIII\Models\WebhookTrigger;
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()
// only get upgraded webhooks
->where('delivery', 1)
->where('response', 1)
->where('trigger', 1)
->get();
2020-11-29 18:35:49 +01:00
}
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(
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'],
'trigger' => 1,
'response' => 1,
'delivery' => 1,
'secret' => $secret,
'url' => $data['url'],
2021-03-12 06:20:01 +01:00
];
/** @var Webhook $webhook */
$webhook = Webhook::create($fullData);
$triggers = new Collection();
$responses = new Collection();
$deliveries = new Collection();
foreach ($data['triggers'] as $trigger) {
// get the relevant ID:
$object = WebhookTrigger::where('title', $trigger)->first();
if (null === $object) {
throw new FireflyException(sprintf('Could not find webhook trigger with title "%s".', $trigger));
}
$triggers->push($object);
}
$webhook->webhookTriggers()->saveMany($triggers);
foreach ($data['responses'] as $response) {
// get the relevant ID:
$object = WebhookResponse::where('title', $response)->first();
if (null === $object) {
throw new FireflyException(sprintf('Could not find webhook response with title "%s".', $response));
}
$responses->push($object);
}
$webhook->webhookResponses()->saveMany($responses);
foreach ($data['deliveries'] as $delivery) {
// get the relevant ID:
$object = WebhookDelivery::where('title', $delivery)->first();
if (null === $object) {
throw new FireflyException(sprintf('Could not find webhook delivery with title "%s".', $delivery));
}
$deliveries->push($object);
}
$webhook->webhookDeliveries()->saveMany($deliveries);
2021-03-12 06:20:01 +01:00
return $webhook;
2021-03-12 06:20:01 +01:00
}
public function update(Webhook $webhook, array $data): Webhook
{
$webhook->active = $data['active'] ?? $webhook->active;
$webhook->title = $data['title'] ?? $webhook->title;
$webhook->url = $data['url'] ?? $webhook->url;
2021-03-12 06:20:01 +01:00
if (array_key_exists('secret', $data) && 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();
$triggers = new Collection();
$responses = new Collection();
$deliveries = new Collection();
foreach ($data['triggers'] as $trigger) {
// get the relevant ID:
$object = WebhookTrigger::where('title', $trigger)->first();
if (null === $object) {
throw new FireflyException(sprintf('Could not find webhook trigger with title "%s".', $trigger));
}
$triggers->push($object);
}
$webhook->webhookTriggers()->sync($triggers);
foreach ($data['responses'] as $response) {
// get the relevant ID:
$object = WebhookResponse::where('title', $response)->first();
if (null === $object) {
throw new FireflyException(sprintf('Could not find webhook response with title "%s".', $response));
}
$responses->push($object);
}
$webhook->webhookResponses()->sync($responses);
foreach ($data['deliveries'] as $delivery) {
// get the relevant ID:
$object = WebhookDelivery::where('title', $delivery)->first();
if (null === $object) {
throw new FireflyException(sprintf('Could not find webhook delivery with title "%s".', $delivery));
}
$deliveries->push($object);
}
$webhook->webhookDeliveries()->sync($deliveries);
2021-03-12 06:20:01 +01:00
return $webhook;
2021-03-07 12:13:22 +01:00
}
2020-12-22 05:35:06 +01:00
}