1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00
invoiceninja/app/Ninja/Transformers/ClientTransformer.php
2018-08-03 10:09:09 +03:00

176 lines
7.7 KiB
PHP

<?php
namespace App\Ninja\Transformers;
use App\Models\Client;
/**
* @SWG\Definition(definition="Client", @SWG\Xml(name="Client"))
*/
class ClientTransformer extends EntityTransformer
{
/**
* @SWG\Property(property="id", type="integer", example=1, readOnly=true)
* @SWG\Property(property="balance", type="number", format="float", example=10, readOnly=true)
* @SWG\Property(property="paid_to_date", type="number", format="float", example=10, readOnly=true)
* @SWG\Property(property="user_id", type="integer", example=1)
* @SWG\Property(property="account_key", type="string", example="123456")
* @SWG\Property(property="updated_at", type="integer", example=1451160233, readOnly=true)
* @SWG\Property(property="archived_at", type="integer", example=1451160233, readOnly=true)
* @SWG\Property(property="address1", type="string", example="10 Main St.")
* @SWG\Property(property="address2", type="string", example="1st Floor")
* @SWG\Property(property="city", type="string", example="New York")
* @SWG\Property(property="state", type="string", example="NY")
* @SWG\Property(property="postal_code", type="string", example=10010)
* @SWG\Property(property="country_id", type="integer", example=840)
* @SWG\Property(property="work_phone", type="string", example="(212) 555-1212")
* @SWG\Property(property="private_notes", type="string", example="Notes...")
* @SWG\Property(property="public_notes", type="string", example="Notes...")
* @SWG\Property(property="last_login", type="string", format="date-time", example="2016-01-01 12:10:00")
* @SWG\Property(property="website", type="string", example="http://www.example.com")
* @SWG\Property(property="industry_id", type="integer", example=1)
* @SWG\Property(property="size_id", type="integer", example=1)
* @SWG\Property(property="is_deleted", type="boolean", example=false)
* @SWG\Property(property="payment_terms", type="integer", example=30)
* @SWG\Property(property="custom_value1", type="string", example="Value")
* @SWG\Property(property="custom_value2", type="string", example="Value")
* @SWG\Property(property="vat_number", type="string", example="123456")
* @SWG\Property(property="id_number", type="string", example="123456")
* @SWG\Property(property="language_id", type="integer", example=1)
* @SWG\Property(property="task_rate", type="number", format="float", example=10)
* @SWG\Property(property="shipping_address1", type="string", example="10 Main St.")
* @SWG\Property(property="shipping_address2", type="string", example="1st Floor")
* @SWG\Property(property="shipping_city", type="string", example="New York")
* @SWG\Property(property="shipping_state", type="string", example="NY")
* @SWG\Property(property="shipping_postal_code", type="string", example=10010)
* @SWG\Property(property="shipping_country_id", type="integer", example=840)
* @SWG\Property(property="show_tasks_in_portal", type="boolean", example=false)
* @SWG\Property(property="send_reminders", type="boolean", example=false)
* @SWG\Property(property="credit_number_counter", type="integer", example=1)
*/
protected $defaultIncludes = [
'contacts',
];
/**
* @var array
*/
protected $availableIncludes = [
'invoices',
'credits',
'activities',
];
/**
* @param Client $client
*
* @return \League\Fractal\Resource\Collection
*/
public function includeActivities(Client $client)
{
$transformer = new ActivityTransformer($this->account, $this->serializer);
return $this->includeCollection($client->activities, $transformer, ENTITY_ACTIVITY);
}
/**
* @param Client $client
*
* @return \League\Fractal\Resource\Collection
*/
public function includeContacts(Client $client)
{
$transformer = new ContactTransformer($this->account, $this->serializer);
return $this->includeCollection($client->contacts, $transformer, ENTITY_CONTACT);
}
/**
* @param Client $client
*
* @return \League\Fractal\Resource\Collection
*/
public function includeInvoices(Client $client)
{
$transformer = new InvoiceTransformer($this->account, $this->serializer, $client);
return $this->includeCollection($client->invoices, $transformer, ENTITY_INVOICE);
}
/**
* @param Client $client
*
* @return \League\Fractal\Resource\Collection
*/
public function includeCredits(Client $client)
{
$transformer = new CreditTransformer($this->account, $this->serializer);
return $this->includeCollection($client->credits, $transformer, ENTITY_CREDIT);
}
/**
* @param Client $client
*
* @return \League\Fractal\Resource\Collection
*/
public function includeExpenses(Client $client)
{
$transformer = new ExpenseTransformer($this->account, $this->serializer);
return $this->includeCollection($client->expenses, $transformer, ENTITY_EXPENSE);
}
/**
* @param Client $client
*
* @return array
*/
public function transform(Client $client)
{
return array_merge($this->getDefaults($client), [
'id' => (int) $client->public_id,
'name' => $client->name ?: '',
'display_name' => $client->getDisplayName() ?: '',
'balance' => (float) ($client->balance ?: 0.0),
'paid_to_date' => (float) ($client->paid_to_date ?: 0.0),
'updated_at' => $this->getTimestamp($client->updated_at),
'archived_at' => $this->getTimestamp($client->deleted_at),
'address1' => $client->address1 ?: '',
'address2' => $client->address2 ?: '',
'city' => $client->city ?: '',
'state' => $client->state ?: '',
'postal_code' => $client->postal_code ?: '',
'country_id' => (int) ($client->country_id ?: 0),
'work_phone' => $client->work_phone ?: '',
'private_notes' => $client->private_notes ?: '',
'public_notes' => $client->public_notes ?: '',
'last_login' => $client->last_login ?: '',
'website' => $client->website ?: '',
'industry_id' => (int) ($client->industry_id ?: 0),
'size_id' => (int) ($client->size_id ?: 0),
'is_deleted' => (bool) $client->is_deleted,
'payment_terms' => (int) ($client->payment_terms ?: 0),
'vat_number' => $client->vat_number ?: '',
'id_number' => $client->id_number ?: '',
'language_id' => (int) ($client->language_id ?: 0),
'currency_id' => (int) ($client->currency_id ?: 0),
'custom_value1' => $client->custom_value1 ?: '',
'custom_value2' => $client->custom_value2 ?: '',
'invoice_number_counter' => (int) ($client->invoice_number_counter ?: 0),
'quote_number_counter' => (int) ($client->quote_number_counter ?: 0),
'task_rate' => (float) $client->task_rate,
'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' => (int) ($client->shipping_country_id ?: 0),
'show_tasks_in_portal' => (bool) $client->show_tasks_in_portal,
'send_reminders' => (bool) $client->send_reminders,
'credit_number_counter' => (int) ($client->credit_number_counter ?: 0),
'custom_messages' => json_encode($client->custom_messages),
]);
}
}