invoiceninja/app/Transformers/AccountTransformer.php

117 lines
4.1 KiB
PHP
Raw Normal View History

2019-03-27 15:50:13 +11:00
<?php
2019-05-11 13:32:07 +10:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 13:32:07 +10:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 13:20:41 +10:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 13:32:07 +10:00
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 13:32:07 +10:00
*/
2019-03-27 15:50:13 +11:00
2019-03-28 13:36:36 +11:00
namespace App\Transformers;
2019-03-27 15:50:13 +11:00
use App\Models\Account;
2019-04-18 21:57:22 +10:00
use App\Models\Company;
use App\Models\CompanyUser;
2019-04-18 21:57:22 +10:00
use App\Models\User;
2021-06-08 21:45:23 +10:00
use App\Utils\Ninja;
2019-04-03 11:09:22 +11:00
use App\Utils\Traits\MakesHash;
2019-03-27 15:50:13 +11:00
/**
* Class AccountTransformer.
*/
class AccountTransformer extends EntityTransformer
{
2019-04-03 11:09:22 +11:00
use MakesHash;
2019-03-27 15:50:13 +11:00
/**
* @var array
*/
protected $defaultIncludes = [
//'default_company',
2019-09-12 22:02:25 +10:00
//'user',
//'company_users'
2019-03-27 15:50:13 +11:00
];
/**
* @var array
*/
protected $availableIncludes = [
'default_company',
'company_users',
'companies',
2019-03-27 15:50:13 +11:00
];
/**
* @param Account $account
*
*
* @return array
*/
public function transform(Account $account)
{
return [
'id' => (string) $this->encodePrimaryKey($account->id),
'default_url' => config('ninja.app_url'),
2019-09-18 22:43:37 +10:00
'plan' => $account->getPlan(),
'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 11:13:39 +11:00
'latest_version' => (string) trim($account->latest_version),
'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 15:41:43 +11:00
'debug_enabled' => (bool) config('ninja.debug_enabled'),
'is_docker' => (bool) config('ninja.is_docker'),
'is_scheduler_running' => Ninja::isHosted() ? (bool) true : (bool) $account->is_scheduler_running, //force true for hosted 03/01/2022
'default_company_id' => (string) $this->encodePrimaryKey($account->default_company_id),
2021-03-17 08:08:23 +11:00
'disable_auto_update' => (bool) config('ninja.disable_auto_update'),
2021-08-10 11:40:58 +10:00
'emails_sent' => (int) $account->emailsSent(),
'email_quota' => (int) $account->getDailyEmailLimit(),
2021-11-11 05:54:59 +11:00
'is_migrated' => (bool) $account->is_migrated,
2022-01-28 10:06:07 +11:00
'hosted_client_count' => (int) $account->hosted_client_count,
'hosted_company_count' => (int) $account->hosted_company_count,
'is_hosted' => (bool) Ninja::isHosted(),
2022-07-11 10:42:05 +10:00
'set_react_as_default_ap' => (bool) $account->set_react_as_default_ap,
'trial_days_left' => Ninja::isHosted() ? (int) $account->getTrialDays() : 0,
2022-07-27 11:21:12 +10:00
'account_sms_verified' => (bool) $account->account_sms_verified,
2019-03-27 15:50:13 +11:00
];
}
public function includeCompanyUsers(Account $account)
{
$transformer = new CompanyUserTransformer($this->serializer);
return $this->includeCollection($account->company_users, $transformer, CompanyUser::class);
2019-03-27 15:50:13 +11:00
}
public function includeDefaultCompany(Account $account)
{
$transformer = new CompanyTransformer($this->serializer);
return $this->includeItem($account->default_company, $transformer, Company::class);
}
2019-04-18 21:57:22 +10:00
public function includeUser(Account $account)
{
$transformer = new UserTransformer($this->serializer);
2019-09-12 21:46:09 +10:00
return $this->includeItem(auth()->user(), $transformer, User::class);
2019-04-18 21:57:22 +10:00
}
2019-03-27 15:50:13 +11:00
}