mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-29 13:51:37 +08:00
46 lines
1.0 KiB
PHP
46 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
|
|
* @license https://opensource.org/licenses/GPL-2.0
|
|
* @link https://www.koogua.com
|
|
*/
|
|
|
|
namespace App\Services\Logic\Notice\Sms;
|
|
|
|
use App\Models\User as UserModel;
|
|
use App\Repos\Account as AccountRepo;
|
|
use App\Services\Smser;
|
|
|
|
class LiveBegin extends Smser
|
|
{
|
|
|
|
protected $templateCode = 'live_begin';
|
|
|
|
/**
|
|
* @param UserModel $user
|
|
* @param array $params
|
|
* @return bool|null
|
|
*/
|
|
public function handle(UserModel $user, array $params)
|
|
{
|
|
$params['live']['start_time'] = date('H:i', $params['live']['start_time']);
|
|
|
|
$accountRepo = new AccountRepo();
|
|
|
|
$account = $accountRepo->findById($user->id);
|
|
|
|
if (!$account->phone) return null;
|
|
|
|
$params = [
|
|
$params['course']['title'],
|
|
$params['chapter']['title'],
|
|
$params['live']['start_time'],
|
|
];
|
|
|
|
$templateId = $this->getTemplateId($this->templateCode);
|
|
|
|
return $this->send($account->phone, $templateId, $params);
|
|
}
|
|
|
|
}
|