2019-03-27 05:50:13 +01:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @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-27 05:50:13 +01:00
|
|
|
|
2019-03-28 03:36:36 +01:00
|
|
|
namespace App\Transformers;
|
2019-03-27 05:50:13 +01:00
|
|
|
|
2019-03-28 03:36:36 +01:00
|
|
|
use App\Models\Account;
|
2019-11-27 10:47:59 +01:00
|
|
|
use App\Models\Activity;
|
2019-03-28 03:36:36 +01:00
|
|
|
use App\Models\Client;
|
2019-04-03 03:17:21 +02:00
|
|
|
use App\Models\Company;
|
2019-10-17 13:49:09 +02:00
|
|
|
use App\Models\CompanyGateway;
|
2019-06-24 02:13:53 +02:00
|
|
|
use App\Models\CompanyUser;
|
2020-01-20 02:31:58 +01:00
|
|
|
use App\Models\Expense;
|
2019-09-22 12:41:43 +02:00
|
|
|
use App\Models\GroupSetting;
|
2019-12-25 13:22:10 +01:00
|
|
|
use App\Models\Payment;
|
|
|
|
use App\Models\Product;
|
2020-01-21 01:32:34 +01:00
|
|
|
use App\Models\Project;
|
2019-12-26 23:49:47 +01:00
|
|
|
use App\Models\Quote;
|
2020-01-21 01:32:34 +01:00
|
|
|
use App\Models\Task;
|
2019-11-06 23:57:09 +01:00
|
|
|
use App\Models\TaxRate;
|
2019-03-28 03:36:36 +01:00
|
|
|
use App\Models\User;
|
2020-01-21 10:13:16 +01:00
|
|
|
use App\Transformers\TaskTransformer;
|
2019-03-27 05:50:13 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
|
|
|
|
/**
|
2019-12-26 23:49:47 +01:00
|
|
|
* Class CompanyTransformer.
|
2019-03-27 05:50:13 +01:00
|
|
|
*/
|
|
|
|
class CompanyTransformer extends EntityTransformer
|
|
|
|
{
|
2019-04-03 03:17:21 +02:00
|
|
|
use MakesHash;
|
2019-03-27 05:50:13 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $defaultIncludes = [
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $availableIncludes = [
|
|
|
|
'users',
|
|
|
|
'account',
|
|
|
|
'clients',
|
|
|
|
'contacts',
|
|
|
|
'invoices',
|
|
|
|
'tax_rates',
|
|
|
|
'products',
|
|
|
|
'country',
|
|
|
|
'timezone',
|
|
|
|
'language',
|
|
|
|
'expenses',
|
2020-01-20 02:31:58 +01:00
|
|
|
'vendors',
|
2019-03-27 05:50:13 +01:00
|
|
|
'payments',
|
2019-09-11 01:31:55 +02:00
|
|
|
'company_user',
|
2019-10-17 13:49:09 +02:00
|
|
|
'groups',
|
|
|
|
'company_gateways',
|
2019-12-26 23:49:47 +01:00
|
|
|
'activities',
|
|
|
|
'quotes',
|
2020-01-21 01:32:34 +01:00
|
|
|
'projects',
|
|
|
|
'tasks',
|
2019-03-27 05:50:13 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Company $company
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function transform(Company $company)
|
|
|
|
{
|
2019-11-21 09:38:57 +01:00
|
|
|
$std = new \stdClass;
|
|
|
|
|
2019-03-27 05:50:13 +01:00
|
|
|
return [
|
2019-10-03 07:42:58 +02:00
|
|
|
'id' => (string)$this->encodePrimaryKey($company->id),
|
|
|
|
'company_key' => (string)$company->company_key ?: '',
|
2019-10-29 03:55:26 +01:00
|
|
|
'update_products' => (bool)$company->update_products,
|
|
|
|
'fill_products' => (bool)$company->fill_products,
|
|
|
|
'convert_products' => (bool)$company->convert_products,
|
2019-11-06 23:57:09 +01:00
|
|
|
'custom_surcharge_taxes1' => (bool)$company->custom_surcharge_taxes1,
|
|
|
|
'custom_surcharge_taxes2' => (bool)$company->custom_surcharge_taxes2,
|
|
|
|
'custom_surcharge_taxes3' => (bool)$company->custom_surcharge_taxes3,
|
|
|
|
'custom_surcharge_taxes4' => (bool)$company->custom_surcharge_taxes4,
|
2019-11-22 22:10:53 +01:00
|
|
|
'show_product_cost' => (bool)$company->show_product_cost,
|
|
|
|
'enable_invoice_quantity' => (bool)$company->enable_invoice_quantity,
|
2019-11-10 22:12:21 +01:00
|
|
|
'enable_product_cost' => (bool)$company->enable_product_cost,
|
2019-12-05 21:41:13 +01:00
|
|
|
'show_product_details' => (bool)$company->show_product_details,
|
2019-11-10 22:12:21 +01:00
|
|
|
'enable_product_quantity' => (bool)$company->enable_product_quantity,
|
|
|
|
'default_quantity' => (bool)$company->default_quantity,
|
2019-11-21 09:38:57 +01:00
|
|
|
'custom_fields' => $company->custom_fields ?: $std,
|
2019-09-27 00:14:02 +02:00
|
|
|
'size_id' => (string) $company->size_id ?: '',
|
|
|
|
'industry_id' => (string) $company->industry_id ?: '',
|
2019-10-29 03:55:26 +01:00
|
|
|
'first_month_of_year' => (string) $company->first_month_of_year ?: '',
|
|
|
|
'first_day_of_week' => (string) $company->first_day_of_week ?: '',
|
2019-12-10 21:53:41 +01:00
|
|
|
'subdomain' => (string) $company->subdomain ?: '',
|
2019-11-22 22:10:53 +01:00
|
|
|
'portal_mode' => (string) $company->portal_mode ?: '',
|
|
|
|
'portal_domain' => (string) $company->portal_domain ?: '',
|
2019-09-27 00:14:02 +02:00
|
|
|
'settings' => $company->settings ?: '',
|
2019-11-22 22:10:53 +01:00
|
|
|
'enabled_tax_rates' => (int)$company->enabled_tax_rates,
|
2019-10-03 07:42:58 +02:00
|
|
|
'updated_at' => (int)$company->updated_at,
|
2020-01-07 01:13:47 +01:00
|
|
|
'archived_at' => (int)$company->deleted_at,
|
2019-03-27 05:50:13 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-06-24 02:13:53 +02:00
|
|
|
public function includeCompanyUser(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new CompanyUserTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeItem($company->company_users->where('user_id', auth()->user()->id)->first(), $transformer, CompanyUser::class);
|
|
|
|
}
|
2019-03-27 05:50:13 +01:00
|
|
|
|
2019-11-27 10:47:59 +01:00
|
|
|
public function includeActivities(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new ActivityTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($company->activities, $transformer, Activity::class);
|
|
|
|
}
|
|
|
|
|
2019-03-28 03:36:36 +01:00
|
|
|
public function includeUsers(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new UserTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($company->users, $transformer, User::class);
|
|
|
|
}
|
|
|
|
|
2019-10-17 13:49:09 +02:00
|
|
|
public function includeCompanyGateways(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new CompanyGatewayTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($company->company_gateways, $transformer, CompanyGateway::class);
|
|
|
|
}
|
|
|
|
|
2019-03-28 03:36:36 +01:00
|
|
|
public function includeClients(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new ClientTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($company->clients, $transformer, Client::class);
|
|
|
|
}
|
|
|
|
|
2020-01-21 01:32:34 +01:00
|
|
|
public function includeProjects(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new ProjectTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($company->projects, $transformer, Project::class);
|
|
|
|
}
|
|
|
|
|
2020-01-21 10:13:16 +01:00
|
|
|
public function includeTasks(Company $company)
|
2020-01-21 01:32:34 +01:00
|
|
|
{
|
|
|
|
$transformer = new TaskTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($company->tasks, $transformer, Task::class);
|
|
|
|
}
|
|
|
|
|
2020-01-20 02:31:58 +01:00
|
|
|
public function includeExpenses(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new ExpenseTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($company->expenses, $transformer, Expense::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function includeVendors(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new VendorTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($company->vendors, $transformer, Vendor::class);
|
|
|
|
}
|
|
|
|
|
2019-09-22 12:41:43 +02:00
|
|
|
public function includeGroups(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new GroupSettingTransformer($this->serializer);
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
return $this->includeCollection($company->groups, $transformer, GroupSetting::class);
|
2019-09-22 12:41:43 +02:00
|
|
|
}
|
|
|
|
|
2019-03-28 03:36:36 +01:00
|
|
|
public function includeInvoices(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new InvoiceTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($company->invoices, $transformer, Invoice::class);
|
|
|
|
}
|
|
|
|
|
2019-12-26 23:49:47 +01:00
|
|
|
public function includeQuotes(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new QuoteTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($company->quotes, $transformer, Quote::class);
|
|
|
|
}
|
|
|
|
|
2019-03-28 03:36:36 +01:00
|
|
|
public function includeAccount(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new AccountTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeItem($company->account, $transformer, Account::class);
|
|
|
|
}
|
2019-11-06 23:57:09 +01:00
|
|
|
|
|
|
|
public function includeTaxRates(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new TaxRateTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($company->tax_rates, $transformer, TaxRate::class);
|
|
|
|
}
|
2019-12-25 13:22:10 +01:00
|
|
|
|
|
|
|
public function includeProducts(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new ProductTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($company->products, $transformer, Product::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function includePayments(Company $company)
|
|
|
|
{
|
|
|
|
$transformer = new PaymentTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($company->payments, $transformer, Payment::class);
|
|
|
|
}
|
2019-03-27 05:50:13 +01:00
|
|
|
}
|