Update advancedbroadcast.lib.php

src
pfspx4a7z 2 months ago
parent 2be7e3d181
commit 3253d4f339

@ -2,11 +2,14 @@
namespace LaneWeChat\Core; // 定义命名空间表明这个类属于LaneWeChat模块的核心部分 namespace LaneWeChat\Core; // 定义命名空间表明这个类属于LaneWeChat模块的核心部分
class AdvancedBroadcast{ // 定义一个名为AdvancedBroadcast的类用于高级群发功能 class AdvancedBroadcast{ // 定义一个名为AdvancedBroadcast的类用于高级群发功能
// 上传图文消息到微信服务器 // 上传图文消息到微信服务器
public static function uploadNews($articles){ public static function uploadNews($articles){
$queryUrl = 'https://api.weixin.qq.com/cgi-bin/media/uploadnews?access_token=' AccessToken::getAccessToken(); // 构建请求URL包含access_token // 构建请求URL包含access_token使用AccessToken类的getAccessToken方法获取
$queryUrl = 'https://api.weixin.qq.com/cgi-bin/media/uploadnews?access_token=' . AccessToken::getAccessToken();
$queryAction = 'POST'; // 请求方式为POST $queryAction = 'POST'; // 请求方式为POST
foreach($articles as &$article){ // 遍历文章数组对每个文章的字段进行URL编码 // 遍历文章数组对每个文章的字段进行URL编码以确保特殊字符不会影响请求
foreach($articles as &$article){
$article['author'] = urlencode($article['author']); $article['author'] = urlencode($article['author']);
$article['title'] = urlencode($article['title']); $article['title'] = urlencode($article['title']);
$article['content'] = urlencode($article['content']); $article['content'] = urlencode($article['content']);
@ -15,14 +18,18 @@ class AdvancedBroadcast{ // 定义一个名为AdvancedBroadcast的类用于
$template = array(); // 创建模板数组 $template = array(); // 创建模板数组
$template['articles'] = $articles; // 将编码后的文章数组赋值给模板的articles字段 $template['articles'] = $articles; // 将编码后的文章数组赋值给模板的articles字段
$template = json_encode($template); // 将模板数组转换为JSON字符串 $template = json_encode($template); // 将模板数组转换为JSON字符串
$template = urldecode($template); // 对JSON字符串进行URL解码这一步可能是多余的因为JSON字符串不需要URL解码 // 对JSON字符串进行URL解码这一步可能是多余的因为JSON字符串不需要URL解码
$result = Curl::callWebServer($queryUrl, $template, $queryAction); // 发起网络请求调用Curl类的方法 $template = urldecode($template);
return empty($result['media_id']) ? false : $result['media_id']; // 返回media_id如果结果中没有media_id则返回false // 发起网络请求调用Curl类的方法传入URL、数据和请求方式
$result = Curl::callWebServer($queryUrl, $template, $queryAction);
// 返回media_id如果结果中没有media_id则返回false
return empty($result['media_id']) ? false : $result['media_id'];
} }
// 根据分组ID群发图文消息 // 根据分组ID群发图文消息
public static function sentNewsByGroup($groupId, $mediaId, $isToAll=false){ public static function sentNewsByGroup($groupId, $mediaId, $isToAll=false){
$queryUrl = 'https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=' AccessToken::getAccessToken(); // 构建请求URL // 构建请求URL包含access_token
$queryUrl = 'https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=' . AccessToken::getAccessToken();
$queryAction = 'POST'; // 请求方式为POST $queryAction = 'POST'; // 请求方式为POST
$template = array(); // 创建模板数组 $template = array(); // 创建模板数组
$template['filter']['group_id'] = $groupId; // 设置分组ID $template['filter']['group_id'] = $groupId; // 设置分组ID
@ -30,12 +37,14 @@ class AdvancedBroadcast{ // 定义一个名为AdvancedBroadcast的类用于
$template['mpnews']['media_id'] = $mediaId; // 设置图文消息的media_id $template['mpnews']['media_id'] = $mediaId; // 设置图文消息的media_id
$template['msgtype'] = 'mpnews'; // 设置消息类型为图文消息 $template['msgtype'] = 'mpnews'; // 设置消息类型为图文消息
$template = json_encode($template); // 将模板数组转换为JSON字符串 $template = json_encode($template); // 将模板数组转换为JSON字符串
return Curl::callWebServer($queryUrl, $template, $queryAction); // 发起网络请求 // 发起网络请求
return Curl::callWebServer($queryUrl, $template, $queryAction);
} }
// 根据分组ID群发文本消息 // 根据分组ID群发文本消息
public static function sentTextByGroup($groupId, $content, $isToAll=false){ public static function sentTextByGroup($groupId, $content, $isToAll=false){
$queryUrl = 'https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=' AccessToken::getAccessToken(); // 构建请求URL // 构建请求URL包含access_token
$queryUrl = 'https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=' . AccessToken::getAccessToken();
$queryAction = 'POST'; // 请求方式为POST $queryAction = 'POST'; // 请求方式为POST
$template = array(); // 创建模板数组 $template = array(); // 创建模板数组
$template['filter']['group_id'] = $groupId; // 设置分组ID $template['filter']['group_id'] = $groupId; // 设置分组ID
@ -43,12 +52,14 @@ class AdvancedBroadcast{ // 定义一个名为AdvancedBroadcast的类用于
$template['text']['content'] = $content; // 设置文本内容 $template['text']['content'] = $content; // 设置文本内容
$template['msgtype'] = 'text'; // 设置消息类型为文本消息 $template['msgtype'] = 'text'; // 设置消息类型为文本消息
$template = json_encode($template); // 将模板数组转换为JSON字符串 $template = json_encode($template); // 将模板数组转换为JSON字符串
return Curl::callWebServer($queryUrl, $template, $queryAction); // 发起网络请求 // 发起网络请求
return Curl::callWebServer($queryUrl, $template, $queryAction);
} }
// 根据分组ID群发语音消息 // 根据分组ID群发语音消息
public static function sentVoiceByGroup($groupId, $mediaId, $isToAll=false){ public static function sentVoiceByGroup($groupId, $mediaId, $isToAll=false){
$queryUrl = 'https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=' AccessToken::getAccessToken(); // 构建请求URL // 构建请求URL包含access_token
$queryUrl = 'https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=' . AccessToken::getAccessToken();
$queryAction = 'POST'; // 请求方式为POST $queryAction = 'POST'; // 请求方式为POST
$template = array(); // 创建模板数组 $template = array(); // 创建模板数组
$template['filter']['group_id'] = $groupId; // 设置分组ID $template['filter']['group_id'] = $groupId; // 设置分组ID
@ -56,12 +67,14 @@ class AdvancedBroadcast{ // 定义一个名为AdvancedBroadcast的类用于
$template['voice']['media_id'] = $mediaId; // 设置语音消息的media_id $template['voice']['media_id'] = $mediaId; // 设置语音消息的media_id
$template['msgtype'] = 'voice'; // 设置消息类型为语音消息 $template['msgtype'] = 'voice'; // 设置消息类型为语音消息
$template = json_encode($template); // 将模板数组转换为JSON字符串 $template = json_encode($template); // 将模板数组转换为JSON字符串
return Curl::callWebServer($queryUrl, $template, $queryAction); // 发起网络请求 // 发起网络请求
return Curl::callWebServer($queryUrl, $template, $queryAction);
} }
// 根据分组ID群发图片消息 // 根据分组ID群发图片消息
public static function sentImageByGroup($groupId, $mediaId, $isToAll=false){ public static function sentImageByGroup($groupId, $mediaId, $isToAll=false){
$queryUrl = 'https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=' AccessToken::getAccessToken(); // 构建请求URL // 构建请求URL包含access_token
$queryUrl = 'https://api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=' . AccessToken::getAccessToken();
$queryAction = 'POST'; // 请求方式为POST $queryAction = 'POST'; // 请求方式为POST
$template = array(); // 创建模板数组 $template = array(); // 创建模板数组
$template['filter']['group_id'] = $groupId; // 设置分组ID $template['filter']['group_id'] = $groupId; // 设置分组ID
@ -69,20 +82,24 @@ class AdvancedBroadcast{ // 定义一个名为AdvancedBroadcast的类用于
$template['image']['media_id'] = $mediaId; // 设置图片消息的media_id $template['image']['media_id'] = $mediaId; // 设置图片消息的media_id
$template['msgtype'] = 'image'; // 设置消息类型为图片消息 $template['msgtype'] = 'image'; // 设置消息类型为图片消息
$template = json_encode($template); // 将模板数组转换为JSON字符串 $template = json_encode($template); // 将模板数组转换为JSON字符串
return Curl::callWebServer($queryUrl, $template, $queryAction); // 发起网络请求 // 发起网络请求
return Curl::callWebServer($queryUrl, $template, $queryAction);
} }
// 根据分组ID群发视频消息 // 根据分组ID群发视频消息
public static function sentVideoByGroup($mediaId, $title, $description, $groupId, $isToAll=false){ public static function sentVideoByGroup($mediaId, $title, $description, $groupId, $isToAll=false){
$queryUrl = 'https://file.api.weixin.qq.com/cgi-bin/media/uploadvideo?access_token=' AccessToken::getAccessToken(); // 构建请求URL // 构建请求URL包含access_token
$queryUrl = 'https://file.api.weixin.qq.com/cgi-bin/media/uploadvideo?access_token=' . AccessToken::getAccessToken();
$queryAction = 'POST'; // 请求方式为POST $queryAction = 'POST'; // 请求方式为POST
$template = array(); // 创建模板数组 $template = array(); // 创建模板数组
$template['media_id'] = $mediaId; // 设置视频消息的media_id $template['media_id'] = $mediaId; // 设置视频消息的media_id
$template['title'] = $title; // 设置视频标题 $template['title'] = $title; // 设置视频标题
$template['description'] = $description; // 设置视频描述 $template['description'] = $description; // 设置视频描述
$template = json_encode($template); // 将模板数组转换为JSON字符串 $template = json_encode($template); // 将模板数组转换为JSON字符串
$result = Curl::callWebServer($queryUrl, $template, $queryAction); // 发起网络请求 // 发起网络请求
if(empty($result['type']) || $result['type'] != 'video' || empty($result['media_id'])){ // 检查返回结果是否符合预期 $result = Curl::callWebServer($queryUrl, $template, $queryAction);
// 检查返回结果是否符合预期
if(empty($result['type']) || $result['type'] != 'video' || empty($result['media_id'])){
// 如果结果中没有type字段或者type不是video或者没有media_id则返回false // 如果结果中没有type字段或者type不是video或者没有media_id则返回false
return false; return false;
} }

Loading…
Cancel
Save