2017-08-15 12:36:49 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
|
2017-12-26 05:19:34 +08:00
|
|
|
use Log;
|
2018-01-04 00:25:55 +08:00
|
|
|
use Auth;
|
|
|
|
use Illuminate\Database\Eloquent\ModelNotFoundException;
|
2017-12-26 05:19:34 +08:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
use App\Models\Acars;
|
2018-01-03 03:17:22 +08:00
|
|
|
use App\Models\Pirep;
|
|
|
|
|
2018-01-02 00:30:31 +08:00
|
|
|
use App\Models\Enums\AcarsType;
|
2017-12-26 05:19:34 +08:00
|
|
|
use App\Models\Enums\PirepState;
|
|
|
|
use App\Models\Enums\PirepStatus;
|
|
|
|
|
2018-01-02 00:30:31 +08:00
|
|
|
use App\Services\GeoService;
|
2017-12-27 04:54:28 +08:00
|
|
|
use App\Services\PIREPService;
|
2017-12-26 05:19:34 +08:00
|
|
|
use App\Repositories\AcarsRepository;
|
2017-12-13 01:49:35 +08:00
|
|
|
use App\Repositories\PirepRepository;
|
2017-08-15 12:36:49 +08:00
|
|
|
|
2018-01-02 00:30:31 +08:00
|
|
|
use App\Http\Resources\Acars as AcarsResource;
|
|
|
|
use App\Http\Resources\Pirep as PirepResource;
|
|
|
|
|
2017-12-26 05:19:34 +08:00
|
|
|
use App\Http\Controllers\AppBaseController;
|
2018-01-04 00:25:55 +08:00
|
|
|
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
|
2017-08-15 12:36:49 +08:00
|
|
|
|
|
|
|
class PirepController extends AppBaseController
|
|
|
|
{
|
2017-12-28 10:52:37 +08:00
|
|
|
protected $acarsRepo,
|
|
|
|
$geoSvc,
|
|
|
|
$pirepRepo,
|
|
|
|
$pirepSvc;
|
2017-12-13 01:49:35 +08:00
|
|
|
|
2018-01-02 06:01:01 +08:00
|
|
|
protected $check_attrs = [
|
|
|
|
'airline_id',
|
|
|
|
'aircraft_id',
|
|
|
|
'dpt_airport_id',
|
|
|
|
'arr_airport_id',
|
|
|
|
'flight_id',
|
|
|
|
'flight_number',
|
|
|
|
'route_code',
|
2018-01-03 04:31:00 +08:00
|
|
|
'route_leg',
|
2018-01-02 06:01:01 +08:00
|
|
|
'flight_time',
|
|
|
|
'planned_flight_time',
|
|
|
|
'level',
|
|
|
|
'route',
|
|
|
|
'notes',
|
|
|
|
];
|
|
|
|
|
2017-12-26 05:19:34 +08:00
|
|
|
public function __construct(
|
|
|
|
AcarsRepository $acarsRepo,
|
2017-12-28 10:52:37 +08:00
|
|
|
GeoService $geoSvc,
|
2017-12-27 04:54:28 +08:00
|
|
|
PirepRepository $pirepRepo,
|
|
|
|
PIREPService $pirepSvc
|
2017-12-26 05:19:34 +08:00
|
|
|
) {
|
|
|
|
$this->acarsRepo = $acarsRepo;
|
2017-12-28 10:52:37 +08:00
|
|
|
$this->geoSvc = $geoSvc;
|
2017-12-13 01:49:35 +08:00
|
|
|
$this->pirepRepo = $pirepRepo;
|
2017-12-27 04:54:28 +08:00
|
|
|
$this->pirepSvc = $pirepSvc;
|
2017-12-13 01:49:35 +08:00
|
|
|
}
|
|
|
|
|
2017-08-15 12:36:49 +08:00
|
|
|
public function get($id)
|
|
|
|
{
|
2017-12-13 01:49:35 +08:00
|
|
|
PirepResource::withoutWrapping();
|
|
|
|
return new PirepResource($this->pirepRepo->find($id));
|
2017-08-15 12:36:49 +08:00
|
|
|
}
|
2017-12-26 05:19:34 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new PIREP and place it in a "inprogress" and "prefile" state
|
|
|
|
* Once ACARS updates are being processed, then it can go into an 'ENROUTE'
|
|
|
|
* status, and whatever other statuses may be defined
|
|
|
|
*
|
|
|
|
* TODO: Allow extra fields, etc to be set. Aircraft, etc
|
|
|
|
*/
|
|
|
|
public function prefile(Request $request)
|
|
|
|
{
|
2018-01-04 00:25:55 +08:00
|
|
|
Log::info('PIREP Prefile, user '.Auth::user()->id, $request->toArray());
|
2017-12-27 04:54:28 +08:00
|
|
|
|
|
|
|
$attrs = [
|
2018-01-02 06:01:01 +08:00
|
|
|
'user_id' => Auth::user()->id,
|
|
|
|
'state' => PirepState::IN_PROGRESS,
|
|
|
|
'status' => PirepStatus::PREFILE,
|
2017-12-27 04:54:28 +08:00
|
|
|
];
|
|
|
|
|
2018-01-02 06:01:01 +08:00
|
|
|
foreach ($this->check_attrs as $attr) {
|
2017-12-27 04:54:28 +08:00
|
|
|
if ($request->filled($attr)) {
|
|
|
|
$attrs[$attr] = $request->get($attr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-03 03:17:22 +08:00
|
|
|
$pirep = new Pirep($attrs);
|
|
|
|
|
|
|
|
# Find if there's a duplicate, if so, let's work on that
|
|
|
|
$dupe_pirep = $this->pirepSvc->findDuplicate($pirep);
|
|
|
|
if($dupe_pirep !== false) {
|
|
|
|
$pirep = $dupe_pirep;
|
2017-12-26 05:19:34 +08:00
|
|
|
}
|
|
|
|
|
2018-01-03 03:17:22 +08:00
|
|
|
$pirep->save();
|
|
|
|
|
|
|
|
$this->pirepSvc->saveRoute($pirep);
|
|
|
|
|
2017-12-26 05:19:34 +08:00
|
|
|
Log::info('PIREP PREFILED');
|
|
|
|
Log::info($pirep->id);
|
|
|
|
|
|
|
|
PirepResource::withoutWrapping();
|
2017-12-27 04:54:28 +08:00
|
|
|
return new PirepResource($pirep);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* File the PIREP
|
|
|
|
* @param $id
|
|
|
|
* @param Request $request
|
|
|
|
* @return PirepResource
|
2018-01-04 00:25:55 +08:00
|
|
|
* @throws \Symfony\Component\HttpKernel\Exception\BadRequestHttpException
|
|
|
|
* @throws \Illuminate\Database\Eloquent\ModelNotFoundException
|
2017-12-27 04:54:28 +08:00
|
|
|
*/
|
|
|
|
public function file($id, Request $request)
|
|
|
|
{
|
2018-01-02 06:01:01 +08:00
|
|
|
Log::info('PIREP Prefile, user ' . Auth::user()->pilot_id, $request->toArray());
|
|
|
|
|
2018-01-04 00:25:55 +08:00
|
|
|
$pirep = $this->pirepRepo->find($id);
|
|
|
|
if (empty($pirep)) {
|
|
|
|
throw new ModelNotFoundException('PIREP not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
# Check if the status is cancelled...
|
|
|
|
if($pirep->state === PirepState::CANCELLED) {
|
|
|
|
throw new BadRequestHttpException('PIREP has been cancelled, updates can\'t be posted');
|
|
|
|
}
|
|
|
|
|
2018-01-02 06:01:01 +08:00
|
|
|
$attrs = [
|
|
|
|
'state' => PirepState::PENDING,
|
|
|
|
'status' => PirepStatus::ARRIVED,
|
2017-12-27 04:54:28 +08:00
|
|
|
];
|
|
|
|
|
2018-01-02 06:01:01 +08:00
|
|
|
foreach($this->check_attrs as $attr) {
|
2017-12-27 04:54:28 +08:00
|
|
|
if($request->filled($attr)) {
|
|
|
|
$attrs[$attr] = $request->get($attr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-04 00:25:55 +08:00
|
|
|
$pirep_fields = [];
|
2017-12-27 04:54:28 +08:00
|
|
|
if($request->filled('fields')) {
|
|
|
|
$pirep_fields = $request->get('fields');
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
$pirep = $this->pirepRepo->update($attrs, $id);
|
|
|
|
$pirep = $this->pirepSvc->create($pirep, $pirep_fields);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
Log::error($e);
|
|
|
|
}
|
|
|
|
|
|
|
|
PirepResource::withoutWrapping();
|
2017-12-26 05:19:34 +08:00
|
|
|
return new PirepResource($pirep);
|
|
|
|
}
|
|
|
|
|
2018-01-04 00:25:55 +08:00
|
|
|
/**
|
|
|
|
* Cancel the PIREP
|
|
|
|
* @param $id
|
|
|
|
* @param Request $request
|
|
|
|
* @return PirepResource
|
|
|
|
*/
|
|
|
|
public function cancel($id, Request $request)
|
|
|
|
{
|
|
|
|
Log::info('PIREP Cancel, user ' . Auth::user()->pilot_id, $request->toArray());
|
|
|
|
|
|
|
|
$attrs = [
|
|
|
|
'state' => PirepState::CANCELLED,
|
|
|
|
];
|
|
|
|
|
|
|
|
try {
|
|
|
|
$pirep = $this->pirepRepo->update($attrs, $id);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
Log::error($e);
|
|
|
|
}
|
|
|
|
|
|
|
|
PirepResource::withoutWrapping();
|
|
|
|
return new PirepResource($pirep);
|
|
|
|
}
|
|
|
|
|
2017-12-26 05:19:34 +08:00
|
|
|
/**
|
2017-12-29 04:35:28 +08:00
|
|
|
* Return the GeoJSON for the ACARS line
|
2017-12-26 05:19:34 +08:00
|
|
|
* @param $id
|
2017-12-29 04:35:28 +08:00
|
|
|
* @param Request $request
|
|
|
|
* @return \Illuminate\Contracts\Routing\ResponseFactory
|
2017-12-26 05:19:34 +08:00
|
|
|
*/
|
2017-12-29 04:35:28 +08:00
|
|
|
public function acars_get($id, Request $request)
|
2017-12-26 05:19:34 +08:00
|
|
|
{
|
2017-12-26 08:22:46 +08:00
|
|
|
$pirep = $this->pirepRepo->find($id);
|
2017-12-29 04:35:28 +08:00
|
|
|
$geodata = $this->geoSvc->getFeatureFromAcars($pirep);
|
2017-12-26 08:22:46 +08:00
|
|
|
|
2017-12-29 04:35:28 +08:00
|
|
|
return response(\json_encode($geodata), 200, [
|
|
|
|
'Content-Type' => 'application/json',
|
|
|
|
]);
|
2017-12-26 05:19:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Post ACARS updates for a PIREP
|
|
|
|
* @param $id
|
|
|
|
* @param Request $request
|
|
|
|
* @return AcarsResource
|
2018-01-04 00:25:55 +08:00
|
|
|
* @throws \Symfony\Component\HttpKernel\Exception\BadRequestHttpException
|
2017-12-26 05:19:34 +08:00
|
|
|
*/
|
|
|
|
public function acars_store($id, Request $request)
|
|
|
|
{
|
|
|
|
$pirep = $this->pirepRepo->find($id);
|
|
|
|
|
2018-01-04 00:25:55 +08:00
|
|
|
# Check if the status is cancelled...
|
|
|
|
if ($pirep->state === PirepState::CANCELLED) {
|
|
|
|
throw new BadRequestHttpException('PIREP has been cancelled, updates can\'t be posted');
|
|
|
|
}
|
|
|
|
|
2017-12-26 05:19:34 +08:00
|
|
|
Log::info('Posting ACARS update', $request->toArray());
|
|
|
|
$attrs = $request->toArray();
|
2018-01-02 00:30:31 +08:00
|
|
|
|
2017-12-26 05:19:34 +08:00
|
|
|
$attrs['pirep_id'] = $id;
|
2018-01-02 00:30:31 +08:00
|
|
|
$attrs['type'] = AcarsType::FLIGHT_PATH;
|
2017-12-26 05:19:34 +08:00
|
|
|
|
|
|
|
$update = Acars::create($attrs);
|
|
|
|
$update->save();
|
|
|
|
|
|
|
|
# Change the PIREP status
|
|
|
|
$pirep->status = PirepStatus::ENROUTE;
|
|
|
|
$pirep->save();
|
|
|
|
|
|
|
|
AcarsResource::withoutWrapping();
|
|
|
|
return new AcarsResource($update);
|
|
|
|
}
|
2017-08-15 12:36:49 +08:00
|
|
|
}
|