心理咨询网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ExtFieldController.php 8.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2018年3月1日
  7. * 扩展字段控制器
  8. */
  9. namespace app\admin\controller\content;
  10. use core\basic\Controller;
  11. use app\admin\model\content\ExtFieldModel;
  12. class ExtFieldController extends Controller
  13. {
  14. private $model;
  15. public function __construct()
  16. {
  17. $this->model = new ExtFieldModel();
  18. }
  19. // 扩展字段列表
  20. public function index()
  21. {
  22. if ((! ! $id = get('id', 'int')) && $result = $this->model->getExtField($id)) {
  23. $this->assign('more', true);
  24. $this->assign('extfield', $result);
  25. } else {
  26. $this->assign('list', true);
  27. if (! ! ($field = get('field', 'var')) && ! ! ($keyword = get('keyword', 'vars'))) {
  28. $result = $this->model->findExtField($field, $keyword);
  29. } else {
  30. $result = $this->model->getList();
  31. }
  32. // 内容模型
  33. $models = model('admin.content.Model');
  34. $this->assign('models', $models->getSelect());
  35. $this->assign('extfields', $result);
  36. }
  37. $this->display('content/extfield.html');
  38. }
  39. // 扩展字段增加
  40. public function add()
  41. {
  42. if ($_POST) {
  43. // 获取数据
  44. $mcode = post('mcode');
  45. $name = post('name', 'var');
  46. $type = post('type', 'int');
  47. if (! ! $value = post('value')) {
  48. $value = str_replace("\r\n", ",", $value); // 替换回车
  49. $value = str_replace(",", ",", $value); // 替换中文逗号分割符
  50. }
  51. $description = post('description');
  52. $sorting = post('sorting', 'int');
  53. if (! $mcode) {
  54. alert_back('内容模型不能为空!');
  55. }
  56. if (! $name) {
  57. alert_back('字段名称不能为空!');
  58. } else {
  59. $name = "ext_" . $name;
  60. }
  61. if (! $type) {
  62. alert_back('字段类型不能为空!');
  63. }
  64. if (! $description) {
  65. alert_back('字段描述不能为空!');
  66. }
  67. // 构建数据
  68. $data = array(
  69. 'mcode' => $mcode,
  70. 'name' => $name,
  71. 'type' => $type,
  72. 'value' => $value,
  73. 'description' => $description,
  74. 'sorting' => $sorting
  75. );
  76. // 字段类型及长度
  77. switch ($type) {
  78. case '2': // 多行
  79. $mysql = 'varchar(1000)';
  80. $sqlite = 'TEXT(1000)';
  81. break;
  82. case '7': // 时间日期
  83. $mysql = 'datetime';
  84. $sqlite = 'TEXT';
  85. break;
  86. case '8': // 编辑器
  87. $mysql = 'TEXT';
  88. $sqlite = 'TEXT(10000)';
  89. break;
  90. case '10': // 多图
  91. $mysql = 'varchar(1000)';
  92. $sqlite = 'TEXT(1000)';
  93. break;
  94. default:
  95. $mysql = 'varchar(200)';
  96. $sqlite = 'TEXT(200)';
  97. }
  98. // 字段不存在时创建
  99. if (! $this->model->isExistField($name)) {
  100. if (get_db_type() == 'sqlite') {
  101. $result = $this->model->amd("ALTER TABLE ay_content_ext ADD COLUMN $name $sqlite NULL");
  102. } else {
  103. $result = $this->model->amd("ALTER TABLE ay_content_ext ADD $name $mysql NULL COMMENT '$description'");
  104. //添加索引
  105. $this->model->amd("create index ay_content_{$name}_index on ay_content_ext ($name)");
  106. }
  107. } elseif ($this->model->checkExtField($name)) { // 字段存在且已使用则 报错
  108. alert_back('字段已经存在,不能重复添加!');
  109. }
  110. // 执行扩展字段记录添加
  111. if ($this->model->addExtField($data)) {
  112. $this->log('新增扩展字段成功!');
  113. if (! ! $backurl = get('backurl')) {
  114. success('新增成功!', base64_decode($backurl));
  115. } else {
  116. success('新增成功!', url('/admin/ExtField/index'));
  117. }
  118. } else {
  119. $this->log('新增扩展字段失败!');
  120. error('新增失败!', - 1);
  121. }
  122. }
  123. }
  124. // 扩展字段删除
  125. public function del()
  126. {
  127. if (! $id = get('id', 'int')) {
  128. error('传递的参数值错误!', - 1);
  129. }
  130. $name = $this->model->getExtFieldName($id);
  131. if ($this->model->delExtField($id)) {
  132. // mysql数据库执行字段删除,sqlite暂时不支持
  133. if (! ! $name) {
  134. if (get_db_type() == 'mysql') {
  135. $result = $this->model->amd("ALTER TABLE ay_content_ext DROP COLUMN $name");
  136. //删除索引(如果有)
  137. $contentExt = $this->model->checkExtIndex();
  138. foreach ($contentExt as $items){
  139. if($items[2] == "ay_content_{$name}_index"){
  140. $this->model->amd("ALTER table ay_content_ext drop key ay_content_{$name}_index");
  141. }
  142. }
  143. }
  144. }
  145. $this->log('删除扩展字段' . $id . '成功!');
  146. success('删除成功!', - 1);
  147. } else {
  148. $this->log('删除扩展字段' . $id . '失败!');
  149. error('删除失败!', - 1);
  150. }
  151. }
  152. // 扩展字段修改
  153. public function mod()
  154. {
  155. if (! $id = get('id', 'int')) {
  156. error('传递的参数值错误!', - 1);
  157. }
  158. // 单独修改状态
  159. if (($field = get('field', 'var')) && ! is_null($value = get('value', 'var'))) {
  160. if ($this->model->modExtField($id, "$field='$value',update_user='" . session('username') . "'")) {
  161. location(- 1);
  162. } else {
  163. alert_back('修改失败!');
  164. }
  165. }
  166. // 修改操作
  167. if ($_POST) {
  168. // 获取数据
  169. $mcode = post('mcode');
  170. $type = post('type');
  171. if (! ! $value = post('value')) {
  172. $value = str_replace("\r\n", ",", $value); // 替换回车
  173. $value = str_replace(",", ",", $value); // 替换中文逗号分割符
  174. }
  175. $description = post('description');
  176. $sorting = post('sorting', 'int');
  177. if (! $mcode) {
  178. alert_back('内容模型不能为空!');
  179. }
  180. if (! $description) {
  181. alert_back('字段描述不能为空!');
  182. }
  183. // 构建数据
  184. $data = array(
  185. 'mcode' => $mcode,
  186. 'type' => $type,
  187. 'value' => $value,
  188. 'description' => $description,
  189. 'sorting' => $sorting
  190. );
  191. // 执行修改
  192. if ($this->model->modExtField($id, $data)) {
  193. $this->log('修改扩展字段' . $id . '成功!');
  194. if (! ! $backurl = get('backurl')) {
  195. success('修改成功!', base64_decode($backurl));
  196. } else {
  197. success('修改成功!', url('/admin/ExtField/index'));
  198. }
  199. } else {
  200. location(- 1);
  201. }
  202. } else {
  203. // 调取修改内容
  204. $this->assign('mod', true);
  205. if (! $result = $this->model->getExtField($id)) {
  206. error('编辑的内容已经不存在!', - 1);
  207. }
  208. // 内容模型
  209. $models = model('admin.content.Model');
  210. $this->assign('models', $models->getSelect());
  211. $this->assign('extfield', $result);
  212. $this->display('content/extfield.html');
  213. }
  214. }
  215. }