コード例 #1
0
        public CSumAbpSwaggerUIMiddleware(
            RequestDelegate next,
            IHostingEnvironment hostingEnv,
            ILoggerFactory loggerFactory,
            CSumAbpSwaggerUIOptions options)
        {
            _options = options ?? new CSumAbpSwaggerUIOptions();
            _logger  = loggerFactory.CreateLogger <CSumAbpSwaggerUIMiddleware>();
            _staticFileMiddleware = CreateStaticFileMiddleware(next, hostingEnv, loggerFactory, options);

            _jsonSerializerOptions = new JsonSerializerOptions();
            _jsonSerializerOptions.PropertyNamingPolicy = JsonNamingPolicy.CamelCase;
            _jsonSerializerOptions.IgnoreNullValues     = true;
            _jsonSerializerOptions.Converters.Add(new JsonStringEnumConverter(JsonNamingPolicy.CamelCase, false));
        }
コード例 #2
0
        /// <summary>
        /// 扩展的Abp Swagger
        /// </summary>
        /// <param name="options"></param>
        /// <param name="serviceProvider"></param>
        /// <param name="appPath">发布的目录</param>
        public static void AbpSwaggerUI(this CSumAbpSwaggerUIOptions options, IServiceProvider serviceProvider, string appPath = "")
        {
            //options.RoutePrefix = ""; //默认路由前缀是swagger
            options.IndexStream = () => typeof(CSumAbpSwaggerUIOptionsExtensions).GetTypeInfo().Assembly
                                  .GetManifestResourceStream("doc.html");
            options.AppPath = appPath;

            var groupOptions = serviceProvider.GetRequiredService <IOptions <AbpModuleApiGroupOptions> >().Value;

            foreach (var item in groupOptions.Groups)
            {
                var path = appPath.IsNullOrWhiteSpace() ? "" :("/" + appPath);
                var rfix = options.RoutePrefix.IsNullOrWhiteSpace() ? "" : (options.RoutePrefix + "/");
                options.SwaggerEndpoint($"{path}/{rfix}{item.Name}/swagger.json", item.Title);
            }
        }