123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <?php
- namespace app\api\controller;
- use AlibabaCloud\Client\AlibabaCloud;
- use AlibabaCloud\Client\Exception\ClientException;
- use AlibabaCloud\Client\Exception\ServerException;
- use think\Db;
- use think\Exception;
- use EasyWeChat\Factory;
- use function AlibabaCloud\Client\value;
- /**
- * @title 其他接口
- * @controller General
- * @group base
- */
- class General extends Base
- {
- public function initialize()
- {
- parent::check_login();
- }
- /**
- * @title 发送短信验证码
- * @desc 发送短信验证码
- * @author qc
- * @url /api/General/sendSms
- * @method POST
- * @tag 短信验证码
- * @param name:phone type:int require:1 default:-- desc:要获取验证码的手机号
- * @return name:code type:string default:-- desc:验证码
- */
- public function sendSms(){
- $phone = input('post.phone');
- if(empty($phone)) $this ->error('参数错误');
- $code = rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9).rand(0,9);
- AlibabaCloud::accessKeyClient('LTAI5t76oDeTRvdNWZjs4oGd', '8Z1zyFjtaF4v9kdjJeWnlFVx3xhtEF')
- ->regionId('cn-hangzhou')->asDefaultClient();
- try {
- $result = AlibabaCloud::rpc()
- ->product('Dysmsapi')
- ->version('2017-05-25')
- ->action('SendSms')
- ->method('POST')
- ->host('dysmsapi.aliyuncs.com')
- ->options([
- 'query' => [
- 'RegionId' => "cn-hangzhou",
- 'PhoneNumbers' => $phone,
- 'SignName' => "沐风文化",
- 'TemplateCode' => "SMS_233057543",
- 'TemplateParam' => json_encode(array("code"=>$code)),
- ],
- ])->request();
- $result = $result->toArray();
- if($result['Code'] == "OK") {
- $sms_data = array(
- 'phone'=>$phone,
- 'code'=>$code,
- 'result'=>$result['Message']
- );
- Db::name('store_member_sms')->insert($sms_data);
- $this->error('发送成功',$code);
- }else{
- $this->error('发送失败');
- }
- } catch (ClientException $e) {
- echo $e->getErrorMessage() . PHP_EOL;
- } catch (ServerException $e) {
- echo $e->getErrorMessage() . PHP_EOL;
- }
- }
- /**
- * @title 获取消息
- * @desc 获取消息
- * @author qc
- * @url /api/General/getUserMessage
- * @method GET
- * @header name:Authorization require:1 desc:Token
- * @param name:page type:int default:1 desc:页数
- * @param name:page_num type:int : default:20 desc:每页数
- * @return name:create_at type:string default:-- desc:时间
- * @return name:content type:string default:-- desc:内容
- * @return name:type_id type:int default:-- desc:类型(1中奖消息2平台消息)
- */
- public function getUserMessage()
- {
- $list = Db::table('user_message')
- ->where('user_id',$this->uid)
- ->limit($this->off_set,$this->page_num)
- ->order('id desc')
- ->select();
- $this->success('ok',['list'=>$list]);
- }
- /**
- * @title 获取二维码
- * @desc 获取二维码
- * @author qc
- * @url /api/General/getQrCode
- * @method GET
- * @header name:Authorization require:1 desc:Token
- * @param name:goods_id type:int require:1 default:0 desc:商品id
- * @return name:url type:string default:-- desc:链接
- * @return name:share_img type:string default:-- desc:图片
- * @return name:name type:string default:-- desc:名称
- */
- public function getQrCode(){
- $goods_id = input('goods_id',0);
- //$scene = 'pid='.$this->uid.'&goods_id='.$goods_id;
- $scene = $this->uid.','.$goods_id;
- $title = '更多数字作品等你发现';//
- $url = Db::table('invite_img_url')->where(['user_id'=>$this->uid,'goods_id'=>$goods_id])->value('url');
- $goods_info = Db::table('store_goods')
- ->field('id,name,share_img')
- ->find($goods_id);
- if($url) $this->success(['url'=>$url.'?'.time(),'share_img'=>$goods_info['share_img'],'name'=>$goods_info['name'],'title'=>$title]);
- $app = Factory::miniProgram(Config('mini_program'));
- $response = $app->app_code->getUnlimit($scene, [
- 'page' => 'pages/index/goodsinfo',
- 'width' => 600,
- 'check_path' => false,
- ]);
- $root_path = env('root_path').'public';
- $path = '/qr_code/'.$goods_id;
- $code_path = $root_path.$path;
- $code_name = $this->uid.'.png';
- if ($response instanceof \EasyWeChat\Kernel\Http\StreamResponse) {
- $filename = $response->saveAs($code_path, $code_name);
- if ($filename){
- $url = 'https://'.$_SERVER['SERVER_NAME'].$path.'/'.$code_name;
- $invite_url = [
- 'user_id' => $this->uid,
- 'goods_id' => $goods_id,
- 'create_at' => date('Y-m-d H:i:s'),
- 'url' => $url,
- ];
- Db::table('invite_img_url')->insert($invite_url);
- $this->success(['url'=>$url,'share_img'=>$goods_info['share_img'],'name'=>$goods_info['name'],'title'=>$title]);
- }else{
- $this->error('未生成小程序码1');
- }
- }else{
- $this->error('未生成小程序码2');
- }
- }
- }
|