mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 14:42:42 +01:00
93 lines
2.4 KiB
PHP
Executable File
93 lines
2.4 KiB
PHP
Executable File
<?php namespace ninja\repositories;
|
|
|
|
use Client;
|
|
use Contact;
|
|
use Account;
|
|
use Request;
|
|
use Session;
|
|
use Language;
|
|
use User;
|
|
|
|
class AccountRepository
|
|
{
|
|
public function create()
|
|
{
|
|
$account = new Account;
|
|
$account->ip = Request::getClientIp();
|
|
$account->account_key = str_random(RANDOM_KEY_LENGTH);
|
|
|
|
if (Session::has(SESSION_LOCALE))
|
|
{
|
|
$locale = Session::get(SESSION_LOCALE);
|
|
$language = Language::whereLocale($locale)->first();
|
|
|
|
if ($language)
|
|
{
|
|
$account->language_id = $language->id;
|
|
}
|
|
}
|
|
|
|
$account->save();
|
|
|
|
$random = str_random(RANDOM_KEY_LENGTH);
|
|
|
|
$user = new User;
|
|
$user->password = $random;
|
|
$user->password_confirmation = $random;
|
|
$user->username = $random;
|
|
$account->users()->save($user);
|
|
|
|
return $account;
|
|
}
|
|
|
|
public function getSearchData()
|
|
{
|
|
$clients = \DB::table('clients')
|
|
->where('clients.deleted_at', '=', null)
|
|
->where('clients.account_id', '=', \Auth::user()->account_id)
|
|
->whereRaw("clients.name <> ''")
|
|
->select(\DB::raw("'Clients' as type, clients.public_id, clients.name, '' as token"));
|
|
|
|
$contacts = \DB::table('clients')
|
|
->join('contacts', 'contacts.client_id', '=', 'clients.id')
|
|
->where('clients.deleted_at', '=', null)
|
|
->where('clients.account_id', '=', \Auth::user()->account_id)
|
|
->whereRaw("CONCAT(contacts.first_name, contacts.last_name, contacts.email) <> ''")
|
|
->select(\DB::raw("'Contacts' as type, clients.public_id, CONCAT(contacts.first_name, ' ', contacts.last_name, ' ', contacts.email) as name, '' as token"));
|
|
|
|
$invoices = \DB::table('clients')
|
|
->join('invoices', 'invoices.client_id', '=', 'clients.id')
|
|
->where('clients.account_id', '=', \Auth::user()->account_id)
|
|
->where('clients.deleted_at', '=', null)
|
|
->where('invoices.deleted_at', '=', null)
|
|
->select(\DB::raw("'Invoices' as type, invoices.public_id, CONCAT(invoices.invoice_number, ': ', clients.name) as name, invoices.invoice_number as token"));
|
|
|
|
$data = [];
|
|
|
|
foreach ($clients->union($contacts)->union($invoices)->get() as $row)
|
|
{
|
|
$type = $row->type;
|
|
|
|
if (!isset($data[$type]))
|
|
{
|
|
$data[$type] = [];
|
|
}
|
|
|
|
$tokens = explode(' ', $row->name);
|
|
$tokens[] = $type;
|
|
|
|
if ($type == 'Invoices')
|
|
{
|
|
$tokens[] = intVal($row->token) . '';
|
|
}
|
|
|
|
$data[$type][] = [
|
|
'value' => $row->name,
|
|
'public_id' => $row->public_id,
|
|
'tokens' => $tokens
|
|
];
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
} |