Keyword.php 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. <?php
  2. namespace app\admin\controller\weixin\reply;
  3. use app\common\controller\Backend;
  4. use Exception;
  5. use think\Db;
  6. use think\exception\PDOException;
  7. use think\exception\ValidateException;
  8. use think\Config;
  9. use fast\Random;
  10. /**
  11. * 微信关键字回复管理
  12. *
  13. * @icon fa fa-circle-o
  14. */
  15. class Keyword extends Backend
  16. {
  17. /**
  18. * Keyword模型对象
  19. * @var \app\admin\model\weixin\reply\Keyword
  20. */
  21. protected $model = null;
  22. public function _initialize()
  23. {
  24. parent::_initialize();
  25. $this->model = new \app\admin\model\weixin\Reply;
  26. $this->view->assign("typeList", $this->model->getTypeList());
  27. }
  28. /**
  29. * 查看
  30. */
  31. public function index()
  32. {
  33. //设置过滤方法
  34. $this->request->filter(['strip_tags']);
  35. if ($this->request->isAjax()) {
  36. //如果发送的来源是Selectpage,则转发到Selectpage
  37. if ($this->request->request('keyField')) {
  38. return $this->selectpage();
  39. }
  40. list($where, $sort, $order, $offset, $limit) = $this->buildparams();
  41. $total = $this->model
  42. ->where($where)
  43. ->where(['key' => ['not in', 'default,subscribe']])
  44. ->order($sort, $order)
  45. ->count();
  46. $list = $this->model
  47. ->where($where)
  48. ->order($sort, $order)
  49. ->where(['key' => ['not in', 'default,subscribe']])
  50. ->limit($offset, $limit)
  51. ->select();
  52. $list = collection($list)->toArray();
  53. $result = array("total" => $total, "rows" => $list);
  54. return json($result);
  55. }
  56. return $this->view->fetch();
  57. }
  58. /**
  59. * 添加
  60. */
  61. public function add()
  62. {
  63. $this->modelValidate = true;
  64. if ($this->request->isPost()) {
  65. $params = $this->request->post("row/a");
  66. if ($params) {
  67. $params = method_exists($this, 'preExcludeFields') ? $this->preExcludeFields($params) : $params;
  68. if ($this->dataLimit && $this->dataLimitFieldAutoFill) {
  69. $params[$this->dataLimitField] = $this->auth->id;
  70. }
  71. $result = false;
  72. Db::startTrans();
  73. try {
  74. $method = 'tidy' . ucfirst($params['type']);
  75. $params['data'] = $this->model->$method($params['data'], $params['type']);
  76. //是否采用模型验证
  77. if ($this->modelValidate) {
  78. $validate = [
  79. 'key' => 'require|max:25|unique:weixin_reply'
  80. ];
  81. $message = [
  82. 'key.unique' => '关键字不得重复。',
  83. ];
  84. $this->model->validateFailException(true)->validate($validate, $message);
  85. }
  86. $result = $this->model->allowField(true)->save($params);
  87. Db::commit();
  88. } catch (ValidateException $e) {
  89. Db::rollback();
  90. $this->error($e->getMessage());
  91. } catch (PDOException $e) {
  92. Db::rollback();
  93. $this->error($e->getMessage());
  94. } catch (Exception $e) {
  95. Db::rollback();
  96. $this->error($e->getMessage());
  97. }
  98. if ($result !== false) {
  99. $this->success();
  100. } else {
  101. $this->error(__('No rows were inserted'));
  102. }
  103. }
  104. $this->error(__('Parameter %s can not be empty', ''));
  105. }
  106. return $this->view->fetch();
  107. }
  108. /**
  109. * 编辑
  110. */
  111. public function edit($ids = null)
  112. {
  113. $this->modelValidate = true;
  114. $row = $this->model->get($ids);
  115. if (!$row) {
  116. $this->error(__('No Results were found'));
  117. }
  118. $adminIds = $this->getDataLimitAdminIds();
  119. if (is_array($adminIds)) {
  120. if (!in_array($row[$this->dataLimitField], $adminIds)) {
  121. $this->error(__('You have no permission'));
  122. }
  123. }
  124. if ($this->request->isPost()) {
  125. $params = $this->request->post("row/a");
  126. if ($params) {
  127. $params = method_exists($this, 'preExcludeFields') ? $this->preExcludeFields($params) : $params;
  128. $result = false;
  129. Db::startTrans();
  130. try {
  131. $method = 'tidy' . ucfirst($params['type']);
  132. $params['data'] = $row->$method($params['data'], $params['type']);
  133. //是否采用模型验证-编辑验证
  134. if ($this->modelValidate) {
  135. $validate = [
  136. 'key' => 'require|max:25|unique:weixin_reply,key,' . $row->id
  137. ];
  138. $message = [
  139. 'key.unique' => '关键字不得重复。',
  140. ];
  141. $row->validateFailException(true)->validate($validate, $message);
  142. }
  143. $result = $row->allowField(true)->save($params);
  144. Db::commit();
  145. } catch (ValidateException $e) {
  146. Db::rollback();
  147. $this->error($e->getMessage());
  148. } catch (PDOException $e) {
  149. Db::rollback();
  150. $this->error($e->getMessage());
  151. } catch (Exception $e) {
  152. Db::rollback();
  153. $this->error($e->getMessage());
  154. }
  155. if ($result !== false) {
  156. $this->success();
  157. } else {
  158. $this->error(__('No rows were updated'));
  159. }
  160. }
  161. $this->error(__('Parameter %s can not be empty', ''));
  162. }
  163. $this->view->assign("row", $row);
  164. $this->view->assign("data", json_decode($row['data'], true));
  165. return $this->view->fetch();
  166. }
  167. /**
  168. * 上传文件
  169. */
  170. public function upload()
  171. {
  172. Config::set('default_return_type', 'json');
  173. $file = $this->request->file('file');
  174. if (empty($file)) {
  175. $this->error(__('No file upload or server upload limit exceeded'));
  176. }
  177. //判断是否已经存在附件
  178. $sha1 = $file->hash();
  179. $upload = Config::get('upload');
  180. preg_match('/(\d+)(\w+)/', $upload['maxsize'], $matches);
  181. $type = strtolower($matches[2]);
  182. $typeDict = ['b' => 0, 'k' => 1, 'kb' => 1, 'm' => 2, 'mb' => 2, 'gb' => 3, 'g' => 3];
  183. $size = (int)$upload['maxsize'] * pow(1024, isset($typeDict[$type]) ? $typeDict[$type] : 0);
  184. $fileInfo = $file->getInfo();
  185. $suffix = strtolower(pathinfo($fileInfo['name'], PATHINFO_EXTENSION));
  186. $suffix = $suffix ? $suffix : 'file';
  187. $mimetypeArr = explode(',', strtolower($upload['mimetype']));
  188. $mimetypeArr = array_merge($mimetypeArr, ['mp4', 'mp3', 'avi', 'flv', 'wmv', '3gp']);
  189. $typeArr = explode('/', $fileInfo['type']);
  190. //验证文件后缀
  191. if ($upload['mimetype'] !== '*' &&
  192. (
  193. !in_array($suffix, $mimetypeArr)
  194. || (stripos($typeArr[0] . '/', $upload['mimetype']) !== false && (!in_array($fileInfo['type'], $mimetypeArr) && !in_array($typeArr[0] . '/*', $mimetypeArr)))
  195. )) {
  196. $this->error(__('Uploaded file format is limited'));
  197. }
  198. $replaceArr = [
  199. '{year}' => date("Y"),
  200. '{mon}' => date("m"),
  201. '{day}' => date("d"),
  202. '{hour}' => date("H"),
  203. '{min}' => date("i"),
  204. '{sec}' => date("s"),
  205. '{random}' => Random::alnum(16),
  206. '{random32}' => Random::alnum(32),
  207. '{filename}' => $suffix ? substr($fileInfo['name'], 0, strripos($fileInfo['name'], '.')) : $fileInfo['name'],
  208. '{suffix}' => $suffix,
  209. '{.suffix}' => $suffix ? '.' . $suffix : '',
  210. '{filemd5}' => md5_file($fileInfo['tmp_name']),
  211. ];
  212. $savekey = $upload['savekey'];
  213. $savekey = str_replace(array_keys($replaceArr), array_values($replaceArr), $savekey);
  214. $uploadDir = substr($savekey, 0, strripos($savekey, '/') + 1);
  215. $fileName = substr($savekey, strripos($savekey, '/') + 1);
  216. $splInfo = $file->validate(['size' => $size])->move(ROOT_PATH . '/public' . $uploadDir, $fileName);
  217. if ($splInfo) {
  218. $imagewidth = $imageheight = 0;
  219. if (in_array($suffix, ['gif', 'jpg', 'jpeg', 'bmp', 'png', 'swf', 'mp4', 'mp3', '3gp'])) {
  220. $imgInfo = getimagesize($splInfo->getPathname());
  221. $imagewidth = isset($imgInfo[0]) ? $imgInfo[0] : $imagewidth;
  222. $imageheight = isset($imgInfo[1]) ? $imgInfo[1] : $imageheight;
  223. }
  224. $params = array(
  225. 'admin_id' => (int)$this->auth->id,
  226. 'user_id' => 0,
  227. 'filesize' => $fileInfo['size'],
  228. 'imagewidth' => $imagewidth,
  229. 'imageheight' => $imageheight,
  230. 'imagetype' => $suffix,
  231. 'imageframes' => 0,
  232. 'mimetype' => $fileInfo['type'],
  233. 'url' => $uploadDir . $splInfo->getSaveName(),
  234. 'uploadtime' => time(),
  235. 'storage' => 'local',
  236. 'sha1' => $sha1,
  237. );
  238. $attachment = model("attachment");
  239. $attachment->data(array_filter($params));
  240. $attachment->save();
  241. \think\Hook::listen("upload_after", $attachment);
  242. $this->success(__('Upload successful'), null, [
  243. 'url' => $uploadDir . $splInfo->getSaveName()
  244. ]);
  245. } else {
  246. // 上传失败获取错误信息
  247. $this->error($file->getError());
  248. }
  249. }
  250. }