phpvms/app/Http/Controllers/Api/PirepController.php

198 lines
5.0 KiB
PHP
Raw Normal View History

2017-08-15 12:36:49 +08:00
<?php
namespace App\Http\Controllers\Api;
use Log;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use App\Models\Acars;
use App\Models\Enums\AcarsType;
use App\Models\Enums\PirepState;
use App\Models\Enums\PirepStatus;
use App\Services\GeoService;
2017-12-27 04:54:28 +08:00
use App\Services\PIREPService;
use App\Repositories\AcarsRepository;
use App\Repositories\PirepRepository;
2017-08-15 12:36:49 +08:00
use App\Http\Resources\Acars as AcarsResource;
use App\Http\Resources\Pirep as PirepResource;
use App\Http\Controllers\AppBaseController;
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;
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
) {
$this->acarsRepo = $acarsRepo;
2017-12-28 10:52:37 +08:00
$this->geoSvc = $geoSvc;
$this->pirepRepo = $pirepRepo;
2017-12-27 04:54:28 +08:00
$this->pirepSvc = $pirepSvc;
}
2017-08-15 12:36:49 +08:00
public function get($id)
{
PirepResource::withoutWrapping();
return new PirepResource($this->pirepRepo->find($id));
2017-08-15 12:36:49 +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)
{
Log::info('PIREP Prefile, user '. Auth::user()->pilot_id,
$request->toArray());
2017-12-27 04:54:28 +08:00
$check_attrs = [
'airline_id',
'aircraft_id',
'dpt_airport_id',
'arr_airport_id',
'flight_id',
'flight_number',
'route_leg',
'route_code',
'flight_time',
'planned_flight_time',
'level',
2017-12-27 04:54:28 +08:00
'route',
'notes',
];
$attrs = [
'user_id' => Auth::user()->id,
];
foreach ($check_attrs as $attr) {
if ($request->filled($attr)) {
$attrs[$attr] = $request->get($attr);
}
}
$attrs['state'] = PirepState::IN_PROGRESS;
$attrs['status'] = PirepStatus::PREFILE;
try {
2017-12-27 04:54:28 +08:00
$pirep = $this->pirepRepo->create($attrs);
} catch(\Exception $e) {
Log::error($e);
}
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
*/
public function file($id, Request $request)
{
Log::info('PIREP Prefile, user ' . Auth::user()->pilot_id,
$request->toArray());
$attrs = [];
$check_attrs = [
'airline_id',
'aircraft_id',
'dpt_airport_id',
'arr_airport_id',
'flight_id',
'flight_number',
'route_leg',
'route_code',
'flight_time',
'planned_flight_time',
'level',
2017-12-27 04:54:28 +08:00
'route',
'notes',
];
foreach($check_attrs as $attr) {
if($request->filled($attr)) {
$attrs[$attr] = $request->get($attr);
}
}
if($request->filled('fields')) {
$pirep_fields = $request->get('fields');
}
$attrs['state'] = PirepState::PENDING;
$attrs['status'] = PirepStatus::ARRIVED;
try {
$pirep = $this->pirepRepo->update($attrs, $id);
$pirep = $this->pirepSvc->create($pirep, $pirep_fields);
} catch (\Exception $e) {
Log::error($e);
}
PirepResource::withoutWrapping();
return new PirepResource($pirep);
}
/**
2017-12-29 04:35:28 +08:00
* Return the GeoJSON for the ACARS line
* @param $id
2017-12-29 04:35:28 +08:00
* @param Request $request
* @return \Illuminate\Contracts\Routing\ResponseFactory
*/
2017-12-29 04:35:28 +08:00
public function acars_get($id, Request $request)
{
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',
]);
}
/**
* Post ACARS updates for a PIREP
* @param $id
* @param Request $request
* @return AcarsResource
*/
public function acars_store($id, Request $request)
{
$pirep = $this->pirepRepo->find($id);
Log::info('Posting ACARS update', $request->toArray());
$attrs = $request->toArray();
$attrs['pirep_id'] = $id;
$attrs['type'] = AcarsType::FLIGHT_PATH;
$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
}