2019-03-27 05:50:13 +01:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. 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
|
|
|
|
|
|
|
use App\Models\Account;
|
2019-04-18 13:57:22 +02:00
|
|
|
use App\Models\Company;
|
2019-06-25 05:55:02 +02:00
|
|
|
use App\Models\CompanyUser;
|
2019-04-18 13:57:22 +02:00
|
|
|
use App\Models\User;
|
2019-04-03 02:09:22 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-03-27 05:50:13 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class AccountTransformer.
|
|
|
|
*/
|
|
|
|
class AccountTransformer extends EntityTransformer
|
|
|
|
{
|
2019-04-03 02:09:22 +02:00
|
|
|
use MakesHash;
|
2019-03-27 05:50:13 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $defaultIncludes = [
|
2019-06-25 05:55:02 +02:00
|
|
|
//'default_company',
|
2019-09-12 14:02:25 +02:00
|
|
|
//'user',
|
|
|
|
//'company_users'
|
2019-03-27 05:50:13 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $availableIncludes = [
|
|
|
|
'default_company',
|
2019-06-25 05:55:02 +02:00
|
|
|
'company_users',
|
|
|
|
'companies',
|
2019-03-27 05:50:13 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Account $account
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function transform(Account $account)
|
|
|
|
{
|
|
|
|
return [
|
2020-09-06 11:38:10 +02:00
|
|
|
'id' => (string) $this->encodePrimaryKey($account->id),
|
2020-03-16 11:12:10 +01:00
|
|
|
'default_url' => config('ninja.app_url'),
|
2019-09-18 14:43:37 +02:00
|
|
|
'plan' => $account->getPlan(),
|
2020-03-25 03:50:08 +01:00
|
|
|
'plan_term' => (string) $account->plan_terms,
|
|
|
|
'plan_started' => (string) $account->plan_started,
|
|
|
|
'plan_paid' => (string) $account->plan_paid,
|
|
|
|
'plan_expires' => (string) $account->plan_expires,
|
|
|
|
'user_agent' => (string) $account->user_agent,
|
|
|
|
'payment_id' => (string) $account->payment_id,
|
|
|
|
'trial_started' => (string) $account->trial_started,
|
|
|
|
'trial_plan' => (string) $account->trial_plan,
|
|
|
|
'plan_price' => (float) $account->plan_price,
|
|
|
|
'num_users' => (int) $account->num_users,
|
|
|
|
'utm_source' => (string) $account->utm_source,
|
|
|
|
'utm_medium' => (string) $account->utm_medium,
|
|
|
|
'utm_content' => (string) $account->utm_content,
|
|
|
|
'utm_term' => (string) $account->utm_term,
|
|
|
|
'referral_code' => (string) $account->referral_code,
|
2020-11-11 01:13:39 +01:00
|
|
|
'latest_version' => (string) trim($account->latest_version),
|
2020-09-06 11:38:10 +02:00
|
|
|
'current_version' => (string) config('ninja.app_version'),
|
|
|
|
'updated_at' => (int) $account->updated_at,
|
|
|
|
'archived_at' => (int) $account->deleted_at,
|
|
|
|
'report_errors' => (bool) $account->report_errors,
|
2021-01-05 05:41:43 +01:00
|
|
|
'debug_enabled' => (bool) config('ninja.debug_enabled'),
|
2021-01-18 21:40:54 +01:00
|
|
|
'is_docker' => (bool) config('ninja.is_docker'),
|
2021-01-23 05:52:54 +01:00
|
|
|
'is_scheduler_running' => (bool) $account->is_scheduler_running,
|
2021-02-25 01:09:06 +01:00
|
|
|
'default_company_id' => (string) $this->encodePrimaryKey($account->default_company_id),
|
2021-03-16 22:08:23 +01:00
|
|
|
'disable_auto_update' => (bool) config('ninja.disable_auto_update'),
|
2019-03-27 05:50:13 +01:00
|
|
|
];
|
2019-06-25 05:55:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function includeCompanyUsers(Account $account)
|
|
|
|
{
|
|
|
|
$transformer = new CompanyUserTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeCollection($account->company_users, $transformer, CompanyUser::class);
|
2019-03-27 05:50:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function includeDefaultCompany(Account $account)
|
|
|
|
{
|
|
|
|
$transformer = new CompanyTransformer($this->serializer);
|
|
|
|
|
|
|
|
return $this->includeItem($account->default_company, $transformer, Company::class);
|
|
|
|
}
|
2019-04-18 13:57:22 +02:00
|
|
|
|
|
|
|
public function includeUser(Account $account)
|
|
|
|
{
|
|
|
|
$transformer = new UserTransformer($this->serializer);
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-09-12 13:46:09 +02:00
|
|
|
return $this->includeItem(auth()->user(), $transformer, User::class);
|
2019-04-18 13:57:22 +02:00
|
|
|
|
2019-09-12 13:46:09 +02:00
|
|
|
// return $this->includeItem($account->default_company->owner(), $transformer, User::class);
|
2019-04-18 13:57:22 +02:00
|
|
|
}
|
2019-03-27 05:50:13 +01:00
|
|
|
}
|