Sms.php 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catchAdmin\sms;
  12. use catchAdmin\sms\model\SmsConfig;
  13. use catcher\exceptions\FailedException;
  14. use Overtrue\EasySms\EasySms;
  15. use think\helper\Str;
  16. class Sms
  17. {
  18. /**
  19. * timeout http 请求时间
  20. *
  21. * @var int
  22. */
  23. protected $timeout = 5;
  24. /**
  25. * 错误日志
  26. *
  27. * @var string
  28. */
  29. protected $errorLog;
  30. /**
  31. * 网关
  32. *
  33. * @var array
  34. */
  35. protected $gateways = [];
  36. /**
  37. * 配置
  38. *
  39. * @var array
  40. */
  41. protected $config = [];
  42. /**
  43. * 发送数据
  44. *
  45. * @var array
  46. */
  47. protected $sendData = [];
  48. /**
  49. * Sms constructor.
  50. * @param $config
  51. */
  52. public function __construct(array $config)
  53. {
  54. $config['timeout'] = $this->timeout;
  55. $config['gateways']['errorlog'] = runtime_path('log') . 'sms.log';
  56. $this->config = $config;
  57. }
  58. /**
  59. * 发送
  60. *
  61. * @time 2020年09月17日
  62. * @param string $phone
  63. * @param array $data
  64. * @return mixed
  65. * @throws \Overtrue\EasySms\Exceptions\NoGatewayAvailableException
  66. * @throws \Overtrue\EasySms\Exceptions\InvalidArgumentException
  67. */
  68. public function send(string $phone, array $data)
  69. {
  70. try {
  71. $this->sendData['data'] = $data;
  72. return $this->easySms()
  73. ->send($phone, $this->sendData);
  74. } catch (\Exception $exception) {
  75. throw new FailedException($exception->getMessage());
  76. }
  77. }
  78. /**
  79. * easy sms
  80. *
  81. * @time 2020年09月17日
  82. * @return EasySms
  83. */
  84. public function easySms()
  85. {
  86. return new EasySms($this->config);
  87. }
  88. /**
  89. * 内容
  90. *
  91. * @time 2020年09月17日
  92. * @param $content
  93. * @param string $key
  94. * @return $this
  95. */
  96. public function content($content, $key = 'content')
  97. {
  98. $this->sendData[$key] = $content;
  99. return $this;
  100. }
  101. /**
  102. * 模版
  103. *
  104. * @time 2020年09月17日
  105. * @param $template
  106. * @param string $key
  107. * @return $this
  108. */
  109. public function template($template, $key = 'template')
  110. {
  111. $this->sendData[$key] = $template;
  112. return $this;
  113. }
  114. /**
  115. * 超时间时间 s
  116. *
  117. * @time 2020年09月17日
  118. * @param int $timeout
  119. * @return $this
  120. */
  121. public function timeout(int $timeout)
  122. {
  123. $this->config['timeout'] = $timeout;
  124. return $this;
  125. }
  126. /**
  127. * 记录记录地址
  128. *
  129. * @time 2020年09月17日
  130. * @param string $log
  131. * @return $this
  132. */
  133. public function errorLog(string $log)
  134. {
  135. $this->config['gateways']['errorlog'] = $log;
  136. return $this;
  137. }
  138. /**
  139. * gateways config
  140. *
  141. * @time 2020年09月17日
  142. * @param $gateways
  143. * @throws \think\db\exception\DataNotFoundException
  144. * @throws \think\db\exception\DbException
  145. * @throws \think\db\exception\ModelNotFoundException
  146. * @return array
  147. */
  148. protected static function getGatewaysConfig($gateways)
  149. {
  150. $gatewaysConfig = [];
  151. $smsConfig = new SmsConfig();
  152. foreach ($gateways as $gate) {
  153. $c = $smsConfig->findByName($gate);
  154. if ($c) {
  155. $c->hasConfig()
  156. ->select()
  157. ->each(function ($item) use (&$gatewaysConfig, $gate){
  158. $gatewaysConfig[$gate][$item['key']] = $item['value'];
  159. });
  160. }
  161. }
  162. return $gatewaysConfig;
  163. }
  164. /**
  165. * sms
  166. *
  167. * @time 2020年09月17日
  168. * @param $method
  169. * @param $arg
  170. * @throws \think\db\exception\DataNotFoundException
  171. * @throws \think\db\exception\DbException
  172. * @throws \think\db\exception\ModelNotFoundException
  173. * @return Sms
  174. */
  175. public static function __callStatic($method, $arg)
  176. {
  177. $gateways = Str::snake($method);
  178. if (Str::contains($gateways, '_')) {
  179. $gateways = explode('_', $gateways);
  180. } else {
  181. $gateways = [$gateways];
  182. }
  183. $config = [
  184. 'default' => [
  185. 'gateways' => $gateways,
  186. ],
  187. 'gateways' => static::getGatewaysConfig($gateways)
  188. ];
  189. return new self($config);
  190. }
  191. }