1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Transformers/ClientGatewayTokenTransformer.php

74 lines
2.0 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2024-04-12 06:15:41 +02:00
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Transformers;
use App\Models\ClientGatewayToken;
use App\Utils\Traits\MakesHash;
2020-10-28 11:10:49 +01:00
use stdClass;
/**
* Class ClientGatewayTokenTransformer.
*/
class ClientGatewayTokenTransformer extends EntityTransformer
{
use MakesHash;
/**
* @param ClientGatewayToken $cgt
*
* @return array
*/
public function transform(ClientGatewayToken $cgt)
{
return [
'id' => $this->encodePrimaryKey($cgt->id),
'token' => (string) $cgt->token ?: '',
'gateway_customer_reference' => $cgt->gateway_customer_reference ?: '',
'gateway_type_id' => (string) $cgt->gateway_type_id ?: '',
'company_gateway_id' => (string) $this->encodePrimaryKey($cgt->company_gateway_id) ?: '',
'is_default' => (bool) $cgt->is_default,
'meta' => $this->typeCastMeta($cgt->meta),
'created_at' => (int) $cgt->created_at,
'updated_at' => (int) $cgt->updated_at,
'archived_at' => (int) $cgt->deleted_at,
'is_deleted' => (bool) $cgt->is_deleted,
];
}
private function typeCastMeta($meta)
{
2024-01-14 05:05:00 +01:00
$casted = new stdClass();
2020-11-25 15:19:52 +01:00
if (property_exists($meta, 'exp_month')) {
$casted->exp_month = (string) $meta->exp_month;
2020-11-25 15:19:52 +01:00
}
2020-11-25 15:19:52 +01:00
if (property_exists($meta, 'exp_year')) {
$casted->exp_year = (string) $meta->exp_year;
2020-11-25 15:19:52 +01:00
}
2020-11-25 15:19:52 +01:00
if (property_exists($meta, 'brand')) {
$casted->brand = (string) $meta->brand;
2020-11-25 15:19:52 +01:00
}
2020-11-25 15:19:52 +01:00
if (property_exists($meta, 'last4')) {
$casted->last4 = (string) $meta->last4;
2020-11-25 15:19:52 +01:00
}
2020-11-25 15:19:52 +01:00
if (property_exists($meta, 'type')) {
$casted->type = (int) $meta->type;
2020-11-25 15:19:52 +01:00
}
return $casted;
}
}