mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
79 lines
2.6 KiB
PHP
79 lines
2.6 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://demo.thinkadmin.top
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
|
||
// | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\service\controller\api;
|
||
|
||
use app\service\service\WechatService;
|
||
use think\admin\Controller;
|
||
use think\Exception;
|
||
|
||
/**
|
||
* 接口获取实例化
|
||
* Class Client
|
||
* @package app\service\controller\api
|
||
*/
|
||
class Client extends Controller
|
||
{
|
||
/**
|
||
* YAR 接口标准对接
|
||
* @return string
|
||
*/
|
||
public function yar()
|
||
{
|
||
try {
|
||
$service = new \Yar_Server($this->instance());
|
||
$service->handle();
|
||
} catch (\Exception $exception) {
|
||
return $exception->getMessage();
|
||
}
|
||
}
|
||
|
||
/**
|
||
* SOAP 接口标准对接
|
||
* @return string
|
||
*/
|
||
public function soap()
|
||
{
|
||
try {
|
||
$service = new \SoapServer(null, ['uri' => 'thinkadmin']);
|
||
$service->setObject($this->instance());
|
||
$service->handle();
|
||
} catch (\Exception $exception) {
|
||
return $exception->getMessage();
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 远程获取实例对象
|
||
* @return mixed|\Exception
|
||
*/
|
||
private function instance()
|
||
{
|
||
try {
|
||
$code = $this->app->request->get('code', '');
|
||
$data = json_decode(debase64url($code), true);
|
||
list($class, $appid, $time, $sign) = [$data['class'], $data['appid'], $data['time'], $data['sign']];
|
||
$config = $this->app->db->name('WechatServiceConfig')->where(['authorizer_appid' => $appid])->find();
|
||
if (empty($config)) throw new Exception("抱歉,该公众号{$appid}未授权!");
|
||
if (md5("{$class}#{$appid}#{$config['appkey']}#{$time}") !== $sign) {
|
||
throw new Exception("抱歉,该公众号{$appid}签名异常!");
|
||
}
|
||
return WechatService::$class($appid);
|
||
} catch (\Exception $exception) {
|
||
return new \Exception($exception->getMessage(), $exception->getCode());
|
||
}
|
||
}
|
||
}
|