2016-07-14 22:37:04 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Ninja\Repositories;
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2015-12-07 14:34:55 +01:00
|
|
|
use DB;
|
2016-02-29 11:01:43 +01:00
|
|
|
use Cache;
|
2015-03-31 11:38:24 +02:00
|
|
|
use App\Models\Client;
|
2016-02-16 16:30:09 +01:00
|
|
|
use App\Events\ClientWasCreated;
|
|
|
|
use App\Events\ClientWasUpdated;
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-07-14 22:37:04 +02:00
|
|
|
/**
|
|
|
|
* Class ClientRepository
|
|
|
|
*/
|
2015-10-28 20:22:07 +01:00
|
|
|
class ClientRepository extends BaseRepository
|
2015-03-16 22:45:25 +01:00
|
|
|
{
|
2016-07-14 22:37:04 +02:00
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
2015-10-28 20:22:07 +01:00
|
|
|
public function getClassName()
|
|
|
|
{
|
|
|
|
return 'App\Models\Client';
|
|
|
|
}
|
|
|
|
|
2016-07-14 22:37:04 +02:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2015-11-18 15:40:50 +01:00
|
|
|
public function all()
|
|
|
|
{
|
|
|
|
return Client::scope()
|
|
|
|
->with('user', 'contacts', 'country')
|
|
|
|
->withTrashed()
|
|
|
|
->where('is_deleted', '=', false)
|
|
|
|
->get();
|
|
|
|
}
|
|
|
|
|
2016-07-14 22:37:04 +02:00
|
|
|
/**
|
|
|
|
* @param null $filter
|
|
|
|
* @param bool $userId
|
|
|
|
*
|
|
|
|
* @return $this
|
|
|
|
*/
|
2016-05-23 18:52:20 +02:00
|
|
|
public function find($filter = null, $userId = false)
|
2015-03-16 22:45:25 +01:00
|
|
|
{
|
2015-12-07 14:34:55 +01:00
|
|
|
$query = DB::table('clients')
|
|
|
|
->join('accounts', 'accounts.id', '=', 'clients.account_id')
|
2015-03-16 22:45:25 +01:00
|
|
|
->join('contacts', 'contacts.client_id', '=', 'clients.id')
|
|
|
|
->where('clients.account_id', '=', \Auth::user()->account_id)
|
|
|
|
->where('contacts.is_primary', '=', true)
|
|
|
|
->where('contacts.deleted_at', '=', null)
|
2015-12-07 14:34:55 +01:00
|
|
|
->select(
|
|
|
|
DB::raw('COALESCE(clients.currency_id, accounts.currency_id) currency_id'),
|
|
|
|
DB::raw('COALESCE(clients.country_id, accounts.country_id) country_id'),
|
|
|
|
'clients.public_id',
|
|
|
|
'clients.name',
|
|
|
|
'contacts.first_name',
|
|
|
|
'contacts.last_name',
|
|
|
|
'clients.balance',
|
|
|
|
'clients.last_login',
|
|
|
|
'clients.created_at',
|
|
|
|
'clients.work_phone',
|
|
|
|
'contacts.email',
|
|
|
|
'clients.deleted_at',
|
2016-03-16 00:08:00 +01:00
|
|
|
'clients.is_deleted',
|
|
|
|
'clients.user_id'
|
2015-12-07 14:34:55 +01:00
|
|
|
);
|
2015-03-16 22:45:25 +01:00
|
|
|
|
|
|
|
if (!\Session::get('show_trash:client')) {
|
|
|
|
$query->where('clients.deleted_at', '=', null);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($filter) {
|
|
|
|
$query->where(function ($query) use ($filter) {
|
|
|
|
$query->where('clients.name', 'like', '%'.$filter.'%')
|
|
|
|
->orWhere('contacts.first_name', 'like', '%'.$filter.'%')
|
|
|
|
->orWhere('contacts.last_name', 'like', '%'.$filter.'%')
|
|
|
|
->orWhere('contacts.email', 'like', '%'.$filter.'%');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-05-23 18:52:20 +02:00
|
|
|
if ($userId) {
|
|
|
|
$query->where('clients.user_id', '=', $userId);
|
|
|
|
}
|
|
|
|
|
2015-03-16 22:45:25 +01:00
|
|
|
return $query;
|
|
|
|
}
|
2016-05-23 18:52:20 +02:00
|
|
|
|
2016-07-14 22:37:04 +02:00
|
|
|
/**
|
|
|
|
* @param $data
|
|
|
|
* @param Client|null $client
|
|
|
|
*
|
|
|
|
* @return Client|mixed
|
|
|
|
*/
|
|
|
|
public function save($data, Client $client = null)
|
2015-03-16 22:45:25 +01:00
|
|
|
{
|
2015-10-28 20:22:07 +01:00
|
|
|
$publicId = isset($data['public_id']) ? $data['public_id'] : false;
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2016-04-28 14:16:33 +02:00
|
|
|
if ($client) {
|
|
|
|
// do nothing
|
2016-05-02 19:42:13 +02:00
|
|
|
} elseif (!$publicId || $publicId == '-1') {
|
2015-03-16 22:45:25 +01:00
|
|
|
$client = Client::createNew();
|
|
|
|
} else {
|
|
|
|
$client = Client::scope($publicId)->with('contacts')->firstOrFail();
|
2016-05-02 19:42:13 +02:00
|
|
|
\Log::warning('Entity not set in client repo save');
|
2015-03-16 22:45:25 +01:00
|
|
|
}
|
2016-05-23 18:52:20 +02:00
|
|
|
|
2016-02-29 11:01:43 +01:00
|
|
|
// convert currency code to id
|
|
|
|
if (isset($data['currency_code'])) {
|
|
|
|
$currencyCode = strtolower($data['currency_code']);
|
|
|
|
$currency = Cache::get('currencies')->filter(function($item) use ($currencyCode) {
|
|
|
|
return strtolower($item->code) == $currencyCode;
|
|
|
|
})->first();
|
|
|
|
if ($currency) {
|
|
|
|
$data['currency_id'] = $currency->id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-28 20:22:07 +01:00
|
|
|
$client->fill($data);
|
2015-03-16 22:45:25 +01:00
|
|
|
$client->save();
|
|
|
|
|
2015-10-28 20:22:07 +01:00
|
|
|
$first = true;
|
|
|
|
$contacts = isset($data['contact']) ? [$data['contact']] : $data['contacts'];
|
2015-03-16 22:45:25 +01:00
|
|
|
$contactIds = [];
|
2016-04-17 12:53:53 +02:00
|
|
|
|
2016-04-17 13:03:37 +02:00
|
|
|
// If the primary is set ensure it's listed first
|
2016-04-17 12:42:30 +02:00
|
|
|
usort($contacts, function ($left, $right) {
|
2016-05-05 22:09:11 +02:00
|
|
|
return (isset($right['is_primary']) ? $right['is_primary'] : 1) - (isset($left['is_primary']) ? $left['is_primary'] : 0);
|
2016-04-17 12:40:23 +02:00
|
|
|
});
|
2016-05-23 18:52:20 +02:00
|
|
|
|
2015-11-17 09:46:14 +01:00
|
|
|
foreach ($contacts as $contact) {
|
2015-10-28 20:22:07 +01:00
|
|
|
$contact = $client->addContact($contact, $first);
|
|
|
|
$contactIds[] = $contact->public_id;
|
|
|
|
$first = false;
|
2015-03-16 22:45:25 +01:00
|
|
|
}
|
|
|
|
|
2016-06-02 21:03:59 +02:00
|
|
|
if ( ! $client->wasRecentlyCreated) {
|
|
|
|
foreach ($client->contacts as $contact) {
|
|
|
|
if (!in_array($contact->public_id, $contactIds)) {
|
|
|
|
$contact->delete();
|
|
|
|
}
|
2015-03-16 22:45:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-16 16:30:09 +01:00
|
|
|
if (!$publicId || $publicId == '-1') {
|
|
|
|
event(new ClientWasCreated($client));
|
|
|
|
} else {
|
|
|
|
event(new ClientWasUpdated($client));
|
|
|
|
}
|
|
|
|
|
2015-10-28 20:22:07 +01:00
|
|
|
return $client;
|
2015-03-16 22:45:25 +01:00
|
|
|
}
|
|
|
|
}
|