|
Server : nginx/1.18.0 System : Linux iZrj9edhd5u5pfsek09o1jZ 3.10.0-957.21.3.el7.x86_64 #1 SMP Tue Jun 18 16:35:19 UTC 2019 x86_64 User : www ( 1000) PHP Version : 5.6.40 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv Directory : /mnt/web/www.neatabattery.com/data/backup/v1.3.8_www/application/admin/controller/ |
<?php
/**
* 易优CMS
* ============================================================================
* 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
* 网站地址: http://www.eyoucms.com
* ----------------------------------------------------------------------------
* 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
* ============================================================================
* Author: 小虎哥 <1105415366@qq.com>
* Date: 2018-4-3
*/
namespace app\admin\controller;
use think\Page;
use think\Db;
use app\admin\logic\FieldLogic;
/**
* 模型字段控制器
*/
class Field extends Base
{
public $fieldLogic;
public $arctype_channel_id;
public function _initialize() {
parent::_initialize();
$this->language_access(); // 多语言功能操作权限
$this->fieldLogic = new FieldLogic();
$this->arctype_channel_id = config('global.arctype_channel_id');
$userConfig = getUsersConfigData('users');
$this->assign('userConfig',$userConfig);
}
/**
* 模型字段管理
*/
public function channel_index()
{
/*同步栏目绑定的自定义字段*/
$this->syn_channelfield_bind();
/*--end*/
$channel_id = input('param.channel_id/d', 1);
$assign_data = array();
$condition = array();
// 获取到所有GET参数
$param = input('param.');
/*同步更新附加表字段到自定义模型字段表中*/
if (empty($param['searchopt'])) {
$this->fieldLogic->synChannelTableColumns($channel_id);
}
/*--end*/
// 应用搜索条件
foreach (['keywords'] as $key) {
if (isset($param[$key]) && $param[$key] !== '') {
if ($key == 'keywords') {
$condition['a.name'] = array('LIKE', "%{$param[$key]}%");
// 过滤指定字段
// $banFields = ['id'];
// $condition['a.name'] = array(
// array('LIKE', "%{$param[$key]}%"),
// array('notin', $banFields),
// );
} else {
$condition['a.'.$key] = array('eq', $param[$key]);
}
}
}
/*显示主表与附加表*/
$condition['a.channel_id'] = array('IN', [$channel_id]);
/*模型列表*/
$channeltype_list = model('Channeltype')->getAll('*', [], 'id');
$assign_data['channeltype_list'] = $channeltype_list;
/*--end*/
$condition['a.ifcontrol'] = 0;
$cfieldM = M('channelfield');
$count = $cfieldM->alias('a')->where($condition)->count('a.id');// 查询满足要求的总记录数
$Page = $pager = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
$list = $cfieldM->field('a.*')
->alias('a')
->where($condition)
->order('a.sort_order asc, a.ifmain asc, a.ifcontrol asc, a.id desc')
->limit($Page->firstRow.','.$Page->listRows)
->select();
$show = $Page->show();// 分页显示输出
$assign_data['page'] = $show; // 赋值分页输出
$assign_data['list'] = $list; // 赋值数据集
$assign_data['pager'] = $Page; // 赋值分页对象
/*字段类型列表*/
$assign_data['fieldtypeList'] = M('field_type')->field('name,title')->getAllWithIndex('name');
/*--end*/
/*模型ID*/
$assign_data['channel_id'] = $channel_id;
/*--end*/
$this->assign($assign_data);
return $this->fetch();
}
/**
* 同步栏目绑定的自定义字段
*/
private function syn_channelfield_bind()
{
$field_ids = Db::name('channelfield')->where([
'ifmain' => 0,
'channel_id'=> ['NEQ', -99],
])->column('id');
if (!empty($field_ids)) {
$totalRow = Db::name('channelfield_bind')->count();
if (empty($totalRow)) {
$sveData = [];
foreach ($field_ids as $key => $val) {
$sveData[] = [
'typeid' => 0,
'field_id' => $val,
'add_time' => getTime(),
'update_time' => getTime(),
];
}
model('ChannelfieldBind')->saveAll($sveData);
}
}
}
/**
* 新增-模型字段
*/
public function channel_add()
{
$channel_id = input('param.channel_id/d', 0);
if (empty($channel_id)) {
$this->error('参数有误!');
}
if (IS_POST) {
$post = input('post.', '', 'trim');
// 判断是否存在|杠
$IsData = strstr($post['dfvalue'], '|');
if (!empty($IsData)) {
$this->error("不可输入 | 杠");
}
if (empty($post['dtype']) || empty($post['title']) || empty($post['name'])) {
$this->error("缺少必填信息!");
}
if (1 == preg_match('/^([_]+|[0-9]+)$/', $post['name'])) {
$this->error("字段名称格式不正确!");
} else if (preg_match('/^type/', $post['name'])) {
$this->error("模型字段名称不允许以type开头!");
}
/*去除中文逗号,过滤左右空格与空值、以及单双引号*/
$dfvalue = str_replace(',', ',', $post['dfvalue']);
$dfvalue = func_preg_replace(['"','\''], '', $dfvalue);
$dfvalueArr = explode(',', $dfvalue);
foreach ($dfvalueArr as $key => $val) {
$tmp_val = trim($val);
if ('' == $tmp_val) {
unset($dfvalueArr[$key]);
continue;
}
$dfvalueArr[$key] = trim($val);
}
$dfvalue = implode(',', $dfvalueArr);
/*--end*/
if ('region' == $post['dtype']) {
if (!empty($post['region_data'])) {
$post['dfvalue'] = $post['region_data']['region_id'];
$post['region_data'] = serialize($post['region_data']);
}else{
$this->error("请选择区域范围!");
}
} else {
/*默认值必填字段*/
$fieldtype_list = model('Field')->getFieldTypeAll('name,title,ifoption', 'name');
if (isset($fieldtype_list[$post['dtype']]) && 1 == $fieldtype_list[$post['dtype']]['ifoption']) {
if (empty($dfvalue)) {
$this->error("你设定了字段为【".$fieldtype_list[$post['dtype']]['title']."】类型,默认值不能为空! ");
}
}
/*--end*/
unset($post['region_data']);
}
/*当前模型对应的数据表*/
$table = M('channeltype')->where('id',$channel_id)->getField('table');
$table = PREFIX.$table.'_content';
/*--end*/
/*检测字段是否存在于主表与附加表中*/
if (true == $this->fieldLogic->checkChannelFieldList($table, $post['name'], $channel_id)) {
$this->error("字段名称 ".$post['name']." 与系统字段冲突!");
}
/*--end*/
if (empty($post['typeids'])) {
$this->error('请选择可见栏目!');
}
/*组装完整的SQL语句,并执行新增字段*/
$fieldinfos = $this->fieldLogic->GetFieldMake($post['dtype'], $post['name'], $dfvalue, $post['title']);
$ntabsql = $fieldinfos[0];
$buideType = $fieldinfos[1];
$maxlength = $fieldinfos[2];
$sql = " ALTER TABLE `$table` ADD $ntabsql ";
if (false !== Db::execute($sql)) {
if (!empty($post['region_data'])) {
$dfvalue = $post['region_data'];
unset($post['region_data']);
}
/*保存新增字段的记录*/
$newData = array(
'dfvalue' => $dfvalue,
'maxlength' => $maxlength,
'define' => $buideType,
'ifcontrol' => 0,
'sort_order' => 100,
'add_time' => getTime(),
'update_time' => getTime(),
);
$data = array_merge($post, $newData);
M('channelfield')->save($data);
$field_id = M('channelfield')->getLastInsID();
/*--end*/
/*保存栏目与字段绑定的记录*/
$typeids = $post['typeids'];
if (!empty($typeids)) {
/*多语言*/
if (is_language()) {
$attr_name_arr = [];
foreach ($typeids as $key => $val) {
$attr_name_arr[] = 'tid'.$val;
}
$new_typeid_arr = Db::name('language_attr')->where([
'attr_name' => ['IN', $attr_name_arr],
'attr_group' => 'arctype',
])->column('attr_value');
!empty($new_typeid_arr) && $typeids = $new_typeid_arr;
}
/*--end*/
$addData = [];
foreach ($typeids as $key => $val) {
if (1 < count($typeids) && empty($val)) {
continue;
}
$addData[] = [
'typeid' => $val,
'field_id' => $field_id,
'add_time' => getTime(),
'update_time' => getTime(),
];
}
!empty($addData) && model('ChannelfieldBind')->saveAll($addData);
}
/*--end*/
/*重新生成数据表字段缓存文件*/
try {
schemaTable($table);
} catch (\Exception $e) {}
/*--end*/
\think\Cache::clear('channelfield');
$this->success("操作成功!", url('Field/channel_index', array('channel_id'=>$channel_id)));
}
$this->error('操作失败');
}
/*字段类型列表*/
$assign_data['fieldtype_list'] = model('Field')->getFieldTypeAll('name,title,ifoption');
/*--end*/
/*允许发布文档列表的栏目*/
$select_html = allow_release_arctype(0, [$channel_id]);
$this->assign('select_html',$select_html);
/*--end*/
/*模型ID*/
$assign_data['channel_id'] = $channel_id;
/*--end*/
$China[] = [
'id' => 0,
'name' => '全国',
];
$Province = get_province_list();
$assign_data['Province'] = array_merge($China, $Province);
$this->assign($assign_data);
return $this->fetch();
}
// 联动地址获取
public function get_region_data(){
$parent_id = input('param.parent_id/d');
// 获取指定区域ID下的城市并判断是否需要处理特殊市返回值
$RegionData = $this->SpecialCityDealWith($parent_id);
// 处理数据
$region_html = $region_names = $region_ids = '';
if($RegionData){
// 拼装下拉选项
foreach($RegionData as $key => $value){
$region_html .= "<option value='{$value['id']}'>{$value['name']}</option>";
if ($key > '0') {
$region_names .= ',';
$region_ids .= ',';
}
$region_names .= $value['name'];
$region_ids .= $value['id'];
}
}
$return = [
'region_html' => $region_html,
'region_names' => $region_names,
'region_ids' => $region_ids,
'parent_array' => config('global.field_region_all_type'),
];
echo json_encode($return);
}
// 获取指定区域ID下的城市并判断是否需要处理特殊市返回值
// 特殊市:北京市,上海市,天津市,重庆市
function SpecialCityDealWith($parent_id = 0)
{
empty($parent_id) && $parent_id = 0;
/*parent_id在特殊范围内则执行*/
// 处理北京市,上海市,天津市,重庆市逻辑
$RegionData = Db::name('region')->where("parent_id",$parent_id)->select();
$parent_array = config('global.field_region_type');
if (in_array($parent_id, $parent_array)) {
$region_ids = get_arr_column($RegionData, 'id');
$RegionData = Db::name('region')->where('parent_id','IN',$region_ids)->select();
}
/*结束*/
return $RegionData;
}
/**
* 编辑-模型字段
*/
public function channel_edit()
{
$channel_id = input('param.channel_id/d', 0);
if (empty($channel_id)) {
$this->error('参数有误!');
}
if (IS_POST) {
$post = input('post.', '', 'trim');
if (empty($post['dtype']) || empty($post['title']) || empty($post['name'])) {
$this->error("缺少必填信息!");
}
if (1 == preg_match('/^([_]+|[0-9]+)$/', $post['name'])) {
$this->error("字段名称格式不正确!");
} else if (preg_match('/^type/', $post['name'])) {
$this->error("模型字段名称不允许以type开头!");
}
$info = model('Channelfield')->getInfo($post['id'], 'ifsystem');
if (!empty($info['ifsystem'])) {
$this->error('系统字段不允许更改!');
}
$old_name = $post['old_name'];
/*去除中文逗号,过滤左右空格与空值*/
$dfvalue = str_replace(',', ',', $post['dfvalue']);
$dfvalue = func_preg_replace(['"','\''], '', $dfvalue);
$dfvalueArr = explode(',', $dfvalue);
foreach ($dfvalueArr as $key => $val) {
$tmp_val = trim($val);
if ('' == $tmp_val) {
unset($dfvalueArr[$key]);
continue;
}
$dfvalueArr[$key] = trim($val);
}
$dfvalue = implode(',', $dfvalueArr);
/*--end*/
if ('region' == $post['dtype']) {
if (!empty($post['region_data'])) {
$post['dfvalue'] = $post['region_data']['region_id'];
$post['region_data'] = serialize($post['region_data']);
}else{
$this->error("请选择区域范围!");
}
} else {
/*默认值必填字段*/
$fieldtype_list = model('Field')->getFieldTypeAll('name,title,ifoption', 'name');
if (isset($fieldtype_list[$post['dtype']]) && 1 == $fieldtype_list[$post['dtype']]['ifoption']) {
if (empty($dfvalue)) {
$this->error("你设定了字段为【".$fieldtype_list[$post['dtype']]['title']."】类型,默认值不能为空! ");
}
}
/*--end*/
unset($post['region_data']);
}
/*当前模型对应的数据表*/
$table = M('channeltype')->where('id',$post['channel_id'])->getField('table');
$table = PREFIX.$table.'_content';
/*--end*/
/*检测字段是否存在于主表与附加表中*/
if (true == $this->fieldLogic->checkChannelFieldList($table, $post['name'], $channel_id, array($old_name))) {
$this->error("字段名称 ".$post['name']." 与系统字段冲突!");
}
/*--end*/
if (empty($post['typeids'])) {
$this->error('请选择可见栏目!');
}
/*组装完整的SQL语句,并执行编辑字段*/
$fieldinfos = $this->fieldLogic->GetFieldMake($post['dtype'], $post['name'], $dfvalue, $post['title']);
$ntabsql = $fieldinfos[0];
$buideType = $fieldinfos[1];
$maxlength = $fieldinfos[2];
$sql = " ALTER TABLE `$table` CHANGE COLUMN `{$old_name}` $ntabsql ";
if (false !== Db::execute($sql)) {
/*保存更新字段的记录*/
if (!empty($post['region_data'])) {
$dfvalue = $post['region_data'];
unset($post['region_data']);
}
$newData = array(
'dfvalue' => $dfvalue,
'maxlength' => $maxlength,
'define' => $buideType,
'update_time' => getTime(),
);
$data = array_merge($post, $newData);
M('channelfield')->where('id',$post['id'])->cache(true,null,"channelfield")->save($data);
/*--end*/
/*保存栏目与字段绑定的记录*/
$field_id = $post['id'];
model('ChannelfieldBind')->where(['field_id'=>$field_id])->delete();
$typeids = $post['typeids'];
if (!empty($typeids)) {
/*多语言*/
if (is_language()) {
$attr_name_arr = [];
foreach ($typeids as $key => $val) {
$attr_name_arr[] = 'tid'.$val;
}
$new_typeid_arr = Db::name('language_attr')->where([
'attr_name' => ['IN', $attr_name_arr],
'attr_group' => 'arctype',
])->column('attr_value');
!empty($new_typeid_arr) && $typeids = $new_typeid_arr;
}
/*--end*/
$addData = [];
foreach ($typeids as $key => $val) {
if (1 < count($typeids) && empty($val)) {
continue;
}
$addData[] = [
'typeid' => $val,
'field_id' => $field_id,
'add_time' => getTime(),
'update_time' => getTime(),
];
}
!empty($addData) && model('ChannelfieldBind')->saveAll($addData);
}
/*--end*/
/*重新生成数据表字段缓存文件*/
try {
schemaTable($table);
} catch (\Exception $e) {}
/*--end*/
$this->success("操作成功!", url('Field/channel_index', array('channel_id'=>$post['channel_id'])));
} else {
$sql = " ALTER TABLE `$table` ADD $ntabsql ";
if (false === Db::execute($sql)) {
$this->error('操作失败!');
}
}
}
$id = input('param.id/d', 0);
$info = array();
if (!empty($id)) {
$info = model('Channelfield')->getInfo($id);
}
if (!empty($info['ifsystem'])) {
$this->error('系统字段不允许更改!');
}
/*字段类型列表*/
$assign_data['fieldtype_list'] = model('Field')->getFieldTypeAll('name,title,ifoption');
/*--end*/
/*允许发布文档列表的栏目*/
$typeids = Db::name('channelfield_bind')->where(['field_id'=>$id])->column('typeid');
$select_html = allow_release_arctype($typeids, [$channel_id]);
$this->assign('select_html',$select_html);
$this->assign('typeids',$typeids);
/*--end*/
/*模型ID*/
$assign_data['channel_id'] = $channel_id;
/*--end*/
/*区域字段处理*/
// 初始化参数
$assign_data['region'] = [
'parent_id' => '-1',
'region_id' => '-1',
'region_names' => '',
'region_ids' => '',
];
// 定义全国参数
$China[] = [
'id' => 0,
'name' => '全国',
];
// 查询省份信息并且拼装上$China数组
$Province = get_province_list();
$assign_data['Province'] = array_merge($China, $Province);
// 区域选择时,指定不出现下级地区列表
$assign_data['parent_array'] = "[]";
// 如果是区域类型则执行
if ('region' == $info['dtype']) {
// 反序列化默认值参数
$dfvalue = unserialize($info['dfvalue']);
if (0 == $dfvalue['region_id']) {
$parent_id = $dfvalue['region_id'];
}else{
// 查询当前选中的区域父级ID
$parent_id = Db::name('region')->where("id",$dfvalue['region_id'])->getField('parent_id');
if (0 == $parent_id) {
$parent_id = $dfvalue['region_id'];
}
}
// 查询市\区\县信息
$assign_data['City'] = Db::name('region')->where("parent_id",$parent_id)->select();
// 加载数据到模板
$assign_data['region'] = [
'parent_id' => $parent_id,
'region_id' => $dfvalue['region_id'],
'region_names' => $dfvalue['region_names'],
'region_ids' => $dfvalue['region_ids'],
];
// 删除默认值,防止切换其他类型时使用到
unset($info['dfvalue']);
// 区域选择时,指定不出现下级地区列表
$assign_data['parent_array'] = convert_js_array(config('global.field_region_all_type'));
}
/*区域字段处理结束*/
$assign_data['info'] = $info;
$this->assign($assign_data);
return $this->fetch();
}
/**
* 删除-模型字段
*/
public function channel_del()
{
$channel_id = input('channel_id/d', 0);
$id = input('del_id/d', 0);
if(!empty($id)){
/*删除表字段*/
$row = $this->fieldLogic->delChannelField($id);
/*--end*/
if (0 < $row['code']) {
$map = array(
'id' => array('eq', $id),
'channel_id' => $channel_id,
);
$result = M('channelfield')->field('channel_id,name')->where($map)->select();
$name_list = get_arr_column($result, 'name');
/*删除字段的记录*/
M('channelfield')->where($map)->delete();
/*--end*/
/*删除栏目与字段绑定的记录*/
model('ChannelfieldBind')->where(['field_id'=>$id])->delete();
/*--end*/
/*获取模型标题*/
$channel_title = '';
if (!empty($channel_id)) {
$channel_title = M('channeltype')->where('id',$channel_id)->getField('title');
}
/*--end*/
adminLog('删除'.$channel_title.'字段:'.implode(',', $name_list));
$this->success('删除成功');
}
\think\Cache::clear('channelfield');
respose(array('status'=>0, 'msg'=>$row['msg']));
}else{
$this->error('参数有误');
}
}
/**
* 栏目字段 - 删除多图字段的图集
*/
public function del_arctypeimgs()
{
$typeid = input('typeid/d','0');
if (!empty($typeid)) {
$path = input('filename',''); // 图片路径
$fieldname = input('fieldname/s', ''); // 多图字段
/*除去多图字段值中的图片*/
$info = M('arctype')->field("{$fieldname}")->where("id", $typeid)->find();
$valueArr = explode(',', $info[$fieldname]);
foreach ($valueArr as $key => $val) {
if ($path == $val) {
unset($valueArr[$key]);
}
}
$value = implode(',', $valueArr);
M('arctype')->where('id', $typeid)->update(array($fieldname=>$value, 'update_time'=>getTime()));
/*--end*/
}
}
/**
* 模型字段 - 删除多图字段的图集
*/
public function del_channelimgs()
{
$aid = input('aid/d','0');
$channel = input('channel/d', ''); // 模型ID
if (!empty($aid) && !empty($channel)) {
$path = input('filename',''); // 图片路径
$fieldname = input('fieldname/s', ''); // 多图字段
/*模型附加表*/
$table = M('channeltype')->where('id',$channel)->getField('table');
$tableExt = $table.'_content';
/*--end*/
/*除去多图字段值中的图片*/
$info = M($tableExt)->field("{$fieldname}")->where("aid", $aid)->find();
$valueArr = explode(',', $info[$fieldname]);
foreach ($valueArr as $key => $val) {
if ($path == $val) {
unset($valueArr[$key]);
}
}
$value = implode(',', $valueArr);
M($tableExt)->where('aid', $aid)->update(array($fieldname=>$value, 'update_time'=>getTime()));
/*--end*/
}
}
/**
* 显示与隐藏
*/
public function ajax_channel_show()
{
if (IS_POST) {
$id = input('id/d');
$ifeditable = input('ifeditable/d');
if(!empty($id)){
$row = Db::name('channelfield')->where([
'id' => $id,
])->find();
if (!empty($row) && 1 == intval($row['ifcontrol'])) {
$this->error('系统内置表单,禁止操作!');
}
$r = Db::name('channelfield')->where([
'id' => $id,
])->update([
'ifeditable' => $ifeditable,
'update_time' => getTime(),
]);
if($r){
adminLog('操作自定义模型表单:'.$row['name']);
$this->success('操作成功');
}else{
$this->error('操作失败');
}
} else {
$this->error('参数有误');
}
}
$this->error('非法访问');
}
/**
* 栏目字段管理
*/
public function arctype_index()
{
$channel_id = $this->arctype_channel_id;
$assign_data = array();
$condition = array();
// 获取到所有GET参数
$param = input('param.');
/*同步更新栏目主表字段到自定义字段表中*/
if (empty($param['searchopt'])) {
$this->fieldLogic->synArctypeTableColumns($channel_id);
}
/*--end*/
// 应用搜索条件
foreach (['keywords'] as $key) {
if (isset($param[$key]) && $param[$key] !== '') {
if ($key == 'keywords') {
$condition['name'] = array('LIKE', "%{$param[$key]}%");
} else {
$condition[$key] = array('eq', $param[$key]);
}
}
}
// 模型ID
$condition['channel_id'] = array('eq', $channel_id);
$condition['ifsystem'] = array('neq', 1);
$cfieldM = M('channelfield');
$count = $cfieldM->where($condition)->count('id');// 查询满足要求的总记录数
$Page = $pager = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
$list = $cfieldM->where($condition)->order('sort_order asc, ifsystem asc, id desc')->limit($Page->firstRow.','.$Page->listRows)->select();
$show = $Page->show();// 分页显示输出
$assign_data['page'] = $show; // 赋值分页输出
$assign_data['list'] = $list; // 赋值数据集
$assign_data['pager'] = $Page; // 赋值分页对象
/*字段类型列表*/
$assign_data['fieldtypeList'] = M('field_type')->field('name,title')->getAllWithIndex('name');
/*--end*/
$assign_data['channel_id'] = $channel_id;
$this->assign($assign_data);
return $this->fetch();
}
/**
* 新增-栏目字段
*/
public function arctype_add()
{
$channel_id = $this->arctype_channel_id;
if (empty($channel_id)) {
$this->error('参数有误!');
}
if (IS_POST) {
$post = input('post.', '', 'trim');
if (empty($post['dtype']) || empty($post['title']) || empty($post['name'])) {
$this->error("缺少必填信息!");
}
if (1 == preg_match('/^([_]+|[0-9]+)$/', $post['name'])) {
$this->error("字段名称格式不正确!");
}
/*去除中文逗号,过滤左右空格与空值*/
$dfvalue = str_replace(',', ',', $post['dfvalue']);
$dfvalue = func_preg_replace(['"','\''], '', $dfvalue);
$dfvalueArr = explode(',', $dfvalue);
foreach ($dfvalueArr as $key => $val) {
$tmp_val = trim($val);
if ('' == $tmp_val) {
unset($dfvalueArr[$key]);
continue;
}
$dfvalueArr[$key] = trim($val);
}
$dfvalue = implode(',', $dfvalueArr);
/*--end*/
/*默认值必填字段*/
$fieldtype_list = model('Field')->getFieldTypeAll('name,title,ifoption', 'name');
if (isset($fieldtype_list[$post['dtype']]) && 1 == $fieldtype_list[$post['dtype']]['ifoption']) {
if (empty($dfvalue)) {
$this->error("你设定了字段为【".$fieldtype_list[$post['dtype']]['title']."】类型,默认值不能为空! ");
}
}
/*--end*/
/*栏目对应的单页表*/
$tableExt = PREFIX.'single_content';
/*--end*/
/*检测字段是否存在于主表与附加表中*/
if (true == $this->fieldLogic->checkChannelFieldList($tableExt, $post['name'], 6)) {
$this->error("字段名称 ".$post['name']." 与系统字段冲突!");
}
/*--end*/
/*组装完整的SQL语句,并执行新增字段*/
$fieldinfos = $this->fieldLogic->GetFieldMake($post['dtype'], $post['name'], $dfvalue, $post['title']);
$ntabsql = $fieldinfos[0];
$buideType = $fieldinfos[1];
$maxlength = $fieldinfos[2];
$table = PREFIX.'arctype';
$sql = " ALTER TABLE `$table` ADD $ntabsql ";
if (false !== Db::execute($sql)) {
/*保存新增字段的记录*/
$newData = array(
'dfvalue' => $dfvalue,
'maxlength' => $maxlength,
'define' => $buideType,
'ifmain' => 1,
'ifsystem' => 0,
'sort_order' => 100,
'add_time' => getTime(),
'update_time' => getTime(),
);
$data = array_merge($post, $newData);
M('channelfield')->save($data);
/*--end*/
/*重新生成数据表字段缓存文件*/
try {
schemaTable($table);
} catch (\Exception $e) {}
/*--end*/
\think\Cache::clear('channelfield');
\think\Cache::clear("arctype");
$this->success("操作成功!", url('Field/arctype_index'));
}
$this->error('操作失败');
}
/*字段类型列表*/
$assign_data['fieldtype_list'] = model('Field')->getFieldTypeAll('name,title,ifoption');
/*--end*/
/*模型ID*/
$assign_data['channel_id'] = $channel_id;
/*--end*/
$this->assign($assign_data);
return $this->fetch();
}
/**
* 编辑-栏目字段
*/
public function arctype_edit()
{
$channel_id = $this->arctype_channel_id;
if (empty($channel_id)) {
$this->error('参数有误!');
}
if (IS_POST) {
$post = input('post.', '', 'trim');
if (empty($post['dtype']) || empty($post['title']) || empty($post['name'])) {
$this->error("缺少必填信息!");
}
if (1 == preg_match('/^([_]+|[0-9]+)$/', $post['name'])) {
$this->error("字段名称格式不正确!");
}
$info = model('Channelfield')->getInfo($post['id'], 'ifsystem');
if (!empty($info['ifsystem'])) {
$this->error('系统字段不允许更改!');
}
$old_name = $post['old_name'];
/*去除中文逗号,过滤左右空格与空值*/
$dfvalue = str_replace(',', ',', $post['dfvalue']);
$dfvalue = func_preg_replace(['"','\''], '', $dfvalue);
$dfvalueArr = explode(',', $dfvalue);
foreach ($dfvalueArr as $key => $val) {
$tmp_val = trim($val);
if ('' == $tmp_val) {
unset($dfvalueArr[$key]);
continue;
}
$dfvalueArr[$key] = trim($val);
}
$dfvalue = implode(',', $dfvalueArr);
/*--end*/
/*默认值必填字段*/
$fieldtype_list = model('Field')->getFieldTypeAll('name,title,ifoption', 'name');
if (isset($fieldtype_list[$post['dtype']]) && 1 == $fieldtype_list[$post['dtype']]['ifoption']) {
if (empty($dfvalue)) {
$this->error("你设定了字段为【".$fieldtype_list[$post['dtype']]['title']."】类型,默认值不能为空! ");
}
}
/*--end*/
/*栏目对应的单页表*/
$tableExt = PREFIX.'single_content';
/*--end*/
/*检测字段是否存在于主表与附加表中*/
if (true == $this->fieldLogic->checkChannelFieldList($tableExt, $post['name'], 6, array($old_name))) {
$this->error("字段名称 ".$post['name']." 与系统字段冲突!");
}
/*--end*/
/*组装完整的SQL语句,并执行编辑字段*/
$fieldinfos = $this->fieldLogic->GetFieldMake($post['dtype'], $post['name'], $dfvalue, $post['title']);
$ntabsql = $fieldinfos[0];
$buideType = $fieldinfos[1];
$maxlength = $fieldinfos[2];
$table = PREFIX.'arctype';
$sql = " ALTER TABLE `$table` CHANGE COLUMN `{$old_name}` $ntabsql ";
if (false !== Db::execute($sql)) {
/*保存更新字段的记录*/
$newData = array(
'dfvalue' => $dfvalue,
'maxlength' => $maxlength,
'define' => $buideType,
'ifmain' => 1,
'ifsystem' => 0,
'update_time' => getTime(),
);
$data = array_merge($post, $newData);
M('channelfield')->where('id',$post['id'])->cache(true,null,"channelfield")->save($data);
/*--end*/
/*重新生成数据表字段缓存文件*/
try {
schemaTable($table);
} catch (\Exception $e) {}
/*--end*/
\think\Cache::clear("arctype");
$this->success("操作成功!", url('Field/arctype_index'));
} else {
$sql = " ALTER TABLE `$table` ADD $ntabsql ";
if (false === Db::execute($sql)) {
$this->error('操作失败!');
}
}
}
$id = input('param.id/d', 0);
$info = array();
if (!empty($id)) {
$info = model('Channelfield')->getInfo($id);
}
if (!empty($info['ifsystem'])) {
$this->error('系统字段不允许更改!');
}
$assign_data['info'] = $info;
/*字段类型列表*/
$assign_data['fieldtype_list'] = model('Field')->getFieldTypeAll('name,title,ifoption');
/*--end*/
/*模型ID*/
$assign_data['channel_id'] = $channel_id;
/*--end*/
$this->assign($assign_data);
return $this->fetch();
}
/**
* 删除-栏目字段
*/
public function arctype_del()
{
$channel_id = $this->arctype_channel_id;
$id = input('del_id/d', 0);
if(!empty($id)){
/*删除表字段*/
$row = $this->fieldLogic->delArctypeField($id);
/*--end*/
if (0 < $row['code']) {
$map = array(
'id' => array('eq', $id),
'channel_id' => $channel_id,
);
$result = M('channelfield')->field('channel_id,name')->where($map)->select();
$name_list = get_arr_column($result, 'name');
/*删除字段的记录*/
M('channelfield')->where($map)->delete();
/*--end*/
adminLog('删除栏目字段:'.implode(',', $name_list));
$this->success('删除成功');
}
\think\Cache::clear('channelfield');
\think\Cache::clear("arctype");
respose(array('status'=>0, 'msg'=>$row['msg']));
}else{
$this->error('参数有误');
}
}
}