geoSvc = $geoSvc; $this->acarsRepo = $acarsRepo; $this->pirepRepo = $pirepRepo; } /** * Check if a PIREP is cancelled * * @param $pirep * * @throws \App\Exceptions\PirepCancelled */ protected function checkCancelled(Pirep $pirep) { if ($pirep->cancelled) { throw new PirepCancelled($pirep); } } /** * Get all the active PIREPs * * @return mixed */ public function live_flights() { $pireps = $this->acarsRepo->getPositions(setting('acars.live_time'))->filter(function ($pirep) { return $pirep->position !== null; }); return PirepResource::collection($pireps); } /** * Return all of the flights (as points) in GeoJSON format * * @param Request $request * * @return mixed */ public function pireps_geojson(Request $request) { $pireps = $this->acarsRepo->getPositions(setting('acars.live_time')); $positions = $this->geoSvc->getFeatureForLiveFlights($pireps); return response()->json([ 'data' => $positions, ]); } /** * Return the GeoJSON for the ACARS line * * @param $pirep_id * @param Request $request * * @return \Illuminate\Http\JsonResponse */ public function acars_geojson($pirep_id, Request $request) { $pirep = Pirep::find($pirep_id); $geodata = $this->geoSvc->getFeatureFromAcars($pirep); return response()->json([ 'data' => $geodata, ]); } /** * Return the routes for the ACARS line * * @param $id * @param Request $request * * @return AcarsRouteResource */ public function acars_get($id, Request $request) { $this->pirepRepo->find($id); return new AcarsRouteResource(Acars::where([ 'pirep_id' => $id, 'type' => AcarsType::FLIGHT_PATH, ])->orderBy('sim_time', 'asc')->get()); } /** * Post ACARS updates for a PIREP * * @param $id * @param PositionRequest $request * * @throws \App\Exceptions\PirepCancelled * @throws \Symfony\Component\HttpKernel\Exception\BadRequestHttpException * * @return \Illuminate\Http\JsonResponse */ public function acars_store($id, PositionRequest $request) { // Check if the status is cancelled... $pirep = Pirep::find($id); $this->checkCancelled($pirep); Log::debug( 'Posting ACARS update (user: '.Auth::user()->ident.', pirep id :'.$id.'): ', $request->post() ); $count = 0; $positions = $request->post('positions'); foreach ($positions as $position) { $position['pirep_id'] = $id; $position['type'] = AcarsType::FLIGHT_PATH; if (array_key_exists('sim_time', $position)) { if ($position['sim_time'] instanceof \DateTime) { $position['sim_time'] = Carbon::instance($position['sim_time']); } else { $position['sim_time'] = Carbon::createFromTimeString($position['sim_time']); } } if (array_key_exists('created_at', $position)) { if ($position['created_at'] instanceof \DateTime) { $position['created_at'] = Carbon::instance($position['created_at']); } else { $position['created_at'] = Carbon::createFromTimeString($position['created_at']); } } try { $update = Acars::create($position); $update->save(); $count++; } catch (QueryException $ex) { Log::info('Error on adding ACARS position: '.$ex->getMessage()); } } // Change the PIREP status if it's as SCHEDULED before if ($pirep->status === PirepStatus::INITIATED) { $pirep->status = PirepStatus::AIRBORNE; } $pirep->save(); return $this->message($count.' positions added', $count); } /** * Post ACARS LOG update for a PIREP. These updates won't show up on the map * But rather in a log file. * * @param $id * @param LogRequest $request * * @throws \App\Exceptions\PirepCancelled * @throws \Symfony\Component\HttpKernel\Exception\BadRequestHttpException * * @return \Illuminate\Http\JsonResponse */ public function acars_logs($id, LogRequest $request) { // Check if the status is cancelled... $pirep = Pirep::find($id); $this->checkCancelled($pirep); Log::debug('Posting ACARS log, PIREP: '.$id, $request->post()); $count = 0; $logs = $request->post('logs'); foreach ($logs as $log) { $log['pirep_id'] = $id; $log['type'] = AcarsType::LOG; if (array_key_exists('sim_time', $log)) { $log['sim_time'] = Carbon::createFromTimeString($log['sim_time']); } if (array_key_exists('created_at', $log)) { $log['created_at'] = Carbon::createFromTimeString($log['created_at']); } try { $acars = Acars::create($log); $acars->save(); $count++; } catch (QueryException $ex) { Log::info('Error on adding ACARS position: '.$ex->getMessage()); } } return $this->message($count.' logs added', $count); } /** * Post ACARS LOG update for a PIREP. These updates won't show up on the map * But rather in a log file. * * @param $id * @param EventRequest $request * * @throws \App\Exceptions\PirepCancelled * @throws \Symfony\Component\HttpKernel\Exception\BadRequestHttpException * * @return \Illuminate\Http\JsonResponse */ public function acars_events($id, EventRequest $request) { // Check if the status is cancelled... $pirep = Pirep::find($id); $this->checkCancelled($pirep); Log::debug('Posting ACARS event, PIREP: '.$id, $request->post()); $count = 0; $logs = $request->post('events'); foreach ($logs as $log) { $log['pirep_id'] = $id; $log['type'] = AcarsType::LOG; $log['log'] = $log['event']; if (array_key_exists('sim_time', $log)) { $log['sim_time'] = Carbon::createFromTimeString($log['sim_time']); } if (array_key_exists('created_at', $log)) { $log['created_at'] = Carbon::createFromTimeString($log['created_at']); } try { $acars = Acars::create($log); $acars->save(); $count++; } catch (QueryException $ex) { Log::info('Error on adding ACARS position: '.$ex->getMessage()); } } return $this->message($count.' logs added', $count); } }