123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\admin\model\system;
- use traits\ModelTrait;
- use basic\ModelBasic;
- use think\Db;
- /**
- * 后台通知model
- * Class SystemNotice
- * @package app\admin\model\system
- */
- class SystemNotice extends ModelBasic
- {
- use ModelTrait;
- protected function setResultAttr($value)
- {
- return json_encode($value);
- }
- protected function setTableTitleAttr($value)
- {
- $list = [];
- if(!empty($value)){
- $group = explode(',',$value);
- $list = array_map(function($v){
- list($title,$key) = explode('-',$v);
- return compact('title','key');
- },$group);
- }
- return json_encode($list);
- }
- protected function getTableTitleAttr($value)
- {
- return json_decode($value,true);
- }
- protected function getResultAttr($value)
- {
- return json_decode($value,true);
- }
- protected function setPushAdminAttr($value)
- {
- $value = is_array($value) ? array_unique(array_filter($value)) : [];
- return implode(',',$value);
- }
- protected function getPushAdminAttr($value)
- {
- return array_filter(explode(',',$value));
- }
- public static function typeByAdminList($type,$field = 'id')
- {
- return self::where('type',$type)->field($field)->find();
- }
- public static function systemNoticeAdminDb()
- {
- return Db::name('SystemNoticeAdmin');
- }
- public static function adminMessage($notice_type,$admin_id,$link_id,array $table_data = [])
- {
- $table_data = json_encode($table_data);
- $add_time = time();
- return self::systemNoticeAdminDb()->insert(compact('notice_type','admin_id','link_id','table_data','add_time'));
- }
- public static function noticeMessage($noticeType,$linkId,array $tableData = [])
- {
- $noticeInfo = self::get(['type'=>$noticeType]);
- if(!$noticeInfo) return self::setErrorInfo('通知模板消息不存在!');
- $adminIds = array_merge(array_map(function($v){
- return $v['id'];
- },SystemAdmin::getTopAdmin('id')->toArray())?:[],self::typeByAdminList($noticeType,'push_admin')->push_admin?:[]);
- $adminIds = array_unique(array_filter($adminIds));
- if(!count($adminIds)) return self::setErrorInfo('没有有效的通知用户!');
- foreach ($adminIds as $id){
- self::adminMessage($noticeType,$id,$linkId,$tableData);
- }
- return true;
- }
- public static function getAdminNoticeTotal($adminId)
- {
- $list = self::alias('A')->join('__SYSTEM_NOTICE_ADMIN__ B','B.notice_type = A.type')
- ->where('A.status',1)->where('B.is_visit',0)->where('B.is_click',0)->where('B.admin_id',$adminId)
- ->field('count(B.id) total')->group('A.id')->select()->toArray();
- if(!$list) return 0;
- return array_reduce($list,function($initial,$res){
- return $initial+$res['total'];
- },0);
- }
- public static function getAdminNotice($adminId)
- {
- $list = self::alias('A')->join('__SYSTEM_NOTICE_ADMIN__ B','B.notice_type = A.type')
- ->where('A.status',1)->where('B.is_visit',0)->where('B.is_click',0)->where('B.admin_id',$adminId)
- ->field('A.id,A.type,A.title,A.icon,count(B.id) total,A.template,max(B.add_time) as last_time')
- ->group('A.id')->having('total > 0')->select()->toArray();
- $noticeTypeList = [];
- array_walk($list,function(&$notice) use(&$noticeTypeList){
- $notice['message'] = sprintf($notice['template'],$notice['total']);
- $noticeTypeList[] = $notice['type'];
- });
- if(count($noticeTypeList))
- self::systemNoticeAdminDb()->where('notice_type','IN',$noticeTypeList)->where('admin_id',$adminId)
- ->update(['is_visit'=>1,'visit_time'=>time()]);
- return $list;
- }
- }
|