설명 없음
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.

Links.php 8.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  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 Links extends Base
  18. {
  19. public function index()
  20. {
  21. $list = array();
  22. $param = input('param.');
  23. $keywords = input('keywords/s');
  24. $keywords = trim($keywords);
  25. $condition = [];
  26. // 应用搜索条件
  27. foreach (['keywords', 'groupid'] as $key) {
  28. if (isset($param[$key]) && $param[$key] !== '') {
  29. if ($key == 'keywords') {
  30. $condition['a.title'] = array('LIKE', "%{$keywords}%");
  31. } else {
  32. $condition['a.'.$key] = array('eq', trim($param[$key]));
  33. }
  34. }
  35. }
  36. // 多语言
  37. $condition['a.lang'] = array('eq', $this->admin_lang);
  38. $fields = "a.*,b.group_name";
  39. $linksM = Db::name('links');
  40. $count = $linksM->alias("a")->join('links_group b',"a.groupid=b.id",'LEFT')->where($condition)->count('a.id');// 查询满足要求的总记录数
  41. $Page = $pager = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  42. $list = $linksM->alias("a")->join('links_group b',"a.groupid=b.id",'LEFT')->field($fields)->where($condition)->order('a.sort_order asc, a.id asc')->limit($Page->firstRow.','.$Page->listRows)->select();
  43. $show = $Page->show();// 分页显示输出
  44. $this->assign('page',$show);// 赋值分页输出
  45. $this->assign('list',$list);// 赋值数据集
  46. $this->assign('pager',$pager);// 赋值分页对象
  47. $links_group = Db::name('links_group')->field('id, group_name')->where(['lang'=>$this->admin_lang])->order('sort_order asc')->select();
  48. $this->assign('links_group',$links_group);
  49. return $this->fetch();
  50. }
  51. /**
  52. * 添加友情链接
  53. */
  54. public function add()
  55. {
  56. if (IS_POST) {
  57. $post = input('post.');
  58. $post['target'] = !empty($post['target']) ? 1 : 0;
  59. $post['nofollow'] = !empty($post['nofollow']) ? 1 : 0;
  60. $post['url'] = trim($post['url']);
  61. $post['url'] = preg_replace('/(<|>|;|\(|\)|\!)/i', '', $post['url']);
  62. if (empty($post['url'])) {
  63. $this->error('网址URL不能为空!');
  64. } else if (filter_var($post['url'], FILTER_VALIDATE_URL) === false) {
  65. $this->error('网址URL格式不正确!');
  66. }
  67. $post['title'] = trim($post['title']);
  68. if (empty($post['title'])) {
  69. $this->error('网站名称不能为空!');
  70. }
  71. // 处理LOGO
  72. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  73. $logo = '';
  74. if ($is_remote == 1) {
  75. $logo = $post['logo_remote'];
  76. } else {
  77. $logo = $post['logo_local'];
  78. }
  79. $post['logo'] = $logo;
  80. // --存储数据
  81. $nowData = array(
  82. 'typeid' => empty($post['typeid']) ? 1 : $post['typeid'],
  83. 'groupid' => empty($post['groupid']) ? 1 : $post['groupid'],
  84. 'url' => $post['url'],
  85. 'lang' => $this->admin_lang,
  86. 'add_time' => getTime(),
  87. 'update_time' => getTime(),
  88. );
  89. $data = array_merge($post, $nowData);
  90. $insertId = Db::name('links')->insertGetId($data);
  91. if (false !== $insertId) {
  92. Cache::clear('links');
  93. adminLog('新增友情链接:'.$post['title']);
  94. $this->success("操作成功!", url('Links/index'));
  95. }else{
  96. $this->error("操作失败!", url('Links/index'));
  97. }
  98. exit;
  99. }
  100. $assign_data['group_ids'] = Db::name('links_group')->field('id,group_name,status')->where(['lang'=>$this->admin_lang])->order("sort_order asc, id asc")->select();
  101. // 多站点,当用站点域名访问后台,发布文档自动选择当前所属区域
  102. model('Citysite')->auto_location_select($assign_data);
  103. $this->assign($assign_data);
  104. return $this->fetch();
  105. }
  106. /**
  107. * 编辑友情链接
  108. */
  109. public function edit()
  110. {
  111. if (IS_POST) {
  112. $post = input('post.');
  113. $r = false;
  114. if(!empty($post['id'])){
  115. $post['id'] = intval($post['id']);
  116. $post['target'] = !empty($post['target']) ? 1 : 0;
  117. $post['nofollow'] = !empty($post['nofollow']) ? 1 : 0;
  118. $post['url'] = trim($post['url']);
  119. $post['url'] = preg_replace('/(<|>|;|\(|\)|\!)/i', '', $post['url']);
  120. if (empty($post['url'])) {
  121. $this->error('网址URL不能为空!');
  122. } else if (filter_var($post['url'], FILTER_VALIDATE_URL) === false) {
  123. $this->error('网址URL格式不正确!');
  124. }
  125. $post['title'] = trim($post['title']);
  126. if (empty($post['title'])) {
  127. $this->error('网站名称不能为空!');
  128. }
  129. // 处理LOGO
  130. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  131. $logo = '';
  132. if ($is_remote == 1) {
  133. $logo = $post['logo_remote'];
  134. } else {
  135. $logo = $post['logo_local'];
  136. }
  137. $post['logo'] = $logo;
  138. // --存储数据
  139. $nowData = array(
  140. 'typeid' => empty($post['typeid']) ? 1 : $post['typeid'],
  141. 'groupid' => empty($post['groupid']) ? 1 : $post['groupid'],
  142. 'url' => $post['url'],
  143. 'update_time' => getTime(),
  144. );
  145. $data = array_merge($post, $nowData);
  146. $r = Db::name('links')->where([
  147. 'id' => $post['id'],
  148. 'lang' => $this->admin_lang,
  149. ])
  150. ->cache(true, null, "links")
  151. ->update($data);
  152. }
  153. if (false !== $r) {
  154. adminLog('编辑友情链接:'.$post['title']);
  155. $this->success("操作成功!",url('Links/index'));
  156. }else{
  157. $this->error("操作失败!",url('Links/index'));
  158. }
  159. exit;
  160. }
  161. $id = input('id/d');
  162. $info = Db::name('links')->where([
  163. 'id' => $id,
  164. 'lang' => $this->admin_lang,
  165. ])->find();
  166. if (empty($info)) {
  167. $this->error('数据不存在,请联系管理员!');
  168. exit;
  169. }
  170. if (is_http_url($info['logo'])) {
  171. $info['is_remote'] = 1;
  172. $info['logo_remote'] = handle_subdir_pic($info['logo']);
  173. } else {
  174. $info['is_remote'] = 0;
  175. $info['logo_local'] = handle_subdir_pic($info['logo']);
  176. }
  177. $group_ids = Db::name('links_group')->field('id,group_name,status')->where(['lang'=>$this->admin_lang])->order("sort_order asc, id asc")->select();
  178. $this->assign('group_ids',$group_ids);
  179. $this->assign('info',$info);
  180. return $this->fetch();
  181. }
  182. /**
  183. * 删除友情链接
  184. */
  185. public function del()
  186. {
  187. if (IS_POST) {
  188. $id_arr = input('del_id/a');
  189. $id_arr = eyIntval($id_arr);
  190. if(!empty($id_arr)){
  191. $result = Db::name('links')->field('title')
  192. ->where([
  193. 'id' => ['IN', $id_arr],
  194. 'lang' => $this->admin_lang,
  195. ])->select();
  196. $title_list = get_arr_column($result, 'title');
  197. $r = Db::name('links')->where([
  198. 'id' => ['IN', $id_arr],
  199. 'lang' => $this->admin_lang,
  200. ])
  201. ->cache(true, null, "links")
  202. ->delete();
  203. if($r){
  204. adminLog('删除友情链接:'.implode(',', $title_list));
  205. $this->success('删除成功');
  206. }else{
  207. $this->error('删除失败');
  208. }
  209. } else {
  210. $this->error('参数有误');
  211. }
  212. }
  213. $this->error('非法访问');
  214. }
  215. }