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.
59 lines
2.1 KiB
59 lines
2.1 KiB
<?php
|
|
|
|
namespace addons\shopro\channel;
|
|
|
|
use addons\shopro\notification\Notification;
|
|
use addons\shopro\facade\Wechat;
|
|
|
|
class WechatMiniProgram
|
|
{
|
|
|
|
public function __construct()
|
|
{
|
|
}
|
|
|
|
|
|
/**
|
|
* 发送 微信模板消息
|
|
*
|
|
* @param mixed $notifiable // 通知用户
|
|
* @param 通知内容
|
|
* @return void
|
|
*/
|
|
public function send($notifiable, Notification $notification)
|
|
{
|
|
$data = [];
|
|
|
|
if (method_exists($notification, 'toWechatMiniProgram')) {
|
|
$data = $notification->toWechatMiniProgram($notifiable);
|
|
|
|
if ($data && isset($data['openid']) && isset($data['template_id']) && $data['template_id']) {
|
|
$data['touser'] = $data['openid'];
|
|
unset($data['openid']);
|
|
|
|
try {
|
|
// 发送模板消息
|
|
$result = Wechat::miniProgram()->subscribe_message->send($data);
|
|
|
|
if ($result['errcode'] != 0) {
|
|
// 小程序模板发送失败
|
|
\think\Log::error('小程序模板消息发送失败:用户:'. $notifiable['id'] . ';类型:' . get_class($notification) . ";发送类型:" . $notification->event . ";错误信息:" . json_encode($result, JSON_UNESCAPED_UNICODE));
|
|
} else {
|
|
// 发送成功
|
|
$notification->sendOk('WechatMiniProgram');
|
|
}
|
|
} catch (\Exception $e) {
|
|
// 因为配置较麻烦,这里捕获异常防止因为缺少字段,导致队列一直执行不成功
|
|
format_log_error($e, 'WechatMiniProgram_notification', '用户:' . $notifiable['id'] . ';类型:' . get_class($notification) . ";发送类型:" . $notification->event);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
// 没有openid
|
|
\think\Log::error('小程序模板消息发送失败,没有 openid:用户:' . $notifiable['id'] . ';类型:' . get_class($notification) . ";发送类型:" . $notification->event);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|