summaryrefslogtreecommitdiff
path: root/index.php
blob: c60b3863b843bc76815f9b3b9f2b516bd89cd828 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
<?php

setlocale(LC_TIME, array('fr_FR.UTF-8','fr_FR@euro','fr_FR','french'));

if (isset($_GET['next']) && is_integer((int)$_GET['next']) && $_GET['next'] > 0) {
    $file = date("Y-m-d", strtotime("+" . $_GET['next'] . " day"));
    $number = (int)date("Ymd", strtotime("+" . $_GET['next'] . " day"));
    $today = (int)date("Ymd");
} else if (isset($_GET['back']) && is_integer((int)$_GET['back']) && $_GET['back'] > 0) {
    $file = date("Y-m-d", strtotime("-" . $_GET['back'] . " day"));
    $number = (int)date("Ymd", strtotime("-" . $_GET['back'] . " day"));
    $today = (int)date("Ymd");
} else {
    $file = date("Y-m-d");
    $number = (int)date("Ymd");
    $today = (int)date("Ymd");
}

if ((int)substr($number, 4) >= 320 && (int)substr($number, 4) < 621) $image = "/seasons/spring.webp";
if ((int)substr($number, 4) >= 621 && (int)substr($number, 4) < 921) $image = "/seasons/summer.webp";
if ((int)substr($number, 4) >= 922 && (int)substr($number, 4) < 1221) $image = "/seasons/fall.webp";
if ((int)substr($number, 4) >= 1221) $image = "/seasons/winter.webp";
if ((int)substr($number, 4) < 320) $image = "/seasons/winter.webp";

if (isset($_GET['next']) && is_integer((int)$_GET['next']) && $_GET['next'] > 0) {
    if (strftime("%Y", strtotime("+" . $_GET['next'] . " day")) !== strftime("%Y")) {
        $_TITLE = strftime("%a %e %b %Y", strtotime("+" . $_GET['next'] . " day"));
    } else {
        $_TITLE = strftime("%a %e %b", strtotime("+" . $_GET['next'] . " day"));
    }
} else if (isset($_GET['back']) && is_integer((int)$_GET['back']) && $_GET['back'] > 0) {
    if (strftime("%Y", strtotime("-" . $_GET['back'] . " day")) !== strftime("%Y")) {
        $_TITLE = strftime("%a %e %b %Y", strtotime("-" . $_GET['back'] . " day"));
    } else {
        $_TITLE = strftime("%a %e %b", strtotime("-" . $_GET['back'] . " day"));
    }
} else {
    $_TITLE = strftime("%a %e %b");
}

require_once $_SERVER['DOCUMENT_ROOT'] . "/private/header.php";
$config = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/private/config.json"), true) ?>

