| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 | 
							- <?php
 
- namespace hg\apidoc\middleware;
 
- use hg\apidoc\providers\BaseService;
 
- use hg\apidoc\utils\ConfigProvider;
 
- use support\Db;
 
- use Webman\MiddlewareInterface;
 
- use Webman\Http\Response;
 
- use Webman\Http\Request;
 
- class WebmanMiddleware implements MiddlewareInterface
 
- {
 
-     use BaseService;
 
-     public function process(Request $request, callable $handler) : Response
 
-     {
 
-         $this->initConfig();
 
-         $params = $request->all();
 
-         $config =  ConfigProvider::get();
 
-         $config['request_params'] = $params;
 
-         ConfigProvider::set($config);
 
-         $response = $request->method() == 'OPTIONS' ? response('') : $handler($request);
 
-         if (!empty($config['allowCrossDomain'])){
 
-             // 给响应添加跨域相关的http头
 
-             $response->withHeaders([
 
-                 'Access-Control-Allow-Credentials' => 'true',
 
-                 'Access-Control-Allow-Origin' => $request->header('origin', '*'),
 
-                 'Access-Control-Allow-Methods' => $request->header('access-control-request-method', '*'),
 
-                 'Access-Control-Allow-Headers' => $request->header('access-control-request-headers', '*'),
 
-             ]);
 
-         }
 
-         return $response;
 
-     }
 
-     static function getApidocConfig()
 
-     {
 
-         $config = config('plugin.hg.apidoc.app.apidoc');
 
-         if (!(!empty($config['auto_url']) && !empty($config['auto_url']['filter_keys']))){
 
-             $config['auto_url']['filter_keys'] = ['app','controller'];
 
-         }
 
-         $config['app_frame'] = "webman";
 
-         return $config;
 
-     }
 
-     static function registerRoute($route)
 
-     {
 
-         return "";
 
-     }
 
-     static function databaseQuery($sql)
 
-     {
 
-         return Db::select($sql);
 
-     }
 
-     static function getRootPath()
 
-     {
 
-         return BASE_PATH."/";
 
-     }
 
-     static function getRuntimePath()
 
-     {
 
-         return BASE_PATH."/runtime/";
 
-     }
 
-     static function setLang($locale)
 
-     {
 
-         locale($locale);
 
-     }
 
-     static function getLang($lang): string
 
-     {
 
-         return $lang;
 
-     }
 
-     static function handleResponseJson($res)
 
-     {
 
-         return json($res);
 
-     }
 
-     static function getTablePrefix(){
 
-         $driver = config('database.default');
 
-         $table_prefix=config('database.connections.'.$driver.'.prefix');
 
-         return $table_prefix;
 
-     }
 
- }
 
 
  |