1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Transformers/CompanyGatewayTransformer.php
David Bomba f712b789ca
Fixes for tests (#3184)
* fix typo

* php-cs traits

* CS fixer pass

* Password protect User routes

* Implement checks to prevent editing a deleted record

* Clean up payment flows

* Fixes for tests
2019-12-31 08:59:12 +11:00

72 lines
2.2 KiB
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://opensource.org/licenses/AAL
*/
namespace App\Transformers;
use App\Models\CompanyGateway;
use App\Transformers\GatewayTransformer;
use App\Utils\Traits\MakesHash;
/**
* Class CompanyGatewayTransformer.
*/
class CompanyGatewayTransformer extends EntityTransformer
{
use MakesHash;
/**
* @var array
*/
protected $defaultIncludes = [
];
/**
* @var array
*/
protected $availableIncludes = [
'gateway'
];
/**
* @param CompanyGateway $company_gateway
*
* @return array
*/
public function transform(CompanyGateway $company_gateway)
{
return [
'id' => (string)$this->encodePrimaryKey($company_gateway->id),
'gateway_key' => (string)$company_gateway->gateway_key ?: '',
'accepted_credit_cards' => (int)$company_gateway->accepted_credit_cards,
'require_cvv' => (bool)$company_gateway->require_cvv,
'show_billing_address' => (bool)$company_gateway->show_billing_address,
'show_shipping_address' => (bool)$company_gateway->show_shipping_address,
'update_details' => (bool)$company_gateway->update_details,
'config' => (string) $company_gateway->getConfigTransformed(),
'fees_and_limits' => $company_gateway->fees_and_limits ?: '',
'updated_at' => $company_gateway->updated_at,
'deleted_at' => $company_gateway->deleted_at,
'custom_value1' => $company_gateway->custom_value1 ?: '',
'custom_value2' => $company_gateway->custom_value2 ?: '',
'custom_value3' => $company_gateway->custom_value3 ?: '',
'custom_value4' => $company_gateway->custom_value4 ?: '',
];
}
public function includeGateway(CompanyGateway $company_gateway)
{
$transformer = new GatewayTransformer($this->serializer);
return $this->includeItem($company_gateway->gateway, $transformer, Gateway::class);
}
}