心理咨询网
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.

MemberFieldController.php 6.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2020年06月25日
  7. * 会员字段控制器
  8. */
  9. namespace app\admin\controller\member;
  10. use core\basic\Controller;
  11. use app\admin\model\member\MemberFieldModel;
  12. class MemberFieldController extends Controller
  13. {
  14. private $model;
  15. public function __construct()
  16. {
  17. $this->model = new MemberFieldModel();
  18. }
  19. // 会员字段列表
  20. public function index()
  21. {
  22. if ((! ! $id = get('id', 'int')) && $result = $this->model->getField($id)) {
  23. $this->assign('more', true);
  24. $this->assign('field', $result);
  25. } else {
  26. $this->assign('list', true);
  27. if (! ! ($field = get('field', 'var')) && ! ! ($keyword = get('keyword', 'vars'))) {
  28. $result = $this->model->findField($field, $keyword);
  29. } else {
  30. $result = $this->model->getList();
  31. }
  32. $this->assign('fields', $result);
  33. }
  34. $this->display('member/field.html');
  35. }
  36. // 会员字段增加
  37. public function add()
  38. {
  39. if ($_POST) {
  40. // 获取数据
  41. $name = post('name', 'var');
  42. $length = post('length', 'int') ?: 20;
  43. $required = post('required', 'int') ?: 0;
  44. $description = post('description');
  45. $sorting = post('sorting', 'int') ?: 255;
  46. $status = post('status') ?: 1;
  47. if (! $name) {
  48. alert_back('字段名称不能为空!');
  49. }
  50. if (! preg_match('/^[a-zA-Z][\w]+$/', $name)) {
  51. alert_back('字段名称必须以字母开头!');
  52. }
  53. if (! $description) {
  54. alert_back('字段描述不能为空!');
  55. }
  56. // 构建数据
  57. $data = array(
  58. 'name' => $name,
  59. 'length' => $length,
  60. 'required' => $required,
  61. 'description' => $description,
  62. 'sorting' => $sorting,
  63. 'status' => $status,
  64. 'create_user' => session('username'),
  65. 'update_user' => session('username')
  66. );
  67. // 字段类型及长度
  68. $mysql = "varchar($length)";
  69. $sqlite = "TEXT($length)";
  70. // 字段不存在时创建
  71. if (! $this->model->isExistField($name)) {
  72. if (get_db_type() == 'sqlite') {
  73. $result = $this->model->amd("ALTER TABLE ay_member ADD COLUMN $name $sqlite NULL");
  74. } else {
  75. $result = $this->model->amd("ALTER TABLE ay_member ADD $name $mysql NULL COMMENT '$description'");
  76. }
  77. } elseif ($this->model->checkField($name)) { // 字段存在且已使用则报错
  78. alert_back('字段已经存在,不能重复添加!');
  79. }
  80. // 执行会员字段添加
  81. if ($this->model->addField($data)) {
  82. $this->log('新增会员字段成功!');
  83. if (! ! $backurl = get('backurl')) {
  84. success('新增成功!', base64_decode($backurl));
  85. } else {
  86. success('新增成功!', url('/admin/MemberField/index'));
  87. }
  88. } else {
  89. $this->log('新增会员字段失败!');
  90. error('新增失败!', - 1);
  91. }
  92. }
  93. }
  94. // 会员字段删除
  95. public function del()
  96. {
  97. if (! $id = get('id', 'int')) {
  98. error('传递的参数值错误!', - 1);
  99. }
  100. $name = $this->model->getFieldName($id);
  101. if ($this->model->delField($id)) {
  102. // mysql数据库执行字段删除,sqlite暂时不支持
  103. if (! ! $name) {
  104. if (get_db_type() == 'mysql') {
  105. $result = $this->model->amd("ALTER TABLE ay_member DROP COLUMN $name");
  106. }
  107. }
  108. $this->log('删除会员字段' . $id . '成功!');
  109. success('删除成功!', - 1);
  110. } else {
  111. $this->log('删除会员字段' . $id . '失败!');
  112. error('删除失败!', - 1);
  113. }
  114. }
  115. // 会员字段修改
  116. public function mod()
  117. {
  118. if (! $id = get('id', 'int')) {
  119. error('传递的参数值错误!', - 1);
  120. }
  121. // 单独修改状态
  122. if (($field = get('field', 'var')) && ! is_null($value = get('value', 'var'))) {
  123. if ($this->model->modField($id, "$field='$value',update_user='" . session('username') . "'")) {
  124. location(- 1);
  125. } else {
  126. alert_back('修改失败!');
  127. }
  128. }
  129. // 修改操作
  130. if ($_POST) {
  131. // 获取数据
  132. $required = post('required', 'int') ?: 0;
  133. $description = post('description');
  134. $sorting = post('sorting', 'int') ?: 255;
  135. $status = post('status') ?: 1;
  136. if (! $description) {
  137. alert_back('字段描述不能为空!');
  138. }
  139. // 构建数据
  140. $data = array(
  141. 'required' => $required,
  142. 'description' => $description,
  143. 'sorting' => $sorting,
  144. 'status' => $status,
  145. 'update_user' => session('username')
  146. );
  147. // 执行会员字段修改
  148. if ($this->model->modField($id, $data)) {
  149. $this->log('修改会员字段成功!');
  150. if (! ! $backurl = get('backurl')) {
  151. success('修改成功!', base64_decode($backurl));
  152. } else {
  153. success('修改成功!', url('/admin/MemberField/index'));
  154. }
  155. } else {
  156. $this->log('修改会员字段失败!');
  157. error('修改失败!', - 1);
  158. }
  159. } else {
  160. // 调取修改内容
  161. $this->assign('mod', true);
  162. if (! $result = $this->model->getField($id)) {
  163. error('编辑的内容已经不存在!', - 1);
  164. }
  165. $this->assign('field', $result);
  166. $this->display('member/field.html');
  167. }
  168. }
  169. }