Add link to download ACARS config from profile (#539)

* Add link to download ACARS config from profile

* Formatting
This commit is contained in:
Nabeel S
2020-02-07 13:29:43 -05:00
committed by GitHub
parent 94cfbd4748
commit dd9fbdb6f1
4 changed files with 50 additions and 6 deletions

View File

@@ -18,10 +18,8 @@ use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Facades\Validator;
use Intervention\Image\Facades\Image;
use Laracasts\Flash\Flash;
use Nwidart\Modules\Facades\Module;
/**
* Class ProfileController
*/
class ProfileController extends Controller
{
private $airlineRepo;
@@ -45,6 +43,21 @@ class ProfileController extends Controller
$this->userRepo = $userRepo;
}
/**
* Return whether the vmsACARS module is enabled or not
*/
private function acarsEnabled(): bool
{
// Is the ACARS module enabled?
$acars_enabled = false;
$acars = Module::find('VMSACARS');
if ($acars) {
$acars_enabled = $acars->isEnabled();
}
return $acars_enabled;
}
/**
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
@@ -57,6 +70,7 @@ class ProfileController extends Controller
}
return view('profile.index', [
'acars' => $this->acarsEnabled(),
'user' => Auth::user(),
'airports' => $airports,
]);
@@ -119,7 +133,7 @@ class ProfileController extends Controller
*
* @throws \Prettus\Validator\Exceptions\ValidatorException
*
* @return $this
* @return mixed
*/
public function update(Request $request)
{
@@ -200,4 +214,24 @@ class ProfileController extends Controller
return redirect(route('frontend.profile.index'));
}
/**
* Generate the ACARS config and send it to download
*
* @param \Illuminate\Http\Request $request
*
* @return \Illuminate\Contracts\Routing\ResponseFactory|\Illuminate\Http\Response
*/
public function acars(Request $request)
{
$user = Auth::user();
$config = view('system.acars.config', ['user' => $user])->render();
return response($config)->withHeaders([
'Content-Type' => 'text/xml',
'Content-Length' => strlen($config),
'Cache-Control' => 'no-store, no-cache',
'Content-Disposition' => 'attachment; filename="settings.xml',
]);
}
}