1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Transformers/ClientTransformer.php

152 lines
5.1 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).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 05:32:07 +02:00
*/
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;
2020-08-24 04:45:53 +02:00
use App\Models\SystemLog;
2019-04-03 02:09:22 +02:00
use App\Utils\Traits\MakesHash;
2020-10-28 11:10:49 +01:00
use League\Fractal\Resource\Collection;
use stdClass;
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 = [
'activities',
'ledger',
2020-08-24 04:45:53 +02:00
'system_logs',
2019-03-28 22:35:35 +01:00
];
/**
* @param Client $client
*
2020-10-28 11:10:49 +01:00
* @return 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
*
2020-10-28 11:10:49 +01:00
* @return Collection
2019-03-28 22:35:35 +01:00
*/
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);
}
2020-08-24 04:45:53 +02:00
public function includeSystemLogs(Client $client)
{
$transformer = new SystemLogTransformer($this->serializer);
return $this->includeCollection($client->system_logs, $transformer, SystemLog::class);
}
2019-03-28 22:35:35 +01:00
/**
* @param Client $client
*
* @return array
2020-10-28 11:10:49 +01:00
* @throws \Laracasts\Presenter\Exceptions\PresenterException
2019-03-28 22:35:35 +01:00
*/
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,
'last_login' => (int) $client->last_login,
'size_id' => (string) $client->size_id,
2020-02-26 07:46:27 +01:00
'public_notes' => $client->public_notes ?: '',
2020-09-08 23:37:07 +02:00
'client_hash' => (string)$client->client_hash,
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 ?: '',
2020-10-28 11:10:49 +01:00
'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,
'created_at' => (int) $client->created_at,
'display_name' => $client->present()->name(),
2021-01-25 11:34:12 +01:00
'number' => (string) $client->number ?: '',
2019-03-28 22:35:35 +01:00
];
}
}