General.php 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <?php
  2. namespace app\api\controller;
  3. use AlibabaCloud\Client\AlibabaCloud;
  4. use AlibabaCloud\Client\Exception\ClientException;
  5. use AlibabaCloud\Client\Exception\ServerException;
  6. use think\Db;
  7. use think\Exception;
  8. use EasyWeChat\Factory;
  9. use function AlibabaCloud\Client\value;
  10. /**
  11. * @title 其他接口
  12. * @controller General
  13. * @group base
  14. */
  15. class General extends Base
  16. {
  17. public function initialize()
  18. {
  19. parent::check_login();
  20. }
  21. /**
  22. * @title 发送短信验证码
  23. * @desc 发送短信验证码
  24. * @author qc
  25. * @url /api/General/sendSms
  26. * @method POST
  27. * @tag 短信验证码
  28. * @param name:phone type:int require:1 default:-- desc:要获取验证码的手机号
  29. * @return name:code type:string default:-- desc:验证码
  30. */
  31. public function sendSms(){
  32. $phone = input('post.phone');
  33. if(empty($phone)) $this ->error('参数错误');
  34. $code = rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9);
  35. AlibabaCloud::accessKeyClient('LTAI5t76oDeTRvdNWZjs4oGd', '8Z1zyFjtaF4v9kdjJeWnlFVx3xhtEF')
  36. ->regionId('cn-hangzhou')->asDefaultClient();
  37. try {
  38. $result = AlibabaCloud::rpc()
  39. ->product('Dysmsapi')
  40. ->version('2017-05-25')
  41. ->action('SendSms')
  42. ->method('POST')
  43. ->host('dysmsapi.aliyuncs.com')
  44. ->options([
  45. 'query' => [
  46. 'RegionId' => "cn-hangzhou",
  47. 'PhoneNumbers' => $phone,
  48. 'SignName' => "沐风文化",
  49. 'TemplateCode' => "SMS_233057543",
  50. 'TemplateParam' => json_encode(array("code"=>$code)),
  51. ],
  52. ])->request();
  53. $result = $result->toArray();
  54. if($result['Code'] == "OK") {
  55. $sms_data = array(
  56. 'phone'=>$phone,
  57. 'code'=>$code,
  58. 'result'=>$result['Message']
  59. );
  60. Db::name('store_member_sms')->insert($sms_data);
  61. $this->error('发送成功',$code);
  62. }else{
  63. $this->error('发送失败');
  64. }
  65. } catch (ClientException $e) {
  66. echo $e->getErrorMessage() . PHP_EOL;
  67. } catch (ServerException $e) {
  68. echo $e->getErrorMessage() . PHP_EOL;
  69. }
  70. }
  71. /**
  72. * @title 获取消息
  73. * @desc 获取消息
  74. * @author qc
  75. * @url /api/General/getUserMessage
  76. * @method GET
  77. * @header name:Authorization require:1 desc:Token
  78. * @param name:page type:int default:1 desc:页数
  79. * @param name:page_num type:int : default:20 desc:每页数
  80. * @return name:create_at type:string default:-- desc:时间
  81. * @return name:content type:string default:-- desc:内容
  82. * @return name:type_id type:int default:-- desc:类型(1中奖消息2平台消息)
  83. */
  84. public function getUserMessage()
  85. {
  86. $list = Db::table('user_message')
  87. ->where('user_id',$this->uid)
  88. ->limit($this->off_set,$this->page_num)
  89. ->order('id desc')
  90. ->select();
  91. $this->success('ok',['list'=>$list]);
  92. }
  93. /**
  94. * @title 获取二维码
  95. * @desc 获取二维码
  96. * @author qc
  97. * @url /api/General/getQrCode
  98. * @method GET
  99. * @header name:Authorization require:1 desc:Token
  100. * @param name:goods_id type:int require:1 default:0 desc:商品id
  101. * @return name:url type:string default:-- desc:链接
  102. * @return name:share_img type:string default:-- desc:图片
  103. * @return name:name type:string default:-- desc:名称
  104. */
  105. public function getQrCode(){
  106. $goods_id = input('goods_id',0);
  107. //$scene = 'pid='.$this->uid.'&goods_id='.$goods_id;
  108. $scene = $this->uid.','.$goods_id;
  109. $title = '更多数字作品等你发现';//
  110. $url = Db::table('invite_img_url')->where(['user_id'=>$this->uid,'goods_id'=>$goods_id])->value('url');
  111. $goods_info = Db::table('store_goods')
  112. ->field('id,name,share_img')
  113. ->find($goods_id);
  114. if($url) $this->success(['url'=>$url.'?'.time(),'share_img'=>$goods_info['share_img'],'name'=>$goods_info['name'],'title'=>$title]);
  115. $app = Factory::miniProgram(Config('mini_program'));
  116. $response = $app->app_code->getUnlimit($scene, [
  117. 'page' => 'pages/index/goodsinfo',
  118. 'width' => 600,
  119. 'check_path' => false,
  120. ]);
  121. $root_path = env('root_path').'public';
  122. $path = '/qr_code/'.$goods_id;
  123. $code_path = $root_path.$path;
  124. $code_name = $this->uid.'.png';
  125. if ($response instanceof \EasyWeChat\Kernel\Http\StreamResponse) {
  126. $filename = $response->saveAs($code_path, $code_name);
  127. if ($filename){
  128. $url = 'https://'.$_SERVER['SERVER_NAME'].$path.'/'.$code_name;
  129. $invite_url = [
  130. 'user_id' => $this->uid,
  131. 'goods_id' => $goods_id,
  132. 'create_at' => date('Y-m-d H:i:s'),
  133. 'url' => $url,
  134. ];
  135. Db::table('invite_img_url')->insert($invite_url);
  136. $this->success(['url'=>$url,'share_img'=>$goods_info['share_img'],'name'=>$goods_info['name'],'title'=>$title]);
  137. }else{
  138. $this->error('未生成小程序码1');
  139. }
  140. }else{
  141. $this->error('未生成小程序码2');
  142. }
  143. }
  144. }