version up to 0.3.529
This commit is contained in:
parent
881e8dbb29
commit
2d87e50dd0
@ -56,6 +56,7 @@ public sealed class Constants
|
|||||||
[10] = new("sick"), // 生病
|
[10] = new("sick"), // 生病
|
||||||
[11] = new("death", true), // 死亡
|
[11] = new("death", true), // 死亡
|
||||||
[12] = new("sell", true), // 出售
|
[12] = new("sell", true), // 出售
|
||||||
|
[13] = new("share"), // 分享
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
using Blahblah.FlowerStory.Server.Data;
|
using Blahblah.FlowerStory.Server.Data;
|
||||||
using Blahblah.FlowerStory.Server.Data.Model;
|
using Blahblah.FlowerStory.Server.Data.Model;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
using Microsoft.EntityFrameworkCore;
|
|
||||||
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations;
|
||||||
using System.Net;
|
using System.Net;
|
||||||
using System.Security.Cryptography;
|
using System.Security.Cryptography;
|
||||||
|
@ -449,7 +449,7 @@ public class FlowerApiController : BaseController
|
|||||||
///
|
///
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
/// <param name="id">花草唯一 id</param>
|
/// <param name="id">花草唯一 id</param>
|
||||||
/// <param name="eventId">事件类型 id,0 为封面</param>
|
/// <param name="eventId">事件类型 id, 0 为封面</param>
|
||||||
/// <returns>验证通过则返回花草特定类型事件的照片列表</returns>
|
/// <returns>验证通过则返回花草特定类型事件的照片列表</returns>
|
||||||
/// <response code="200">返回花草特定类型事件的照片列表</response>
|
/// <response code="200">返回花草特定类型事件的照片列表</response>
|
||||||
/// <response code="401">未找到登录会话或已过期</response>
|
/// <response code="401">未找到登录会话或已过期</response>
|
||||||
|
@ -68,15 +68,72 @@ public class SwaggerController : ControllerBase
|
|||||||
.method-post {{ color: #49cc90 }}
|
.method-post {{ color: #49cc90 }}
|
||||||
.method-put {{ color: #fca130 }}
|
.method-put {{ color: #fca130 }}
|
||||||
.header {{ color: rbg(107 114 128) }}
|
.header {{ color: rbg(107 114 128) }}
|
||||||
.wrapper {{
|
.navigator {{
|
||||||
width: 1000px;
|
position: fixed;
|
||||||
margin: 0 auto;
|
width: 400px;
|
||||||
|
height: 100%;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
font-size: .875rem;
|
||||||
|
background-color: #fff;
|
||||||
}}
|
}}
|
||||||
|
.navigator ul {{
|
||||||
|
list-style: none;
|
||||||
|
padding-left: 20px;
|
||||||
|
line-height: 24px;
|
||||||
|
}}
|
||||||
|
.navigator ol {{
|
||||||
|
list-style: none;
|
||||||
|
padding-left: 30px;
|
||||||
|
}}
|
||||||
|
.navigator a, .navigator a:visited {{
|
||||||
|
text-decoration: none;
|
||||||
|
color: #333;
|
||||||
|
}}
|
||||||
|
.navigator a:hover {{
|
||||||
|
color: #000;
|
||||||
|
text-decoration: underline;
|
||||||
|
}}
|
||||||
|
.wrapper {{ margin-left: 400px }}
|
||||||
.operation {{ width: 100% }}
|
.operation {{ width: 100% }}
|
||||||
.bg {{ background-color: rgb(84, 127, 177) }}
|
.bg {{ background-color: rgb(84, 127, 177) }}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<div class=""navigator"">
|
||||||
|
<ul>");
|
||||||
|
foreach (var tag in model.Tags)
|
||||||
|
{
|
||||||
|
if (tag == null)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
builder.Append($@"
|
||||||
|
<li>
|
||||||
|
<a href=""#tag-{tag.Name}"">{tag.Description}</a>
|
||||||
|
<ol>");
|
||||||
|
foreach (var item in model.Paths)
|
||||||
|
{
|
||||||
|
if (item.Value.Operations != null)
|
||||||
|
{
|
||||||
|
foreach (var operation in item.Value.Operations)
|
||||||
|
{
|
||||||
|
if (!operation.Value.Tags.Any(t => t.Name == tag.Name))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
builder.Append($@"
|
||||||
|
<li><a href=""#op-{operation.Value.OperationId}"">{operation.Value.Summary}</a></li>");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
builder.Append($@"
|
||||||
|
</ol>
|
||||||
|
</li>");
|
||||||
|
}
|
||||||
|
builder.Append($@"
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
<div class=""wrapper"">
|
<div class=""wrapper"">
|
||||||
<h1>{model.Info.Title}</h1>
|
<h1>{model.Info.Title}</h1>
|
||||||
<h3>接口文档 {model.Info.Version}</h3>
|
<h3>接口文档 {model.Info.Version}</h3>
|
||||||
@ -90,7 +147,7 @@ public class SwaggerController : ControllerBase
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
builder.Append($@"
|
builder.Append($@"
|
||||||
<h3>{tag.Description}</h3>
|
<h3 id=""tag-{tag.Name}"">{tag.Description}</h3>
|
||||||
<div class=""box"">");
|
<div class=""box"">");
|
||||||
foreach (var item in model.Paths)
|
foreach (var item in model.Paths)
|
||||||
{
|
{
|
||||||
@ -104,7 +161,7 @@ public class SwaggerController : ControllerBase
|
|||||||
}
|
}
|
||||||
var method = operation.Key.ToString();
|
var method = operation.Key.ToString();
|
||||||
builder.Append($@"
|
builder.Append($@"
|
||||||
<h4>{operation.Value.Summary}</h4>
|
<h4 id=""op-{operation.Value.OperationId}"">{operation.Value.Summary}</h4>
|
||||||
<pre><span class=""method-{method.ToLower()}"">{method.ToUpper()}</span> {item.Key}</pre>");
|
<pre><span class=""method-{method.ToLower()}"">{method.ToUpper()}</span> {item.Key}</pre>");
|
||||||
if (operation.Value.Parameters?.Count > 0)
|
if (operation.Value.Parameters?.Count > 0)
|
||||||
{
|
{
|
||||||
@ -251,7 +308,7 @@ public class SwaggerController : ControllerBase
|
|||||||
{
|
{
|
||||||
builder.Append($@"
|
builder.Append($@"
|
||||||
<tr>
|
<tr>
|
||||||
<td>.</td>
|
<td></td>
|
||||||
<td>{schema.Type}</td>
|
<td>{schema.Type}</td>
|
||||||
<td></td>
|
<td></td>
|
||||||
</tr>");
|
</tr>");
|
||||||
|
@ -11,7 +11,7 @@ public class Program
|
|||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public const string ProjectName = "Flower Story";
|
public const string ProjectName = "Flower Story";
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public const string Version = "0.3.526";
|
public const string Version = "0.3.529";
|
||||||
|
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
public static void Main(string[] args)
|
public static void Main(string[] args)
|
||||||
|
@ -10,10 +10,6 @@
|
|||||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<Compile Remove="Controller\SwaggerController.cs" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.5" />
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.5" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.5" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.5" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user