]> jfr.im git - uguu.git/blob - src/static/php/checkExpire.php
replace name generator method
[uguu.git] / src / static / php / checkExpire.php
1 <?php
2 /*
3 * Uguu
4 *
5 * @copyright Copyright (c) 2022-2024 Go Johansson (nokonoko) <neku@pomf.se>
6 *
7 * Note that this was previously distributed under the MIT license 2015-2022.
8 *
9 * If you are a company that wants to use Uguu I urge you to contact me to
10 * solve any potential license issues rather then using pre-2022 code.
11 *
12 * A special thanks goes out to the open source community around the world
13 * for supporting and being the backbone of projects like Uguu.
14 *
15 * This project can be found at <https://github.com/nokonoko/Uguu>.
16 *
17 * This program is free software: you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation, either version 3 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program. If not, see <https://www.gnu.org/licenses/>.
29 */
30
31 require_once __DIR__ . '/vendor/autoload.php';
32
33 use Pomf\Uguu\Classes\expireChecker;
34
35 $check = new expireChecker();
36 $dbResult = $check->checkDB();
37 $check->cleanRateLimitDB();
38 if (empty($dbResult['ids'])) {
39 echo "No file(s) expired, nothing to do.";
40 } else {
41 $check->deleteFromDB($dbResult['ids']);
42 $check->deleteFiles($dbResult['filenames']);
43 }