Ingen beskrivning
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.

LinksGroup.php 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  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\Page;
  16. use think\Cache;
  17. class LinksGroup extends Base
  18. {
  19. public function index()
  20. {
  21. $list = array();
  22. $keywords = input('keywords/s');
  23. $condition = array();
  24. if (!empty($keywords)) {
  25. $condition['group_name'] = array('LIKE', "%{$keywords}%");
  26. }
  27. $condition['lang'] = array('eq', $this->admin_lang);
  28. $linksgroupsM = Db::name('links_group');
  29. $count = $linksgroupsM->where($condition)->count('id');// 查询满足要求的总记录数
  30. $Page = $pager = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  31. $list = $linksgroupsM->where($condition)->order('sort_order asc, id asc')->limit($Page->firstRow.','.$Page->listRows)->select();
  32. $min_group_id = 0;
  33. foreach ($list as $key => $val) {
  34. if ($min_group_id > $val['id'] || empty($min_group_id)) {
  35. $min_group_id = $val['id'];
  36. }
  37. }
  38. $this->assign('min_group_id',$min_group_id);
  39. /*多语言模式下,分组ID显示主体语言的ID*/
  40. $main_group_list = [];
  41. if ($this->admin_lang != $this->main_lang && empty($this->globalConfig['language_split'])) {
  42. $attr_values = get_arr_column($list, 'id');
  43. $languageAttrRow = Db::name('language_attr')->field('attr_name,attr_value')->where([
  44. 'attr_value' => ['IN', $attr_values],
  45. 'attr_group' => 'links_group',
  46. 'lang' => $this->admin_lang,
  47. ])->getAllWithIndex('attr_value');
  48. $groupids = [];
  49. foreach ($languageAttrRow as $key => $val) {
  50. $gid_tmp = str_replace('linksgroup', '', $val['attr_name']);
  51. array_push($groupids, intval($gid_tmp));
  52. }
  53. $main_GroupRow = Db::name('links_group')->field("id,CONCAT('linksgroup', id) AS attr_name")
  54. ->where([
  55. 'id' => ['IN', $groupids],
  56. 'lang' => $this->main_lang,
  57. ])->getAllWithIndex('attr_name');
  58. foreach ($list as $key => $val) {
  59. $key_tmp = !empty($languageAttrRow[$val['id']]['attr_name']) ? $languageAttrRow[$val['id']]['attr_name'] : '';
  60. $main_group_list[$val['id']] = [
  61. 'id' => !empty($main_GroupRow[$key_tmp]['id']) ? $main_GroupRow[$key_tmp]['id'] : 0,
  62. ];
  63. }
  64. }
  65. $this->assign('main_group_list', $main_group_list);
  66. /*end*/
  67. $show = $Page->show();// 分页显示输出
  68. $this->assign('page',$show);// 赋值分页输出
  69. $this->assign('list',$list);// 赋值数据集
  70. $this->assign('pager',$pager);// 赋值分页对象
  71. return $this->fetch();
  72. }
  73. /**
  74. * 保存友情链接分组
  75. */
  76. public function linksgroup_save()
  77. {
  78. if (IS_AJAX_POST) {
  79. $post = input('post.');
  80. if (empty($post['group_name'])) {
  81. $this->error('至少新增一个链接分组!');
  82. } else {
  83. $is_empty = true;
  84. foreach ($post['group_name'] as $key => $val) {
  85. $val = trim($val);
  86. if (!empty($val)) {
  87. $is_empty = false;
  88. break;
  89. }
  90. }
  91. if (true === $is_empty) {
  92. $this->error('分组名称不能为空!');
  93. }
  94. }
  95. // 数据拼装
  96. $now_time = getTime();
  97. $addData = $editData = [];
  98. foreach ($post['group_name'] as $key => $val) {
  99. $group_name = trim($val);
  100. if (!empty($group_name)) {
  101. if (empty($post['id'][$key])) {
  102. if ($this->admin_lang == $this->main_lang || !empty($this->globalConfig['language_split'])) {
  103. $addData[] = [
  104. 'group_name' => $group_name,
  105. 'sort_order' => $post['sort_order'][$key] ? :100,
  106. 'lang' => $this->admin_lang,
  107. 'add_time' => $now_time,
  108. 'update_time' => $now_time,
  109. ];
  110. }
  111. } else {
  112. $id = intval($post['id'][$key]);
  113. $editData[] = [
  114. 'id' => $id,
  115. 'group_name' => $group_name,
  116. 'sort_order' => $post['sort_order'][$key] ? :100,
  117. 'lang' => $this->admin_lang,
  118. 'update_time' => $now_time,
  119. ];
  120. }
  121. }
  122. }
  123. if (!empty($addData)) {
  124. $rdata = model('LinksGroup')->saveAll($addData);
  125. /*多语言*/
  126. if (is_language()) {
  127. foreach ($rdata as $k1 => $v1) {
  128. $attr_data = $v1->getData();
  129. // 同步分组ID到多语言的模板变量里,添加多语言分组位
  130. $this->syn_add_language_linksgroup($attr_data['id']);
  131. }
  132. }
  133. /*end*/
  134. }
  135. $r = true;
  136. if (!empty($editData)) {
  137. $r = model('LinksGroup')->saveAll($editData);
  138. }
  139. if ($r !== false) {
  140. Cache::clear('links');
  141. Cache::clear('links_group');
  142. adminLog('保存链接分组:'.implode(',', $post['group_name']));
  143. $this->success('操作成功');
  144. }
  145. }
  146. $this->error('操作失败');
  147. }
  148. /**
  149. * 同步新增分组ID到多语言的模板变量里
  150. */
  151. private function syn_add_language_linksgroup($group_id)
  152. {
  153. /*单语言情况下不执行多语言代码*/
  154. if (!is_language() || tpCache('language.language_split')) {
  155. return true;
  156. }
  157. /*--end*/
  158. $attr_group = 'links_group';
  159. $languageRow = Db::name('language')->field('mark')->order('id asc')->select();
  160. if (!empty($languageRow) && $this->admin_lang == $this->main_lang) { // 当前语言是主体语言,即语言列表最早新增的语言
  161. $links_group_db = Db::name('links_group');
  162. $result = $links_group_db->find($group_id);
  163. $attr_name = 'linksgroup'.$group_id;
  164. $r = Db::name('language_attribute')->save([
  165. 'attr_title' => $result['group_name'],
  166. 'attr_name' => $attr_name,
  167. 'attr_group' => $attr_group,
  168. 'add_time' => getTime(),
  169. 'update_time' => getTime(),
  170. ]);
  171. if (false !== $r) {
  172. $data = [];
  173. foreach ($languageRow as $key => $val) {
  174. /*同步新分组到其他语言分组列表*/
  175. if ($val['mark'] != $this->admin_lang) {
  176. $addsaveData = $result;
  177. $addsaveData['lang'] = $val['mark'];
  178. $addsaveData['group_name'] = $val['mark'].$addsaveData['group_name'];
  179. unset($addsaveData['id']);
  180. $group_id = $links_group_db->insertGetId($addsaveData);
  181. }
  182. /*--end*/
  183. /*所有语言绑定在主语言的ID容器里*/
  184. $data[] = [
  185. 'attr_name' => $attr_name,
  186. 'attr_value' => $group_id,
  187. 'lang' => $val['mark'],
  188. 'attr_group' => $attr_group,
  189. 'add_time' => getTime(),
  190. 'update_time' => getTime(),
  191. ];
  192. /*--end*/
  193. }
  194. if (!empty($data)) {
  195. model('LanguageAttr')->saveAll($data);
  196. }
  197. }
  198. }
  199. }
  200. /**
  201. * 删除友情链接分组
  202. */
  203. public function del()
  204. {
  205. if (is_language() && empty($this->globalConfig['language_split'])) {
  206. $this->language_access(); // 多语言功能操作权限
  207. }
  208. $id_arr = input('del_id/a');
  209. $id_arr = eyIntval($id_arr);
  210. if(IS_POST && !empty($id_arr)){
  211. $linksGroupRow = Db::name('links_group')->where(['lang'=>$this->admin_lang])->order('id asc')->column('id');
  212. if (!empty($linksGroupRow)) {
  213. if (1 < count($linksGroupRow)) {
  214. $firstRow = current($linksGroupRow);
  215. $min_group_id = empty($firstRow['id']) ? 0 : $firstRow['id'];
  216. if (in_array($min_group_id, $id_arr)) {
  217. $this->error('禁止删除默认分组');
  218. }
  219. } else {
  220. $this->error('至少保留一个分组');
  221. }
  222. }
  223. /*多语言*/
  224. $attr_name_arr = [];
  225. foreach ($id_arr as $key => $val) {
  226. $attr_name_arr[] = 'linksgroup'.$val;
  227. }
  228. if (is_language() && empty($this->globalConfig['language_split'])) {
  229. $new_id_arr = Db::name('language_attr')->where([
  230. 'attr_name' => ['IN', $attr_name_arr],
  231. 'attr_group' => 'links_group',
  232. ])->column('attr_value');
  233. !empty($new_id_arr) && $id_arr = $new_id_arr;
  234. }
  235. /*--end*/
  236. $group_name_list = Db::name('links_group')->where([
  237. 'id' => ['IN', $id_arr],
  238. ])->column('group_name');
  239. $r = Db::name('links_group')->where([
  240. 'id' => ['IN', $id_arr],
  241. ])->delete();
  242. if ($r !== false) {
  243. /*删除多语言友情链接分组关联绑定*/
  244. if (!empty($attr_name_arr)) {
  245. if (get_admin_lang() == get_main_lang()) {
  246. Db::name('language_attribute')->where([
  247. 'attr_name' => ['IN', $attr_name_arr],
  248. 'attr_group' => 'links_group',
  249. ])->delete();
  250. }
  251. if (empty($this->globalConfig['language_split'])) {
  252. Db::name('language_attr')->where([
  253. 'attr_name' => ['IN', $attr_name_arr],
  254. 'attr_group' => 'links_group',
  255. ])->delete();
  256. } else {
  257. Db::name('language_attr')->where([
  258. 'attr_value' => ['IN', $id_arr],
  259. 'attr_group' => 'links_group',
  260. ])->delete();
  261. }
  262. }
  263. /*--end*/
  264. Db::name('links')->where([
  265. 'groupid' => ['IN', $id_arr],
  266. ])->delete();
  267. Cache::clear('links');
  268. Cache::clear('links_group');
  269. adminLog('删除友情链接分组:'.implode(',', $group_name_list));
  270. $this->success('删除成功');
  271. }
  272. }
  273. $this->error('删除失败');
  274. }
  275. }