SwaggerExtension.cs 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. using System;
  2. using System.IO;
  3. using Microsoft.AspNetCore.Builder;
  4. using Microsoft.Extensions.DependencyInjection;
  5. using Microsoft.OpenApi.Models;
  6. namespace GxPress.Api.ServiceExtensions
  7. {
  8. public static class SwaggerExtension
  9. {
  10. /// <summary>
  11. /// 添加swagger
  12. /// </summary>
  13. /// <param name="services"></param>
  14. /// <returns></returns>
  15. public static IServiceCollection AddSwashbuckle(this IServiceCollection services)
  16. {
  17. services.AddSwaggerGen(x =>
  18. {
  19. x.SwaggerDoc("v1", new OpenApiInfo
  20. {
  21. Title = "GxPress API",
  22. Version = "v1",
  23. Description = "广西出版集团"
  24. });
  25. x.CustomSchemaIds(n => n.FullName);
  26. x.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, "GxPress.Api.xml"), true);
  27. x.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, "GxPress.Request.xml"));
  28. x.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, "GxPress.Result.xml"));
  29. x.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, "GxPress.Entity.xml"));
  30. //添加token认证
  31. x.AddSecurityRequirement(new OpenApiSecurityRequirement
  32. {
  33. {
  34. new OpenApiSecurityScheme
  35. {
  36. Reference = new OpenApiReference { Type = ReferenceType.SecurityScheme, Id = "Bearer" }
  37. },
  38. new string[]{}
  39. }
  40. });
  41. x.AddSecurityDefinition("Bearer", new OpenApiSecurityScheme
  42. {
  43. Description = "JWT授权(数据将在请求头中进行传输) 直接在下框中输入Bearer {token} (注意两者之间是一个空格)",
  44. Name = "Authorization",//jwt默认的参数名称
  45. In = ParameterLocation.Header,//jwt默认存放Authorization信息的位置
  46. Type = SecuritySchemeType.ApiKey
  47. });
  48. });
  49. return services;
  50. }
  51. /// <summary>
  52. /// 使用swagger
  53. /// </summary>
  54. /// <param name="app"></param>
  55. /// <returns></returns>
  56. public static IApplicationBuilder UseSwashbuckle(this IApplicationBuilder app)
  57. {
  58. app.UseSwagger();
  59. app.UseSwaggerUI(c => { c.SwaggerEndpoint("/swagger/v1/swagger.json", "GxPress API V1"); });
  60. app.UseReDoc(c =>
  61. {
  62. c.SpecUrl("/swagger/v1/swagger.json");
  63. c.RoutePrefix = "docs";
  64. c.DocumentTitle = "广西出版集团";
  65. c.RequiredPropsFirst();
  66. });
  67. return app;
  68. }
  69. }
  70. }