-
Notifications
You must be signed in to change notification settings - Fork 1
/
delete.php
95 lines (85 loc) · 2.43 KB
/
delete.php
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
<?php
/*
* Copyright 2008-2024 Anael MOBILIA
*
* This file is part of image-heberg.fr.
*
* image-heberg.fr is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* image-heberg.fr is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with image-heberg.fr. If not, see <http://www.gnu.org/licenses/>
*/
namespace ImageHeberg;
if (!defined('_PHPUNIT_')) {
require 'config/config.php';
}
$erreur = false;
$msgErreur = '';
/**
* Vérification du paramètre
*/
if (!isset($_GET['id'], $_GET['type'])) {
$erreur = true;
$msgErreur .= 'La page n\'a pas été appelée correctement !<br />';
}
/**
* Chargement de l'image depuis la BDD
*/
if (!$erreur) {
if ((int)$_GET['type'] === RessourceObject::TYPE_IMAGE) {
$monImage = new ImageObject();
} else {
$monImage = new MiniatureObject();
}
$retour = $monImage->charger($_GET['id']);
// Gestion du retour
if (!$retour) {
$erreur = true;
$msgErreur .= 'Cette image n\'existe pas !<br />';
}
}
/**
* Vérification des droits sur l'image
* -> Possession
* -> Envoi il y a moins d'une heure par la même @ IP
*/
if (!$erreur) {
if (
$monImage->isProprietaire()
|| (
(strtotime($monImage->getDateEnvoiBrute()) + 3600) > time()
&& $monImage->getIpEnvoi() === $_SERVER['REMOTE_ADDR']
)
) {
// Effacement...
$monImage->supprimer();
} else {
$erreur = true;
$msgErreur = 'Vous n\'avez pas le droit de supprimer cette image !<br />';
}
}
// Pas d'erreur => Redirection sur la page d'accueil
if (empty($erreur)) {
header('Location: ' . _URL_HTTPS_ . '?delete_success');
} else {
require _TPL_TOP_;
?>
<h1 class="mb-3"><small>Suppression du fichier</small></h1>
<div class="alert alert-danger">
<span class="glyphicon glyphicon-remove"></span>
<b>Une erreur a été rencontrée !</b>
<br/>
<?= $msgErreur ?>
</div>
<?php
require _TPL_BOTTOM_;
}