Aliyunsms.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. <?php
  2. namespace addons\aliyunsms\library;
  3. use AlibabaCloud\Client\AlibabaCloud;
  4. class Aliyunsms
  5. {
  6. private $_params = [];
  7. protected $error = '';
  8. protected $config = [];
  9. protected static $instance = null;
  10. protected $statusStr = array(
  11. "0" => "短信发送成功",
  12. "-1" => "参数不全",
  13. "-2" => "服务器空间不支持,请确认支持curl或者fsocket,联系您的空间商解决或者更换空间!",
  14. "30" => "密码错误",
  15. "40" => "账号不存在",
  16. "41" => "余额不足",
  17. "42" => "帐户已过期",
  18. "43" => "IP地址限制",
  19. "50" => "内容含有敏感词"
  20. );
  21. protected $bindParams=[];
  22. protected $tempCode;
  23. protected $code;
  24. /**
  25. * Aliyunsms constructor.
  26. * @param array $options
  27. * @throws \AlibabaCloud\Client\Exception\ClientException
  28. */
  29. public function __construct($options = [])
  30. {
  31. if ($config = get_addon_config('aliyunsms')) {
  32. $this->config = array_merge($this->config, $config);
  33. }
  34. $this->config = array_merge($this->config, is_array($options) ? $options : []);
  35. AlibabaCloud::accessKeyClient($this->config['accessKeyId'], $this->config['accessSecret'])
  36. ->regionId($this->config['regionId'])
  37. ->asDefaultClient();
  38. }
  39. /**
  40. * 单例
  41. * @param array $options 参数
  42. * @return Aliyunsms
  43. */
  44. public static function instance($options = [])
  45. {
  46. if (is_null(self::$instance)) {
  47. self::$instance = new static($options);
  48. }
  49. return self::$instance;
  50. }
  51. /**
  52. * 立即发送短信
  53. *
  54. * @return boolean
  55. * @throws \AlibabaCloud\Client\Exception\ClientException
  56. * @throws \AlibabaCloud\Client\Exception\ServerException
  57. */
  58. public function send()
  59. {
  60. $this->error = '';
  61. $params = $this->_params();
  62. $params_post = [
  63. 'code' => $this->code,
  64. ];
  65. $params_post=array_merge($params_post,$this->bindParams);
  66. $result = AlibabaCloud::rpc()
  67. ->product('Dysmsapi')
  68. // ->scheme('https') // https | http
  69. ->version('2017-05-25')
  70. ->action('SendSms')
  71. ->method('POST')
  72. ->host('dysmsapi.aliyuncs.com')
  73. ->options([
  74. 'query' => $allParams=[
  75. 'RegionId' => $this->config['regionId'],
  76. 'PhoneNumbers' => $this->_params['mobile'],
  77. 'SignName' => $this->config['signName'],
  78. 'TemplateCode' => $this->config[$this->tempCode]??'',
  79. 'TemplateParam' => json_encode($params_post),
  80. ],
  81. ])
  82. ->request();
  83. $result = $result->toArray();
  84. user_log('sms',compact('allParams','result'));
  85. if ($result['Code'] == "OK") {
  86. return true;
  87. } else {
  88. $this->error = $result['Message'];
  89. }
  90. return false;
  91. }
  92. private function _params()
  93. {
  94. return $this->_params;
  95. }
  96. /**
  97. * 获取错误信息
  98. * @return string
  99. */
  100. public function getError()
  101. {
  102. return $this->error;
  103. }
  104. /**
  105. * 接收手机
  106. * @param string $mobile 手机号码
  107. * @return Aliyunsms
  108. */
  109. public function mobile($mobile = '')
  110. {
  111. $this->_params['mobile'] = $mobile;
  112. return $this;
  113. }
  114. /**
  115. * 短信内容
  116. * @param string $msg 短信内容
  117. * @return Aliyunsms
  118. */
  119. public function msg($msg = '')
  120. {
  121. $this->_params['msg'] = $msg;
  122. return $this;
  123. }
  124. public function bind($params){
  125. $this->bindParams = $params;
  126. return $this;
  127. }
  128. public function code($code){
  129. $this->code = $code;
  130. return $this;
  131. }
  132. public function tempCode($tmpCode){
  133. $this->tempCode = $tmpCode;
  134. return $this;
  135. }
  136. }