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

145 lines
4.9 KiB
PHP
Raw Normal View History

2019-03-28 22:35:35 +01:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com)
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
* @license https://opensource.org/licenses/AAL
*/
2019-03-28 22:35:35 +01:00
namespace App\Transformers;
use App\Models\Activity;
2019-03-28 22:35:35 +01:00
use App\Models\Client;
use App\Models\ClientContact;
use App\Models\ClientGatewayToken;
use App\Models\CompanyLedger;
2020-08-06 05:04:09 +02:00
use App\Models\Document;
use App\Transformers\ActivityTransformer;
use App\Transformers\ClientGatewayTokenTransformer;
use App\Transformers\CompanyLedgerTransformer;
2020-08-06 05:04:09 +02:00
use App\Transformers\DocumentTransformer;
2019-04-03 02:09:22 +02:00
use App\Utils\Traits\MakesHash;
2019-03-28 22:35:35 +01:00
/**
* class ClientTransformer
2019-03-28 22:35:35 +01:00
*/
class ClientTransformer extends EntityTransformer
{
2019-04-03 02:09:22 +02:00
use MakesHash;
2019-03-28 22:35:35 +01:00
protected $defaultIncludes = [
'contacts',
2020-08-06 05:04:09 +02:00
'documents',
'gateway_tokens',
2019-03-28 22:35:35 +01:00
];
/**
* @var array
*/
protected $availableIncludes = [
2020-08-06 05:04:09 +02:00
'documents',
'gateway_tokens',
'activities',
'ledger',
2019-03-28 22:35:35 +01:00
];
/**
* @param Client $client
*
* @return \League\Fractal\Resource\Collection
*/
public function includeActivities(Client $client)
{
$transformer = new ActivityTransformer($this->serializer);
return $this->includeCollection($client->activities, $transformer, Activity::class);
}
2020-08-06 05:04:09 +02:00
public function includeDocuments(Client $client)
{
$transformer = new DocumentTransformer($this->serializer);
return $this->includeCollection($client->documents, $transformer, Document::class);
}
2019-03-28 22:35:35 +01:00
/**
* @param Client $client
*
* @return \League\Fractal\Resource\Collection
*/
public function includeContacts(Client $client)
{
$transformer = new ClientContactTransformer($this->serializer);
return $this->includeCollection($client->contacts, $transformer, ClientContact::class);
}
public function includeGatewayTokens(Client $client)
{
$transformer = new ClientGatewayTokenTransformer($this->serializer);
2019-03-28 22:35:35 +01:00
return $this->includeCollection($client->gateway_tokens, $transformer, ClientGatewayToken::class);
}
public function includeLedger(Client $client)
{
$transformer = new CompanyLedgerTransformer($this->serializer);
return $this->includeCollection($client->ledger, $transformer, CompanyLedger::class);
}
2019-03-28 22:35:35 +01:00
/**
* @param Client $client
*
* @return array
*/
public function transform(Client $client)
{
return [
2019-04-03 02:09:22 +02:00
'id' => $this->encodePrimaryKey($client->id),
'user_id' => $this->encodePrimaryKey($client->user_id),
'assigned_user_id' => $this->encodePrimaryKey($client->assigned_user_id),
2019-03-28 22:35:35 +01:00
'name' => $client->name ?: '',
2019-03-29 05:14:58 +01:00
'website' => $client->website ?: '',
'private_notes' => $client->private_notes ?: '',
2019-10-02 10:38:33 +02:00
'balance' => (float) $client->balance,
'group_settings_id' => isset($client->group_settings_id) ? (string)$this->encodePrimaryKey($client->group_settings_id) : '',
2019-10-02 10:38:33 +02:00
'paid_to_date' => (float) $client->paid_to_date,
'credit_balance' => (float) $client->credit_balance,
2019-10-04 13:01:52 +02:00
'last_login' => (int)$client->last_login,
2020-02-26 06:29:17 +01:00
'size_id' => (string)$client->size_id,
2020-02-26 07:46:27 +01:00
'public_notes' => $client->public_notes ?: '',
// 'currency_id' => (string)$client->currency_id,
2019-03-29 05:14:58 +01:00
'address1' => $client->address1 ?: '',
'address2' => $client->address2 ?: '',
'phone' => $client->phone ?: '',
2019-03-29 05:14:58 +01:00
'city' => $client->city ?: '',
'state' => $client->state ?: '',
'postal_code' => $client->postal_code ?: '',
'country_id' => (string)$client->country_id ?: '',
'industry_id' => (string)$client->industry_id ?: '',
2019-03-29 05:14:58 +01:00
'custom_value1' => $client->custom_value1 ?: '',
'custom_value2' => $client->custom_value2 ?: '',
'custom_value3' => $client->custom_value3 ?: '',
'custom_value4' => $client->custom_value4 ?: '',
'shipping_address1' => $client->shipping_address1 ?: '',
'shipping_address2' => $client->shipping_address2 ?: '',
'shipping_city' => $client->shipping_city ?: '',
'shipping_state' => $client->shipping_state ?: '',
'shipping_postal_code' => $client->shipping_postal_code ?: '',
'shipping_country_id' => (string)$client->shipping_country_id ?: '',
'settings' => $client->settings ?: new \stdClass,
2019-10-02 10:38:33 +02:00
'is_deleted' => (bool) $client->is_deleted,
2019-03-29 05:14:58 +01:00
'vat_number' => $client->vat_number ?: '',
'id_number' => $client->id_number ?: '',
'updated_at' => (int)$client->updated_at,
'archived_at' => (int)$client->deleted_at,
2020-02-27 00:32:44 +01:00
'created_at' => (int)$client->created_at,
2020-02-06 13:30:50 +01:00
'display_name' => $client->present()->name()
2019-03-28 22:35:35 +01:00
];
}
}