心理咨询网
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

FormController.php 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. <?php
  2. /**
  3. * @copyright (C)2016-2099 Hnaoyun Inc.
  4. * @author XingMeng
  5. * @email hnxsh@foxmail.com
  6. * @date 2018年5月28日
  7. * 自定义表单控制器
  8. */
  9. namespace app\admin\controller\content;
  10. use core\basic\Controller;
  11. use app\admin\model\content\FormModel;
  12. class FormController extends Controller
  13. {
  14. private $model;
  15. public function __construct()
  16. {
  17. $this->model = new FormModel();
  18. }
  19. // 自定义表单列表
  20. public function index()
  21. {
  22. if ((! ! $fcode = get('fcode', 'var')) && $form = $this->model->getFormByCode($fcode)) {
  23. $this->assign('form', $form);
  24. if (get('action') == 'showdata') {
  25. $this->assign('showdata', true);
  26. $this->assign('fields', $this->model->getFormFieldByCode($fcode)); // 获取字段
  27. $table = $this->model->getFormTableByCode($fcode);
  28. if (get('export')) {
  29. $this->assign('formdata', $this->model->getFormData($table, false));
  30. header('Content-Type:application/vnd.ms-excel');
  31. header('Cache-Control: max-age=0');
  32. header("Content-Disposition:filename=" . $form->form_name . "-" . date("YmdHis") . ".xls");
  33. $this->display('content/exform.html');
  34. } else {
  35. $this->assign('formdata', $this->model->getFormData($table, true));
  36. }
  37. }
  38. if (get('action') == 'showfield') {
  39. $this->assign('showfield', true);
  40. $this->assign('fields', $this->model->getFormFieldByCode($fcode));
  41. }
  42. } else {
  43. $this->assign('list', true);
  44. if (! ! ($field = get('field', 'var')) && ! ! ($keyword = get('keyword', 'vars'))) {
  45. $result = $this->model->findForm($field, $keyword);
  46. } else {
  47. $result = $this->model->getList();
  48. }
  49. $this->assign('forms', $result);
  50. }
  51. $this->display('content/form.html');
  52. }
  53. // 自定义表单增加
  54. public function add()
  55. {
  56. if ($_POST) {
  57. if (get('action') == 'addform') {
  58. $fcode = get_auto_code($this->model->getLastCode());
  59. $form_name = post('form_name');
  60. $table_name = 'ay_diy_' . post('table_name', 'var');
  61. if (! $form_name) {
  62. alert_back('表单名称不能为空!');
  63. }
  64. if (! $table_name) {
  65. alert_back('表单数据表不能为空!');
  66. }
  67. $data = array(
  68. 'fcode' => $fcode,
  69. 'form_name' => $form_name,
  70. 'table_name' => $table_name,
  71. 'create_user' => session('username'),
  72. 'update_user' => session('username')
  73. );
  74. if (get_db_type() == 'sqlite') {
  75. $result = $this->model->amd("CREATE TABLE `$table_name` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,`create_time` TEXT NOT NULL)");
  76. } else {
  77. $result = $this->model->amd("CREATE TABLE `$table_name` (`id` int(10) unsigned NOT NULL AUTO_INCREMENT,`create_time` datetime NOT NULL,PRIMARY KEY (`id`))ENGINE=MyISAM DEFAULT CHARSET=utf8");
  78. }
  79. if ($this->model->addForm($data)) {
  80. $this->log('新增自定义表单成功!');
  81. if (! ! $backurl = get('backurl')) {
  82. success('新增成功!', base64_decode($backurl));
  83. } else {
  84. success('新增成功!', url('/admin/Form/index'));
  85. }
  86. } else {
  87. $this->log('新增自定义表单失败!');
  88. error('新增失败!', - 1);
  89. }
  90. } else {
  91. // 获取数据
  92. $fcode = post('fcode', 'var');
  93. $name = post('name', 'var');
  94. $length = post('length', 'int') ?: 20;
  95. $required = post('required', 'int') ?: 0;
  96. $description = post('description');
  97. $sorting = post('sorting', 'int') ?: 255;
  98. if (! $fcode) {
  99. alert_back('表单编码不能为空!');
  100. }
  101. if (! $name) {
  102. alert_back('字段名称不能为空!');
  103. }
  104. if (! $description) {
  105. alert_back('字段描述不能为空!');
  106. }
  107. // 构建数据
  108. $data = array(
  109. 'fcode' => $fcode,
  110. 'name' => $name,
  111. 'length' => $length,
  112. 'required' => $required,
  113. 'description' => $description,
  114. 'sorting' => $sorting,
  115. 'create_user' => session('username'),
  116. 'update_user' => session('username')
  117. );
  118. // 获取表名称
  119. $table = $this->model->getFormTableByCode($fcode);
  120. // 字段类型及长度
  121. $mysql = "varchar($length)";
  122. $sqlite = "TEXT($length)";
  123. // 字段不存在时创建
  124. if (! $this->model->isExistField($table, $name)) {
  125. if (get_db_type() == 'sqlite') {
  126. $result = $this->model->amd("ALTER TABLE $table ADD COLUMN $name $sqlite NULL");
  127. } else {
  128. $result = $this->model->amd("ALTER TABLE $table ADD $name $mysql NULL COMMENT '$description'");
  129. }
  130. } elseif ($this->model->checkFormField($fcode, $name)) {
  131. alert_back('字段已经存在,不能重复添加!');
  132. }
  133. // 执行自定义表单记录添加
  134. if ($this->model->addFormField($data)) {
  135. $this->log('新增表单字段成功!');
  136. if (! ! $backurl = get('backurl')) {
  137. success('新增成功!', base64_decode($backurl));
  138. } else {
  139. success('新增成功!', url('/admin/Form/index/fcode/' . $fcode . '/action/showfield'));
  140. }
  141. } else {
  142. $this->log('新增表单字段失败!');
  143. error('新增失败!', - 1);
  144. }
  145. }
  146. }
  147. }
  148. // 自定义表单删除
  149. public function del()
  150. {
  151. if (! $id = get('id', 'int')) {
  152. error('传递的参数值错误!', - 1);
  153. }
  154. // 删除表单
  155. if (get('action') == 'delform') {
  156. if ($id == 1) {
  157. alert_back('留言表单不允许删除');
  158. }
  159. $table = $this->model->getFormTable($id);
  160. $fcode = $this->model->getFormCode($id);
  161. if ($this->model->delForm($id)) {
  162. $this->model->delFormFieldByCode($fcode); // 删除字段记录
  163. $this->model->amd("DROP TABLE IF EXISTS $table"); // 删除表
  164. $this->log('删除自定义表单' . $id . '成功!');
  165. success('删除成功!', - 1);
  166. } else {
  167. $this->log('删除自定义表单' . $id . '失败!');
  168. error('删除失败!', - 1);
  169. }
  170. } elseif (get('action') == 'deldata') {
  171. // 获取表单
  172. if (! $fcode = get('fcode', 'var')) {
  173. error('传递的参数值fcode错误!', - 1);
  174. }
  175. $table = $this->model->getFormTableByCode($fcode);
  176. if ($this->model->delFormData($table, $id)) {
  177. $this->log('删除表单数据' . $id . '成功!');
  178. success('删除成功!', - 1);
  179. } else {
  180. $this->log('删除表单数据' . $id . '失败!');
  181. error('删除失败!', - 1);
  182. }
  183. } else {
  184. // 获取表单
  185. if (! $fcode = get('fcode', 'var')) {
  186. error('传递的参数值fcode错误!', - 1);
  187. }
  188. // 获取操作表
  189. $table = $this->model->getFormTableByCode($fcode);
  190. $name = $this->model->getFormFieldName($id);
  191. if ($this->model->delFormField($id)) {
  192. // mysql数据库执行字段删除,sqlite暂时不支持
  193. if (! ! $name) {
  194. if (get_db_type() == 'mysql') {
  195. $result = $this->model->amd("ALTER TABLE $table DROP COLUMN $name");
  196. }
  197. }
  198. $this->log('删除自定义表单' . $id . '成功!');
  199. success('删除成功!', - 1);
  200. } else {
  201. $this->log('删除自定义表单' . $id . '失败!');
  202. error('删除失败!', - 1);
  203. }
  204. }
  205. }
  206. // 自定义表单修改
  207. public function mod()
  208. {
  209. if (! $id = get('id', 'int')) {
  210. error('传递的参数值错误!', - 1);
  211. }
  212. // 单独修改状态
  213. if (($field = get('field', 'var')) && ! is_null($value = get('value', 'var'))) {
  214. if ($this->model->modFormField($id, "$field='$value',update_user='" . session('username') . "'")) {
  215. location(- 1);
  216. } else {
  217. alert_back('修改失败!');
  218. }
  219. }
  220. if (get('action') == 'addmenu') {
  221. if ($this->model->addFormMenu($id)) {
  222. $this->log('添加自定义表单' . $id . '到菜单成功!');
  223. if (! ! $backurl = get('backurl')) {
  224. success('添加成功!', base64_decode($backurl));
  225. } else {
  226. success('添加成功!', url('/admin/Form/index'));
  227. }
  228. } else {
  229. location(- 1);
  230. }
  231. }
  232. // 修改操作
  233. if ($_POST) {
  234. // 修改表单
  235. if (get('action') == 'modform') {
  236. $form_name = post('form_name');
  237. if (! $form_name) {
  238. alert_back('表单名称不能为空!');
  239. }
  240. $data = array(
  241. 'form_name' => $form_name,
  242. 'update_user' => session('username')
  243. );
  244. // 执行修改
  245. if ($this->model->modForm($id, $data)) {
  246. $this->log('修改自定义表单' . $id . '成功!');
  247. if (! ! $backurl = get('backurl')) {
  248. success('修改成功!', base64_decode($backurl));
  249. } else {
  250. success('修改成功!', url('/admin/Form/index'));
  251. }
  252. } else {
  253. location(- 1);
  254. }
  255. } else {
  256. // 获取数据
  257. $description = post('description');
  258. $required = post('required', 'int') ?: 0;
  259. $sorting = post('sorting', 'int') ?: 255;
  260. if (! $description) {
  261. alert_back('字段描述不能为空!');
  262. }
  263. // 构建数据
  264. $data = array(
  265. 'description' => $description,
  266. 'required' => $required,
  267. 'sorting' => $sorting,
  268. 'update_user' => session('username')
  269. );
  270. // 执行修改
  271. if ($this->model->modFormField($id, $data)) {
  272. $this->log('修改表单字段' . $id . '成功!');
  273. if (! ! $backurl = get('backurl')) {
  274. success('修改成功!', base64_decode($backurl));
  275. } else {
  276. success('修改成功!', url('/admin/Form/index'));
  277. }
  278. } else {
  279. location(- 1);
  280. }
  281. }
  282. } else {
  283. // 调取修改内容
  284. $this->assign('mod', true);
  285. if (get('action') == 'modform') {
  286. if (! $result = $this->model->getForm($id)) {
  287. error('编辑的内容已经不存在!', - 1);
  288. }
  289. $this->assign('form', $result);
  290. } else {
  291. if (! $result = $this->model->getFormField($id)) {
  292. error('编辑的内容已经不存在!', - 1);
  293. }
  294. $this->assign('field', $result);
  295. }
  296. $this->display('content/form.html');
  297. }
  298. }
  299. // 清空
  300. public function clear()
  301. {
  302. // 获取表单
  303. if (! $fcode = get('fcode', 'var')) {
  304. error('传递的参数值fcode错误!', - 1);
  305. }
  306. $table = $this->model->getFormTableByCode($fcode);
  307. if ($this->model->clearFormData($table)) {
  308. alert_location('清空成功!', - 1);
  309. } else {
  310. alert_location('清空失败!', - 1);
  311. }
  312. }
  313. }