Files
firefly-iii/app/Transformers/WebhookTransformer.php

91 lines
2.6 KiB
PHP
Raw Normal View History

2020-11-29 18:35:49 +01:00
<?php
2021-01-29 18:50:35 +01:00
/*
* WebhookTransformer.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\Transformers;
2022-09-17 07:07:25 +02:00
use FireflyIII\Enums\WebhookDelivery;
use FireflyIII\Enums\WebhookResponse;
use FireflyIII\Enums\WebhookTrigger;
2020-11-29 18:35:49 +01:00
use FireflyIII\Models\Webhook;
/**
* Class WebhookTransformer
*/
class WebhookTransformer extends AbstractTransformer
{
private array $enums;
/**
* WebhookTransformer constructor.
*/
public function __construct()
{
}
/**
* Transform webhook.
*
* @param Webhook $webhook
*
* @return array
*/
public function transform(Webhook $webhook): array
{
return [
2022-03-29 15:00:29 +02:00
'id' => (int) $webhook->id,
2020-11-29 18:35:49 +01:00
'created_at' => $webhook->created_at->toAtomString(),
'updated_at' => $webhook->updated_at->toAtomString(),
'active' => $webhook->active,
2020-12-03 06:54:42 +01:00
'title' => $webhook->title,
2021-01-15 21:01:53 +01:00
'secret' => $webhook->secret,
2022-09-17 07:07:25 +02:00
'trigger' => $this->getEnum('trigger', $webhook->trigger),
'response' => $this->getEnum('response', $webhook->response),
'delivery' => $this->getEnum('delivery', $webhook->delivery),
2020-11-29 18:35:49 +01:00
'url' => $webhook->url,
'links' => [
[
'rel' => 'self',
'uri' => sprintf('/webhooks/%d', $webhook->id),
],
],
];
}
2022-09-17 07:07:25 +02:00
/**
* @param string $type
* @param int $value
* @return string
*/
private function getEnum(string $type, int $value): string
2020-11-29 18:35:49 +01:00
{
2022-09-17 07:07:25 +02:00
if ('trigger' === $type) {
return WebhookTrigger::from($value)->name;
}
if ('response' === $type) {
return WebhookResponse::from($value)->name;
}
return WebhookDelivery::from($value)->name;
2020-11-29 18:35:49 +01:00
}
2020-12-22 05:35:06 +01:00
}