phpvms/app/Http/Controllers/Frontend/DownloadController.php

105 lines
3.1 KiB
PHP
Raw Normal View History

2018-04-03 07:37:41 +08:00
<?php
namespace App\Http\Controllers\Frontend;
use App\Contracts\Controller;
use App\Models\Airline;
2018-04-03 07:37:41 +08:00
use App\Models\File;
use Auth;
use Flash;
use Illuminate\Support\Facades\Storage;
/**
* Class DownloadController
*/
class DownloadController extends Controller
{
/**
* Show all of the available files
*/
public function index()
{
$airlines = Airline::where('active', 1)->count();
2018-04-03 07:37:41 +08:00
$files = File::orderBy('ref_model', 'asc')->get();
/**
* Group all the files but compound the model with the ID,
* since we can have multiple files for every `ref_model`
*/
2018-08-27 00:40:04 +08:00
$grouped_files = $files->groupBy(function ($item, $key) {
2018-04-03 07:37:41 +08:00
return $item['ref_model'].'_'.$item['ref_model_id'];
});
/**
* The $group here looks like: App\Models\Airport_KAUS
* Split it into the $class and $id, and then change the
* name of the group to the object instance "name"
*/
$regrouped_files = [];
2018-08-27 00:40:04 +08:00
foreach ($grouped_files as $group => $files) {
2018-04-03 07:37:41 +08:00
[$class, $id] = explode('_', $group);
$klass = new $class();
$obj = $klass->find($id);
$category = explode('\\', $class);
$category = end($category);
if ($category == 'Aircraft' && $airlines > 1) {
$group_name = $category.' > '.$obj->subfleet->airline->name.' '.$obj->icao.' '.$obj->registration;
} elseif ($category == 'Aircraft') {
$group_name = $category.' > '.$obj->icao.' '.$obj->registration;
} elseif ($category == 'Airport') {
$group_name = $category.' > '.$obj->icao.' : '.$obj->name.' ('.$obj->country.')';
} elseif ($category == 'Subfleet' && $airlines > 1) {
$group_name = $category.' > '.$obj->airline->name.' '.$obj->name;
} else {
$group_name = $category.' > '.$obj->name;
}
2018-04-03 07:37:41 +08:00
$regrouped_files[$group_name] = $files;
}
ksort($regrouped_files, SORT_STRING);
2018-04-03 07:37:41 +08:00
return view('downloads.index', [
'grouped_files' => $regrouped_files,
]);
}
/**
* Show the application dashboard
2018-08-27 00:40:04 +08:00
*
2018-08-27 02:50:08 +08:00
* @param string $id
*
* @return mixed
* @return \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector|\Symfony\Component\HttpFoundation\StreamedResponse
2018-04-03 07:37:41 +08:00
*/
public function show($id)
{
/**
* @var File $file
*/
$file = File::find($id);
if (!$file) {
Flash::error('File doesn\'t exist');
return redirect()->back();
}
// Allowed to download? If not, direct to login
if (!$file->public && !Auth::check()) {
return redirect(config('phpvms.login_redirect'));
2018-04-03 07:37:41 +08:00
}
2018-08-27 00:40:04 +08:00
$file->download_count++;
2018-04-03 07:37:41 +08:00
$file->save();
2018-08-27 00:40:04 +08:00
if ($file->disk === 'public') {
2018-04-03 07:37:41 +08:00
$storage = Storage::disk('public');
return $storage->download($file->path, $file->filename);
}
// TODO: Config for streamed response?
return redirect()->to($file->url);
}
}