mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-31 18:48:09 +00:00
41 lines
1.4 KiB
PHP
41 lines
1.4 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | Niucloud-admin 企业快速开发的saas管理平台
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网址:https://www.niucloud-admin.com
|
||
// +----------------------------------------------------------------------
|
||
// | niucloud团队 版权所有 开源版本可自由商用
|
||
// +----------------------------------------------------------------------
|
||
// | Author: Niucloud Team
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\job\notice;
|
||
|
||
use app\model\system\Cron;
|
||
use app\service\core\notice\CoreNoticeEventService;
|
||
use core\base\BaseJob;
|
||
use core\exception\NoticeException;
|
||
|
||
/**
|
||
* 消息发送任务
|
||
*/
|
||
class Notice extends BaseJob
|
||
{
|
||
|
||
|
||
/**
|
||
* 消费
|
||
* @param $data
|
||
* @return true
|
||
*/
|
||
protected function doJob($site_id, $key, $data, $template)
|
||
{
|
||
//通过业务获取模板变量属于以及发送对象
|
||
$result = event('noticeData', ['site_id' => $site_id, 'key' => $key, 'data' => $data, 'template' => $template]);
|
||
$notice_data = array_values(array_filter($result))[0] ?? [];
|
||
if(empty($notice_data)) throw new NoticeException();
|
||
event('notice', ['site_id' => $site_id, 'key' => $key, 'to' => $notice_data['to'], 'vars' => $notice_data['vars'], 'template' => $template]);
|
||
return true;
|
||
}
|
||
}
|