phpvms/app/Repositories/AcarsRepository.php

73 lines
1.5 KiB
PHP
Raw Normal View History

<?php
namespace App\Repositories;
use App\Interfaces\Repository;
use App\Models\Acars;
use App\Models\Enums\AcarsType;
use App\Models\Enums\PirepState;
2018-02-21 12:33:09 +08:00
use App\Models\Pirep;
/**
* Class AcarsRepository
* @package App\Repositories
*/
class AcarsRepository extends Repository
{
/**
* @return string
*/
public function model()
{
return Acars::class;
}
2018-01-02 06:01:01 +08:00
/**
* @param $pirep_id
* @param $type
* @return mixed
*/
public function forPirep($pirep_id, $type)
{
2018-01-02 06:01:01 +08:00
$where = [
'pirep_id' => $pirep_id,
'type' => $type,
2018-01-02 06:01:01 +08:00
];
switch ($type) {
default:
case AcarsType::FLIGHT_PATH:
case AcarsType::LOG:
$order_by = 'created_at';
break;
case AcarsType::ROUTE:
$order_by = 'order';
break;
}
return $this->orderBy($order_by, 'asc')->findWhere($where);
}
/**
* Get all of the PIREPS that are in-progress, and then
* get the latest update for those flights
* @return Pirep
*/
public function getPositions()
{
return Pirep::with(['airline', 'position'])
->where(['state' => PirepState::IN_PROGRESS])
->get();
}
/**
* @return $this
*/
public function getAllAcarsPoints()
{
return Pirep::with('acars')->where([
'state' => PirepState::IN_PROGRESS
]);
}
}