Geen omschrijving
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.

UsersNotice.php 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  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 UsersNotice extends Base
  18. {
  19. /**
  20. * 构造方法
  21. */
  22. public function __construct(){
  23. parent::__construct();
  24. $this->language_access(); // 多语言功能操作权限
  25. // 会员中心配置信息
  26. $this->UsersConfigData = getUsersConfigData('all');
  27. $this->assign('userConfig',$this->UsersConfigData);
  28. }
  29. /**
  30. * 站内通知 - 列表
  31. */
  32. public function index()
  33. {
  34. $list = array();
  35. $keywords = input('keywords/s');
  36. $map = array();
  37. if (!empty($keywords)) {
  38. $map['title'] = array('LIKE', "%{$keywords}%");
  39. }
  40. $count = Db::name('users_notice')->where($map)->count('id');// 查询满足要求的总记录数
  41. $pageObj = new Page($count, config('paginate.list_rows'));// 实例化分页类 传入总记录数和每页显示的记录数
  42. $list = Db::name('users_notice')->where($map)->order('id desc')->limit($pageObj->firstRow.','.$pageObj->listRows)->select();
  43. if ($list) {
  44. foreach ($list as $k=>$v) {
  45. $usernames_str = '';
  46. if ($v['users_id']) {
  47. $usernames_arr = explode(',', $v['users_id']);
  48. if (count($usernames_arr) > 3) {
  49. for ($i = 0; $i < 3; $i++) {
  50. $usernames_str .= $usernames_arr[$i] . ',';
  51. }
  52. $usernames_str .= ' ...';
  53. $list[$k]['usernames'] = $usernames_str;
  54. }else{
  55. $list[$k]['usernames'] = $v['users_id'];
  56. }
  57. }else{
  58. $list[$k]['usernames'] = '全站会员';
  59. }
  60. }
  61. }
  62. $pageStr = $pageObj->show(); // 分页显示输出
  63. $this->assign('list', $list); // 赋值数据集
  64. $this->assign('page', $pageStr); // 赋值分页输出
  65. $this->assign('pager', $pageObj); // 赋值分页对象
  66. return $this->fetch();
  67. }
  68. /**
  69. * 站内通知 - 新增
  70. */
  71. public function add()
  72. {
  73. $web_is_authortoken = tpCache('global.web_is_authortoken');
  74. if (-1 == $web_is_authortoken) {
  75. $this->error('该功能仅限于商业授权域名!');
  76. }
  77. if (IS_POST) {
  78. $post = input('post.');
  79. /*组装存储数据*/
  80. $nowData = array(
  81. 'add_time' => getTime(),
  82. 'update_time' => getTime(),
  83. );
  84. empty($post['usernames']) && $post['usernames'] = "";
  85. $saveData = array_merge($post, $nowData);
  86. /*--end*/
  87. $insertId = Db::name('users_notice')->insertGetId($saveData);
  88. if ($insertId) {
  89. //未读消息数+1
  90. if (!empty($post['users_id'])){
  91. Db::name('users')->where(['users_id' => ['IN', $post['users_id']]])->setInc('unread_notice_num');
  92. }else{
  93. Db::name('users')->where(['users_id' => ['gt', 0]])->setInc('unread_notice_num');
  94. }
  95. if (!empty($post['users_id'])){
  96. adminLog('新增站内通知:通知会员id为:'.$post['users_id'].' ,新增站内通知:通知会员名为:'.$post['usernames']); // 写入操作日志
  97. }else{
  98. adminLog('新增全站通知'); // 写入操作日志
  99. }
  100. $this->success("操作成功", url('UsersNotice/index'));
  101. }else{
  102. $this->error("操作失败");
  103. }
  104. exit;
  105. }
  106. $listname = Db::name('users')->order('users_id desc')->field('users_id,username')->select();
  107. $this->assign('listname', $listname);
  108. return $this->fetch();
  109. }
  110. /**
  111. * 站内通知 - 编辑
  112. */
  113. public function edit()
  114. {
  115. if (IS_POST) {
  116. $post = input('post.');
  117. $post['id'] = intval($post['id']);
  118. if (isset($post['usernames'])) unset($post['usernames']);
  119. if (isset($post['users_id'])) unset($post['users_id']);
  120. $post['id'] = eyIntval($post['id']);
  121. if(!empty($post['id'])){
  122. $post['update_time'] = getTime();
  123. $r = Db::name('users_notice')->where(['id'=>$post['id']])->update($post);
  124. if ($r) {
  125. adminLog('编辑站内通知:通知id为'.$post['id']); // 写入操作日志
  126. $this->success("操作成功!", url('UsersNotice/index'));
  127. }
  128. }
  129. $this->error("操作失败!");
  130. }
  131. $id = input('id/d', 0);
  132. $row = Db::name('users_notice')->find($id);
  133. if (empty($row)) {
  134. $this->error('数据不存在,请联系管理员!');
  135. exit;
  136. }
  137. // 转化换行格式,适应输出
  138. $row['remark'] = str_replace("<br/>", "\n", $row['remark']);
  139. $listname = Db::name('users')->order('users_id desc')->field('users_id,username')->select();
  140. $this->assign('listname', $listname);
  141. $this->assign('row',$row);
  142. return $this->fetch();
  143. }
  144. /**
  145. * 站内通知 - 删除
  146. */
  147. public function del()
  148. {
  149. $id_arr = input('del_id/a');
  150. $id_arr = eyIntval($id_arr);
  151. if(!empty($id_arr) && IS_POST){
  152. $result = Db::name('users_notice')->where("id",'IN',$id_arr)->select();
  153. $r = Db::name('users_notice')->where("id",'IN',$id_arr)->delete();
  154. if($r !== false){
  155. $usersTplVersion = getUsersTplVersion();
  156. if ($usersTplVersion != 'v1') {
  157. //未读消息数-1
  158. foreach ($result as $item) {
  159. if ($item['users_id']) {
  160. $users_id_arr_new = explode(",", $item['users_id']);
  161. Db::name('users')->where(['users_id' => ['IN', $users_id_arr_new], 'unread_notice_num'=>['gt', 0]])->setDec('unread_notice_num');
  162. }else{
  163. //通知的是全站会员
  164. Db::name('users')->where(['unread_notice_num'=>['gt', 0]])->setDec('unread_notice_num');
  165. }
  166. }
  167. }
  168. Db::name('users_notice_read')->where("notice_id",'IN',$id_arr)->delete();
  169. adminLog('删除站内通知:'.implode(',', $id_arr));
  170. $this->success("删除成功!");
  171. }
  172. }
  173. $this->error("删除失败!");
  174. }
  175. /**
  176. * 站内通知 - 管理员接收通知列表
  177. */
  178. public function admin_notice_index()
  179. {
  180. $list = array();
  181. $keywords = input('keywords/s');
  182. $map = array();
  183. if (!empty($keywords)) {
  184. $map['a.content_title'] = array('LIKE', "%{$keywords}%");
  185. }
  186. $count = Db::name('users_notice_tpl_content')->alias('a')->where($map)->count('content_id');
  187. $pageObj = new Page($count, config('paginate.list_rows'));
  188. $list = Db::name('users_notice_tpl_content')
  189. ->field('a.*, b.tpl_name')
  190. ->alias('a')
  191. ->join('__USERS_NOTICE_TPL__ b', 'a.source = b.send_scene', 'LEFT')
  192. ->where($map)
  193. ->order('content_id desc')
  194. ->limit($pageObj->firstRow.','.$pageObj->listRows)
  195. ->select();
  196. $pageStr = $pageObj->show(); // 分页显示输出
  197. $this->assign('list', $list); // 赋值数据集
  198. $this->assign('page', $pageStr); // 赋值分页输出
  199. $this->assign('pager', $pageObj); // 赋值分页对象
  200. return $this->fetch();
  201. }
  202. /**
  203. * 站内通知 - 编辑管理员接收通知
  204. */
  205. public function admin_notice_edit()
  206. {
  207. $content_id = input('content_id/d', 0);
  208. $Find = Db::name('users_notice_tpl_content')->field('a.*, b.tpl_name')->alias('a')->join('__USERS_NOTICE_TPL__ b', 'a.source = b.send_scene', 'LEFT')->find($content_id);
  209. if (empty($Find)) $this->error('数据不存在,请联系管理员!');
  210. // 更新通知为已查看
  211. if (empty($Find['is_read'])) {
  212. $update = [
  213. 'content_id' => $Find['content_id'],
  214. 'is_read' => 1,
  215. 'update_time' => getTime()
  216. ];
  217. Db::name('users_notice_tpl_content')->update($update);
  218. }
  219. $this->assign('find', $Find);
  220. return $this->fetch();
  221. }
  222. /**
  223. * 站内通知 - 删除管理员接收通知
  224. */
  225. public function admin_notice_del()
  226. {
  227. $id_arr = input('del_id/a');
  228. $id_arr = eyIntval($id_arr);
  229. if(!empty($id_arr) && IS_POST) {
  230. // 查询要删除的通知信息
  231. $result = Db::name('users_notice_tpl_content')->field('content_id')->where("content_id", 'IN', $id_arr)->select();
  232. // 获取ID列表
  233. $id_list = get_arr_column($result, 'content_id');
  234. // 执行删除
  235. $DeleteID = Db::name('users_notice_tpl_content')->where("content_id", 'IN', $id_arr)->delete();
  236. // 添加操作日志,返回结束
  237. if (!empty($DeleteID)) {
  238. adminLog('删除接收的站内通知:' . implode(',', $id_list));
  239. $this->success("删除成功");
  240. } else {
  241. $this->error("删除失败");
  242. }
  243. } else {
  244. $this->error("参数有误");
  245. }
  246. }
  247. /**
  248. * 全部标记已读
  249. */
  250. public function sign_admin_allread()
  251. {
  252. if (IS_AJAX_POST) {
  253. $update = [
  254. 'is_read' => 1,
  255. 'update_time' => getTime()
  256. ];
  257. $r = Db::name('users_notice_tpl_content')->where(['admin_id'=>['gt', 0]])->update($update);
  258. if ($r !== false) {
  259. $this->success('操作成功');
  260. }
  261. }
  262. $this->error('操作失败');
  263. }
  264. public function select_users()
  265. {
  266. $list = array();
  267. $param = input('param.');
  268. $condition = array();
  269. // 应用搜索条件
  270. foreach (['keywords','origin_type','level'] as $key) {
  271. if (isset($param[$key]) && $param[$key] !== '') {
  272. if ($key == 'keywords') {
  273. $condition['a.username|a.nickname|a.mobile|a.email|a.users_id'] = array('LIKE', "%{$param[$key]}%");
  274. } else {
  275. $condition['a.'.$key] = array('eq', $param[$key]);
  276. }
  277. }
  278. }
  279. $condition['a.is_del'] = 0;
  280. $condition['a.lang'] = array('eq', $this->admin_lang);
  281. $orderby = "a.users_id desc";
  282. $users_db = Db::name('users');
  283. $count = $users_db->alias('a')->where($condition)->count();
  284. $Page = new Page($count, config('paginate.list_rows'));
  285. $list = $users_db->field('a.*,b.level_name')
  286. ->alias('a')
  287. ->join('__USERS_LEVEL__ b', 'a.level = b.level_id', 'LEFT')
  288. ->where($condition)
  289. ->order($orderby)
  290. ->limit($Page->firstRow.','.$Page->listRows)
  291. ->select();
  292. $users_ids = [];
  293. foreach ($list as $key => $val) {
  294. $users_ids[] = $val['users_id'];
  295. }
  296. /*微信登录插件*/
  297. $wxlogin = [];
  298. if (is_dir('./weapp/WxLogin/')) {
  299. $wxlogin = Db::name('weapp_wxlogin')->where(['users_id'=>['IN', $users_ids]])->getAllWithIndex('users_id');
  300. }
  301. $this->assign('wxlogin',$wxlogin);
  302. /*end*/
  303. /*QQ登录插件*/
  304. $qqlogin = [];
  305. if (is_dir('./weapp/QqLogin/')) {
  306. $qqlogin = Db::name('weapp_qqlogin')->where(['users_id'=>['IN', $users_ids]])->getAllWithIndex('users_id');
  307. }
  308. $this->assign('qqlogin',$qqlogin);
  309. /*end*/
  310. /*微博登录插件*/
  311. $wblogin = [];
  312. if (is_dir('./weapp/Wblogin/')) {
  313. $wblogin = Db::name('weapp_wblogin')->where(['users_id'=>['IN', $users_ids]])->getAllWithIndex('users_id');
  314. }
  315. $this->assign('wblogin',$wblogin);
  316. /*end*/
  317. $show = $Page->show();
  318. $this->assign('page',$show);
  319. $this->assign('list',$list);
  320. $this->assign('pager',$Page);
  321. //计算会员人数
  322. $levelCountList = [
  323. 'all' => [
  324. 'level_id' => 0,
  325. 'level_name' => '全部会员',
  326. 'level_count' => 0,
  327. ],
  328. ];
  329. $LevelData = model('UsersLevel')->getList('level_id, level_name', [], 'level_id');
  330. $levelCountRow = Db::name('users')->field('count(users_id) as num, level')->order('level asc')->group('level')->getAllWithIndex('level');
  331. foreach ($LevelData as $key => $val) {
  332. $level_num = empty($levelCountRow[$val['level_id']]) ? 0 : $levelCountRow[$val['level_id']]['num'];
  333. $levelCountList[$val['level_id']] = [
  334. 'level_id' => $val['level_id'],
  335. 'level_name' => $val['level_name'],
  336. 'level_count' => $level_num,
  337. ];
  338. $levelCountList['all']['level_count'] += $level_num;
  339. }
  340. $this->assign('levelCountList', $levelCountList);
  341. return $this->fetch('users_notice/select_users');
  342. }
  343. }