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
|
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/../config.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/../lib/utils.php';
if (!FILE_DELETION) {
json_response(null, 'File deletion is not allowed!', 403);
exit();
}
$file_id = $_GET['f'] ?: null;
$password = $_GET['key'] ?: null;
if (!isset($file_id, $password)) {
json_response(null, "Fields 'f' and 'key' must be set!", 400);
exit();
}
$file_id = explode('.', $file_id);
$file_ext = $file_id[1];
$file_id = $file_id[0];
if (!preg_match('/^[a-zA-Z0-9_-]+$/', $file_id) || !preg_match('/^[a-zA-Z0-9]+$/', $file_ext)) {
json_response(null, "Invalid file ID or extension", 400);
exit();
}
if (!is_file(FILE_UPLOAD_DIRECTORY . "/{$file_id}.{$file_ext}")) {
json_response(null, "File {$file_id} not found", 404);
exit();
}
if (!is_file(FILE_METADATA_DIRECTORY . "/{$file_id}.metadata.json")) {
json_response(null, "File metadata {$file_id} not found", 404);
exit();
}
$metadata = json_decode(file_get_contents(FILE_METADATA_DIRECTORY . "/{$file_id}.metadata.json"), true);
if (!array_key_exists('password', $metadata)) {
json_response(null, "File {$file_id} does not have a password. File cannot be deleted!", 400);
exit();
}
if (!password_verify($password, $metadata['password'])) {
json_response(null, "Bad password", 401);
exit();
}
if (!delete_file($file_id, $file_ext)) {
json_response(null, 'Failed to remove files. Try again later.', 500);
exit();
}
json_response(
[
'id' => $file_id,
'extension' => $file_ext
],
'Successfully deleted the file'
);
|