Ajax.php 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361
  1. <?php
  2. namespace app\admin\controller;
  3. use app\common\controller\Backend;
  4. use app\common\exception\UploadException;
  5. use app\common\library\Upload;
  6. use fast\Random;
  7. use think\addons\Service;
  8. use think\Cache;
  9. use think\Config;
  10. use think\Db;
  11. use think\Lang;
  12. use think\Validate;
  13. /**
  14. * Ajax异步请求接口
  15. * @internal
  16. */
  17. class Ajax extends Backend
  18. {
  19. protected $noNeedLogin = ['lang'];
  20. protected $noNeedRight = ['*'];
  21. protected $layout = '';
  22. public function _initialize()
  23. {
  24. parent::_initialize();
  25. //设置过滤方法
  26. $this->request->filter(['trim', 'strip_tags', 'htmlspecialchars']);
  27. }
  28. /**
  29. * 加载语言包
  30. */
  31. public function lang()
  32. {
  33. header('Content-Type: application/javascript');
  34. header("Cache-Control: public");
  35. header("Pragma: cache");
  36. $offset = 30 * 60 * 60 * 24; // 缓存一个月
  37. header("Expires: " . gmdate("D, d M Y H:i:s", time() + $offset) . " GMT");
  38. $controllername = input("controllername");
  39. //默认只加载了控制器对应的语言名,你还根据控制器名来加载额外的语言包
  40. $this->loadlang($controllername);
  41. return jsonp(Lang::get(), 200, [], ['json_encode_param' => JSON_FORCE_OBJECT | JSON_UNESCAPED_UNICODE]);
  42. }
  43. /**
  44. * 上传文件
  45. */
  46. public function upload()
  47. {
  48. Config::set('default_return_type', 'json');
  49. //必须设定cdnurl为空,否则cdnurl函数计算错误
  50. Config::set('upload.cdnurl', '');
  51. $chunkid = $this->request->post("chunkid");
  52. if ($chunkid) {
  53. if (!Config::get('upload.chunking')) {
  54. $this->error(__('Chunk file disabled'));
  55. }
  56. $action = $this->request->post("action");
  57. $chunkindex = $this->request->post("chunkindex/d");
  58. $chunkcount = $this->request->post("chunkcount/d");
  59. $filename = $this->request->post("filename");
  60. $method = $this->request->method(true);
  61. if ($action == 'merge') {
  62. $attachment = null;
  63. //合并分片文件
  64. try {
  65. $upload = new Upload();
  66. $attachment = $upload->merge($chunkid, $chunkcount, $filename);
  67. } catch (UploadException $e) {
  68. $this->error($e->getMessage());
  69. }
  70. $this->success(__('Uploaded successful'), '', ['url' => $attachment->url, 'fullurl' => cdnurl($attachment->url, true)]);
  71. } elseif ($method == 'clean') {
  72. //删除冗余的分片文件
  73. try {
  74. $upload = new Upload();
  75. $upload->clean($chunkid);
  76. } catch (UploadException $e) {
  77. $this->error($e->getMessage());
  78. }
  79. $this->success();
  80. } else {
  81. //上传分片文件
  82. //默认普通上传文件
  83. $file = $this->request->file('file');
  84. try {
  85. $upload = new Upload($file);
  86. $upload->chunk($chunkid, $chunkindex, $chunkcount);
  87. } catch (UploadException $e) {
  88. $this->error($e->getMessage());
  89. }
  90. $this->success();
  91. }
  92. } else {
  93. $attachment = null;
  94. //默认普通上传文件
  95. $file = $this->request->file('file');
  96. try {
  97. $upload = new Upload($file);
  98. $attachment = $upload->upload();
  99. } catch (UploadException $e) {
  100. $this->error($e->getMessage());
  101. }
  102. $this->success(__('Uploaded successful'), '', ['url' => $attachment->url, 'fullurl' => cdnurl($attachment->url, true)]);
  103. }
  104. }
  105. /**
  106. * 上传文件
  107. */
  108. public function upload1()
  109. {
  110. //dump(123);die;
  111. Config::set('default_return_type', 'json');
  112. $file = $this->request->file('file');
  113. if (empty($file)) {
  114. $this->error(__('No file upload or server upload limit exceeded'));
  115. }
  116. //判断是否已经存在附件
  117. $sha1 = $file->hash();
  118. $upload = Config::get('upload');
  119. preg_match('/(\d+)(\w+)/', $upload['maxsize'], $matches);
  120. $type = strtolower($matches[2]);
  121. $typeDict = ['b' => 0, 'k' => 1, 'kb' => 1, 'm' => 2, 'mb' => 2, 'gb' => 3, 'g' => 3];
  122. $size = (int)$upload['maxsize'] * pow(1024, isset($typeDict[$type]) ? $typeDict[$type] : 0);
  123. $fileInfo = $file->getInfo();
  124. $suffix = strtolower(pathinfo($fileInfo['name'], PATHINFO_EXTENSION));
  125. $suffix = $suffix ? $suffix : 'file';
  126. $mimetypeArr = explode(',', strtolower($upload['mimetype']));
  127. $mimetypeArr=array_merge($mimetypeArr,['mp4','mp3','avi','flv','wmv']);
  128. $typeArr = explode('/', $fileInfo['type']);
  129. //验证文件后缀
  130. if ($upload['mimetype'] !== '*' &&
  131. (
  132. !in_array($suffix, $mimetypeArr)
  133. || (stripos($typeArr[0] . '/', $upload['mimetype']) !== false && (!in_array($fileInfo['type'], $mimetypeArr) && !in_array($typeArr[0] . '/*', $mimetypeArr)))
  134. )
  135. ) {
  136. //dump(123456);die;
  137. $this->error(__('Uploaded file format is limited'));
  138. }
  139. $replaceArr = [
  140. '{year}' => date("Y"),
  141. '{mon}' => date("m"),
  142. '{day}' => date("d"),
  143. '{hour}' => date("H"),
  144. '{min}' => date("i"),
  145. '{sec}' => date("s"),
  146. '{random}' => Random::alnum(16),
  147. '{random32}' => Random::alnum(32),
  148. '{filename}' => $suffix ? substr($fileInfo['name'], 0, strripos($fileInfo['name'], '.')) : $fileInfo['name'],
  149. '{suffix}' => $suffix,
  150. '{.suffix}' => $suffix ? '.' . $suffix : '',
  151. '{filemd5}' => md5_file($fileInfo['tmp_name']),
  152. ];
  153. $savekey = $upload['savekey'];
  154. $savekey = str_replace(array_keys($replaceArr), array_values($replaceArr), $savekey);
  155. $uploadDir = substr($savekey, 0, strripos($savekey, '/') + 1);
  156. $fileName = substr($savekey, strripos($savekey, '/') + 1);
  157. $splInfo = $file->validate(['size' => $size])->move(ROOT_PATH . '/public' . $uploadDir, $fileName);
  158. if ($splInfo) {
  159. $imagewidth = $imageheight = 0;
  160. if (in_array($suffix, ['gif', 'jpg', 'jpeg', 'bmp', 'png', 'swf', 'mp4', 'mp3'])) {
  161. $imgInfo = getimagesize($splInfo->getPathname());
  162. $imagewidth = isset($imgInfo[0]) ? $imgInfo[0] : $imagewidth;
  163. $imageheight = isset($imgInfo[1]) ? $imgInfo[1] : $imageheight;
  164. }
  165. $params = array(
  166. 'admin_id' => (int)$this->auth->id,
  167. 'user_id' => 0,
  168. 'filesize' => $fileInfo['size'],
  169. 'imagewidth' => $imagewidth,
  170. 'imageheight' => $imageheight,
  171. 'imagetype' => $suffix,
  172. 'imageframes' => 0,
  173. 'mimetype' => $fileInfo['type'],
  174. 'url' => $uploadDir . $splInfo->getSaveName(),
  175. 'uploadtime' => time(),
  176. 'storage' => 'local',
  177. 'sha1' => $sha1,
  178. );
  179. $attachment = model("attachment");
  180. $attachment->data(array_filter($params));
  181. $attachment->save();
  182. \think\Hook::listen("upload_after", $attachment);
  183. $this->success(__('Upload successful'), null, [
  184. 'url' => $uploadDir . $splInfo->getSaveName()
  185. ]);
  186. } else {
  187. // 上传失败获取错误信息
  188. $this->error($file->getError());
  189. }
  190. }
  191. /**
  192. * 通用排序
  193. */
  194. public function weigh()
  195. {
  196. //排序的数组
  197. $ids = $this->request->post("ids");
  198. //拖动的记录ID
  199. $changeid = $this->request->post("changeid");
  200. //操作字段
  201. $field = $this->request->post("field");
  202. //操作的数据表
  203. $table = $this->request->post("table");
  204. if (!Validate::is($table, "alphaDash")) {
  205. $this->error();
  206. }
  207. //主键
  208. $pk = $this->request->post("pk");
  209. //排序的方式
  210. $orderway = strtolower($this->request->post("orderway", ""));
  211. $orderway = $orderway == 'asc' ? 'ASC' : 'DESC';
  212. $sour = $weighdata = [];
  213. $ids = explode(',', $ids);
  214. $prikey = $pk && preg_match("/^[a-z0-9\-_]+$/i", $pk) ? $pk : (Db::name($table)->getPk() ?: 'id');
  215. $pid = $this->request->post("pid", "");
  216. //限制更新的字段
  217. $field = in_array($field, ['weigh']) ? $field : 'weigh';
  218. // 如果设定了pid的值,此时只匹配满足条件的ID,其它忽略
  219. if ($pid !== '') {
  220. $hasids = [];
  221. $list = Db::name($table)->where($prikey, 'in', $ids)->where('pid', 'in', $pid)->field("{$prikey},pid")->select();
  222. foreach ($list as $k => $v) {
  223. $hasids[] = $v[$prikey];
  224. }
  225. $ids = array_values(array_intersect($ids, $hasids));
  226. }
  227. $list = Db::name($table)->field("$prikey,$field")->where($prikey, 'in', $ids)->order($field, $orderway)->select();
  228. foreach ($list as $k => $v) {
  229. $sour[] = $v[$prikey];
  230. $weighdata[$v[$prikey]] = $v[$field];
  231. }
  232. $position = array_search($changeid, $ids);
  233. $desc_id = $sour[$position]; //移动到目标的ID值,取出所处改变前位置的值
  234. $sour_id = $changeid;
  235. $weighids = array();
  236. $temp = array_values(array_diff_assoc($ids, $sour));
  237. foreach ($temp as $m => $n) {
  238. if ($n == $sour_id) {
  239. $offset = $desc_id;
  240. } else {
  241. if ($sour_id == $temp[0]) {
  242. $offset = isset($temp[$m + 1]) ? $temp[$m + 1] : $sour_id;
  243. } else {
  244. $offset = isset($temp[$m - 1]) ? $temp[$m - 1] : $sour_id;
  245. }
  246. }
  247. if (!isset($weighdata[$offset])) {
  248. continue;
  249. }
  250. $weighids[$n] = $weighdata[$offset];
  251. Db::name($table)->where($prikey, $n)->update([$field => $weighdata[$offset]]);
  252. }
  253. $this->success();
  254. }
  255. /**
  256. * 清空系统缓存
  257. */
  258. public function wipecache()
  259. {
  260. $type = $this->request->request("type");
  261. switch ($type) {
  262. case 'all':
  263. case 'content':
  264. rmdirs(CACHE_PATH, false);
  265. Cache::clear();
  266. if ($type == 'content') {
  267. break;
  268. }
  269. case 'template':
  270. rmdirs(TEMP_PATH, false);
  271. if ($type == 'template') {
  272. break;
  273. }
  274. case 'addons':
  275. Service::refresh();
  276. if ($type == 'addons') {
  277. break;
  278. }
  279. }
  280. \think\Hook::listen("wipecache_after");
  281. $this->success();
  282. }
  283. /**
  284. * 读取分类数据,联动列表
  285. */
  286. public function category()
  287. {
  288. $type = $this->request->get('type', '');
  289. $pid = $this->request->get('pid', '');
  290. $where = ['status' => 'normal'];
  291. $categorylist = null;
  292. if ($pid || $pid === '0') {
  293. $where['pid'] = $pid;
  294. }
  295. if ($type) {
  296. $where['type'] = $type;
  297. }
  298. $categorylist = Db::name('category')->where($where)->field('id as value,name')->order('weigh desc,id desc')->select();
  299. $this->success('', '', $categorylist);
  300. }
  301. /**
  302. * 读取省市区数据,联动列表
  303. */
  304. public function area()
  305. {
  306. $params = $this->request->get("row/a");
  307. if (!empty($params)) {
  308. $province = isset($params['province']) ? $params['province'] : '';
  309. $city = isset($params['city']) ? $params['city'] : '';
  310. } else {
  311. $province = $this->request->get('province', '');
  312. $city = $this->request->get('city', '');
  313. }
  314. $where = ['pid' => 0, 'level' => 1];
  315. $provincelist = null;
  316. if ($province !== '') {
  317. $where['pid'] = $province;
  318. $where['level'] = 2;
  319. if ($city !== '') {
  320. $where['pid'] = $city;
  321. $where['level'] = 3;
  322. }
  323. }
  324. $provincelist = Db::name('area')->where($where)->field('id as value,name')->select();
  325. $this->success('', '', $provincelist);
  326. }
  327. /**
  328. * 生成后缀图标
  329. */
  330. public function icon()
  331. {
  332. $suffix = $this->request->request("suffix");
  333. header('Content-type: image/svg+xml');
  334. $suffix = $suffix ? $suffix : "FILE";
  335. echo build_suffix_image($suffix);
  336. exit;
  337. }
  338. }