version up to 0.3.529
This commit is contained in:
parent
881e8dbb29
commit
2d87e50dd0
@ -44,18 +44,19 @@ public sealed class Constants
|
||||
public static readonly Dictionary<int, Event> Events = new()
|
||||
{
|
||||
[0] = new(EventUnknown),
|
||||
[1] = new("buy", true), // 购买
|
||||
[2] = new("born", true), // 出生
|
||||
[3] = new("changebasin"), // 换盆
|
||||
[4] = new("watering"), // 浇水
|
||||
[5] = new("fertilize"), // 施肥
|
||||
[6] = new("germination"), // 发芽
|
||||
[7] = new("blossom"), // 开花
|
||||
[8] = new("fallenleaves"), // 落叶
|
||||
[9] = new("prune"), // 修剪
|
||||
[10] = new("sick"), // 生病
|
||||
[11] = new("death", true), // 死亡
|
||||
[12] = new("sell", true), // 出售
|
||||
[1] = new("buy", true), // 购买
|
||||
[2] = new("born", true), // 出生
|
||||
[3] = new("changebasin"), // 换盆
|
||||
[4] = new("watering"), // 浇水
|
||||
[5] = new("fertilize"), // 施肥
|
||||
[6] = new("germination"), // 发芽
|
||||
[7] = new("blossom"), // 开花
|
||||
[8] = new("fallenleaves"), // 落叶
|
||||
[9] = new("prune"), // 修剪
|
||||
[10] = new("sick"), // 生病
|
||||
[11] = new("death", true), // 死亡
|
||||
[12] = new("sell", true), // 出售
|
||||
[13] = new("share"), // 分享
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
using Blahblah.FlowerStory.Server.Data;
|
||||
using Blahblah.FlowerStory.Server.Data.Model;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Net;
|
||||
using System.Security.Cryptography;
|
||||
|
@ -449,7 +449,7 @@ public class FlowerApiController : BaseController
|
||||
///
|
||||
/// </remarks>
|
||||
/// <param name="id">花草唯一 id</param>
|
||||
/// <param name="eventId">事件类型 id,0 为封面</param>
|
||||
/// <param name="eventId">事件类型 id, 0 为封面</param>
|
||||
/// <returns>验证通过则返回花草特定类型事件的照片列表</returns>
|
||||
/// <response code="200">返回花草特定类型事件的照片列表</response>
|
||||
/// <response code="401">未找到登录会话或已过期</response>
|
||||
|
@ -68,15 +68,72 @@ public class SwaggerController : ControllerBase
|
||||
.method-post {{ color: #49cc90 }}
|
||||
.method-put {{ color: #fca130 }}
|
||||
.header {{ color: rbg(107 114 128) }}
|
||||
.wrapper {{
|
||||
width: 1000px;
|
||||
margin: 0 auto;
|
||||
.navigator {{
|
||||
position: fixed;
|
||||
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% }}
|
||||
.bg {{ background-color: rgb(84, 127, 177) }}
|
||||
</style>
|
||||
</head>
|
||||
<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"">
|
||||
<h1>{model.Info.Title}</h1>
|
||||
<h3>接口文档 {model.Info.Version}</h3>
|
||||
@ -90,7 +147,7 @@ public class SwaggerController : ControllerBase
|
||||
continue;
|
||||
}
|
||||
builder.Append($@"
|
||||
<h3>{tag.Description}</h3>
|
||||
<h3 id=""tag-{tag.Name}"">{tag.Description}</h3>
|
||||
<div class=""box"">");
|
||||
foreach (var item in model.Paths)
|
||||
{
|
||||
@ -104,7 +161,7 @@ public class SwaggerController : ControllerBase
|
||||
}
|
||||
var method = operation.Key.ToString();
|
||||
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>");
|
||||
if (operation.Value.Parameters?.Count > 0)
|
||||
{
|
||||
@ -251,7 +308,7 @@ public class SwaggerController : ControllerBase
|
||||
{
|
||||
builder.Append($@"
|
||||
<tr>
|
||||
<td>.</td>
|
||||
<td></td>
|
||||
<td>{schema.Type}</td>
|
||||
<td></td>
|
||||
</tr>");
|
||||
|
@ -11,7 +11,7 @@ public class Program
|
||||
/// <inheritdoc/>
|
||||
public const string ProjectName = "Flower Story";
|
||||
/// <inheritdoc/>
|
||||
public const string Version = "0.3.526";
|
||||
public const string Version = "0.3.529";
|
||||
|
||||
/// <inheritdoc/>
|
||||
public static void Main(string[] args)
|
||||
|
@ -10,10 +10,6 @@
|
||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="Controller\SwaggerController.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.5" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.5" />
|
||||
|
Loading…
x
Reference in New Issue
Block a user