No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Ajax.php 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\controller;
  14. use think\Db;
  15. use think\Session;
  16. use think\Config;
  17. use app\admin\logic\AjaxLogic;
  18. /**
  19. * 所有ajax请求或者不经过权限验证的方法全放在这里
  20. */
  21. class Ajax extends Base {
  22. private $ajaxLogic;
  23. public function _initialize() {
  24. parent::_initialize();
  25. $this->ajaxLogic = new AjaxLogic;
  26. }
  27. /*
  28. * 移动重新排序
  29. */
  30. public function ajax_move_admin_menu(){
  31. $post = input("post.");
  32. $menu_id_arr = $post['menu_id'];
  33. try{
  34. foreach ($menu_id_arr as $key=>$val){
  35. if ($val != 2004){
  36. Db::name("admin_menu")->where(['menu_id'=>$val])->setField('sort_order',$key);
  37. }
  38. }
  39. }catch (\Exception $e){
  40. die("修改失败");
  41. }
  42. $this->success("移动排序成功");
  43. }
  44. /*
  45. * 添加、删除左侧菜单栏目
  46. */
  47. public function update_admin_menu(){
  48. if (IS_AJAX_POST) {
  49. $post = input('post.');
  50. if (empty($post['title']) || empty($post['controller_name']) || empty($post['action_name']) || empty($post['menu_id']) || empty($post['type'])){
  51. $this->error('请传入正确参数');
  52. }
  53. $menu_info = Db::name("admin_menu")->where(['menu_id'=>$post['menu_id']])->find();
  54. $icon = !empty($post['icon']) ? $post['icon'] : 'fa fa-minus';
  55. if ($post['type'] == 1){ //添加目录
  56. if (!empty($post['target'])) {
  57. $target = $post['target'];
  58. } else {
  59. $all_menu_tree = getAllMenu();
  60. $all_menu_list = tree_to_list($all_menu_tree,'child','id');
  61. $target = empty($all_menu_list[$post['menu_id']]['target']) ? 'workspace' : $all_menu_list[$post['menu_id']]['target'];
  62. }
  63. $is_switch = isset($post['is_switch']) ? $post['is_switch'] : 1;
  64. if (!empty($menu_info)){
  65. $update_data = ['icon' => $icon,'is_menu'=>1, 'is_switch' => $is_switch,'sort_order'=>100,'update_time' => getTime()];
  66. if(!empty($post['controller_name'])){
  67. $update_data['controller_name'] = $post['controller_name'];
  68. }
  69. if(!empty($post['action_name'])){
  70. $update_data['action_name'] = $post['action_name'];
  71. }
  72. if(!empty($post['param'])){
  73. $update_data['param'] = $post['param'];
  74. }
  75. if(!empty($target)){
  76. $update_data['target'] = $target;
  77. }
  78. $r = Db::name("admin_menu")->where(['menu_id'=>$menu_info['menu_id']])->update($update_data);
  79. }else{
  80. $menu_info = [
  81. 'menu_id' => $post['menu_id'],
  82. 'title' => $post['title'],
  83. 'controller_name' => $post['controller_name'],
  84. 'action_name' => $post['action_name'],
  85. 'param' => !empty($post['param']) ? $post['param'] : '',
  86. 'icon' => $icon,
  87. 'is_menu' => 1,
  88. 'is_switch' => $is_switch,
  89. 'target' => $target,
  90. 'add_time' => getTime(),
  91. 'update_time' => getTime()
  92. ];
  93. Db::name("admin_menu")->where([ 'title' => $post['title'], 'controller_name' => $post['controller_name'],'action_name' => $post['action_name']])->delete();
  94. $r = Db::name("admin_menu")->insert($menu_info);
  95. }
  96. if ($r !== false) {
  97. $menu_info['url'] = url($post['controller_name']."/".$post['action_name']);
  98. $this->success("添加成功",null,$menu_info);
  99. }
  100. }else{ //删除目录
  101. if (!empty($menu_info)){
  102. $r = Db::name("admin_menu")->where(['menu_id'=>$menu_info['menu_id']])->update(['is_menu'=>0,'sort_order'=>100,'update_time' => getTime()]);
  103. if ($r !== false) {
  104. $this->success("删除成功");
  105. }
  106. }
  107. }
  108. }
  109. $this->error('请求错误');
  110. }
  111. /**
  112. * 进入欢迎页面需要异步处理的业务
  113. */
  114. public function welcome_handle()
  115. {
  116. \think\Session::pause(); // 暂停session,防止session阻塞机制
  117. $this->ajaxLogic->welcome_handle();
  118. }
  119. /**
  120. * 隐藏后台欢迎页的系统提示
  121. */
  122. public function explanation_welcome()
  123. {
  124. \think\Session::pause(); // 暂停session,防止session阻塞机制
  125. $type = input('param.type/d', 0);
  126. $tpCacheKey = 'system_explanation_welcome';
  127. if (1 < $type) {
  128. $tpCacheKey .= '_'.$type;
  129. }
  130. /*多语言*/
  131. if (is_language()) {
  132. $langRow = \think\Db::name('language')->field('mark')->order('id asc')->select();
  133. foreach ($langRow as $key => $val) {
  134. tpCache('system', [$tpCacheKey=>1], $val['mark']);
  135. }
  136. } else { // 单语言
  137. tpCache('system', [$tpCacheKey=>1]);
  138. }
  139. /*--end*/
  140. }
  141. /**
  142. * 版本检测更新弹窗
  143. */
  144. public function check_upgrade_version()
  145. {
  146. \think\Session::pause(); // 暂停session,防止session阻塞机制
  147. $upgradeLogic = new \app\admin\logic\UpgradeLogic;
  148. $security_patch = tpSetting('upgrade.upgrade_security_patch');
  149. if (!empty($security_patch) && 1 == $security_patch) {
  150. $upgradeMsg = $upgradeLogic->checkSecurityVersion(); // 安全补丁包消息
  151. } else {
  152. $upgradeMsg = $upgradeLogic->checkVersion(); // 升级包消息
  153. }
  154. // 权限控制 by 小虎哥
  155. $admin_info = session('admin_info');
  156. if (0 < intval($admin_info['role_id'])) {
  157. $auth_role_info = $admin_info['auth_role_info'];
  158. if (isset($auth_role_info['online_update']) && 1 != $auth_role_info['online_update']) {
  159. $upgradeMsg = ['code' => 1, 'msg' => '已是最新版'];
  160. }
  161. }
  162. $this->success('检测成功', null, $upgradeMsg);
  163. }
  164. /**
  165. * 更新stiemap.xml地图
  166. */
  167. public function update_sitemap($controller, $action)
  168. {
  169. if (IS_AJAX_POST) {
  170. \think\Session::pause(); // 暂停session,防止session阻塞机制
  171. $channeltype_row = \think\Cache::get("extra_global_channeltype");
  172. if (empty($channeltype_row)) {
  173. $ctlArr = \think\Db::name('channeltype')
  174. ->where('id','NOTIN', [6,8])
  175. ->column('ctl_name');
  176. } else {
  177. $ctlArr = array();
  178. foreach($channeltype_row as $key => $val){
  179. if (!in_array($val['id'], [6,8])) {
  180. $ctlArr[] = $val['ctl_name'];
  181. }
  182. }
  183. }
  184. $systemCtl= ['Arctype','Archives'];
  185. $ctlArr = array_merge($systemCtl, $ctlArr);
  186. $actArr = ['add','edit','del'];
  187. if (in_array($controller, $ctlArr) && in_array($action, $actArr)) {
  188. Session::pause(); // 暂停session,防止session阻塞机制
  189. sitemap_auto();
  190. $this->success('更新sitemap成功!');
  191. }
  192. }
  193. $this->error('更新sitemap失败!');
  194. }
  195. // 开启\关闭余额支付
  196. public function BalancePayOpen()
  197. {
  198. if (IS_AJAX_POST) {
  199. $open_value = input('post.open_value/d');
  200. getUsersConfigData('pay', ['pay_balance_open' => $open_value]);
  201. $this->success('操作成功');
  202. }
  203. }
  204. /**
  205. * 跳转到前台内容页
  206. * @return [type] [description]
  207. */
  208. public function toHomeView()
  209. {
  210. $aid = input('param.aid/d');
  211. $archives = Db::name('archives')->alias('a')
  212. ->field('b.*, a.*')
  213. ->join('arctype b', 'a.typeid = b.id', 'LEFT')
  214. ->where(['a.aid'=>$aid])
  215. ->find();
  216. if (!empty($archives)) {
  217. if ($archives['arcrank'] >= 0) {
  218. $url = get_arcurl($archives, false);
  219. } else {
  220. $url = get_arcurl($archives, true);
  221. }
  222. header('Location: '.$url);
  223. exit;
  224. } else {
  225. to_index("404");
  226. }
  227. }
  228. //处理多语言字段绑定兼容
  229. public function repair_language_data()
  230. {
  231. $admin_logic_1692067658 = tpSetting('syn.admin_logic_1692067658', [], 'cn');
  232. if (empty($admin_logic_1692067658)) {
  233. //判断有没有除了中文以外的
  234. $lang_count = Db::name('language')->where('mark','neq','cn')->count();
  235. if (!empty($lang_count)) {
  236. //有则执行兼容
  237. $channeltypeRow = Db::name('archives')
  238. ->alias('a')
  239. ->join('channeltype b','a.channel = b.id','left')
  240. ->where(['a.lang' => 'cn', 'a.is_del' => 0, 'a.channel' => ['neq', 6]])
  241. ->group('channel')
  242. ->field('a.channel,b.id,b.nid,b.table')->getAllWithIndex('id');
  243. if (!empty($channeltypeRow)) {
  244. $typeids_row = [];
  245. $row = Db::name('archives')->field('typeid,channel')->where(['lang' => 'cn', 'is_del' => 0])->group('typeid')->select();
  246. foreach ($row as $key => $val) {
  247. $typeids_row[$val['channel']][] = $val['typeid'];
  248. }
  249. foreach ($channeltypeRow as $k => $v) {
  250. $typeids = empty($typeids_row[$k]) ? [] : $typeids_row[$k];
  251. $typeids_arr = [];
  252. foreach ($typeids as $key => $val) {
  253. $typeids_arr[] = 'tid' . $val;
  254. }
  255. //查出对应的多语言栏目字段
  256. $lang_typeids = Db::name('language_attr')->where(['attr_group' => 'arctype', 'attr_name' => ['in', $typeids_arr], 'lang' => ['neq', 'cn']])->field('attr_value,attr_name')->getAllWithIndex('attr_name');
  257. //查询栏目绑定
  258. $channelfield_bind_row = Db::name('channelfield_bind')->field('*')->select();
  259. $new_arr = array();
  260. $bind_field_ids_arr = [];
  261. foreach ($channelfield_bind_row as $k => $v) {
  262. $new_arr[$v['typeid']][] = $v;
  263. $bind_field_ids_arr[$v['typeid']][] = $v['field_id'];
  264. }
  265. $channelfield_bind_row = $new_arr;
  266. foreach ($typeids as $key => $val) {
  267. // 中文栏目ID
  268. $typeid_old = $val;
  269. //多语言栏目id
  270. $typeid = $lang_typeids['tid' . $typeid_old]['attr_value'];
  271. //查询栏目绑定
  272. $channelfield_bind_list = empty($channelfield_bind_row[$typeid_old]) ? [] : $channelfield_bind_row[$typeid_old];
  273. if (!empty($channelfield_bind_list)) {
  274. $field_ids = get_arr_column($channelfield_bind_list, 'field_id');
  275. //查询已经写入的
  276. $bind_field_ids = [];
  277. if (!empty($bind_field_ids_arr[$typeid])) {
  278. foreach ($bind_field_ids_arr[$typeid] as $_k1 => $_v1) {
  279. if (in_array($_v1, $field_ids)) {
  280. $bind_field_ids[] = $_v1;
  281. }
  282. }
  283. }
  284. $channelfield_bind_insert = [];
  285. foreach ($channelfield_bind_list as $k => $v) {
  286. //已经写入的不在写入
  287. if (!in_array($v['field_id'], $bind_field_ids)) {
  288. $channelfield_bind_insert[] = [
  289. 'typeid' => $typeid,
  290. 'field_id' => $v['field_id'],
  291. 'add_time' => getTime(),
  292. 'update_time' => getTime()
  293. ];
  294. }
  295. }
  296. //写入绑定自定义字段
  297. !empty($channelfield_bind_insert) && Db::name('channelfield_bind')->insertAll($channelfield_bind_insert);
  298. }
  299. }
  300. }
  301. }
  302. }
  303. tpSetting('syn', ['admin_logic_1692067658'=>1], 'cn');
  304. }
  305. }
  306. }