待发短信

在线客服
产品支持 短信宝客服
合作渠道 渠道合作
服务咨询

4001-021-502

工作时间

9:00-21:00

shopxoV6.5新增短信宝短信接口

ShopXO是国内领先的商城系统提供商,为企业提供php商城系统、微信商城、小程序。小编发现ShopXO更新到6.5.0版本,就以替换短信接口为例告诉大家如何进行二次开发,使用的短信接口是我们短信宝短信群发平台的接口,我们短信宝短信群发平台非常稳定,发送速度快,注册就送测试短信,推荐大家使用。
1:下面具体给大家说一下每个文件的作用及代码,app\admin\lang\zh.php是插件的短信配置信息,代码如下

1
2
3
4
5
6
7
8
9
10
11
12
13
  // 短信设置
    'sms'                   => [
        // 基础导航
        'base_nav_list'                         => [
            ['name' => '短信设置''type' => 'index'],
            ['name' => '消息模板''type' => 'message'],
        ],
        'top_tips'                              => '短信宝管理地址',
        'top_to_smsbao_tips'                    => '点击去短信宝购买短信',
        'top_to_smsbao_url'                    => 'http://www.smsbao.com/fee',
        'base_item_admin_title'                 => '后台',
        'base_item_index_title'                 => '前端',
    ],

2:app\admin\view\default\sms\tips.html 为购买短信按钮增加跳转链接配置

1
2
3
4
5
6
7
8
<div class="am-operate-stretch-tips">
    <div class="title">
        <i class="iconfont icon-tips"></i>
        <strong title="{{:MyLang('operate_list_tips_msg')}}">{{:MyLang('operate_list_tips_button_text')}}</strong>
        <i class="iconfont icon-contract contract" title="{{:MyLang('operate_list_tips_retract_text')}}"></i> 
    </div>
    <p class="am-text-xs">{{:MyLang('sms.top_tips')}} <a href="{{:MyLang('sms.top_to_smsbao_url')}}" class="am-margin-left-sm" target="_blank">{{:MyLang('sms.top_to_smsbao_tips')}} <i class="am-icon-external-link"></i></a> </p>
</div>

3:app\lang\zh.php 是短信日志平台的枚举类型添加及相关信息设置

1
2
3
4
5
6
7
8
9
  // 短信日志平台
    'common_sms_log_platform_list' => [
        'smsbao' => '短信宝',
    ],
    'common_sms_apikey'  => [
            'name' => '短信宝账号',
            'desc' => '短信宝账号',
            'tips' => '请填写短信宝账号',
        ],

4:app\service\ConstService.php 是短信日志平台的枚举类型配置

1
2
3
'common_sms_log_platform_list' => [
       'smsbao' => ['value' => 'smsbao''name' => MyLang('common_sms_log_platform_list.smsbao')],
 ],

5:extend\base\Sms.php 是短信宝核心发送短信类

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
public function SmsRequest($mobile, $template_value, $sign_name = '', $template_var = [])
     {
         // 签名
         $sign_name = empty($sign_name) ? $this->sign_ame : $sign_name;
 
         // 短信发送钩子
         $hook_name = 'plugins_extend_sms_send_request_handle';
         $ret = array_filter(MyEventTrigger($hook_name, [
             'hook_name'       => $hook_name,
             'is_backend'      => true,
             'sign_name'       => $sign_name,
             'mobile'          => $mobile,
             'template_value'  => $template_value,
             'template_var'    => $template_var,
         ]));
         // 存在返回值,并且存在code和mag参数,则认为是钩子处理短信的发送
 
         if(!empty($ret))
         {
             // 处理钩子数据
             $ret = EventReturnHandle($ret);
             if($ret['code'] != 0)
             {
                 $this->error = $ret['msg'];
                 return false;
             }
             return true;
         }
 
         // 请求参数
         $request_url = 'http://api.smsbao.com/sms';
         $request_params = [
            'SignName'          => $sign_name,
            'Format'            => 'JSON',
            'Version'           => '2017-05-25',
            'AccessKeyId'       => $this->access_key_id,
            'Timestamp'         => gmdate('Y-m-d\TH:i:s\Z'),
            'Action'            => 'SendSms',
            'TemplateCode'      => $template_value,
            'PhoneNumbers'      => $mobile,
         ];
         // 携带参数
         if(!empty($template_var))
         {
             if(!is_array($template_var))
             {
                 $template_var = ['code'=>$template_var];
             }             
            $request_params['SmsContent'] = str_replace('${code}',$template_var['code'],$template_value);
         }
 
         $url = $request_url.'?u='.$this->access_key_id.'&p='.md5($this->access_key_secret).'&m='.$mobile.'&c=【'.$sign_name.'】'.$request_params['SmsContent'];
 
         // 添加短信日志
         if($this->is_log == 1)
         {
             $log = SmsLogService::SmsLogAdd('smsbao', $mobile, $sign_name, $template_value, $template_var, $request_url, $request_params);
             if($log['code'] != 0)
             {
                 $this->error = $log['msg'];
                 return false;
             }
         }
 
         // 远程请求
         $ch = curl_init ();
        curl_setopt ( $ch, CURLOPT_URL, $url );
        curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
        curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, FALSE );
        curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 );
        curl_setopt ( $ch, CURLOPT_TIMEOUT, 10 );
        $result = curl_exec ( $ch );
        curl_close ( $ch );
         if($result == '0')
         {
             // 日志回调
             if($this->is_log == 1)
             {
                 SmsLogService::SmsLogResponse($log['data']['id'], 1, $result, time()-$log['data']['add_time']);
             }
 
             return true;
         }
 
         // 错误原因
         $this->error = $this->GetErrorMessage($result);
 
         // 日志回调
         if($this->is_log == 1)
         {
             SmsLogService::SmsLogResponse($log['data']['id'], 2, $result, time()-$log['data']['add_time'], $this->error);
         }
 
         return false;
     }

好了经过以上的添加,短信宝的短信平台已经替换成功了,可以正常使用了

报备一下短信宝的VIP模板,这样就可以走短信宝的优质通道了,即便遇到敏感文字我们都不会人工审核,短信内容3~5秒就可送达。

另外:我们已经开发好完整的ShopXOV6.5系统短信宝插件,点击此链接 下载及查看安装流程。

开源插件

最新更新

电商类

CMS类

微信类

文章标签