[更新]增加微信测试模块

This commit is contained in:
Anyon 2018-03-17 13:06:33 +08:00
parent a0678f22d5
commit 0840899692
2 changed files with 55 additions and 0 deletions

View File

@ -15,6 +15,7 @@
namespace app\wechat\controller\api;
use controller\BasicAdmin;
use Endroid\QrCode\QrCode;
use service\WechatService;
/**
@ -36,6 +37,19 @@ class Tools extends BasicAdmin
return $this->fetch('', ['fans' => $fans]);
}
/**
* 显示网页授权二维码
* @return \think\Response
* @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
* @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
* @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
*/
public function oauth_qrc()
{
$url = url('@wechat/api.tools/oauth', '', true, true);
return $this->createQrc($url);
}
/**
* JSSDK测试
* @return string
@ -47,4 +61,32 @@ class Tools extends BasicAdmin
return $this->fetch('', ['options' => $options]);
}
/**
* 显示网页授权二维码
* @return \think\Response
* @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
* @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
* @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
*/
public function jssdk_qrc()
{
$url = url('@wechat/api.tools/jssdk', '', true, true);
return $this->createQrc($url);
}
/**
* 创建二维码响应对应
* @param string $url 二维码内容
* @return \think\Response
* @throws \Endroid\QrCode\Exceptions\ImageFunctionFailedException
* @throws \Endroid\QrCode\Exceptions\ImageFunctionUnknownException
* @throws \Endroid\QrCode\Exceptions\ImageTypeInvalidException
*/
protected function createQrc($url)
{
$qrCode = new QrCode();
$qrCode->setText($url)->setSize(300)->setPadding(20)->setImageType(QrCode::IMAGE_TYPE_PNG);
return \think\facade\Response::header('Content-Type', 'image/png')->data($qrCode->get());
}
}

View File

@ -19,6 +19,19 @@
</div>
</div>
</div>
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-10 padding-bottom-20">
<div class="pull-left padding-right-15 notselect" style="margin-left:-10px">
<img data-tips-image src="{:url('@wechat/api.tools/oauth_qrc')}" style="width:80px;">
<p class="text-center">网页授权</p>
</div>
<div class="pull-left padding-left-0">
<img data-tips-image src="{:url('@wechat/api.tools/oauth_qrc')}" style="width:80px;">
<p class="text-center">JSSDK签名</p>
</div>
</div>
</div>
<div class="hr-line-dashed"></div>
<!--{/if}-->