2021-05-04 12:54:59 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 删除文件页面
|
|
|
|
*/
|
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/libs/header.php';
|
|
|
|
require_once '../libs/function.php';
|
2021-05-08 07:35:27 +00:00
|
|
|
echo '<div class="col-md-4 col-md-offset-4">
|
|
|
|
<div id="title" style="margin: 10px;"></div>
|
|
|
|
|
|
|
|
<form class="form-inline" method="get" action="' . $_SERVER['PHP_SELF'] . '" id="form" name="delForm" onSubmit="getStr();">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="exampleInputInviteCode3">删除图片-格式:</label>
|
|
|
|
<input type="text" class="form-control" id="exampleInputInviteCode3" name="url" placeholder="https://i1.100024.xyz/i/2021/05/04/10fn9ei.jpg">
|
|
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary">删除</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
';
|
2021-05-04 12:54:59 +00:00
|
|
|
if (empty($_REQUEST)) {
|
|
|
|
echo '
|
|
|
|
<script>
|
|
|
|
new $.zui.Messager("没有要删除的图片!", {type: "danger" // 定义颜色主题
|
|
|
|
}).show();
|
|
|
|
// 延时3.5s跳转
|
|
|
|
window.setTimeout("window.location=\'/../ \'",3500);
|
|
|
|
</script>
|
|
|
|
';
|
|
|
|
} elseif (isset($_GET['url'])) {
|
|
|
|
$img = $_GET['url'];
|
2021-05-08 07:35:27 +00:00
|
|
|
echo '
|
|
|
|
<div class="col-md-12">
|
|
|
|
<hr />
|
|
|
|
<a href="' . $img . '" target="_blank"><img src="' . $img . '" alt="简单图床-EasyImage" class="img-thumbnail"></a>
|
|
|
|
</div>';
|
2021-05-04 12:54:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 解密删除
|
|
|
|
if (isset($_GET['hash'])) {
|
|
|
|
$delFile = $_GET['hash'];
|
2021-05-04 20:35:06 +00:00
|
|
|
$delFile = urlHash($delFile, 1);
|
2021-05-04 12:54:59 +00:00
|
|
|
getDel($delFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 检查登录后再处理url删除请求
|
|
|
|
if (is_online()) {
|
|
|
|
if (isset($_GET['url'])) {
|
|
|
|
getDel($_GET['url']);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (isset($_GET['url'])) {
|
|
|
|
echo '
|
|
|
|
<script>
|
|
|
|
new $.zui.Messager("请登录后再删除", {type: "danger" // 定义颜色主题
|
|
|
|
}).show();
|
|
|
|
// 延时2s跳转
|
|
|
|
window.setTimeout("window.location=\'/../libs/login.php \'",2000);
|
|
|
|
</script>
|
|
|
|
';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once '../libs/footer.php';
|
2021-05-08 07:35:27 +00:00
|
|
|
?>
|
|
|
|
<script>
|
|
|
|
var oBtn = document.getElementById('del');
|
|
|
|
var oTi = document.getElementById('title');
|
|
|
|
if ('oninput' in oBtn) {
|
|
|
|
oBtn.addEventListener("input", getWord, false);
|
|
|
|
} else {
|
|
|
|
oBtn.onpropertychange = getWord;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getWord() {
|
|
|
|
oTi.innerHTML = '<img src="' + oBtn.value + '" width="200" class="img-rounded" /><br />';
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
// 动态修改请求地址
|
|
|
|
function getStr(string, str) {
|
|
|
|
string = oBtn.value;
|
|
|
|
str = 'images';
|
|
|
|
var str_before = string.split(str)[0];
|
|
|
|
document.delForm.action = str_before + 'del.php';
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
</script>
|