diff options
author | floppydiskette <floppydisk@hyprcat.net> | 2024-12-07 01:11:00 +0000 |
---|---|---|
committer | floppydiskette <floppydisk@hyprcat.net> | 2024-12-07 01:11:00 +0000 |
commit | f0f87f2a0450dded7b8af43ef397b398cb60a847 (patch) | |
tree | 1fe73985598aac1301ef971f6f5180e2c103d9a0 /app | |
parent | 4a39504f6cb9146bea6b30343efaedf2a6f02d9a (diff) |
rosco :3
Diffstat (limited to 'app')
-rw-r--r-- | app/Http/Controllers/RoscoController.php | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/app/Http/Controllers/RoscoController.php b/app/Http/Controllers/RoscoController.php new file mode 100644 index 0000000..9986831 --- /dev/null +++ b/app/Http/Controllers/RoscoController.php @@ -0,0 +1,48 @@ +<?php + +namespace App\Http\Controllers; + +use Illuminate\Support\Facades\File; +use Illuminate\View\View; + +class RoscoController extends Controller { + public function getImages(): array { + $images = []; + foreach (File::glob(public_path('images/rosco').'/*') as $path) { + $image_data = []; + try { + $exif = exif_read_data($path); + } catch (Exception $ex) { + + } + $image_data["path"] = str_replace(public_path(), '', $path); + if (isset($exif)) { + if (isset($exif["ImageDescription"])) { + $image_data["description"] = $exif["ImageDescription"]; + } + if (isset($exif["DateTime"])) { + $image_data["date"] = strtotime($exif["DateTime"]); + } + } + array_push($images, $image_data); + } + + usort($images, function ($a, $b) { + $dateA = $a['date'] ?? PHP_INT_MIN; + $dateB = $b['date'] ?? PHP_INT_MIN; + return $dateB <=> $dateA; + }); + + return $images; + } + + /** + * Shows the page + * @return View + */ + public function show(): View { + return view('rosco', [ + 'images' => $this->getImages(), + ]); + } +} |