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

141 lines
5.6 KiB
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Ninja\Transformers;
2015-11-03 15:21:17 +01:00
use App\Models\Client;
2015-11-08 22:57:28 +01:00
/**
* @SWG\Definition(definition="Client", @SWG\Xml(name="Client"))
*/
2015-11-08 22:12:50 +01:00
class ClientTransformer extends EntityTransformer
2015-11-03 15:21:17 +01:00
{
2015-11-08 22:57:28 +01:00
/**
2017-01-30 20:40:43 +01:00
* @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)
2017-01-30 20:40:43 +01:00
* @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)
2017-01-30 20:40:43 +01:00
* @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...")
2017-05-16 15:00:56 +02:00
* @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")
2017-01-30 20:40:43 +01: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)
2017-01-30 20:40:43 +01:00
* @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)
*/
2016-02-16 16:30:09 +01:00
protected $defaultIncludes = [
2015-11-27 13:55:28 +01:00
'contacts',
2016-02-16 16:30:09 +01:00
];
/**
* @var array
*/
2016-02-16 16:30:09 +01:00
protected $availableIncludes = [
2015-11-27 13:55:28 +01:00
'invoices',
2016-02-03 04:21:13 +01:00
'credits',
2015-11-03 15:21:17 +01:00
];
/**
* @param Client $client
2017-01-30 20:40:43 +01:00
*
* @return \League\Fractal\Resource\Collection
*/
2015-11-08 22:12:50 +01:00
public function includeContacts(Client $client)
2015-11-03 15:21:17 +01:00
{
2015-11-27 13:55:28 +01:00
$transformer = new ContactTransformer($this->account, $this->serializer);
2017-01-30 20:40:43 +01:00
2015-11-27 13:55:28 +01:00
return $this->includeCollection($client->contacts, $transformer, ENTITY_CONTACT);
2015-11-03 15:21:17 +01:00
}
/**
* @param Client $client
2017-01-30 20:40:43 +01:00
*
* @return \League\Fractal\Resource\Collection
*/
2015-11-08 22:12:50 +01:00
public function includeInvoices(Client $client)
2015-11-03 15:21:17 +01:00
{
2016-05-03 08:46:24 +02:00
$transformer = new InvoiceTransformer($this->account, $this->serializer, $client);
2017-01-30 20:40:43 +01:00
2015-12-27 12:08:58 +01:00
return $this->includeCollection($client->invoices, $transformer, ENTITY_INVOICE);
2015-11-03 15:21:17 +01:00
}
/**
* @param Client $client
2017-01-30 20:40:43 +01:00
*
* @return \League\Fractal\Resource\Collection
*/
2016-02-03 04:21:13 +01:00
public function includeCredits(Client $client)
{
$transformer = new CreditTransformer($this->account, $this->serializer);
2017-01-30 20:40:43 +01:00
2016-02-03 04:21:13 +01:00
return $this->includeCollection($client->credits, $transformer, ENTITY_CREDIT);
}
/**
* @param Client $client
2017-01-30 20:40:43 +01:00
*
* @return \League\Fractal\Resource\Collection
*/
2016-02-17 09:10:33 +01:00
public function includeExpenses(Client $client)
{
$transformer = new ExpenseTransformer($this->account, $this->serializer);
2017-01-30 20:40:43 +01:00
2016-02-17 09:10:33 +01:00
return $this->includeCollection($client->expenses, $transformer, ENTITY_EXPENSE);
}
/**
* @param Client $client
2017-01-30 20:40:43 +01:00
*
* @return array
*/
2015-11-03 15:21:17 +01:00
public function transform(Client $client)
{
2016-05-03 22:02:29 +02:00
return array_merge($this->getDefaults($client), [
2015-11-15 11:43:32 +01:00
'id' => (int) $client->public_id,
2015-11-03 15:21:17 +01:00
'name' => $client->name,
'balance' => (float) $client->balance,
'paid_to_date' => (float) $client->paid_to_date,
2015-12-27 12:08:58 +01:00
'updated_at' => $this->getTimestamp($client->updated_at),
'archived_at' => $this->getTimestamp($client->deleted_at),
2015-11-07 13:15:37 +01:00
'address1' => $client->address1,
'address2' => $client->address2,
'city' => $client->city,
'state' => $client->state,
'postal_code' => $client->postal_code,
'country_id' => (int) $client->country_id,
'work_phone' => $client->work_phone,
'private_notes' => $client->private_notes,
2017-05-16 15:00:56 +02:00
'public_notes' => $client->public_notes,
2015-11-07 13:15:37 +01:00
'last_login' => $client->last_login,
'website' => $client->website,
'industry_id' => (int) $client->industry_id,
'size_id' => (int) $client->size_id,
'is_deleted' => (bool) $client->is_deleted,
'payment_terms' => (int) $client->payment_terms,
'vat_number' => $client->vat_number,
'id_number' => $client->id_number,
'language_id' => (int) $client->language_id,
2016-02-16 16:30:09 +01:00
'currency_id' => (int) $client->currency_id,
'custom_value1' => $client->custom_value1,
'custom_value2' => $client->custom_value2,
2017-03-29 10:46:52 +02:00
'invoice_number_counter' => (int) $client->invoice_number_counter,
'quote_number_counter' => (int) $client->quote_number_counter,
2016-05-03 22:02:29 +02:00
]);
2015-11-03 15:21:17 +01:00
}
2017-01-30 17:05:31 +01:00
}