2021-03-23 12:58:16 +00:00
|
|
|
|
<?php
|
2022-04-29 08:47:23 +00:00
|
|
|
|
|
|
|
|
|
namespace Verot\Upload;
|
|
|
|
|
|
2022-02-04 12:28:33 +00:00
|
|
|
|
require __DIR__ . '/function.php';
|
|
|
|
|
require __DIR__ . '/class.upload.php';
|
2021-03-23 12:58:16 +00:00
|
|
|
|
|
2022-01-27 09:25:46 +00:00
|
|
|
|
// 检查登录
|
|
|
|
|
if ($config['mustLogin']) {
|
2023-02-04 02:55:33 +00:00
|
|
|
|
if (!is_who_login('status')) {
|
2022-04-11 05:35:48 +00:00
|
|
|
|
exit(json_encode(array(
|
|
|
|
|
"result" => "failed",
|
|
|
|
|
"code" => 401,
|
|
|
|
|
"message" => "本站已开启登陆上传,您尚未登陆",
|
|
|
|
|
)));
|
|
|
|
|
}
|
2022-01-27 09:25:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-02-01 14:20:33 +00:00
|
|
|
|
// 无文件
|
|
|
|
|
if (empty($_FILES['file'])) {
|
|
|
|
|
exit(json_encode(
|
|
|
|
|
array(
|
|
|
|
|
"result" => "failed",
|
|
|
|
|
"code" => 204,
|
|
|
|
|
"message" => "没有选择上传的文件",
|
|
|
|
|
)
|
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-19 17:55:20 +00:00
|
|
|
|
// 黑/白IP名单上传
|
|
|
|
|
if ($config['check_ip']) {
|
|
|
|
|
if (checkIP(null, $config['check_ip_list'], $config['check_ip_model'])) {
|
|
|
|
|
// 上传错误 code:403 未授权IP
|
|
|
|
|
exit(json_encode(array(
|
|
|
|
|
"result" => "failed",
|
|
|
|
|
"code" => 403,
|
|
|
|
|
"message" => "黑名单内或白名单外用户不允许上传",
|
|
|
|
|
)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-02-01 14:20:33 +00:00
|
|
|
|
// 根据IP限制游客每日上传数量
|
2023-02-04 02:55:33 +00:00
|
|
|
|
if ($config['ip_upload_counts'] > 0 && !is_who_login('status')) {
|
2023-02-01 14:20:33 +00:00
|
|
|
|
$ipList = APP_ROOT . '/admin/logs/ipcounts/' . date('Ymd') . '.php';
|
|
|
|
|
if (is_file($ipList)) {
|
|
|
|
|
$ipList = file_get_contents($ipList);
|
|
|
|
|
$ipList = explode(PHP_EOL, $ipList);
|
|
|
|
|
if (array_count_values($ipList)[real_ip()] >= $config['ip_upload_counts']) {
|
|
|
|
|
exit(json_encode(
|
|
|
|
|
array(
|
|
|
|
|
"result" => "failed",
|
|
|
|
|
"code" => 403,
|
|
|
|
|
"message" => "游客限制每日上传 " . $config['ip_upload_counts'] . ' 张',
|
|
|
|
|
)
|
|
|
|
|
));
|
|
|
|
|
}
|
|
|
|
|
clearstatcache();
|
|
|
|
|
}
|
2022-05-09 06:37:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-03-23 12:58:16 +00:00
|
|
|
|
$handle = new Upload($_FILES['file'], 'zh_CN');
|
|
|
|
|
|
|
|
|
|
if ($handle->uploaded) {
|
|
|
|
|
// 允许上传的mime类型
|
2023-01-21 03:56:00 +00:00
|
|
|
|
if ($config['allowed'] === 1) {
|
2022-12-29 18:58:26 +00:00
|
|
|
|
$handle->allowed = array('image/*');
|
|
|
|
|
}
|
2023-01-21 03:56:00 +00:00
|
|
|
|
|
2021-03-23 12:58:16 +00:00
|
|
|
|
// 文件命名
|
2022-01-03 22:31:05 +00:00
|
|
|
|
$handle->file_new_name_body = imgName($handle->file_src_name_body);
|
2022-05-03 05:00:40 +00:00
|
|
|
|
|
2021-03-23 12:58:16 +00:00
|
|
|
|
// 最大上传限制
|
2023-01-21 03:56:00 +00:00
|
|
|
|
$handle->file_max_size = $config['maxSize'];
|
2021-03-23 12:58:16 +00:00
|
|
|
|
// 最大宽度
|
|
|
|
|
$handle->image_max_width = $config['maxWidth'];
|
|
|
|
|
// 最大高度
|
|
|
|
|
$handle->image_max_height = $config['maxHeight'];
|
|
|
|
|
// 最小宽度
|
|
|
|
|
$handle->image_min_width = $config['minWidth'];
|
|
|
|
|
// 最小高度
|
|
|
|
|
$handle->image_min_height = $config['minHeight'];
|
2023-01-21 03:56:00 +00:00
|
|
|
|
// 2023-01-06 转换图片为指定格式 只转换非webp格式和非动态图片
|
2023-01-26 04:32:04 +00:00
|
|
|
|
if ($handle->file_src_name_ext !== 'webp' && !isGifAnimated($handle->file_src_pathname)) {
|
2023-01-21 03:56:00 +00:00
|
|
|
|
$handle->image_convert = $config['imgConvert'];
|
2022-03-10 15:40:15 +00:00
|
|
|
|
}
|
2023-01-21 03:56:00 +00:00
|
|
|
|
// 2023-01-06 PNG 图像的压缩级别,介于 1(快速但大文件)和 9(慢但较小文件)之间
|
|
|
|
|
$handle->png_compression = 9 - round($config['compress_ratio'] / 11.2);
|
|
|
|
|
// WEBP 图像的压缩质量 1-100
|
|
|
|
|
$handle->webp_quality = $config['compress_ratio'];
|
|
|
|
|
// JPEG 图像的压缩质量 1-100
|
|
|
|
|
$handle->jpeg_quality = $config['compress_ratio'];
|
2021-05-22 03:27:53 +00:00
|
|
|
|
|
2022-05-03 05:00:40 +00:00
|
|
|
|
/* 等比例缩减图片 放到前端了*/
|
|
|
|
|
/*
|
2021-03-23 12:58:16 +00:00
|
|
|
|
if ($config['imgRatio']) {
|
2021-03-28 11:42:59 +00:00
|
|
|
|
$handle->image_resize = true;
|
2021-03-23 12:58:16 +00:00
|
|
|
|
$handle->image_x = $config['image_x'];
|
2021-03-28 11:42:59 +00:00
|
|
|
|
$handle->image_y = $config['image_y'];
|
2022-05-03 05:00:40 +00:00
|
|
|
|
// 如果调整后的图像大于原始图像,则取消调整大小,以防止放大
|
|
|
|
|
$handle->image_no_enlarging = true;
|
2021-03-23 12:58:16 +00:00
|
|
|
|
}
|
2021-05-08 07:35:27 +00:00
|
|
|
|
*/
|
2021-05-22 03:27:53 +00:00
|
|
|
|
|
2022-05-03 05:00:40 +00:00
|
|
|
|
/**
|
|
|
|
|
* 为管理员和登陆用户创建自定义上传目录
|
|
|
|
|
* 管理员上传目录为自定义目录
|
|
|
|
|
* 上传者目录为其用户名
|
|
|
|
|
* 2022年5月1日
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// 默认目录
|
|
|
|
|
$Img_path = config_path();
|
|
|
|
|
|
|
|
|
|
// 开启管理员自定义目录
|
|
|
|
|
if ($config['admin_path_status']) {
|
|
|
|
|
if (checkLogin() == 204) {
|
|
|
|
|
$Img_path = config_path($config['admin_path'] . date('/Y/m/d/'));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 开启上传者单独目录
|
|
|
|
|
if ($config['guest_path_status']) {
|
|
|
|
|
if (checkLogin() == 205) {
|
|
|
|
|
$getCok = unserialize($_COOKIE['auth']);
|
|
|
|
|
$Img_path = config_path($getCok[0] . date('/Y/m/d/'));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-29 18:58:26 +00:00
|
|
|
|
// 存储图片路径:i/201807/
|
2022-05-03 05:00:40 +00:00
|
|
|
|
$handle->process(APP_ROOT . $Img_path);
|
2021-03-23 12:58:16 +00:00
|
|
|
|
|
2021-05-04 12:54:59 +00:00
|
|
|
|
// 图片完整相对路径:/i/2021/05/03/k88e7p.jpg
|
2021-03-23 12:58:16 +00:00
|
|
|
|
if ($handle->processed) {
|
|
|
|
|
header('Content-type:text/json');
|
2022-02-05 08:23:57 +00:00
|
|
|
|
|
2022-05-03 05:00:40 +00:00
|
|
|
|
// 图片相对路径
|
|
|
|
|
$pathIMG = $Img_path . $handle->file_dst_name;
|
|
|
|
|
// 图片访问网址
|
|
|
|
|
$imageUrl = rand_imgurl() . $pathIMG;
|
|
|
|
|
// 后续处理地址
|
|
|
|
|
$processUrl = $config['domain'] . $pathIMG;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 以下为控制开启源图保护或者返回值隐藏config文件中的path目录所更改
|
|
|
|
|
* 2022年5月1日
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// 隐藏config文件中的path目录,需要搭配网站设置
|
|
|
|
|
if ($config['hide_path'] == 1) {
|
|
|
|
|
$imageUrl = str_replace($config['path'], '/', $imageUrl);
|
|
|
|
|
}
|
2021-05-22 03:27:53 +00:00
|
|
|
|
|
2022-05-03 05:00:40 +00:00
|
|
|
|
// 源图保护 key值是由crc32加密的hide_key
|
|
|
|
|
// $hide_original = $config['hide'] == 1 ? $config['domain'] . '/application/hide.php?key=' . urlHash($pathIMG, 0, crc32($config['hide_key'])) : $imageUrl;
|
|
|
|
|
if ($config['hide'] == 1) {
|
|
|
|
|
$imageUrl = $config['domain'] . '/application/hide.php?key=' . urlHash($pathIMG, 0, crc32($config['hide_key']));
|
|
|
|
|
}
|
2022-03-14 09:52:21 +00:00
|
|
|
|
|
2022-05-03 05:00:40 +00:00
|
|
|
|
// 关闭删除链接
|
2022-01-27 09:25:46 +00:00
|
|
|
|
if ($config['show_user_hash_del']) {
|
|
|
|
|
// 判断PHP版本启用删除
|
|
|
|
|
if (PHP_VERSION >= '7') {
|
2022-02-05 08:23:57 +00:00
|
|
|
|
$delUrl = $config['domain'] . '/application/del.php?hash=' . urlHash($pathIMG, 0);
|
2022-01-27 09:25:46 +00:00
|
|
|
|
} else {
|
|
|
|
|
$delUrl = "Sever PHP version lower 7.0";
|
|
|
|
|
}
|
2021-05-22 03:27:53 +00:00
|
|
|
|
} else {
|
2023-01-21 03:56:00 +00:00
|
|
|
|
$delUrl = "Admin closed user delete";
|
2021-05-22 03:27:53 +00:00
|
|
|
|
}
|
2021-05-04 12:54:59 +00:00
|
|
|
|
|
2023-01-29 22:15:24 +00:00
|
|
|
|
// 当设置访问生成缩略图时自动生成 2022-12-30 修正 2023-01-30
|
|
|
|
|
$handleThumb = $config['domain'] . '/application/thumb.php?img=' . $pathIMG;
|
2023-01-21 03:56:00 +00:00
|
|
|
|
if ($config['thumbnail'] == 2) {
|
2022-12-29 18:58:26 +00:00
|
|
|
|
// 自定义缩略图长宽
|
|
|
|
|
$handle->image_resize = true;
|
2023-01-26 04:32:04 +00:00
|
|
|
|
$handle->image_x = $config['thumbnail_w'];
|
|
|
|
|
$handle->image_y = $config['thumbnail_h'];
|
2022-12-29 18:58:26 +00:00
|
|
|
|
// 如果调整后的图像大于原始图像,则取消调整大小,以防止放大
|
|
|
|
|
$handle->image_no_enlarging = true;
|
|
|
|
|
$handle->file_new_name_body = date('Y_m_d_') . $handle->file_dst_name_body;
|
2023-01-29 22:15:24 +00:00
|
|
|
|
$handle->process(APP_ROOT . $config['path'] . 'cache/');
|
|
|
|
|
$handleThumb = $config['domain'] . $config['path'] . 'cache/' . $handle->file_dst_name;
|
2022-12-29 18:58:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2022-05-03 05:00:40 +00:00
|
|
|
|
// 上传成功后返回json数据
|
2021-03-23 12:58:16 +00:00
|
|
|
|
$reJson = array(
|
2022-02-05 08:23:57 +00:00
|
|
|
|
"result" => "success",
|
|
|
|
|
"code" => 200,
|
2022-05-03 05:00:40 +00:00
|
|
|
|
"url" => $imageUrl,
|
2022-02-05 08:23:57 +00:00
|
|
|
|
"srcName" => $handle->file_src_name_body,
|
2023-01-29 22:15:24 +00:00
|
|
|
|
"thumb" => $handleThumb,
|
2022-02-05 08:23:57 +00:00
|
|
|
|
"del" => $delUrl,
|
2021-03-23 12:58:16 +00:00
|
|
|
|
);
|
|
|
|
|
echo json_encode($reJson);
|
2022-12-29 18:58:26 +00:00
|
|
|
|
$handle->clean(); // 如果取消上传生成缩略图需要恢复此选项功能
|
2021-03-23 12:58:16 +00:00
|
|
|
|
} else {
|
2022-05-09 06:37:58 +00:00
|
|
|
|
// 上传错误 code:206 客户端文件有问题
|
2021-03-23 12:58:16 +00:00
|
|
|
|
$reJson = array(
|
2022-01-02 12:20:53 +00:00
|
|
|
|
"result" => "failed",
|
2022-05-09 06:37:58 +00:00
|
|
|
|
"code" => 206,
|
2022-01-01 07:40:23 +00:00
|
|
|
|
"message" => $handle->error,
|
2023-01-30 16:05:15 +00:00
|
|
|
|
// 'log' => $handle->log,(仅用作调试用)
|
2021-03-23 12:58:16 +00:00
|
|
|
|
);
|
2022-01-02 12:20:53 +00:00
|
|
|
|
unset($handle);
|
|
|
|
|
header('Content-Type:application/json; charset=utf-8');
|
|
|
|
|
exit(json_encode($reJson, JSON_UNESCAPED_UNICODE));
|
2021-03-23 12:58:16 +00:00
|
|
|
|
}
|
2021-05-22 03:27:53 +00:00
|
|
|
|
|
2022-02-04 12:28:33 +00:00
|
|
|
|
/** 后续处理 */
|
|
|
|
|
// 使用fastcgi_finish_request操作
|
2023-02-04 18:45:00 +00:00
|
|
|
|
if (function_exists('fastcgi_finish_request')) { // fastcgi_finish_request 模式
|
2022-02-04 12:28:33 +00:00
|
|
|
|
fastcgi_finish_request();
|
2023-02-04 18:45:00 +00:00
|
|
|
|
// 同IP上传日志
|
|
|
|
|
@ip_upload_counts();
|
|
|
|
|
// 日志
|
|
|
|
|
if ($config['upload_logs']) @write_log($pathIMG, $handle->file_src_name, $handle->file_dst_pathname, $handle->file_src_size);
|
|
|
|
|
// 鉴黄
|
2022-05-03 05:00:40 +00:00
|
|
|
|
@process_checkImg($processUrl);
|
2022-02-04 12:28:33 +00:00
|
|
|
|
// 日志
|
2022-02-05 08:23:57 +00:00
|
|
|
|
if ($config['upload_logs']) @write_log($pathIMG, $handle->file_src_name, $handle->file_dst_pathname, $handle->file_src_size);
|
2023-02-04 18:45:00 +00:00
|
|
|
|
// 水印
|
2022-02-04 12:28:33 +00:00
|
|
|
|
@water($handle->file_dst_pathname);
|
2023-02-04 18:45:00 +00:00
|
|
|
|
// 压缩
|
|
|
|
|
@ip_upload_counts();
|
|
|
|
|
} else { // 普通模式
|
2023-02-01 14:20:33 +00:00
|
|
|
|
// 记录同IP上传次数
|
|
|
|
|
@ip_upload_counts();
|
2022-02-04 12:28:33 +00:00
|
|
|
|
// 日志
|
2023-02-04 18:45:00 +00:00
|
|
|
|
if ($config['upload_logs']) @write_log($pathIMG, $handle->file_src_name, $handle->file_dst_pathname, $handle->file_src_size);
|
|
|
|
|
// 鉴黄
|
|
|
|
|
@process_checkImg($processUrl);
|
2022-02-04 12:28:33 +00:00
|
|
|
|
// 水印
|
|
|
|
|
@water($handle->file_dst_pathname);
|
|
|
|
|
// 压缩
|
2023-02-04 18:45:00 +00:00
|
|
|
|
@process_compress($handle->file_dst_pathname);
|
2021-11-14 15:25:21 +00:00
|
|
|
|
}
|
2023-01-21 03:56:00 +00:00
|
|
|
|
|
2022-01-01 07:40:23 +00:00
|
|
|
|
unset($handle);
|
2021-05-04 12:54:59 +00:00
|
|
|
|
}
|