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
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @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-03-27 05:50:13 +01:00
|
|
|
use App\Models\Payment;
|
2019-04-18 13:57:22 +02:00
|
|
|
use App\Models\User;
|
|
|
|
use App\Transformers\CompanyTransformer;
|
|
|
|
use App\Transformers\UserTransformer;
|
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
|
|
|
/**
|
|
|
|
* @SWG\Property(property="account_key", type="string", example="123456")
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $defaultIncludes = [
|
2019-04-18 13:57:22 +02:00
|
|
|
'default_company',
|
|
|
|
'user',
|
2019-03-27 05:50:13 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $availableIncludes = [
|
|
|
|
'default_company',
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Account $account
|
|
|
|
*
|
|
|
|
* @throws \Laracasts\Presenter\Exceptions\PresenterException
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function transform(Account $account)
|
|
|
|
{
|
|
|
|
return [
|
2019-04-03 02:09:22 +02:00
|
|
|
'id' => $this->encodePrimaryKey($account->id),
|
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);
|
|
|
|
|
|
|
|
return $this->includeItem($account->default_company->owner(), $transformer, User::class);
|
|
|
|
|
|
|
|
}
|
2019-03-27 05:50:13 +01:00
|
|
|
}
|