Ajax.php 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\model\village\VillageDong;
  4. use app\common\controller\Backend;
  5. use fast\Random;
  6. use think\addons\Service;
  7. use think\Cache;
  8. use think\Config;
  9. use think\Db;
  10. use think\Lang;
  11. use think\Validate;
  12. /**
  13. * Ajax异步请求接口
  14. * @internal
  15. */
  16. class Ajax extends Backend
  17. {
  18. protected $noNeedLogin = ['lang'];
  19. protected $noNeedRight = ['*'];
  20. protected $layout = '';
  21. public function _initialize()
  22. {
  23. parent::_initialize();
  24. //设置过滤方法
  25. $this->request->filter(['strip_tags', 'htmlspecialchars']);
  26. }
  27. /**
  28. * 加载语言包
  29. */
  30. public function lang()
  31. {
  32. header('Content-Type: application/javascript');
  33. header("Cache-Control: public");
  34. header("Pragma: cache");
  35. $offset = 30 * 60 * 60 * 24; // 缓存一个月
  36. header("Expires: " . gmdate("D, d M Y H:i:s", time() + $offset) . " GMT");
  37. $controllername = input("controllername");
  38. //默认只加载了控制器对应的语言名,你还根据控制器名来加载额外的语言包
  39. $this->loadlang($controllername);
  40. return jsonp(Lang::get(), 200, [], ['json_encode_param' => JSON_FORCE_OBJECT | JSON_UNESCAPED_UNICODE]);
  41. }
  42. /**
  43. * 上传文件
  44. */
  45. public function upload()
  46. {
  47. Config::set('default_return_type', 'json');
  48. $file = $this->request->file('file');
  49. if (empty($file)) {
  50. $this->error(__('No file upload or server upload limit exceeded'));
  51. }
  52. //判断是否已经存在附件
  53. $sha1 = $file->hash();
  54. $extparam = $this->request->post();
  55. $upload = Config::get('upload');
  56. preg_match('/(\d+)(\w+)/', $upload['maxsize'], $matches);
  57. $type = strtolower($matches[2]);
  58. $typeDict = ['b' => 0, 'k' => 1, 'kb' => 1, 'm' => 2, 'mb' => 2, 'gb' => 3, 'g' => 3];
  59. $size = (int)$upload['maxsize'] * pow(1024, isset($typeDict[$type]) ? $typeDict[$type] : 0);
  60. $fileInfo = $file->getInfo();
  61. $suffix = strtolower(pathinfo($fileInfo['name'], PATHINFO_EXTENSION));
  62. $suffix = $suffix && preg_match("/^[a-zA-Z0-9]+$/", $suffix) ? $suffix : 'file';
  63. $mimetypeArr = explode(',', strtolower($upload['mimetype']));
  64. $typeArr = explode('/', $fileInfo['type']);
  65. //禁止上传PHP和HTML文件
  66. if (in_array($fileInfo['type'], ['text/x-php', 'text/html']) || in_array($suffix, ['php', 'html', 'htm'])) {
  67. $this->error(__('Uploaded file format is limited'));
  68. }
  69. //验证文件后缀
  70. if ($upload['mimetype'] !== '*' &&
  71. (
  72. !in_array($suffix, $mimetypeArr)
  73. || (stripos($typeArr[0] . '/', $upload['mimetype']) !== false && (!in_array($fileInfo['type'], $mimetypeArr) && !in_array($typeArr[0] . '/*', $mimetypeArr)))
  74. )
  75. ) {
  76. $this->error(__('Uploaded file format is limited'));
  77. }
  78. //验证是否为图片文件
  79. $imagewidth = $imageheight = 0;
  80. 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'])) {
  81. $imgInfo = getimagesize($fileInfo['tmp_name']);
  82. if (!$imgInfo || !isset($imgInfo[0]) || !isset($imgInfo[1])) {
  83. $this->error(__('Uploaded file is not a valid image'));
  84. }
  85. $imagewidth = isset($imgInfo[0]) ? $imgInfo[0] : $imagewidth;
  86. $imageheight = isset($imgInfo[1]) ? $imgInfo[1] : $imageheight;
  87. }
  88. $replaceArr = [
  89. '{year}' => date("Y"),
  90. '{mon}' => date("m"),
  91. '{day}' => date("d"),
  92. '{hour}' => date("H"),
  93. '{min}' => date("i"),
  94. '{sec}' => date("s"),
  95. '{random}' => Random::alnum(16),
  96. '{random32}' => Random::alnum(32),
  97. '{filename}' => $suffix ? substr($fileInfo['name'], 0, strripos($fileInfo['name'], '.')) : $fileInfo['name'],
  98. '{suffix}' => $suffix,
  99. '{.suffix}' => $suffix ? '.' . $suffix : '',
  100. '{filemd5}' => md5_file($fileInfo['tmp_name']),
  101. ];
  102. $savekey = $upload['savekey'];
  103. $savekey = str_replace(array_keys($replaceArr), array_values($replaceArr), $savekey);
  104. $uploadDir = substr($savekey, 0, strripos($savekey, '/') + 1);
  105. $fileName = substr($savekey, strripos($savekey, '/') + 1);
  106. //
  107. $splInfo = $file->validate(['size' => $size])->move(ROOT_PATH . '/public' . $uploadDir, $fileName);
  108. if ($splInfo) {
  109. $params = array(
  110. 'admin_id' => (int)$this->auth->id,
  111. 'user_id' => 0,
  112. 'filesize' => $fileInfo['size'],
  113. 'imagewidth' => $imagewidth,
  114. 'imageheight' => $imageheight,
  115. 'imagetype' => $suffix,
  116. 'imageframes' => 0,
  117. 'mimetype' => $fileInfo['type'],
  118. 'url' => $uploadDir . $splInfo->getSaveName(),
  119. 'uploadtime' => time(),
  120. 'storage' => 'local',
  121. 'sha1' => $sha1,
  122. 'extparam' => json_encode($extparam),
  123. );
  124. $attachment = model("attachment");
  125. $attachment->data(array_filter($params));
  126. $attachment->save();
  127. \think\Hook::listen("upload_after", $attachment);
  128. $this->success(__('Upload successful'), null, [
  129. 'url' => $uploadDir . $splInfo->getSaveName()
  130. ]);
  131. } else {
  132. // 上传失败获取错误信息
  133. $this->error($file->getError());
  134. }
  135. }
  136. /**
  137. * 通用排序
  138. */
  139. public function weigh()
  140. {
  141. //排序的数组
  142. $ids = $this->request->post("ids");
  143. //拖动的记录ID
  144. $changeid = $this->request->post("changeid");
  145. //操作字段
  146. $field = $this->request->post("field");
  147. //操作的数据表
  148. $table = $this->request->post("table");
  149. if (!Validate::is($table, "alphaDash")) {
  150. $this->error();
  151. }
  152. //主键
  153. $pk = $this->request->post("pk");
  154. //排序的方式
  155. $orderway = strtolower($this->request->post("orderway", ""));
  156. $orderway = $orderway == 'asc' ? 'ASC' : 'DESC';
  157. $sour = $weighdata = [];
  158. $ids = explode(',', $ids);
  159. $prikey = $pk ? $pk : (Db::name($table)->getPk() ?: 'id');
  160. $pid = $this->request->post("pid");
  161. //限制更新的字段
  162. $field = in_array($field, ['weigh']) ? $field : 'weigh';
  163. // 如果设定了pid的值,此时只匹配满足条件的ID,其它忽略
  164. if ($pid !== '') {
  165. $hasids = [];
  166. $list = Db::name($table)->where($prikey, 'in', $ids)->where('pid', 'in', $pid)->field("{$prikey},pid")->select();
  167. foreach ($list as $k => $v) {
  168. $hasids[] = $v[$prikey];
  169. }
  170. $ids = array_values(array_intersect($ids, $hasids));
  171. }
  172. $list = Db::name($table)->field("$prikey,$field")->where($prikey, 'in', $ids)->order($field, $orderway)->select();
  173. foreach ($list as $k => $v) {
  174. $sour[] = $v[$prikey];
  175. $weighdata[$v[$prikey]] = $v[$field];
  176. }
  177. $position = array_search($changeid, $ids);
  178. $desc_id = $sour[$position]; //移动到目标的ID值,取出所处改变前位置的值
  179. $sour_id = $changeid;
  180. $weighids = array();
  181. $temp = array_values(array_diff_assoc($ids, $sour));
  182. foreach ($temp as $m => $n) {
  183. if ($n == $sour_id) {
  184. $offset = $desc_id;
  185. } else {
  186. if ($sour_id == $temp[0]) {
  187. $offset = isset($temp[$m + 1]) ? $temp[$m + 1] : $sour_id;
  188. } else {
  189. $offset = isset($temp[$m - 1]) ? $temp[$m - 1] : $sour_id;
  190. }
  191. }
  192. $weighids[$n] = $weighdata[$offset];
  193. Db::name($table)->where($prikey, $n)->update([$field => $weighdata[$offset]]);
  194. }
  195. $this->success();
  196. }
  197. /**
  198. * 清空系统缓存
  199. */
  200. public function wipecache()
  201. {
  202. $type = $this->request->request("type");
  203. switch ($type) {
  204. case 'all':
  205. case 'content':
  206. rmdirs(CACHE_PATH, false);
  207. Cache::clear();
  208. if ($type == 'content') {
  209. break;
  210. }
  211. case 'template':
  212. rmdirs(TEMP_PATH, false);
  213. if ($type == 'template') {
  214. break;
  215. }
  216. case 'addons':
  217. Service::refresh();
  218. if ($type == 'addons') {
  219. break;
  220. }
  221. }
  222. \think\Hook::listen("wipecache_after");
  223. $this->success();
  224. }
  225. /**
  226. * 读取分类数据,联动列表
  227. */
  228. public function category()
  229. {
  230. $type = $this->request->get('type');
  231. $pid = $this->request->get('pid');
  232. $where = ['status' => 'normal'];
  233. $categorylist = null;
  234. if ($pid !== '') {
  235. if ($type) {
  236. $where['type'] = $type;
  237. }
  238. if ($pid) {
  239. $where['pid'] = $pid;
  240. }
  241. $categorylist = Db::name('category')->where($where)->field('id as value,name')->order('weigh desc,id desc')->select();
  242. }
  243. $this->success('', null, $categorylist);
  244. }
  245. /**
  246. * 读取省市区数据,联动列表
  247. */
  248. public function area()
  249. {
  250. $params = $this->request->get("row/a");
  251. if (!empty($params)) {
  252. $province = isset($params['province']) ? $params['province'] : '';
  253. $city = isset($params['city']) ? $params['city'] : null;
  254. } else {
  255. $province = $this->request->get('province');
  256. $city = $this->request->get('city');
  257. }
  258. $where = ['pid' => 0, 'level' => 1];
  259. $provincelist = null;
  260. if ($province !== '') {
  261. if ($province) {
  262. $where['pid'] = $province;
  263. $where['level'] = 2;
  264. }
  265. if ($city !== '') {
  266. if ($city) {
  267. $where['pid'] = $city;
  268. $where['level'] = 3;
  269. }
  270. $provincelist = Db::name('area')->where($where)->field('id as value,name')->select();
  271. }
  272. }else{
  273. $provincelist = Db::name('area')->where($where)->field('id as value,name')->select();
  274. }
  275. // dump($provincelist);exit;
  276. $this->success('', null, $provincelist);
  277. }
  278. /**
  279. * 物业
  280. */
  281. public function property()
  282. {
  283. $where = ['is_delete' => '0'];
  284. $list = null;
  285. if ($this->auth->property_id){
  286. $where['id']=$this->auth->property_id;
  287. // dump($where_and);
  288. }
  289. $list = Db::name('Property')->where($where)->field('id as value,p_name as name')->order('id asc')->select();
  290. $this->success('', null, $list);
  291. //返回值只能是value和name
  292. }
  293. /**
  294. * 小区
  295. */
  296. public function village()
  297. {
  298. $pid = $this->request->get('pid');
  299. if (!empty($pid)){
  300. $where['property_id'] =$pid;
  301. }
  302. $where['is_delete'] =0;
  303. $list = null;
  304. $list = Db::name('village')->where($where)->field('id as value,v_name as name')->order('id asc')->select();
  305. $this->success('', null, $list);
  306. }
  307. /**
  308. * 用户来源
  309. * @return \think\response\Json
  310. * @throws \think\db\exception\DataNotFoundException
  311. * @throws \think\db\exception\ModelNotFoundException
  312. * @throws \think\exception\DbException
  313. */
  314. public function village_select(){
  315. $json = cache('village');
  316. if ($json===false){
  317. $where['is_delete'] =0;
  318. if (!empty($this->auth->village)){
  319. $where['id']=['in',$this->auth->village];
  320. // dump($where_and);
  321. }
  322. $list = Db::name('village')->where($where)->field('id ,v_name as name')->order('id asc')->select();
  323. $json = json($list);
  324. cache('source',$json);
  325. }
  326. return $json;
  327. }
  328. public function dong_select(){
  329. $json = cache('dong');
  330. if ($json===false){
  331. $where['is_delete'] =0;
  332. $list = Db::name('village_dong')->where($where)->field('id ,d_name as name')->order('id asc')->select();
  333. $json = json($list);
  334. cache('source',$json);
  335. }
  336. return $json;
  337. }
  338. /**
  339. * 栋 几号楼
  340. */
  341. public function dong()
  342. {
  343. $pid = $this->request->get('pid');
  344. if(!empty($pid)){
  345. $where['village_id'] =$pid;
  346. }
  347. $where['is_delete'] =0;
  348. $list = null;
  349. $list = Db::name('village_dong')->where($where)->field('id as value,d_name as name')->order('id asc')->select();
  350. $this->success('', null, $list);
  351. }
  352. /**
  353. * 单元
  354. */
  355. public function danyuan()
  356. {
  357. $pid = $this->request->get('pid');
  358. if(!empty($pid)){
  359. $where['dong_id'] =$pid;
  360. }
  361. $where['is_delete'] =0;
  362. $list = null;
  363. $list = Db::name('village_danyuan')->where($where)->field('id as value,dy_name as name')->order('id asc')->select();
  364. $this->success('', null, $list);
  365. }
  366. /**
  367. * 户
  368. */
  369. public function hu()
  370. {
  371. $pid = $this->request->get('pid');
  372. if(!empty($pid)){
  373. $where['danyuan_id'] =$pid;
  374. }
  375. $where['is_delete'] =0;
  376. $list = null;
  377. $list = Db::name('village_hu')->where($where)->field('id as value,hu_name as name')->order('id asc')->select();
  378. $this->success('', null, $list);
  379. }
  380. /**
  381. * 收费项目
  382. */
  383. public function item()
  384. {
  385. $property_id = $this->request->get('property_id');
  386. $village_id = $this->request->get('village_id');
  387. if(!empty($property_id)){
  388. $where['property_id'] =$property_id;
  389. }
  390. if(!empty($village_id)){
  391. $where['village_id'] =$village_id;
  392. }
  393. $pid = $this->request->get('pid');
  394. if(!empty($pid)){
  395. $where['village_id'] =$pid;
  396. }
  397. $where['is_delete'] =0;
  398. $list = null;
  399. $list = Db::name('cost_item')->where($where)->field('id as value,item as name,dong_id')->order('id asc')->select();
  400. foreach ($list as $k=>$v){
  401. $dong='';
  402. if (!empty($v['dong_id'])){
  403. $get_dong=VillageDong::where(['id'=>['in',explode(',',$v['dong_id'])]])->field('d_name,id')->select();
  404. foreach ($get_dong as $ks=>$vs){
  405. $dong= $dong.$vs['d_name']." ";
  406. }
  407. }
  408. unset($v['dong_id']);
  409. if ($v['name']=='1'){
  410. $list[$k]['name']=$dong.'物业费';
  411. }elseif ($v['name']=='2'){
  412. $list[$k]['name']=$dong.'垃圾处理费';
  413. }elseif ($v['name']=='3'){
  414. $list[$k]['name']=$dong.'车位服务费';
  415. }
  416. }
  417. $this->success('', null, $list);
  418. }
  419. /**
  420. * 生成后缀图标
  421. */
  422. public function icon()
  423. {
  424. $suffix = $this->request->request("suffix");
  425. header('Content-type: image/svg+xml');
  426. $suffix = $suffix ? $suffix : "FILE";
  427. echo build_suffix_image($suffix);
  428. exit;
  429. }
  430. }