2019-06-21 06:21:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
2020-01-12 12:42:32 +00:00
|
|
|
use Illuminate\Http\Response;
|
2019-06-21 06:21:48 +00:00
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
|
2021-06-29 03:18:52 +00:00
|
|
|
use App\Models\{Account,Invoice,Service,Service\Adsl,User};
|
2019-06-21 06:21:48 +00:00
|
|
|
|
|
|
|
class SearchController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
2020-01-12 12:42:32 +00:00
|
|
|
* Search from the Application Dashboard.
|
2019-06-21 06:21:48 +00:00
|
|
|
*
|
2020-01-12 12:42:32 +00:00
|
|
|
* @param Request $request
|
|
|
|
* @return Response
|
2019-06-21 06:21:48 +00:00
|
|
|
*/
|
|
|
|
public function search(Request $request)
|
|
|
|
{
|
2020-01-12 12:42:32 +00:00
|
|
|
// If there isnt a term value, return null
|
2019-06-21 06:21:48 +00:00
|
|
|
if (! $request->input('term'))
|
|
|
|
return [];
|
|
|
|
|
|
|
|
$result = collect();
|
2020-02-06 22:11:02 +00:00
|
|
|
$accounts = ($x=Auth::user()->all_accounts())->pluck('id');
|
|
|
|
$users = $x->transform(function($item) { return $item->user;});
|
2019-06-21 06:21:48 +00:00
|
|
|
|
2020-02-08 11:51:50 +00:00
|
|
|
# Look for User
|
2020-02-06 22:11:02 +00:00
|
|
|
foreach (User::Search($request->input('term'))
|
|
|
|
->whereIN('id',$users->pluck('id'))
|
|
|
|
->orderBy('lastname')
|
|
|
|
->orderBy('firstname')
|
2019-06-21 06:21:48 +00:00
|
|
|
->limit(10)->get() as $o)
|
|
|
|
{
|
2020-05-27 06:09:03 +00:00
|
|
|
$result->push(['name'=>sprintf('%s %s',$o->aid,$o->name),'value'=>'/u/home/'.$o->id,'category'=>'Users']);
|
2020-01-12 12:42:32 +00:00
|
|
|
}
|
|
|
|
|
2020-02-08 11:51:50 +00:00
|
|
|
# Look for Account
|
|
|
|
foreach (Account::Search($request->input('term'))
|
|
|
|
->whereIN('user_id',$users->pluck('id'))
|
|
|
|
->orderBy('company')
|
|
|
|
->limit(10)->get() as $o)
|
|
|
|
{
|
2020-05-27 06:09:03 +00:00
|
|
|
$result->push(['name'=>sprintf('%s %s',$o->aid,$o->company),'value'=>'/u/home/'.$o->user_id,'category'=>'Accounts']);
|
2020-02-08 11:51:50 +00:00
|
|
|
}
|
|
|
|
|
2020-01-12 12:42:32 +00:00
|
|
|
# Look for a Service
|
|
|
|
foreach (Service::Search($request->input('term'))
|
|
|
|
->whereIN('account_id',$accounts)
|
|
|
|
->orderBy('id')
|
|
|
|
->limit(10)->get() as $o)
|
|
|
|
{
|
2020-05-27 06:09:03 +00:00
|
|
|
$result->push(['name'=>sprintf('%s (%s)',$o->name,$o->sid),'value'=>'/u/service/'.$o->id,'category'=>'Services']);
|
2020-01-12 12:42:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Look for an Invoice
|
|
|
|
foreach (Invoice::Search($request->input('term'))
|
|
|
|
->whereIN('account_id',$accounts)
|
|
|
|
->orderBy('id')
|
|
|
|
->limit(10)->get() as $o)
|
|
|
|
{
|
2021-07-02 04:35:43 +00:00
|
|
|
$result->push(['name'=>sprintf('%s: %s',$o->sid,$o->account->name),'value'=>'/u/invoice/'.$o->id,'category'=>'Invoices']);
|
2019-06-21 06:21:48 +00:00
|
|
|
}
|
|
|
|
|
2019-06-29 00:14:12 +00:00
|
|
|
# Look for an ADSL/NBN Service
|
|
|
|
foreach (Adsl::Search($request->input('term'))
|
2020-01-12 12:42:32 +00:00
|
|
|
->whereIN('account_id',$accounts)
|
2019-06-29 00:14:12 +00:00
|
|
|
->orderBy('service_number')
|
|
|
|
->limit(10)->get() as $o)
|
|
|
|
{
|
2020-05-27 06:09:03 +00:00
|
|
|
$result->push(['name'=>sprintf('%s (%s)',$o->name,$o->service->sid),'value'=>'/u/service/'.$o->id,'category'=>'Broadband']);
|
2019-06-29 00:14:12 +00:00
|
|
|
}
|
|
|
|
|
2021-07-13 02:31:56 +00:00
|
|
|
# Look for Domain Name
|
|
|
|
foreach (Service\Domain::Search($request->input('term'))
|
|
|
|
->whereIN('account_id',$accounts)
|
|
|
|
->orderBy('domain_name')
|
|
|
|
->limit(10)->get() as $o)
|
|
|
|
{
|
|
|
|
$result->push(['name'=>sprintf('%s (%s)',$o->service_name,$o->service->sid),'value'=>'/u/service/'.$o->id,'category'=>'Domains']);
|
|
|
|
}
|
|
|
|
|
2019-06-21 06:21:48 +00:00
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
}
|