modified 完成新接口路由的升级

This commit is contained in:
zhaoxiang 2019-06-30 14:54:42 +08:00
parent 9668106808
commit 4bf044fedc
7 changed files with 16 additions and 12 deletions

View File

@ -181,13 +181,15 @@ class InterfaceList extends Base {
$tplPath = $rootPath . 'application/install/apiRoute.tpl';
$methodArr = ['*', 'POST', 'GET'];
$tplStr = file_get_contents($tplPath);
$tplOriginStr = file_get_contents($tplPath);
$listInfo = AdminList::all(['status' => 1]);
$tplStr = '';
foreach ($listInfo as $value) {
$tplStr .= 'Route::rule(\'api/' . addslashes($value->hash) . '\',\'api/' . addslashes($value->api_class) . '\', \'' . $methodArr[$value->method] . '\', [\'after_behavior\' => $afterBehavior]);';
$tplStr .= 'Route::rule(\'' . addslashes($value->hash) . '\',\'api/' . addslashes($value->api_class) . '\', \'' . $methodArr[$value->method] . '\')->middleware([\'ApiAuth\', \'ApiPermission\', \'ApiLog\']);';
}
$tplOriginStr = str_replace(['{$API_RULE}'], [$tplStr], $tplOriginStr);
file_put_contents($apiRoutePath, $tplStr);
file_put_contents($apiRoutePath, $tplOriginStr);
return $this->buildSuccess([]);
}

View File

@ -4,11 +4,12 @@ namespace app\api\controller;
use app\util\StrRandom;
use think\facade\App;
class Miss extends Base {
public function index() {
$this->debug([
'TpVersion' => THINK_VERSION,
'TpVersion' => App::version(),
'Float' => StrRandom::randomPhone()
]);

View File

@ -6,5 +6,6 @@ class ApiAuth
{
public function handle($request, \Closure $next)
{
return $next($request);
}
}

View File

@ -6,5 +6,6 @@ class ApiLog
{
public function handle($request, \Closure $next)
{
return $next($request);
}
}

View File

@ -6,5 +6,6 @@ class ApiPermission
{
public function handle($request, \Closure $next)
{
return $next($request);
}
}

View File

@ -6,5 +6,6 @@ class ApiResponse
{
public function handle($request, \Closure $next)
{
return $next($request);
}
}

View File

@ -3,13 +3,10 @@
* Api路由
*/
use think\Route;
use think\facade\Route;
Route::group('api', function () {
Route::group('api', function() {
{$API_RULE}
//MISS路由定义
Route::miss('api/Miss/index');
});
$afterBehavior = [
'\app\api\behavior\ApiAuth',
'\app\api\behavior\ApiPermission',
'\app\api\behavior\RequestFilter'
];
})->middleware('ApiResponse');