forked from icret/EasyImages2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
del.php
365 lines (336 loc) · 10.4 KB
/
del.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
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
<?php
/**
* 删除/回收文件页面
* @author Icret
* 2023-3-15 11:01:52
*/
require __DIR__ . '/function.php';
if (empty($_REQUEST)) {
exit(json_encode(array(
'code' => 200,
'msg' => '无效请求',
'type' => 'success',
'icon' => 'exclamation-sign',
'mode' => 'get',
'url' => null
), JSON_UNESCAPED_UNICODE));
}
// 解密删除
if (isset($_GET['hash'])) {
$delHash = $_GET['hash'];
$delHash = urlHash($delHash, 1);
if ($config['image_recycl']) {
// 如果开启回收站则进入回收站
if (checkImg($delHash, 3, 'recycle/') === true) {
any_upload($delHash, $delHash, 'delete'); // FTP删除
exit(json_encode(array(
'code' => 200,
'msg' => '删除成功',
'type' => 'success',
'icon' => 'ok-sign',
'mode' => 'delete',
'url' => $delHash
), JSON_UNESCAPED_UNICODE));
} else {
exit(json_encode(array(
'code' => 404,
'msg' => '文件不存在',
'type' => 'danger',
'icon' => 'exclamation-sign',
'mode' => 'delete',
'url' => $delHash
), JSON_UNESCAPED_UNICODE));
}
} else {
getDel($delHash, 'url'); // 直接删除
any_upload($delHash, $delHash, 'delete'); // FTP删除
exit(json_encode(array(
'code' => 200,
'msg' => '删除成功',
'type' => 'success',
'icon' => 'ok-sign',
'mode' => 'delete',
'url' => $delHash
), JSON_UNESCAPED_UNICODE));
}
exit(json_encode(array(
'code' => 404,
'msg' => '删除失败',
'type' => 'danger',
'icon' => 'exclamation-sign',
'mode' => 'delete',
'url' => $delHash
), JSON_UNESCAPED_UNICODE));
}
// 非管理员不可访问
if (!is_who_login('admin')) exit('Permission denied');
// 广场 - 批量删除文件
if (isset($_POST['del_url_array'])) {
$del_url_array = $_POST['del_url_array'];
$del_num = count($del_url_array);
for ($i = 0; $i < $del_num; $i++) {
getDel($del_url_array[$i], 'url');
// FTP删除
any_upload($del_url_array[$i], $del_url_array[$i], 'delete');
}
echo json_encode(array(
'code' => 200,
'msg' => '删除成功',
'type' => 'success',
'icon' => 'ok-sign',
'mode' => 'delete',
'url' => $del_url_array
), JSON_UNESCAPED_UNICODE);
}
// 广场 - 批量回收文件
if (isset($_POST['recycle_url_array'])) {
$recycle_url_array = $_POST['recycle_url_array'];
$del_num = count($recycle_url_array);
for ($i = 0; $i < $del_num; $i++) {
checkImg($recycle_url_array[$i], 3);
}
}
if (isset($_POST['url'])) $postURL = strip_tags($_POST['url']);
// 广场|日志 - 单文件删除
if (isset($_POST['mode']) && $_POST['mode'] === 'delete') {
$reslut = easyimage_delete($postURL, 'url');
// FTP删除
any_upload($postURL, $postURL, 'delete');
if ($reslut) {
exit(json_encode(array(
'code' => 200,
'msg' => '删除成功',
'type' => 'success',
'icon' => 'ok-sign',
'mode' => 'delete',
'url' => $postURL
), JSON_UNESCAPED_UNICODE));
} else {
exit(json_encode(array(
'code' => 404,
'msg' => '删除失败',
'type' => 'danger',
'icon' => 'exclamation-sign',
'mode' => 'delete',
'url' => $postURL
), JSON_UNESCAPED_UNICODE));
}
}
// 广场|日志 - 回收文件
if (isset($_POST['mode']) && $_POST['mode'] === 'recycle') {
if (is_file(APP_ROOT . $postURL)) {
checkImg($postURL, 3);
exit(json_encode(array(
'code' => 200,
'msg' => '回收成功',
'type' => 'success',
'icon' => 'ok-sign',
'mode' => 'recycle',
'url' => $postURL
), JSON_UNESCAPED_UNICODE));
} else {
exit(json_encode(array(
'code' => 404,
'msg' => '回收失败',
'type' => 'danger',
'icon' => 'exclamation-sign',
'mode' => 'delete',
'url' => $postURL
), JSON_UNESCAPED_UNICODE));
}
}
// 管理页面 - 删除版本信息文件
if (isset($_POST['mode']) && $_POST['mode'] === 'del_version_file') {
try {
@unlink(APP_ROOT . $postURL);
$re = json_encode(array(
'code' => 200,
'msg' => '删除成功',
'type' => 'success',
'icon' => 'ok-sign',
'mode' => 'delete',
'url' => $postURL
), JSON_UNESCAPED_UNICODE);
throw new Exception('更新版本号失败');
} catch (Exception $e) {
$re = json_encode(array(
'code' => 404,
'msg' => $e->getMessage(),
'type' => 'danger',
'icon' => 'exclamation-sign',
'mode' => 'delete',
'url' => $postURL
), JSON_UNESCAPED_UNICODE);
} finally {
exit($re);
}
}
// 管理页面 - 回收站恢复文件
if (isset($_POST['mode']) && $_POST['mode'] === 'recycle_reimg') {
try {
if (re_checkImg($postURL, 'recycle/') === true) {
$re = json_encode(array(
'code' => 200,
'msg' => '恢复成功',
'type' => 'success',
'icon' => 'ok-sign',
'mode' => 'delete',
'url' => $postURL
), JSON_UNESCAPED_UNICODE);
} else {
throw new Exception('恢复失败');
}
} catch (Exception $e) {
$re = json_encode(array(
'code' => 404,
'msg' => $e->getMessage(),
'type' => 'danger',
'icon' => 'exclamation-sign',
'mode' => 'delete',
'url' => $postURL
), JSON_UNESCAPED_UNICODE);
} finally {
exit($re);
}
}
// 管理页面 - 监黄恢复文件
if (isset($_POST['mode']) && $_POST['mode'] === 'suspic_reimg') {
try {
if (re_checkImg($postURL, 'suspic/') === true) {
$re = json_encode(array(
'code' => 200,
'msg' => '恢复成功',
'type' => 'success',
'icon' => 'ok-sign',
'mode' => 'delete',
'url' => $postURL
), JSON_UNESCAPED_UNICODE);
} else {
throw new Exception('恢复失败');
}
} catch (Exception $e) {
$re = json_encode(array(
'code' => 404,
'msg' => $e->getMessage(),
'type' => 'danger',
'icon' => 'exclamation-sign',
'mode' => 'delete',
'url' => $postURL
), JSON_UNESCAPED_UNICODE);
} finally {
exit($re);
}
}
// 管理页面 - 删除非空目录
if (isset($_POST['mode']) && $_POST['mode'] === 'delDir') {
try {
$delDir = APP_ROOT . $config['path'] . $postURL; // 限制删除目录
if (deldir($delDir)) {
$re = json_encode(array(
'code' => 200,
'msg' => '删除文件夹成功',
'type' => 'success',
'icon' => 'ok-sign',
'mode' => 'delete',
'url' => $postURL
), JSON_UNESCAPED_UNICODE);
} else {
throw new Exception('删除文件夹失败');
}
} catch (Exception $e) {
$re = json_encode(array(
'code' => 404,
'msg' => $e->getMessage(),
'type' => 'danger',
'icon' => 'exclamation-sign',
'mode' => 'delete',
'url' => $postURL
), JSON_UNESCAPED_UNICODE);
} finally {
exit($re);
}
}
// 管理页面 - 删除指定日期文件夹
if (isset($_POST['dateDir'])) {
$delDir = APP_ROOT . $config['path'] . $_POST['dateDir'];
if (deldir($delDir)) {
echo json_encode(array(
'code' => 200,
'msg' => '删除成功',
'type' => 'success',
'icon' => 'ok-sign',
'mode' => 'delDir',
'url' => $delDir
), JSON_UNESCAPED_UNICODE);
exit;
} else {
exit(json_encode(array(
'code' => 404,
'msg' => '删除失败',
'type' => 'danger',
'icon' => 'exclamation-sign',
'mode' => 'delDir',
'url' => $delDir
), JSON_UNESCAPED_UNICODE));
}
}
// 管理页面 - 删除指定文件
if (isset($_POST['url_admin_inc'])) {
$del_url = $_POST['url_admin_inc'];
if ($config['hide_path']) {
$del_url = $config['domain'] . $config['path'] . parse_url($del_url)['path'];
}
if (easyimage_delete($del_url, 'url') === TRUE) {
exit(json_encode(array(
'code' => 200,
'msg' => '删除成功',
'type' => 'success',
'icon' => 'ok-sign',
'mode' => 'delete',
'url' => $del_url
), JSON_UNESCAPED_UNICODE));
}
exit(json_encode(array(
'code' => 404,
'msg' => '删除失败',
'type' => 'danger',
'icon' => 'exclamation-sign',
'mode' => 'delete',
'url' => $del_url
), JSON_UNESCAPED_UNICODE));
}
// 管理页面 - 重置OPcache缓存
if (isset($_POST['mode']) && $_POST['mode'] === 'OPcache') {
if (!function_exists('opcache_reset')) {
exit(json_encode(array(
'code' => 404,
'msg' => '未开启OPcache',
'type' => 'danger',
'icon' => 'exclamation-sign',
'mode' => 'delete',
), JSON_UNESCAPED_UNICODE));
}
try {
if (opcache_reset() === true) {
$re = json_encode(array(
'code' => 200,
'msg' => '重置缓存成功',
'type' => 'success',
'icon' => 'ok-sign',
'mode' => 'delete',
), JSON_UNESCAPED_UNICODE);
} else {
throw new Exception('重置缓存失败');
}
} catch (Exception $e) {
$re = json_encode(array(
'code' => 404,
'msg' => $e->getMessage(),
'type' => 'danger',
'icon' => 'exclamation-sign',
'mode' => 'delete',
), JSON_UNESCAPED_UNICODE);
} finally {
exit($re);
}
}