mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
0ff14c97fd
* Tests for client contact passwords * test for client API * Client Tests for password quality * Final tests for client contact password * Implement feature permissions * Minor fixes
54 lines
1.6 KiB
PHP
54 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Transformers;
|
|
|
|
use App\Models\ClientContact;
|
|
use App\Utils\Traits\MakesHash;
|
|
|
|
/**
|
|
* Class ContactTransformer.
|
|
*
|
|
*/
|
|
class ClientContactTransformer extends EntityTransformer
|
|
{
|
|
use MakesHash;
|
|
/**
|
|
* @param ClientContact $contact
|
|
*
|
|
* @return array
|
|
*
|
|
*/
|
|
public function transform(ClientContact $contact)
|
|
{
|
|
return [
|
|
'id' => $this->encodePrimaryKey($contact->id),
|
|
'first_name' => $contact->first_name ?: '',
|
|
'last_name' => $contact->last_name ?: '',
|
|
'email' => $contact->email ?: '',
|
|
'created_at' => (int)$contact->created_at,
|
|
'updated_at' => (int)$contact->updated_at,
|
|
'archived_at' => (int)$contact->deleted_at,
|
|
'is_primary' => (bool) $contact->is_primary,
|
|
'is_locked' => (bool) $contact->is_locked,
|
|
'phone' => $contact->phone ?: '',
|
|
'custom_value1' => $contact->custom_value1 ?: '',
|
|
'custom_value2' => $contact->custom_value2 ?: '',
|
|
'custom_value3' => $contact->custom_value3 ?: '',
|
|
'custom_value4' => $contact->custom_value4 ?: '',
|
|
'contact_key' => $contact->contact_key ?: '',
|
|
'send_email' => (bool) $contact->send_email,
|
|
'last_login' => (int)$contact->last_login,
|
|
'password' => isset($contact->password) ? '*****' : '',
|
|
];
|
|
}
|
|
}
|