mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-12-02 20:10:30 +08:00
257 lines
8.2 KiB
PHP
Executable File
257 lines
8.2 KiB
PHP
Executable File
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | ShopXO 国内领先企业级B2C免费开源电商系统
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Devil
|
|
// +----------------------------------------------------------------------
|
|
namespace app\service;
|
|
|
|
use think\Db;
|
|
use app\service\ResourcesService;
|
|
|
|
/**
|
|
* 自定义页面服务层
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 0.0.1
|
|
* @datetime 2016-12-01T21:51:08+0800
|
|
*/
|
|
class CustomViewService
|
|
{
|
|
/**
|
|
* 获取自定义列表
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2018-08-29
|
|
* @desc description
|
|
* @param [array] $params [输入参数]
|
|
*/
|
|
public static function CustomViewList($params = [])
|
|
{
|
|
$where = empty($params['where']) ? [] : $params['where'];
|
|
$field = empty($params['field']) ? '*' : $params['field'];
|
|
$order_by = empty($params['order_by']) ? 'id desc' : trim($params['order_by']);
|
|
$m = isset($params['m']) ? intval($params['m']) : 0;
|
|
$n = isset($params['n']) ? intval($params['n']) : 10;
|
|
|
|
$data = Db::name('CustomView')->field($field)->where($where)->order($order_by)->limit($m, $n)->select();
|
|
if(!empty($data))
|
|
{
|
|
$common_is_enable_list = lang('common_is_enable_list');
|
|
foreach($data as &$v)
|
|
{
|
|
// 是否启用
|
|
if(isset($v['is_enable']))
|
|
{
|
|
$v['is_enable_text'] = $common_is_enable_list[$v['is_enable']]['name'];
|
|
}
|
|
|
|
// 内容
|
|
if(isset($v['content']))
|
|
{
|
|
$v['content'] = ResourcesService::ContentStaticReplace($v['content'], 'get');
|
|
}
|
|
|
|
// 图片
|
|
if(!empty($v['images']))
|
|
{
|
|
$images = json_decode($v['images'], true);
|
|
foreach($images as &$img)
|
|
{
|
|
$img = ResourcesService::AttachmentPathViewHandle($img);
|
|
}
|
|
$v['images'] = $images;
|
|
}
|
|
|
|
// 时间
|
|
if(isset($v['add_time']))
|
|
{
|
|
$v['add_time'] = date('Y-m-d H:i:s', $v['add_time']);
|
|
}
|
|
if(isset($v['upd_time']))
|
|
{
|
|
$v['upd_time'] = empty($v['upd_time']) ? '' : date('Y-m-d H:i:s', $v['upd_time']);
|
|
}
|
|
}
|
|
}
|
|
return DataReturn('处理成功', 0, $data);
|
|
}
|
|
|
|
/**
|
|
* 总数
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2018-09-29
|
|
* @desc description
|
|
* @param [array] $where [条件]
|
|
*/
|
|
public static function CustomViewTotal($where = [])
|
|
{
|
|
return (int) Db::name('CustomView')->where($where)->count();
|
|
}
|
|
|
|
/**
|
|
* 自定义页面访问统计加1
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2018-10-15
|
|
* @desc description
|
|
* @param [array] $params [输入参数]
|
|
*/
|
|
public static function CustomViewAccessCountInc($params = [])
|
|
{
|
|
if(!empty($params['id']))
|
|
{
|
|
return Db::name('CustomView')->where(array('id'=>intval($params['id'])))->setInc('access_count');
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* 保存
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2018-12-18
|
|
* @desc description
|
|
* @param [array] $params [输入参数]
|
|
*/
|
|
public static function CustomViewSave($params = [])
|
|
{
|
|
// 请求类型
|
|
$p = [
|
|
[
|
|
'checked_type' => 'length',
|
|
'key_name' => 'title',
|
|
'checked_data' => '2,60',
|
|
'error_msg' => '标题长度 2~60 个字符',
|
|
],
|
|
[
|
|
'checked_type' => 'length',
|
|
'key_name' => 'content',
|
|
'checked_data' => '10,105000',
|
|
'error_msg' => '内容长度最少 10~105000 个字符',
|
|
],
|
|
];
|
|
$ret = ParamsChecked($params, $p);
|
|
if($ret !== true)
|
|
{
|
|
return DataReturn($ret, -1);
|
|
}
|
|
|
|
// 编辑器内容
|
|
$content = empty($params['content']) ? '' : ResourcesService::ContentStaticReplace(htmlspecialchars_decode($params['content']), 'add');
|
|
|
|
// 数据
|
|
$images = ResourcesService::RichTextMatchContentAttachment($content, 'customview');
|
|
$data = [
|
|
'title' => $params['title'],
|
|
'content' => $content,
|
|
'images' => empty($images) ? '' : json_encode($images),
|
|
'images_count' => count($images),
|
|
'is_enable' => isset($params['is_enable']) ? intval($params['is_enable']) : 0,
|
|
'is_header' => isset($params['is_header']) ? intval($params['is_header']) : 0,
|
|
'is_footer' => isset($params['is_footer']) ? intval($params['is_footer']) : 0,
|
|
'is_full_screen'=> isset($params['is_full_screen']) ? intval($params['is_full_screen']) : 0,
|
|
];
|
|
|
|
if(empty($params['id']))
|
|
{
|
|
$data['add_time'] = time();
|
|
if(Db::name('CustomView')->insertGetId($data) > 0)
|
|
{
|
|
return DataReturn('添加成功', 0);
|
|
}
|
|
return DataReturn('添加失败', -100);
|
|
} else {
|
|
$data['upd_time'] = time();
|
|
if(Db::name('CustomView')->where(['id'=>intval($params['id'])])->update($data))
|
|
{
|
|
return DataReturn('编辑成功', 0);
|
|
}
|
|
return DataReturn('编辑失败', -100);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 删除
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 1.0.0
|
|
* @date 2018-12-18
|
|
* @desc description
|
|
* @param [array] $params [输入参数]
|
|
*/
|
|
public static function CustomViewDelete($params = [])
|
|
{
|
|
// 参数是否有误
|
|
if(empty($params['ids']))
|
|
{
|
|
return DataReturn('操作id有误', -1);
|
|
}
|
|
// 是否数组
|
|
if(!is_array($params['ids']))
|
|
{
|
|
$params['ids'] = explode(',', $params['ids']);
|
|
}
|
|
|
|
// 删除操作
|
|
if(Db::name('CustomView')->where(['id'=>$params['ids']])->delete())
|
|
{
|
|
return DataReturn('删除成功');
|
|
}
|
|
|
|
return DataReturn('删除失败', -100);
|
|
}
|
|
|
|
/**
|
|
* 状态更新
|
|
* @author Devil
|
|
* @blog http://gong.gg/
|
|
* @version 0.0.1
|
|
* @datetime 2016-12-06T21:31:53+0800
|
|
* @param [array] $params [输入参数]
|
|
*/
|
|
public static function CustomViewStatusUpdate($params = [])
|
|
{
|
|
// 请求参数
|
|
$p = [
|
|
[
|
|
'checked_type' => 'empty',
|
|
'key_name' => 'id',
|
|
'error_msg' => '操作id有误',
|
|
],
|
|
[
|
|
'checked_type' => 'empty',
|
|
'key_name' => 'field',
|
|
'error_msg' => '字段有误',
|
|
],
|
|
[
|
|
'checked_type' => 'in',
|
|
'key_name' => 'state',
|
|
'checked_data' => [0,1],
|
|
'error_msg' => '状态有误',
|
|
],
|
|
];
|
|
$ret = ParamsChecked($params, $p);
|
|
if($ret !== true)
|
|
{
|
|
return DataReturn($ret, -1);
|
|
}
|
|
|
|
// 数据更新
|
|
if(Db::name('CustomView')->where(['id'=>intval($params['id'])])->update([$params['field']=>intval($params['state']), 'upd_time'=>time()]))
|
|
{
|
|
return DataReturn('编辑成功');
|
|
}
|
|
return DataReturn('编辑失败', -100);
|
|
}
|
|
}
|
|
?>
|