aboutsummaryrefslogtreecommitdiff
path: root/app/Http/Controllers/RoscoLekoController.php
blob: 7244ffc72bf1709fc1c2e8ff734ec91f94e0d033 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php

namespace App\Http\Controllers;

use Illuminate\Support\Facades\File;
use Illuminate\View\View;

class RoscoLekoController extends Controller {
    public function getImages(): array {
        $images = [];
        foreach (File::glob(public_path('images/pandamonium').'/*') 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('pandamonium', [
            'images' => $this->getImages(),
        ]);
    }
}