Ajax.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use fast\Random;
  5. use think\addons\Service;
  6. use think\Cache;
  7. use think\Config;
  8. use think\Db;
  9. use think\Lang;
  10. /**
  11. * Ajax异步请求接口
  12. * @internal
  13. */
  14. class Ajax extends Backend
  15. {
  16. protected $noNeedLogin = ['lang'];
  17. protected $noNeedRight = ['*'];
  18. protected $layout = '';
  19. public function _initialize()
  20. {
  21. parent::_initialize();
  22. //设置过滤方法
  23. $this->request->filter(['strip_tags', 'htmlspecialchars']);
  24. }
  25. /**
  26. * 加载语言包
  27. */
  28. public function lang()
  29. {
  30. header('Content-Type: application/javascript');
  31. $controllername = input("controllername");
  32. //默认只加载了控制器对应的语言名,你还根据控制器名来加载额外的语言包
  33. $this->loadlang($controllername);
  34. return jsonp(Lang::get(), 200, [], ['json_encode_param' => JSON_FORCE_OBJECT | JSON_UNESCAPED_UNICODE]);
  35. }
  36. /**
  37. * 上传文件
  38. */
  39. public function upload()
  40. {
  41. Config::set('default_return_type', 'json');
  42. $file = $this->request->file('file');
  43. if (empty($file)) {
  44. $this->error(__('No file upload or server upload limit exceeded'));
  45. }
  46. //判断是否已经存在附件
  47. $sha1 = $file->hash();
  48. $extparam = $this->request->post();
  49. $upload = Config::get('upload');
  50. preg_match('/(\d+)(\w+)/', $upload['maxsize'], $matches);
  51. $type = strtolower($matches[2]);
  52. $typeDict = ['b' => 0, 'k' => 1, 'kb' => 1, 'm' => 2, 'mb' => 2, 'gb' => 3, 'g' => 3];
  53. $size = (int)$upload['maxsize'] * pow(1024, isset($typeDict[$type]) ? $typeDict[$type] : 0);
  54. $fileInfo = $file->getInfo();
  55. $suffix = strtolower(pathinfo($fileInfo['name'], PATHINFO_EXTENSION));
  56. $suffix = $suffix && preg_match("/^[a-zA-Z0-9]+$/", $suffix) ? $suffix : 'file';
  57. $mimetypeArr = explode(',', strtolower($upload['mimetype']));
  58. $typeArr = explode('/', $fileInfo['type']);
  59. //禁止上传PHP和HTML文件
  60. if (in_array($fileInfo['type'], ['text/x-php', 'text/html']) || in_array($suffix, ['php', 'html', 'htm'])) {
  61. $this->error(__('Uploaded file format is limited'));
  62. }
  63. //验证文件后缀
  64. if ($upload['mimetype'] !== '*' &&
  65. (
  66. !in_array($suffix, $mimetypeArr)
  67. || (stripos($typeArr[0] . '/', $upload['mimetype']) !== false && (!in_array($fileInfo['type'], $mimetypeArr) && !in_array($typeArr[0] . '/*', $mimetypeArr)))
  68. )
  69. ) {
  70. $this->error(__('Uploaded file format is limited'));
  71. }
  72. //验证是否为图片文件
  73. $imagewidth = $imageheight = 0;
  74. if (in_array($fileInfo['type'], ['image/gif', 'image/jpg', 'image/jpeg', 'image/bmp', 'image/png', 'image/webp']) || in_array($suffix, ['gif', 'jpg', 'jpeg', 'bmp', 'png', 'webp'])) {
  75. $imgInfo = getimagesize($fileInfo['tmp_name']);
  76. if (!$imgInfo || !isset($imgInfo[0]) || !isset($imgInfo[1])) {
  77. $this->error(__('Uploaded file is not a valid image'));
  78. }
  79. $imagewidth = isset($imgInfo[0]) ? $imgInfo[0] : $imagewidth;
  80. $imageheight = isset($imgInfo[1]) ? $imgInfo[1] : $imageheight;
  81. }
  82. $replaceArr = [
  83. '{year}' => date("Y"),
  84. '{mon}' => date("m"),
  85. '{day}' => date("d"),
  86. '{hour}' => date("H"),
  87. '{min}' => date("i"),
  88. '{sec}' => date("s"),
  89. '{random}' => Random::alnum(16),
  90. '{random32}' => Random::alnum(32),
  91. '{filename}' => $suffix ? substr($fileInfo['name'], 0, strripos($fileInfo['name'], '.')) : $fileInfo['name'],
  92. '{suffix}' => $suffix,
  93. '{.suffix}' => $suffix ? '.' . $suffix : '',
  94. '{filemd5}' => md5_file($fileInfo['tmp_name']),
  95. ];
  96. $savekey = $upload['savekey'];
  97. $savekey = str_replace(array_keys($replaceArr), array_values($replaceArr), $savekey);
  98. $uploadDir = substr($savekey, 0, strripos($savekey, '/') + 1);
  99. $fileName = substr($savekey, strripos($savekey, '/') + 1);
  100. //
  101. $splInfo = $file->validate(['size' => $size])->move(ROOT_PATH . '/public' . $uploadDir, $fileName);
  102. if ($splInfo) {
  103. $params = array(
  104. 'admin_id' => (int)$this->auth->id,
  105. 'user_id' => 0,
  106. 'filesize' => $fileInfo['size'],
  107. 'imagewidth' => $imagewidth,
  108. 'imageheight' => $imageheight,
  109. 'imagetype' => $suffix,
  110. 'imageframes' => 0,
  111. 'mimetype' => $fileInfo['type'],
  112. 'url' => $uploadDir . $splInfo->getSaveName(),
  113. 'uploadtime' => time(),
  114. 'storage' => 'local',
  115. 'sha1' => $sha1,
  116. 'extparam' => json_encode($extparam),
  117. );
  118. $attachment = model("attachment");
  119. $attachment->data(array_filter($params));
  120. $attachment->save();
  121. \think\Hook::listen("upload_after", $attachment);
  122. $this->success(__('Upload successful'), null, [
  123. 'url' => $uploadDir . $splInfo->getSaveName()
  124. ]);
  125. } else {
  126. // 上传失败获取错误信息
  127. $this->error($file->getError());
  128. }
  129. }
  130. /**
  131. * 通用排序
  132. */
  133. public function weigh()
  134. {
  135. //排序的数组
  136. $ids = $this->request->post("ids");
  137. //拖动的记录ID
  138. $changeid = $this->request->post("changeid");
  139. //操作字段
  140. $field = $this->request->post("field");
  141. //操作的数据表
  142. $table = $this->request->post("table");
  143. //主键
  144. $pk = $this->request->post("pk");
  145. //排序的方式
  146. $orderway = $this->request->post("orderway", "", 'strtolower');
  147. $orderway = $orderway == 'asc' ? 'ASC' : 'DESC';
  148. $sour = $weighdata = [];
  149. $ids = explode(',', $ids);
  150. $prikey = $pk ? $pk : (Db::name($table)->getPk() ?: 'id');
  151. $pid = $this->request->post("pid");
  152. //限制更新的字段
  153. $field = in_array($field, ['weigh']) ? $field : 'weigh';
  154. // 如果设定了pid的值,此时只匹配满足条件的ID,其它忽略
  155. if ($pid !== '') {
  156. $hasids = [];
  157. $list = Db::name($table)->where($prikey, 'in', $ids)->where('pid', 'in', $pid)->field("{$prikey},pid")->select();
  158. foreach ($list as $k => $v) {
  159. $hasids[] = $v[$prikey];
  160. }
  161. $ids = array_values(array_intersect($ids, $hasids));
  162. }
  163. $list = Db::name($table)->field("$prikey,$field")->where($prikey, 'in', $ids)->order($field, $orderway)->select();
  164. foreach ($list as $k => $v) {
  165. $sour[] = $v[$prikey];
  166. $weighdata[$v[$prikey]] = $v[$field];
  167. }
  168. $position = array_search($changeid, $ids);
  169. $desc_id = $sour[$position]; //移动到目标的ID值,取出所处改变前位置的值
  170. $sour_id = $changeid;
  171. $weighids = array();
  172. $temp = array_values(array_diff_assoc($ids, $sour));
  173. foreach ($temp as $m => $n) {
  174. if ($n == $sour_id) {
  175. $offset = $desc_id;
  176. } else {
  177. if ($sour_id == $temp[0]) {
  178. $offset = isset($temp[$m + 1]) ? $temp[$m + 1] : $sour_id;
  179. } else {
  180. $offset = isset($temp[$m - 1]) ? $temp[$m - 1] : $sour_id;
  181. }
  182. }
  183. $weighids[$n] = $weighdata[$offset];
  184. Db::name($table)->where($prikey, $n)->update([$field => $weighdata[$offset]]);
  185. }
  186. $this->success();
  187. }
  188. /**
  189. * 清空系统缓存
  190. */
  191. public function wipecache()
  192. {
  193. $type = $this->request->request("type");
  194. switch ($type) {
  195. case 'all':
  196. case 'content':
  197. rmdirs(CACHE_PATH, false);
  198. Cache::clear();
  199. if ($type == 'content')
  200. break;
  201. case 'template':
  202. rmdirs(TEMP_PATH, false);
  203. if ($type == 'template')
  204. break;
  205. case 'addons':
  206. Service::refresh();
  207. if ($type == 'addons')
  208. break;
  209. }
  210. \think\Hook::listen("wipecache_after");
  211. $this->success();
  212. }
  213. /**
  214. * 读取分类数据,联动列表
  215. */
  216. public function category()
  217. {
  218. $type = $this->request->get('type');
  219. $pid = $this->request->get('pid');
  220. $where = ['status' => 'normal'];
  221. $categorylist = null;
  222. if ($pid !== '') {
  223. if ($type) {
  224. $where['type'] = $type;
  225. }
  226. if ($pid) {
  227. $where['pid'] = $pid;
  228. }
  229. $categorylist = Db::name('category')->where($where)->field('id as value,name')->order('weigh desc,id desc')->select();
  230. }
  231. $this->success('', null, $categorylist);
  232. }
  233. /**
  234. * 读取省市区数据,联动列表
  235. */
  236. public function area()
  237. {
  238. $params = $this->request->get("row/a");
  239. if (!empty($params)) {
  240. $province = isset($params['province']) ? $params['province'] : '';
  241. $city = isset($params['city']) ? $params['city'] : null;
  242. } else {
  243. $province = $this->request->get('province');
  244. $city = $this->request->get('city');
  245. }
  246. $where = ['pid' => 0, 'level' => 1];
  247. $provincelist = null;
  248. if ($province !== '') {
  249. if ($province) {
  250. $where['pid'] = $province;
  251. $where['level'] = 2;
  252. }
  253. if ($city !== '') {
  254. if ($city) {
  255. $where['pid'] = $city;
  256. $where['level'] = 3;
  257. }
  258. $provincelist = Db::name('area')->where($where)->field('id as value,name')->select();
  259. }
  260. }
  261. $this->success('', null, $provincelist);
  262. }
  263. }