mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
77 lines
1.6 KiB
PHP
77 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Transformers;
|
|
|
|
use App\Models\Account;
|
|
use App\Models\Company;
|
|
use App\Models\Payment;
|
|
use App\Models\User;
|
|
use App\Transformers\CompanyTransformer;
|
|
use App\Transformers\UserTransformer;
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
/**
|
|
* Class AccountTransformer.
|
|
*/
|
|
class AccountTransformer extends EntityTransformer
|
|
{
|
|
use MakesHash;
|
|
/**
|
|
* @SWG\Property(property="account_key", type="string", example="123456")
|
|
*/
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $defaultIncludes = [
|
|
'default_company',
|
|
'user',
|
|
];
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $availableIncludes = [
|
|
'default_company',
|
|
];
|
|
|
|
|
|
/**
|
|
* @param Account $account
|
|
*
|
|
* @throws \Laracasts\Presenter\Exceptions\PresenterException
|
|
*
|
|
* @return array
|
|
*/
|
|
public function transform(Account $account)
|
|
{
|
|
return [
|
|
'id' => $this->encodePrimaryKey($account->id),
|
|
];
|
|
}
|
|
|
|
public function includeDefaultCompany(Account $account)
|
|
{
|
|
$transformer = new CompanyTransformer($this->serializer);
|
|
|
|
return $this->includeItem($account->default_company, $transformer, Company::class);
|
|
}
|
|
|
|
public function includeUser(Account $account)
|
|
{
|
|
$transformer = new UserTransformer($this->serializer);
|
|
|
|
return $this->includeItem($account->default_company->owner(), $transformer, User::class);
|
|
|
|
}
|
|
}
|