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

87 lines
2.7 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Repositories;
use App\Models\Vendor;
use App\Models\VendorContact;
2020-09-23 02:16:19 +02:00
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str;
/**
* VendorContactRepository.
*/
class VendorContactRepository extends BaseRepository
{
2020-10-28 07:58:15 +01:00
public $is_primary;
2020-10-31 06:35:05 +01:00
public function save(array $data, Vendor $vendor) : void
{
2020-10-31 01:46:00 +01:00
if (isset($data['contacts'])) {
$contacts = collect($data['contacts']);
} else {
$contacts = collect();
}
/* Get array of IDs which have been removed from the contacts array and soft delete each contact */
2022-07-22 06:07:51 +02:00
$vendor->contacts->pluck('id')->diff($contacts->pluck('id'))->each(function ($contact) {
VendorContact::destroy($contact);
});
$this->is_primary = true;
/* 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 ($vendor) {
$update_contact = null;
if (isset($contact['id'])) {
2022-07-22 06:07:51 +02:00
$update_contact = VendorContact::find($contact['id']);
}
if (! $update_contact) {
$update_contact = new VendorContact;
$update_contact->vendor_id = $vendor->id;
$update_contact->company_id = $vendor->company_id;
$update_contact->user_id = $vendor->user_id;
$update_contact->contact_key = Str::random(40);
}
$update_contact->fill($contact);
2020-09-23 02:16:19 +02:00
if (array_key_exists('password', $contact) && strlen($contact['password']) > 1) {
$update_contact->password = Hash::make($contact['password']);
}
2023-02-01 03:46:39 +01:00
$update_contact->saveQuietly();
});
2020-09-23 02:16:19 +02:00
$vendor->load('contacts');
//always made sure we have one blank contact to maintain state
2020-10-31 06:35:05 +01:00
if ($vendor->contacts->count() == 0) {
$new_contact = new VendorContact;
$new_contact->vendor_id = $vendor->id;
$new_contact->company_id = $vendor->company_id;
$new_contact->user_id = $vendor->user_id;
$new_contact->contact_key = Str::random(40);
$new_contact->is_primary = true;
2023-02-01 03:46:39 +01:00
$new_contact->saveQuietly();
}
}
}