1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- namespace app\common\service;
- use app\common\library\Sms;
- use app\common\model\MobileOrder;
- class SmsSend{
- protected $mobile;
- protected $code;
- protected $event;
- /**
- * @param mixed $mobile
- */
- public static function setMobile($mobile)
- {
- $clss=new self;
- $clss->mobile = $mobile;
- return $clss;
- }
- /**
- * @param mixed $code
- */
- public function setCode($code)
- {
- $this->code = $code;
- return $this;
- }
- /**
- * @param mixed $event
- */
- public function setEvent($event)
- {
- $this->event = $event;
- return $this;
- }
- public function check(){
- $config=config('site.system_sms_open');
- if(!$config){
- return;
- }
- if(!Sms::check($this->mobile,$this->code,$this->event)){
- throw_user('验证码错误');
- }
- }
- public static function orderSend($mobile,$transName,$transNo){
- return Sms::send($mobile,null,'temp_send_order','temp_send_order',[
- 'expresscorp'=>$transName,
- 'expressno'=>$transNo
- ]);
- }
- public static function orderUnPay($mobile,$no){
- return Sms::send($mobile,null,'temp_unpay','temp_unpay',[
- ]);
- }
- public static function orderSubmit($mobile){
- return Sms::send($mobile,null,'temp_submit_order','temp_submit_order');
- }
- public static function orderPayed($mobile){
- return Sms::send($mobile,null,'temp_payed_order','temp_payed_order',[
- ]);
- }
- public static function orderRefund($mobile){
- return Sms::send($mobile,null,'temp_refund_order','temp_refund_order',[
- ]);
- }
- public static function mobileDown($mobile){
- return Sms::send($mobile,null,'temp_down','temp_down',[
- ]);
- }
- public static function orderedSupplyNotice(MobileOrder $order){
- $phone=$order->proxy()->value('phone');
- if($phone) {
- return Sms::send($phone, null, 'temp_supply_notice', 'temp_supply_notice', [
- ]);
- }
- }
- }
|