add single event getter

This commit is contained in:
Tsanie Lily 2023-08-08 17:28:25 +08:00
parent ac250ea779
commit ce94a401d3

View File

@ -116,7 +116,14 @@ public class EventApiController : BaseController
if (includePhoto == true) if (includePhoto == true)
{ {
records = records.Include(r => r.Photos); foreach (var r in records)
{
r.Photos = database.Photos.Where(p => p.RecordId == r.Id).ToList();
foreach (var photo in r.Photos)
{
photo.Url = $"photo/flower/{r.FlowerId}/{photo.Path}?thumb=1";
}
}
} }
var array = records.ToArray(); var array = records.ToArray();
@ -131,6 +138,70 @@ public class EventApiController : BaseController
return Ok(array); return Ok(array);
} }
/// <summary>
/// 查询事件
/// </summary>
/// <remarks>
/// 请求示例:
///
/// GET /api/event/get
/// Authorization: authorization id
///
/// 参数:
///
/// id: int
/// photo: bool?
///
/// </remarks>
/// <param name="id">事件唯一 id</param>
/// <param name="includePhoto">是否包含图片</param>
/// <returns>会话有效则返回查询到的事件对象</returns>
/// <response code="200">返回查询到的事件对象</response>
/// <response code="401">未找到登录会话或已过期</response>
/// <response code="403">用户已禁用</response>
/// <response code="404">未找到关联用户或者未找到事件</response>
[Route("get", Name = "getEvent")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status403Forbidden)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
[ProducesErrorResponseType(typeof(ErrorResponse))]
[HttpGet]
[ResponseCache(NoStore = true, Location = ResponseCacheLocation.None)]
public ActionResult<RecordItem> GetEvent(
[FromQuery][Required] int id,
[FromQuery(Name = "photo")] bool? includePhoto)
{
var (result, user) = CheckPermission();
if (result != null)
{
return result;
}
if (user == null)
{
return NotFound();
}
SaveDatabase();
var item = database.Records.Find(id);
if (item == null)
{
return NotFound($"Event id {id} not found");
}
if (includePhoto == true)
{
item.Photos = database.Photos.Where(p => p.RecordId == item.Id).ToList();
foreach (var photo in item.Photos)
{
photo.Url = $"photo/flower/{item.FlowerId}/{photo.Path}";
}
}
return Ok(item);
}
/// <summary> /// <summary>
/// 移除用户的事件 /// 移除用户的事件
/// </summary> /// </summary>