phpvms/app/Repositories/FlightRepository.php
2018-03-19 20:50:40 -05:00

106 lines
2.6 KiB
PHP

<?php
namespace App\Repositories;
use App\Interfaces\Repository;
use App\Models\Flight;
use App\Repositories\Criteria\WhereCriteria;
use Illuminate\Http\Request;
use Prettus\Repository\Contracts\CacheableInterface;
use Prettus\Repository\Traits\CacheableRepository;
/**
* Class FlightRepository
* @package App\Repositories
*/
class FlightRepository extends Repository implements CacheableInterface
{
use CacheableRepository;
protected $fieldSearchable = [
'arr_airport_id',
'dpt_airport_id',
'flight_number' => 'like',
'flight_code' => 'like',
'flight_leg' => 'like',
'route' => 'like',
'notes' => 'like',
];
public function model()
{
return Flight::class;
}
/**
* Find a flight based on the given criterea
* @param $airline_id
* @param $flight_num
* @param null $route_code
* @param null $route_leg
* @return mixed
*/
public function findFlight($airline_id, $flight_num, $route_code = null, $route_leg = null)
{
$where = [
'airline_id' => $airline_id,
'flight_number' => $flight_num,
'active' => true,
];
if (filled($route_code)) {
$where['route_code'] = $route_code;
}
if (filled($route_leg)) {
$where['route_leg'] = $route_leg;
}
return $this->findWhere($where);
}
/**
* Create the search criteria and return this with the stuff pushed
* @param Request $request
* @param bool $only_active
* @return $this
* @throws \Prettus\Repository\Exceptions\RepositoryException
*/
public function searchCriteria(Request $request, bool $only_active = true)
{
$where = [];
if ($only_active === true) {
$where['active'] = $only_active;
}
if ($request->filled('flight_id')) {
$where['id'] = $request->flight_id;
}
if ($request->filled('airline_id')) {
$where['airline_id'] = $request->airline_id;
}
if ($request->filled('flight_number')) {
$where['flight_number'] = $request->flight_number;
}
if ($request->filled('route_code')) {
$where['route_code'] = $request->route_code;
}
if ($request->filled('dep_icao')) {
$where['dpt_airport_id'] = $request->dep_icao;
}
if ($request->filled('arr_icao')) {
$where['arr_airport_id'] = $request->arr_icao;
}
$this->pushCriteria(new WhereCriteria($request, $where));
return $this;
}
}