1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Repositories/ClientContactRepository.php

99 lines
3.2 KiB
PHP
Raw Normal View History

<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 05:32:07 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 05:32:07 +02:00
*/
namespace App\Repositories;
use App\Factory\ClientContactFactory;
use App\Models\Client;
use App\Models\ClientContact;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str;
/**
* ClientContactRepository.
*/
class ClientContactRepository extends BaseRepository
{
2020-10-28 07:58:15 +01:00
public $is_primary;
2021-03-12 15:00:33 +01:00
public function save(array $data, Client $client) : void
{
if (isset($data['contacts'])) {
$contacts = collect($data['contacts']);
} else {
$contacts = collect();
}
$client->contacts->pluck('id')->diff($contacts->pluck('id'))->each(function ($contact) {
ClientContact::destroy($contact);
});
$this->is_primary = true;
2021-03-12 15:00:33 +01:00
/* Set first record to primary - always */
$contacts = $contacts->sortByDesc('is_primary')->map(function ($contact) {
$contact['is_primary'] = $this->is_primary;
$this->is_primary = false;
return $contact;
});
//loop and update/create contacts
$contacts->each(function ($contact) use ($client) {
$update_contact = null;
if (isset($contact['id'])) {
$update_contact = ClientContact::find($contact['id']);
}
if (! $update_contact) {
$update_contact = ClientContactFactory::create($client->company_id, $client->user_id);
}
2021-09-09 23:44:58 +02:00
//10-09-2021 - enforce the client->id and remove client_id from fillables
$update_contact->client_id = $client->id;
/* We need to set NULL email addresses to blank strings to pass authentication*/
if(array_key_exists('email', $contact) && is_null($contact['email']))
$contact['email'] = '';
$update_contact->fill($contact);
if (array_key_exists('password', $contact) && strlen($contact['password']) > 1) {
$update_contact->password = Hash::make($contact['password']);
$client->company->client_contacts()->where('email', $update_contact->email)->update(['password' => $update_contact->password]);
}
2021-09-12 07:29:30 +02:00
if(array_key_exists('email', $contact))
$update_contact->email = trim($contact['email']);
$update_contact->save();
});
2020-07-29 04:13:12 +02:00
//need to reload here to shake off stale contacts
$client->load('contacts');
//always made sure we have one blank contact to maintain state
if ($client->contacts->count() == 0) {
$new_contact = ClientContactFactory::create($client->company_id, $client->user_id);
$new_contact->client_id = $client->id;
$new_contact->contact_key = Str::random(40);
$new_contact->is_primary = true;
2021-01-18 21:29:36 +01:00
$new_contact->confirmed = true;
$new_contact->email = ' ';
$new_contact->save();
}
2021-09-09 13:18:04 +02:00
$client = null;
}
}