mirror of https://github.com/helloxz/imgurl
v2.24
parent
ed5e50e20e
commit
f8895a44e2
|
@ -37,31 +37,38 @@
|
||||||
$siteinfo->title = $siteinfo->title.',探索发现';
|
$siteinfo->title = $siteinfo->title.',探索发现';
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
$siteinfo->title = $siteinfo->title.',探索发现 - '."第{$page}页";
|
$page_num = $page / 16 + 1;
|
||||||
|
$siteinfo->title = $siteinfo->title.',探索发现 - '."第{$page_num}页";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//出于安全性考虑,最多显示160张图片
|
||||||
|
|
||||||
//根据条件生成不同的SQL语句
|
//根据条件生成不同的SQL语句
|
||||||
switch($type){
|
switch($type){
|
||||||
case 'all':
|
case 'all':
|
||||||
//查询游客上传图片总数
|
//查询游客上传图片总数
|
||||||
$num = $this->query->count_num('visitor')->num;
|
$num = $this->query->count_num('visitor')->num;
|
||||||
|
$num = ($num >= 160) ? 160 : $num;
|
||||||
$config['base_url'] = "/found/all/";
|
$config['base_url'] = "/found/all/";
|
||||||
break;
|
break;
|
||||||
case 'gif':
|
case 'gif':
|
||||||
$num = $this->query->count_num('gif')->num;
|
$num = $this->query->count_num('gif')->num;
|
||||||
|
$num = ($num >= 160) ? 160 : $num;
|
||||||
$config['base_url'] = "/found/gif/";
|
$config['base_url'] = "/found/gif/";
|
||||||
break;
|
break;
|
||||||
case 'views':
|
case 'views':
|
||||||
$num = $this->query->count_num('visitor')->num;
|
$num = $this->query->count_num('visitor')->num;
|
||||||
|
$num = ($num >= 160) ? 160 : $num;
|
||||||
$config['base_url'] = "/found/views/";
|
$config['base_url'] = "/found/views/";
|
||||||
break;
|
break;
|
||||||
case 'large':
|
case 'large':
|
||||||
$num = $this->query->count_num('large')->num;
|
$num = $this->query->count_num('large')->num;
|
||||||
|
$num = ($num >= 160) ? 160 : $num;
|
||||||
$config['base_url'] = "/found/large/";
|
$config['base_url'] = "/found/large/";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
$num = $this->query->count_num('visitor')->num;
|
$num = $this->query->count_num('visitor')->num;
|
||||||
|
$num = ($num >= 160) ? 160 : $num;
|
||||||
$config['base_url'] = "/found/all/";
|
$config['base_url'] = "/found/all/";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
|
@ -67,6 +67,8 @@
|
||||||
);
|
);
|
||||||
|
|
||||||
$datas['img_info'] = $conf->img_info;
|
$datas['img_info'] = $conf->img_info;
|
||||||
|
//检测用户是否登录
|
||||||
|
$datas['is_login'] = $this->basic->is_login();
|
||||||
// $data['title'] = '图片浏览';
|
// $data['title'] = '图片浏览';
|
||||||
// $data['url'] = $domain.$imginfo->path;
|
// $data['url'] = $domain.$imginfo->path;
|
||||||
// $data['date'] = $imginfo->date;
|
// $data['date'] = $imginfo->date;
|
||||||
|
|
|
@ -19,29 +19,84 @@
|
||||||
}
|
}
|
||||||
//管理员上传
|
//管理员上传
|
||||||
public function images($type = 'all',$page = 0){
|
public function images($type = 'all',$page = 0){
|
||||||
|
//获取传入的值
|
||||||
|
@$value = $this->input->get('value',TRUE);
|
||||||
|
//获取传入的时间
|
||||||
|
@$date = $this->input->get('date',TRUE);
|
||||||
|
//把时间分割为数组
|
||||||
|
$tmp_date = explode("|",$date);
|
||||||
|
//开始时间
|
||||||
|
$start_time = $tmp_date[0];
|
||||||
|
//结束时间
|
||||||
|
$end_time = $tmp_date[1];
|
||||||
|
//获取类型
|
||||||
$type = strip_tags($type);
|
$type = strip_tags($type);
|
||||||
|
//获取分页
|
||||||
$page = (int)strip_tags($page);
|
$page = (int)strip_tags($page);
|
||||||
$limit = 16; //要查询的条数
|
$limit = 16; //要查询的条数
|
||||||
$data['admin_title'] = '图片管理';
|
$data['admin_title'] = '图片管理';
|
||||||
$sql1 = "SELECT a.id,a.imgid,a.path,a.thumb_path,a.date,a.compression,a.level,b.mime,b.width,b.height,b.views,b.ext,b.client_name FROM img_images AS a INNER JOIN img_imginfo AS b ON a.imgid = b.imgid ";
|
$sql1 = "SELECT a.id,a.imgid,a.path,a.thumb_path,a.date,a.compression,a.level,b.mime,b.width,b.height,b.views,b.ext,b.client_name FROM img_images AS a INNER JOIN img_imginfo AS b ON a.imgid = b.imgid ";
|
||||||
//根据不同的条件生成不同的SQL语句
|
//根据不同的条件生成不同的SQL语句
|
||||||
switch ($type) {
|
switch ($type) {
|
||||||
|
//所有图片
|
||||||
case 'all':
|
case 'all':
|
||||||
$sql = $sql1."ORDER BY a.id DESC LIMIT $limit OFFSET $page";
|
//如果存在时间,则按时间筛选
|
||||||
$num = $this->db->count_all("images");
|
if( (isset($date)) && ($date != '') ){
|
||||||
|
$sql = $sql1."AND (Date(a.date) BETWEEN '{$start_time}' AND '{$end_time}') ORDER BY a.id DESC";
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
$sql = $sql1."ORDER BY a.id DESC LIMIT $limit OFFSET $page";
|
||||||
|
$num = $this->db->count_all("images");
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
//管理员上传
|
||||||
case 'admin':
|
case 'admin':
|
||||||
$sql = $sql1."AND a.user = 'admin' ORDER BY a.id DESC LIMIT $limit OFFSET $page";
|
//如果存在时间,则按时间筛选
|
||||||
$num = $this->query->count_num('admin')->num;
|
if( (isset($date)) && ($date != '') ){
|
||||||
|
$sql = $sql1."AND a.user = 'admin' AND (Date(a.date) BETWEEN '{$start_time}' AND '{$end_time}') ORDER BY a.id DESC";
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
$sql = $sql1."AND a.user = 'admin' ORDER BY a.id DESC LIMIT $limit OFFSET $page";
|
||||||
|
$num = $this->query->count_num('admin')->num;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
//游客上传
|
||||||
case 'visitor':
|
case 'visitor':
|
||||||
$sql = $sql1."AND a.user = 'visitor' ORDER BY a.id DESC LIMIT $limit OFFSET $page";
|
//如果存在时间,则按时间筛选
|
||||||
$num = $this->query->count_num('visitor')->num;
|
if( (isset($date)) && ($date != '') ){
|
||||||
|
$sql = $sql1."AND a.user = 'visitor' AND (Date(a.date) BETWEEN '{$start_time}' AND '{$end_time}') ORDER BY a.id DESC";
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
$sql = $sql1."AND a.user = 'visitor' ORDER BY a.id DESC LIMIT $limit OFFSET $page";
|
||||||
|
$num = $this->query->count_num('visitor')->num;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
|
//可疑图片
|
||||||
case 'dubious':
|
case 'dubious':
|
||||||
$sql = $sql1."AND a.level = 'adult' ORDER BY a.id DESC";
|
$sql = $sql1."AND a.level = 'adult' ORDER BY a.id DESC";
|
||||||
//$num = $this->query->count_num('visitor')->num;
|
//$num = $this->query->count_num('visitor')->num;
|
||||||
break;
|
break;
|
||||||
|
case 'id':
|
||||||
|
$value = (int)$value;
|
||||||
|
if( $value === 0 ){
|
||||||
|
//echo $value;
|
||||||
|
exit("不是有效的ID,请重新输入!");
|
||||||
|
}
|
||||||
|
$sql = $sql1."AND a.id = {$value}";
|
||||||
|
//$num = 1;
|
||||||
|
break;
|
||||||
|
case 'imgid':
|
||||||
|
if( strlen($value) != 16){
|
||||||
|
exit("不是有效的ImgID,请重新输入!");
|
||||||
|
}
|
||||||
|
$sql = $sql1."AND a.imgid = '{$value}'";
|
||||||
|
break;
|
||||||
|
case 'ip':
|
||||||
|
if( ! filter_var($value, FILTER_VALIDATE_IP)){
|
||||||
|
exit('不是有效的IP地址,请重新输入!');
|
||||||
|
}
|
||||||
|
$sql = $sql1."AND a.ip = '{$value}'";
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
$sql = $sql1."AND a.user = '$type' ORDER BY a.id DESC LIMIT $limit OFFSET $page";
|
$sql = $sql1."AND a.user = '$type' ORDER BY a.id DESC LIMIT $limit OFFSET $page";
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -1,4 +1,68 @@
|
||||||
<div class="layui-container" style = "margin-top:2em;margin-bottom:6em;">
|
<div class="layui-container" style = "margin-top:1em;margin-bottom:6em;">
|
||||||
|
<div class="layui-row layui-col-space10" >
|
||||||
|
<div class="layui-col-lg12">
|
||||||
|
<!-- 条件筛选 -->
|
||||||
|
<!-- 先来一个选项卡 -->
|
||||||
|
<div class="layui-tab layui-tab-brief" lay-filter="docDemoTabBrief">
|
||||||
|
<ul class="layui-tab-title">
|
||||||
|
<li class="layui-this">常规筛选</li>
|
||||||
|
<li>时间筛选</li>
|
||||||
|
</ul>
|
||||||
|
<div class="layui-tab-content">
|
||||||
|
<!-- 常规筛选内容 -->
|
||||||
|
<div class="layui-tab-item layui-show">
|
||||||
|
<table class="layui-table layui-form" lay-even="" lay-skin="nob">
|
||||||
|
<tbody>
|
||||||
|
</tbody><thead>
|
||||||
|
<tr>
|
||||||
|
<th width="85%">
|
||||||
|
<input id="value" type="text" required="" lay-verify="required" placeholder="可输入 ID/IP/imgid 进行查询" autocomplete="off" class="layui-input" data-cip-id="url" data-kpxc-id="ip">
|
||||||
|
</th>
|
||||||
|
<th width="15%">
|
||||||
|
<select id="type" lay-verify="required">
|
||||||
|
<option value="">请选择条件</option>
|
||||||
|
<option value="id">ID</option>
|
||||||
|
<option value="imgid">ImgID</option>
|
||||||
|
<option value="ip">IP</option>
|
||||||
|
</select>
|
||||||
|
</th>
|
||||||
|
<th width="10%"><button type="submit" class="layui-btn layui-btn" onclick="findimg()"><i class="layui-icon"></i> 查 询</button></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- 常规筛选内容END -->
|
||||||
|
<!-- 时间筛选 -->
|
||||||
|
<div class="layui-tab-item">
|
||||||
|
<table class="layui-table layui-form" lay-even="" lay-skin="nob">
|
||||||
|
<tbody>
|
||||||
|
</tbody><thead>
|
||||||
|
<tr>
|
||||||
|
<th width="30%">
|
||||||
|
<input id = "start-time" type="text" class="layui-input" id="start-time">
|
||||||
|
</th>
|
||||||
|
<th width = "5%"> ------ </th>
|
||||||
|
<th width="30%">
|
||||||
|
<input id = "end-time" type="text" class="layui-input" id="end-time">
|
||||||
|
</th>
|
||||||
|
<th width="15%">
|
||||||
|
<select id="user" lay-verify="required">
|
||||||
|
<option value="all">默认</option>
|
||||||
|
<option value="admin">管理员</option>
|
||||||
|
<option value="visitor">游客</option>
|
||||||
|
</select>
|
||||||
|
</th>
|
||||||
|
<th width="10%"><button type="submit" class="layui-btn layui-btn" onclick="find_date_img()"><i class="layui-icon"></i> 查 询</button></th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<!-- 时间筛选END -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<!-- 条件筛选END -->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
<div class="layui-row layui-col-space10 showimgs" id = "showimgs">
|
<div class="layui-row layui-col-space10 showimgs" id = "showimgs">
|
||||||
<?php
|
<?php
|
||||||
foreach ($imgs as $img)
|
foreach ($imgs as $img)
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
v2.23-20190429
|
v2.24-20190530
|
|
@ -1,7 +1,22 @@
|
||||||
layui.use(['form','element','layer'], function(){
|
layui.use(['form','element','layer','laydate'], function(){
|
||||||
var form = layui.form;
|
var form = layui.form;
|
||||||
var element = layui.element;
|
var element = layui.element;
|
||||||
var layer = layui.layer;
|
var layer = layui.layer;
|
||||||
|
var laydate = layui.laydate;
|
||||||
|
|
||||||
|
//执行一个laydate实例
|
||||||
|
laydate.render({
|
||||||
|
elem: '#start-time' //指定元素
|
||||||
|
,done: function(value, date, endDate){
|
||||||
|
start_time = value;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
laydate.render({
|
||||||
|
elem: '#end-time' //指定元素
|
||||||
|
,done: function(value, date, endDate){
|
||||||
|
end_time = value;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
//监听提交
|
//监听提交
|
||||||
// form.on('submit(formDemo)', function(data){
|
// form.on('submit(formDemo)', function(data){
|
||||||
|
@ -230,3 +245,40 @@ $("#checkAll").click(function() {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
//根据条件查找图片
|
||||||
|
function findimg(){
|
||||||
|
var value = $("#value").val();
|
||||||
|
var type = $("#type").val();
|
||||||
|
|
||||||
|
if( type == ''){
|
||||||
|
layer.msg('请选择筛选条件!');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
else if( value == ''){
|
||||||
|
layer.msg('请输入值!');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
window.location.href = '/manage/images/' + type + '/?value=' + value;
|
||||||
|
|
||||||
|
}
|
||||||
|
//根据时间查找图片
|
||||||
|
function find_date_img(){
|
||||||
|
//获取上传者
|
||||||
|
var user = $("#user").val();
|
||||||
|
|
||||||
|
//时间组合
|
||||||
|
var date = start_time + '|' + end_time;
|
||||||
|
if( user == ''){
|
||||||
|
layer.msg('请选择筛选条件!');
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
else if( start_time == ''){
|
||||||
|
layer.msg('请选择开始日期!');
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
else if(end_time == ''){
|
||||||
|
layer.msg('请选择结束日期!');
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
window.location.href = '/manage/images/' + user + '/?date=' + date;
|
||||||
|
}
|
|
@ -0,0 +1,18 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<configuration>
|
||||||
|
<system.webServer>
|
||||||
|
<rewrite>
|
||||||
|
<rules>
|
||||||
|
<rule name="Rule" stopProcessing="true">
|
||||||
|
<match url="^(.*)$" ignoreCase="false" />
|
||||||
|
<conditions>
|
||||||
|
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
|
||||||
|
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
|
||||||
|
<add input="{URL}" pattern="^/favicon.ico$" ignoreCase="false" negate="true" />
|
||||||
|
</conditions>
|
||||||
|
<action type="Rewrite" url="index.php/{R:1}" appendQueryString="true" />
|
||||||
|
</rule>
|
||||||
|
</rules>
|
||||||
|
</rewrite>
|
||||||
|
</system.webServer>
|
||||||
|
</configuration>
|
Loading…
Reference in New Issue