adrema/app/Mailgateway/Resources/MailgatewayResource.php

61 lines
1.5 KiB
PHP
Raw Normal View History

2023-06-01 15:02:35 +02:00
<?php
namespace App\Mailgateway\Resources;
use App\Lib\HasMeta;
use App\Mailgateway\Models\Mailgateway;
use Illuminate\Http\Resources\Json\JsonResource;
/**
* @mixin Mailgateway
*/
class MailgatewayResource extends JsonResource
{
use HasMeta;
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
*
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
*/
public function toArray($request)
{
return [
'name' => $this->name,
'domain' => $this->domain,
'type_human' => $this->type::name(),
'works' => $this->type->works(),
];
}
public static function meta(): array
{
return [
'links' => [
'store' => route('api.mailgateway.store'),
],
2023-06-01 15:45:02 +02:00
'types' => app('mail-gateways')->map(fn ($gateway) => [
'id' => $gateway,
'name' => $gateway::name(),
2023-06-01 16:50:50 +02:00
'fields' => $gateway::fields(),
'defaults' => (object) $gateway::defaults(),
])->prepend([
'id' => null,
'name' => '-- kein --',
'fields' => [],
'defaults' => (object) [],
2023-06-01 15:45:02 +02:00
]),
'default' => [
'domain' => '',
'name' => '',
'type' => [
'params' => [],
2023-06-01 16:50:50 +02:00
'cls' => null,
2023-06-01 15:45:02 +02:00
],
],
2023-06-01 15:02:35 +02:00
];
}
}