├── .dockerignore ├── .gitignore ├── Kite.Gateway.sln ├── README.en.md ├── README.md ├── admin └── Kite.Gateway.Admin │ ├── .config │ └── dotnet-tools.json │ ├── App.razor │ ├── Controllers │ └── RefreshController.cs │ ├── Core │ └── AuthorizationServerStorage.cs │ ├── Dockerfile │ ├── GatewayAdminModule.cs │ ├── Kite.Gateway.Admin.csproj │ ├── Pages │ ├── Administrator │ │ ├── Administrator.razor │ │ ├── Login.razor │ │ ├── Login.razor.css │ │ ├── Logout.razor │ │ ├── Logout.razor.css │ │ ├── NewAdministrator.razor │ │ └── UpdateAdministrator.razor │ ├── Authorization │ │ └── Authentication.razor │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Home.razor │ ├── Middleware │ │ ├── Middleware.razor │ │ ├── NewMiddleware.razor │ │ └── UpdateMiddleware.razor │ ├── Node │ │ ├── NewNode.razor │ │ ├── Node.razor │ │ ├── RefreshConfigure.razor │ │ └── UpdateNode.razor │ ├── PaginationComponent.razor │ ├── ServiceGovernance │ │ └── ServiceGovernance.razor │ ├── Whitelist │ │ ├── NewWhitelist.razor │ │ ├── UpdateWhitelist.razor │ │ └── WhiteList.razor │ ├── Yarp │ │ ├── NewRoute.razor │ │ ├── Route.razor │ │ └── UpdateRoute.razor │ ├── _Host.cshtml │ └── _Layout.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Shared │ ├── MainLayout.razor │ ├── MainLayout.razor.cs │ ├── MainLayout.razor.css │ └── SimpleLayout.razor │ ├── _Imports.razor │ ├── appsettings.json │ ├── data │ └── KiteGateway.db │ └── wwwroot │ ├── css │ ├── bootstrap │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── open-iconic │ │ ├── FONT-LICENSE │ │ ├── ICON-LICENSE │ │ ├── README.md │ │ └── font │ │ │ ├── css │ │ │ └── open-iconic-bootstrap.min.css │ │ │ └── fonts │ │ │ ├── open-iconic.eot │ │ │ ├── open-iconic.otf │ │ │ ├── open-iconic.svg │ │ │ ├── open-iconic.ttf │ │ │ └── open-iconic.woff │ ├── signin.css │ └── site.css │ ├── favicon.ico │ ├── images │ └── kitelogo.png │ └── upload │ └── 微信图片_20230107141853.png ├── simples ├── Kite.Simple.Account │ ├── Authorization │ │ ├── ClaimModel.cs │ │ ├── IJwtTokenManager.cs │ │ ├── JwtTokenAuthenticateResult.cs │ │ ├── JwtTokenManager.cs │ │ ├── JwtTokenOptions.cs │ │ └── JwtTokenResult.cs │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── LoginController.cs │ │ ├── MiddlewareController.cs │ │ └── WeatherForecastController.cs │ ├── Kite.Simple.Account.csproj │ ├── Models │ │ ├── AccountLoginDto.cs │ │ ├── AccountLoginResultDto.cs │ │ └── CreateAccountDto.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── WeatherForecast.cs │ └── appsettings.json ├── Kite.Simple.Order │ ├── Controllers │ │ ├── OrderController.cs │ │ └── WeatherForecastController.cs │ ├── Kite.Simple.Order.csproj │ ├── Models │ │ └── CreateOrderDto.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── WeatherForecast.cs │ └── appsettings.json └── Kite.SimpleServices.sln ├── src ├── Kite.Gateway.Application.Contracts │ ├── ApplicationContractsModule.cs │ ├── Dtos │ │ ├── Administrator │ │ │ ├── AdministratorDto.cs │ │ │ ├── CreateAdministratorDto.cs │ │ │ ├── LoginAdministratorDto.cs │ │ │ └── UpdateAdministratorDto.cs │ │ ├── Authorization │ │ │ └── SaveAuthenticationDto.cs │ │ ├── Middleware │ │ │ ├── CreateMiddlewareDto.cs │ │ │ ├── MiddlewareDto.cs │ │ │ ├── MiddlewareListDto.cs │ │ │ └── UpdateMiddlewareDto.cs │ │ ├── Node │ │ │ ├── CreateNodeDto.cs │ │ │ ├── NodeDto.cs │ │ │ ├── ReloadConfigureDto.cs │ │ │ └── UpdateNodeDto.cs │ │ ├── RefreshConfigureDto.cs │ │ ├── ReverseProxy │ │ │ ├── ClusterDestinationDto.cs │ │ │ ├── ClusterDto.cs │ │ │ ├── ClusterHealthCheckDto.cs │ │ │ ├── CreateRouteDto.cs │ │ │ ├── RouteDto.cs │ │ │ ├── RouteMainDto.cs │ │ │ ├── RoutePageDto.cs │ │ │ ├── RouteTransformDto.cs │ │ │ └── UpdateRouteDto.cs │ │ ├── ServiceGovernance │ │ │ └── ServiceGovernanceConfigureDto.cs │ │ ├── ValidateTokenDto.cs │ │ └── Whitelist │ │ │ ├── CreateWhitelistDto.cs │ │ │ ├── UpdateWhitelistDto.cs │ │ │ └── WhitelistDto.cs │ ├── Http │ │ └── SimpleHttpException.cs │ ├── IAdministratorAppService.cs │ ├── IAuthorizationAppService.cs │ ├── IConfigureAppService.cs │ ├── IMiddlewareAppService.cs │ ├── INodeAppService.cs │ ├── IRefreshAppService.cs │ ├── IRouteAppService.cs │ ├── IServiceGovernanceAppService.cs │ ├── IWhitelistAppService.cs │ ├── Kite.Gateway.Application.Contracts.csproj │ ├── KitePageResult.cs │ └── KiteResult.cs ├── Kite.Gateway.Application │ ├── AdministratorAppService.cs │ ├── ApplicationModule.cs │ ├── AuthorizationAppService.cs │ ├── BaseApplicationService.cs │ ├── ConfigureAppService.cs │ ├── Kite.Gateway.Application.csproj │ ├── MiddlewareAppService.cs │ ├── NodeAppService.cs │ ├── RefreshAppService.cs │ ├── RouteAppService.cs │ ├── ServiceGovernanceAppService.cs │ └── WhitelistAppService.cs ├── Kite.Gateway.Domain.Shared │ ├── DomainSharedModule.cs │ ├── Enums │ │ ├── FilterTypeEnum.cs │ │ ├── ServiceGovernanceType.cs │ │ └── SignalTypeEnum.cs │ ├── Kite.Gateway.Domain.Shared.csproj │ ├── Options │ │ ├── AuthenticationOption.cs │ │ ├── ClusterDestinationOption.cs │ │ ├── ClusterHealthCheckOption.cs │ │ ├── ClusterOption.cs │ │ ├── KiteGatewayOption.cs │ │ ├── MiddlewareOption.cs │ │ ├── RouteOption.cs │ │ ├── RouteTransformOption.cs │ │ ├── WhitelistOption.cs │ │ └── YarpOption.cs │ └── TextHelper.cs ├── Kite.Gateway.Domain │ ├── Administrator │ │ ├── AdministratorManager.cs │ │ └── IAdministratorManager.cs │ ├── Authorization │ │ ├── AuthenticationManager.cs │ │ ├── ClaimModel.cs │ │ ├── IAuthenticationManager.cs │ │ ├── IJwtTokenManager.cs │ │ ├── JwtTokenManager.cs │ │ ├── JwtTokenOptions.cs │ │ └── JwtTokenValidationResult.cs │ ├── ConfigureManager.cs │ ├── DomainModule.cs │ ├── Entities │ │ ├── Administrator.cs │ │ ├── AuthenticationConfigure.cs │ │ ├── Cluster.cs │ │ ├── ClusterDestination.cs │ │ ├── ClusterHealthCheck.cs │ │ ├── Middleware.cs │ │ ├── Node.cs │ │ ├── Route.cs │ │ ├── RouteTransform.cs │ │ ├── ServiceGovernanceConfigure.cs │ │ └── Whitelist.cs │ ├── IConfigureManager.cs │ ├── Kite.Gateway.Domain.csproj │ ├── Middlewares │ │ ├── IMiddlewareContext.cs │ │ ├── IMiddlewareManager.cs │ │ ├── MiddlewareManager.cs │ │ └── MiddlewareResult.cs │ ├── Node │ │ ├── INodeManager.cs │ │ └── NodeManager.cs │ ├── ReverseProxy │ │ ├── ClusterManager.cs │ │ ├── GatewayOptions.cs │ │ ├── IClusterManager.cs │ │ ├── IRefreshManager.cs │ │ ├── IReverseProxyDatabaseStore.cs │ │ ├── IRouteManager.cs │ │ ├── IYarpManager.cs │ │ ├── InDatabaseReloadToken.cs │ │ ├── InDatabaseStoreConfig.cs │ │ ├── InDatabaseStoreConfigProvider.cs │ │ ├── InDatabaseStoreReloadToken.cs │ │ ├── Models │ │ │ ├── NacosServiceHostModel.cs │ │ │ ├── NacosServiceModel.cs │ │ │ └── ServiceGovernanceModel.cs │ │ ├── RefreshManager.cs │ │ ├── ReverseProxyDatabaseStore.cs │ │ ├── RouteManager.cs │ │ └── YarpManager.cs │ └── Whitelist │ │ ├── IWhiteListManager.cs │ │ └── WhiteListManager.cs ├── Kite.Gateway.EntityFrameworkCore │ ├── EntityFrameworkCoreModule.cs │ ├── Kite.Gateway.EntityFrameworkCore.csproj │ ├── KiteDbContext.cs │ └── Migrations │ │ ├── 20220726095023_Migration_v1.0.0.Designer.cs │ │ ├── 20220726095023_Migration_v1.0.0.cs │ │ ├── 20220727061321_Migration_v1.0.1.Designer.cs │ │ ├── 20220727061321_Migration_v1.0.1.cs │ │ ├── 20220731131935_Migration_v1.0.2.Designer.cs │ │ ├── 20220731131935_Migration_v1.0.2.cs │ │ ├── 20220801073938_Migration_v1.0.3.Designer.cs │ │ ├── 20220801073938_Migration_v1.0.3.cs │ │ └── KiteDbContextModelSnapshot.cs └── Kite.Gateway.Web │ ├── Controllers │ └── RefreshController.cs │ ├── Dockerfile │ ├── Filters │ ├── AbpCoreExceptionFilter.cs │ └── KiteCoreActionFilter.cs │ ├── Kite.Gateway.Web.csproj │ ├── Middlewares │ ├── KiteAuthorizationMiddleware.cs │ └── KiteExternalMiddleware.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── WebModule.cs │ └── appsettings.json └── 图片.png /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/.gitignore -------------------------------------------------------------------------------- /Kite.Gateway.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/Kite.Gateway.sln -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/README.md -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/.config/dotnet-tools.json -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/App.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Controllers/RefreshController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Controllers/RefreshController.cs -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Core/AuthorizationServerStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Core/AuthorizationServerStorage.cs -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Dockerfile -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/GatewayAdminModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/GatewayAdminModule.cs -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Kite.Gateway.Admin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Kite.Gateway.Admin.csproj -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Administrator/Administrator.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Administrator/Administrator.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Administrator/Login.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Administrator/Login.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Administrator/Login.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Administrator/Login.razor.css -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Administrator/Logout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Administrator/Logout.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Administrator/Logout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Administrator/Logout.razor.css -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Administrator/NewAdministrator.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Administrator/NewAdministrator.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Administrator/UpdateAdministrator.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Administrator/UpdateAdministrator.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Authorization/Authentication.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Authorization/Authentication.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Error.cshtml -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Home.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Home.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Middleware/Middleware.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Middleware/Middleware.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Middleware/NewMiddleware.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Middleware/NewMiddleware.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Middleware/UpdateMiddleware.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Middleware/UpdateMiddleware.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Node/NewNode.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Node/NewNode.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Node/Node.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Node/Node.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Node/RefreshConfigure.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Node/RefreshConfigure.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Node/UpdateNode.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Node/UpdateNode.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/PaginationComponent.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/PaginationComponent.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/ServiceGovernance/ServiceGovernance.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/ServiceGovernance/ServiceGovernance.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Whitelist/NewWhitelist.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Whitelist/NewWhitelist.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Whitelist/UpdateWhitelist.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Whitelist/UpdateWhitelist.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Whitelist/WhiteList.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Whitelist/WhiteList.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Yarp/NewRoute.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Yarp/NewRoute.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Yarp/Route.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Yarp/Route.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/Yarp/UpdateRoute.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/Yarp/UpdateRoute.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/_Host.cshtml -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Program.cs -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Properties/launchSettings.json -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Shared/MainLayout.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Shared/MainLayout.razor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Shared/MainLayout.razor.cs -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/Shared/SimpleLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | 3 | 4 | @Body 5 | 6 | @code { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/_Imports.razor -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/appsettings.json -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/data/KiteGateway.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/data/KiteGateway.db -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/css/signin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/css/signin.css -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/css/site.css -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/favicon.ico -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/images/kitelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/admin/Kite.Gateway.Admin/wwwroot/images/kitelogo.png -------------------------------------------------------------------------------- /admin/Kite.Gateway.Admin/wwwroot/upload/微信图片_20230107141853.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Authorization/ClaimModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Authorization/ClaimModel.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Authorization/IJwtTokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Authorization/IJwtTokenManager.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Authorization/JwtTokenAuthenticateResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Authorization/JwtTokenAuthenticateResult.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Authorization/JwtTokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Authorization/JwtTokenManager.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Authorization/JwtTokenOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Authorization/JwtTokenOptions.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Authorization/JwtTokenResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Authorization/JwtTokenResult.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Controllers/AccountController.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Controllers/LoginController.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Controllers/MiddlewareController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Controllers/MiddlewareController.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Kite.Simple.Account.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Kite.Simple.Account.csproj -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Models/AccountLoginDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Models/AccountLoginDto.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Models/AccountLoginResultDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Models/AccountLoginResultDto.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Models/CreateAccountDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Models/CreateAccountDto.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Program.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/Properties/launchSettings.json -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/WeatherForecast.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Account/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Account/appsettings.json -------------------------------------------------------------------------------- /simples/Kite.Simple.Order/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Order/Controllers/OrderController.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Order/Controllers/WeatherForecastController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Order/Controllers/WeatherForecastController.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Order/Kite.Simple.Order.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Order/Kite.Simple.Order.csproj -------------------------------------------------------------------------------- /simples/Kite.Simple.Order/Models/CreateOrderDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Order/Models/CreateOrderDto.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Order/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Order/Program.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Order/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Order/Properties/launchSettings.json -------------------------------------------------------------------------------- /simples/Kite.Simple.Order/WeatherForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Order/WeatherForecast.cs -------------------------------------------------------------------------------- /simples/Kite.Simple.Order/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.Simple.Order/appsettings.json -------------------------------------------------------------------------------- /simples/Kite.SimpleServices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/simples/Kite.SimpleServices.sln -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/ApplicationContractsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/ApplicationContractsModule.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Administrator/AdministratorDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Administrator/AdministratorDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Administrator/CreateAdministratorDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Administrator/CreateAdministratorDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Administrator/LoginAdministratorDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Administrator/LoginAdministratorDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Administrator/UpdateAdministratorDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Administrator/UpdateAdministratorDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Authorization/SaveAuthenticationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Authorization/SaveAuthenticationDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Middleware/CreateMiddlewareDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Middleware/CreateMiddlewareDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Middleware/MiddlewareDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Middleware/MiddlewareDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Middleware/MiddlewareListDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Middleware/MiddlewareListDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Middleware/UpdateMiddlewareDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Middleware/UpdateMiddlewareDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Node/CreateNodeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Node/CreateNodeDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Node/NodeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Node/NodeDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Node/ReloadConfigureDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Node/ReloadConfigureDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Node/UpdateNodeDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Node/UpdateNodeDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/RefreshConfigureDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/RefreshConfigureDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/ClusterDestinationDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/ClusterDestinationDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/ClusterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/ClusterDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/ClusterHealthCheckDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/ClusterHealthCheckDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/CreateRouteDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/CreateRouteDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/RouteDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/RouteDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/RouteMainDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/RouteMainDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/RoutePageDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/RoutePageDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/RouteTransformDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/RouteTransformDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/UpdateRouteDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/ReverseProxy/UpdateRouteDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/ServiceGovernance/ServiceGovernanceConfigureDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/ServiceGovernance/ServiceGovernanceConfigureDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/ValidateTokenDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/ValidateTokenDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Whitelist/CreateWhitelistDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Whitelist/CreateWhitelistDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Whitelist/UpdateWhitelistDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Whitelist/UpdateWhitelistDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Dtos/Whitelist/WhitelistDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Dtos/Whitelist/WhitelistDto.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Http/SimpleHttpException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Http/SimpleHttpException.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/IAdministratorAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/IAdministratorAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/IAuthorizationAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/IAuthorizationAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/IConfigureAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/IConfigureAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/IMiddlewareAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/IMiddlewareAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/INodeAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/INodeAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/IRefreshAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/IRefreshAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/IRouteAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/IRouteAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/IServiceGovernanceAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/IServiceGovernanceAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/IWhitelistAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/IWhitelistAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/Kite.Gateway.Application.Contracts.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/Kite.Gateway.Application.Contracts.csproj -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/KitePageResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/KitePageResult.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application.Contracts/KiteResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application.Contracts/KiteResult.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application/AdministratorAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application/AdministratorAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application/ApplicationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application/ApplicationModule.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application/AuthorizationAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application/AuthorizationAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application/BaseApplicationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application/BaseApplicationService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application/ConfigureAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application/ConfigureAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application/Kite.Gateway.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application/Kite.Gateway.Application.csproj -------------------------------------------------------------------------------- /src/Kite.Gateway.Application/MiddlewareAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application/MiddlewareAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application/NodeAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application/NodeAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application/RefreshAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application/RefreshAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application/RouteAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application/RouteAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application/ServiceGovernanceAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application/ServiceGovernanceAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Application/WhitelistAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Application/WhitelistAppService.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/DomainSharedModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/DomainSharedModule.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/Enums/FilterTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/Enums/FilterTypeEnum.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/Enums/ServiceGovernanceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/Enums/ServiceGovernanceType.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/Enums/SignalTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/Enums/SignalTypeEnum.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/Kite.Gateway.Domain.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/Kite.Gateway.Domain.Shared.csproj -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/Options/AuthenticationOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/Options/AuthenticationOption.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/Options/ClusterDestinationOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/Options/ClusterDestinationOption.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/Options/ClusterHealthCheckOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/Options/ClusterHealthCheckOption.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/Options/ClusterOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/Options/ClusterOption.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/Options/KiteGatewayOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/Options/KiteGatewayOption.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/Options/MiddlewareOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/Options/MiddlewareOption.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/Options/RouteOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/Options/RouteOption.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/Options/RouteTransformOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/Options/RouteTransformOption.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/Options/WhitelistOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/Options/WhitelistOption.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/Options/YarpOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/Options/YarpOption.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain.Shared/TextHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain.Shared/TextHelper.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Administrator/AdministratorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Administrator/AdministratorManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Administrator/IAdministratorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Administrator/IAdministratorManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Authorization/AuthenticationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Authorization/AuthenticationManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Authorization/ClaimModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Authorization/ClaimModel.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Authorization/IAuthenticationManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Authorization/IAuthenticationManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Authorization/IJwtTokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Authorization/IJwtTokenManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Authorization/JwtTokenManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Authorization/JwtTokenManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Authorization/JwtTokenOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Authorization/JwtTokenOptions.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Authorization/JwtTokenValidationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Authorization/JwtTokenValidationResult.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ConfigureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ConfigureManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/DomainModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/DomainModule.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Entities/Administrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Entities/Administrator.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Entities/AuthenticationConfigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Entities/AuthenticationConfigure.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Entities/Cluster.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Entities/Cluster.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Entities/ClusterDestination.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Entities/ClusterDestination.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Entities/ClusterHealthCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Entities/ClusterHealthCheck.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Entities/Middleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Entities/Middleware.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Entities/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Entities/Node.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Entities/Route.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Entities/Route.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Entities/RouteTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Entities/RouteTransform.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Entities/ServiceGovernanceConfigure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Entities/ServiceGovernanceConfigure.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Entities/Whitelist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Entities/Whitelist.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/IConfigureManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/IConfigureManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Kite.Gateway.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Kite.Gateway.Domain.csproj -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Middlewares/IMiddlewareContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Middlewares/IMiddlewareContext.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Middlewares/IMiddlewareManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Middlewares/IMiddlewareManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Middlewares/MiddlewareManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Middlewares/MiddlewareManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Middlewares/MiddlewareResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Middlewares/MiddlewareResult.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Node/INodeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Node/INodeManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Node/NodeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Node/NodeManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/ClusterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/ClusterManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/GatewayOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/GatewayOptions.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/IClusterManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/IClusterManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/IRefreshManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/IRefreshManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/IReverseProxyDatabaseStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/IReverseProxyDatabaseStore.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/IRouteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/IRouteManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/IYarpManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/IYarpManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/InDatabaseReloadToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/InDatabaseReloadToken.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/InDatabaseStoreConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/InDatabaseStoreConfig.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/InDatabaseStoreConfigProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/InDatabaseStoreConfigProvider.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/InDatabaseStoreReloadToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/InDatabaseStoreReloadToken.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/Models/NacosServiceHostModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/Models/NacosServiceHostModel.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/Models/NacosServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/Models/NacosServiceModel.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/Models/ServiceGovernanceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/Models/ServiceGovernanceModel.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/RefreshManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/RefreshManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/ReverseProxyDatabaseStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/ReverseProxyDatabaseStore.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/RouteManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/RouteManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/ReverseProxy/YarpManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/ReverseProxy/YarpManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Whitelist/IWhiteListManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Whitelist/IWhiteListManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Domain/Whitelist/WhiteListManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Domain/Whitelist/WhiteListManager.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.EntityFrameworkCore/EntityFrameworkCoreModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.EntityFrameworkCore/EntityFrameworkCoreModule.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.EntityFrameworkCore/Kite.Gateway.EntityFrameworkCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.EntityFrameworkCore/Kite.Gateway.EntityFrameworkCore.csproj -------------------------------------------------------------------------------- /src/Kite.Gateway.EntityFrameworkCore/KiteDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.EntityFrameworkCore/KiteDbContext.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.EntityFrameworkCore/Migrations/20220726095023_Migration_v1.0.0.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.EntityFrameworkCore/Migrations/20220726095023_Migration_v1.0.0.Designer.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.EntityFrameworkCore/Migrations/20220726095023_Migration_v1.0.0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.EntityFrameworkCore/Migrations/20220726095023_Migration_v1.0.0.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.EntityFrameworkCore/Migrations/20220727061321_Migration_v1.0.1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.EntityFrameworkCore/Migrations/20220727061321_Migration_v1.0.1.Designer.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.EntityFrameworkCore/Migrations/20220727061321_Migration_v1.0.1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.EntityFrameworkCore/Migrations/20220727061321_Migration_v1.0.1.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.EntityFrameworkCore/Migrations/20220731131935_Migration_v1.0.2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.EntityFrameworkCore/Migrations/20220731131935_Migration_v1.0.2.Designer.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.EntityFrameworkCore/Migrations/20220731131935_Migration_v1.0.2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.EntityFrameworkCore/Migrations/20220731131935_Migration_v1.0.2.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.EntityFrameworkCore/Migrations/20220801073938_Migration_v1.0.3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.EntityFrameworkCore/Migrations/20220801073938_Migration_v1.0.3.Designer.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.EntityFrameworkCore/Migrations/20220801073938_Migration_v1.0.3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.EntityFrameworkCore/Migrations/20220801073938_Migration_v1.0.3.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.EntityFrameworkCore/Migrations/KiteDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.EntityFrameworkCore/Migrations/KiteDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Web/Controllers/RefreshController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Web/Controllers/RefreshController.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Web/Dockerfile -------------------------------------------------------------------------------- /src/Kite.Gateway.Web/Filters/AbpCoreExceptionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Web/Filters/AbpCoreExceptionFilter.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Web/Filters/KiteCoreActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Web/Filters/KiteCoreActionFilter.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Web/Kite.Gateway.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Web/Kite.Gateway.Web.csproj -------------------------------------------------------------------------------- /src/Kite.Gateway.Web/Middlewares/KiteAuthorizationMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Web/Middlewares/KiteAuthorizationMiddleware.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Web/Middlewares/KiteExternalMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Web/Middlewares/KiteExternalMiddleware.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Web/Program.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Kite.Gateway.Web/WebModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Web/WebModule.cs -------------------------------------------------------------------------------- /src/Kite.Gateway.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/src/Kite.Gateway.Web/appsettings.json -------------------------------------------------------------------------------- /图片.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yupingyong/kite.gateway/HEAD/图片.png --------------------------------------------------------------------------------