<h1 style="text-align:center;margin-top:50px;">TimeTracker <small><small><small><small><a href="/glossary" title="Consulter le glossaire contenant de l'aide sur les termes techniques">[Glossaire]</a></small></small></small></small></h1>
<h2 style="text-align:center;"><?php

    if (isset($_GET['next']) && is_integer((int)$_GET['next']) && $_GET['next'] > 0) {
        if (strftime("%Y", strtotime("+" . $_GET['next'] . " day")) !== strftime("%Y")) {
            echo(strftime("%a %e %b %Y", strtotime("+" . $_GET['next'] . " day")));
        } else {
            echo(strftime("%a %e %b", strtotime("+" . $_GET['next'] . " day")));
        }
    } else if (isset($_GET['back']) && is_integer((int)$_GET['back']) && $_GET['back'] > 0) {
        if (strftime("%Y", strtotime("-" . $_GET['back'] . " day")) !== strftime("%Y")) {
            echo(strftime("%a %e %b %Y", strtotime("-" . $_GET['back'] . " day")));
        } else {
            echo(strftime("%a %e %b", strtotime("-" . $_GET['back'] . " day")));
        }
    } else {
        echo(strftime("%a %e %b"));
    }

    ?><br><small><small><small><a title="Mois précédent" href="/<?php

                if (isset($_GET['next']) && is_integer((int)$_GET['next']) && $_GET['next'] > 29) {
                    if ($_GET['next'] - 30 === 0) {
                        echo("");
                    } else {
                        echo("?next=" . ($_GET['next'] - 30));
                    }
                } else if (isset($_GET['back']) && is_integer((int)$_GET['back']) && $_GET['back'] > 0) {
                    echo("?back=" . ($_GET['back'] + 30));
                } else {
                    echo("?back=30");
                }

                ?>">[<<<]</a> &nbsp; <a title="Semaine suivante" href="/<?php

                if (isset($_GET['next']) && is_integer((int)$_GET['next']) && $_GET['next'] > 6) {
                    if ($_GET['next'] - 7 === 0) {
                        echo("");
                    } else {
                        echo("?next=" . ($_GET['next'] - 7));
                    }
                } else if (isset($_GET['back']) && is_integer((int)$_GET['back']) && $_GET['back'] > 0) {
                    echo("?back=" . ($_GET['back'] + 7));
                } else {
                    echo("?back=7");
                }

                ?>">[<<]</a> &nbsp; <a title="Jour précédent" href="/<?php

                if (isset($_GET['next']) && is_integer((int)$_GET['next']) && $_GET['next'] > 0 && $_GET['next'] < 738389) {
                    if ($_GET['next'] - 1 === 0) {
                        echo("");
                    } else {
                        echo("?next=" . ($_GET['next'] - 1));
                    }
                } else if (isset($_GET['back']) && is_integer((int)$_GET['back']) && $_GET['back'] > 0 && $_GET['back'] < 738389) {
                    echo("?back=" . ($_GET['back'] + 1));
                } else {
                    echo("?back=1");
                }

        ?>">[<]</a> &nbsp; <a href="/" title="Retourner à la page d'aujourd'hui">[Aujourd'hui]</a> &nbsp; <a title="Jour suivant" href="/<?php

                if (isset($_GET['back']) && is_integer((int)$_GET['back']) && $_GET['back'] > 0) {
                    if ($_GET['back'] - 1 === 0) {
                        echo("");
                    } else {
                        echo("?back=" . ($_GET['back'] - 1));
                    }
                } else if (isset($_GET['next']) && is_integer((int)$_GET['next']) && $_GET['next'] > 0) {
                    echo("?next=" . ($_GET['next'] + 1));
                } else {
                    echo("?next=1");
                }

                ?>">[>]</a> &nbsp; <a title="Semaine suivante" href="/<?php

                if (isset($_GET['back']) && is_integer((int)$_GET['back']) && $_GET['back'] > 6) {
                    if ($_GET['back'] - 7 === 0) {
                        echo("");
                    } else {
                        echo("?back=" . ($_GET['back'] - 7));
                    }
                } else if (isset($_GET['next']) && is_integer((int)$_GET['next']) && $_GET['next'] > 0) {
                    echo("?next=" . ($_GET['next'] + 7));
                } else {
                    echo("?next=7");
                }

                ?>">[>>]</a> &nbsp; <a title="Mois suivant" href="/<?php

                if (isset($_GET['back']) && is_integer((int)$_GET['back']) && $_GET['back'] > 29) {
                    if ($_GET['back'] - 30 === 0) {
                        echo("");
                    } else {
                        echo("?back=" . ($_GET['back'] - 30));
                    }
                } else if (isset($_GET['next']) && is_integer((int)$_GET['next']) && $_GET['next'] > 0) {
                    echo("?next=" . ($_GET['next'] + 30));
                } else {
                    echo("?next=30");
                }

                ?>">[>>>]</a></small></small></small></h2>
<br>
<hr>

<div class="container">
    <?php foreach ($config["birthdays"] as $birthday): if (substr($number, 4) === $birthday["date"]): ?>
        <div class="alert alert-info">
            <strong>🎂 Anniversaire</strong> de <?= $birthday["name"] ?> (<?= explode("-", $file)[0] - $birthday["year"] ?> an<?= explode("-", $file)[0] - $birthday["year"] > 1 ? "s" : "" ?><?= explode("-", $file)[0] - $birthday["year"] === 18 ? ", majorité" : "" ?>)
        </div>
    <?php endif; endforeach; ?>
    <?php foreach ($config["events"] as $event): if (substr($number, 4) === $event["date"]): ?>
        <div class="alert alert-info">
            <strong><?= $event["name"] ?></strong>
        </div>
    <?php endif; endforeach; ?>
    <?php if ($number === $today): ?>
        <div class="alert alert-success">
            <strong>Vous consultez les informations d'aujourd'hui,</strong> les données peuvent ne pas être complètes.
        </div>
    <?php endif; ?>
    <?php if ($number > $today): ?>
    <div class="alert alert-danger">
        <strong>Erreur :</strong> Vous ne pouvez pas consulter les données d'un jour qui se situe dans le futur.
    </div>
    <?php else: if ($config["born"] > $number): ?>
    <div class="alert alert-danger">
        <strong>Erreur :</strong> Le gestionnaire de cette instance de TimeTracker n'été pas né à ce jour.
    </div>
    <?php else: if (!file_exists($_SERVER['DOCUMENT_ROOT'] . "/private/db/" . $file . ".json")): ?>
    <div class="alert alert-warning">
        <strong>Avertissement :</strong> Aucune donnée n'est disponible pour le jour sélectionné.
    </div>
    <?php else: ?>
    <ul class="list-group">
        <?php $day = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/private/db/" . $file . ".json"), true); foreach ($day as $item): ?>
        <li class="list-group-item"><?= preg_replace("@\[([a-zA-Z0-9 ,.;:|!?*\$€<>(){}'\"~éèàêâùô¡¿§µ%£#_`\@=+-/]*)\]@", "<a href=\"/glossary/#$1\">$1</a>", $item) ?></li>
        <?php endforeach; ?>
    </ul>
    <?php endif; endif; endif; ?>
</div>

<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/private/footer.php"; ?>