SmsSend.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?php
  2. namespace app\common\service;
  3. use app\common\library\Sms;
  4. use app\common\model\MobileOrder;
  5. class SmsSend{
  6. protected $mobile;
  7. protected $code;
  8. protected $event;
  9. /**
  10. * @param mixed $mobile
  11. */
  12. public static function setMobile($mobile)
  13. {
  14. $clss=new self;
  15. $clss->mobile = $mobile;
  16. return $clss;
  17. }
  18. /**
  19. * @param mixed $code
  20. */
  21. public function setCode($code)
  22. {
  23. $this->code = $code;
  24. return $this;
  25. }
  26. /**
  27. * @param mixed $event
  28. */
  29. public function setEvent($event)
  30. {
  31. $this->event = $event;
  32. return $this;
  33. }
  34. public function check(){
  35. $config=config('site.system_sms_open');
  36. if(!$config){
  37. return;
  38. }
  39. if(!Sms::check($this->mobile,$this->code,$this->event)){
  40. throw_user('验证码错误');
  41. }
  42. }
  43. public static function orderSend($mobile,$transName,$transNo){
  44. return Sms::send($mobile,null,'temp_send_order','temp_send_order',[
  45. 'expresscorp'=>$transName,
  46. 'expressno'=>$transNo
  47. ]);
  48. }
  49. public static function orderUnPay($mobile,$no){
  50. return Sms::send($mobile,null,'temp_unpay','temp_unpay',[
  51. ]);
  52. }
  53. public static function orderSubmit($mobile){
  54. return Sms::send($mobile,null,'temp_submit_order','temp_submit_order');
  55. }
  56. public static function orderPayed($mobile){
  57. return Sms::send($mobile,null,'temp_payed_order','temp_payed_order',[
  58. ]);
  59. }
  60. public static function orderRefund($mobile){
  61. return Sms::send($mobile,null,'temp_refund_order','temp_refund_order',[
  62. ]);
  63. }
  64. public static function mobileDown($mobile){
  65. return Sms::send($mobile,null,'temp_down','temp_down',[
  66. ]);
  67. }
  68. public static function orderedSupplyNotice(MobileOrder $order){
  69. $phone=$order->proxy()->value('phone');
  70. if($phone) {
  71. return Sms::send($phone, null, 'temp_supply_notice', 'temp_supply_notice', [
  72. ]);
  73. }
  74. }
  75. }