using Blahblah.FlowerStory.Server.Data; using Blahblah.FlowerStory.Server.Data.Model; using Microsoft.AspNetCore.Mvc; using Microsoft.EntityFrameworkCore; using System.ComponentModel.DataAnnotations; namespace Blahblah.FlowerStory.Server.Controller; /// /// 事件相关 API 服务 /// [ApiController] [Produces("application/json")] [Route("api/event")] public class EventApiController : BaseController { /// public EventApiController(FlowerDatabase database, ILogger? logger = null) : base(database, logger) { } /// /// 获取用户相关所有符合条件的事件 /// /// /// 请求示例: /// /// GET /api/event/query /// Authorization: authorization id /// /// 参数: /// /// eid: int? /// key: string? /// from: long? /// to: long? /// p: bool? /// /// /// 事件类型 id /// 查询关键字 /// 起始日期 /// 结束日期 /// 是否包含图片 /// 会话有效则返回符合条件的花草集 /// 返回符合条件的花草集 /// 未找到登录会话或已过期 /// 用户已禁用 /// 未找到关联用户 [Route("query", Name = "queryEvents")] [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status401Unauthorized)] [ProducesResponseType(StatusCodes.Status403Forbidden)] [ProducesResponseType(StatusCodes.Status404NotFound)] [HttpGet] [ResponseCache(NoStore = true, Location = ResponseCacheLocation.None)] public ActionResult GetRecords( [FromQuery(Name = "eid")] int? eventId, [FromQuery] string? key, [FromQuery] long? from, [FromQuery] long? to, [FromQuery(Name = "p")] bool? includePhoto) { var (result, user) = CheckPermission(); if (result != null) { return result; } if (user == null) { return NotFound(); } SaveDatabase(); var records = database.Records.Where(r => r.OwnerId == user.Id); if (eventId != null) { records = records.Where(r => r.EventId == eventId); } if (key != null) { records = records.Where(r => r.ByUserName != null && r.ByUserName.ToLower().Contains(key.ToLower()) || r.Memo != null && r.Memo.ToLower().Contains(key.ToLower())); } if (from != null) { records = records.Where(r => r.DateUnixTime >= from); } if (to != null) { records = records.Where(r => r.DateUnixTime <= to); } if (includePhoto == true) { foreach (var r in records) { r.Photos = database.Photos.Where(p => p.RecordId == r.Id).ToList(); } } return Ok(records.ToArray()); } /// /// 移除用户的事件 /// /// /// 请求示例: /// /// DELETE /api/event/remove /// Authorization: authorization id /// /// 参数: /// /// id: int /// /// /// 事件唯一 id /// 会话有效则返回操作影响的数据库行数 /// 返回操作影响的数据库行数 /// 未找到登录会话或已过期 /// 用户已禁用 /// 未找到关联用户 [Route("remove", Name = "removeEvent")] [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status401Unauthorized)] [ProducesResponseType(StatusCodes.Status403Forbidden)] [ProducesResponseType(StatusCodes.Status404NotFound)] [HttpDelete] public ActionResult RemoveEvent([FromQuery][Required] int id) { var (result, user) = CheckPermission(); if (result != null) { return result; } if (user == null) { return NotFound(); } var count = database.Records.Where(r => r.OwnerId == user.Id && r.Id == id).ExecuteDelete(); SaveDatabase(); return Ok(count); } /// /// 批量移除用户的事件 /// /// /// 请求示例: /// /// POST /api/event/remove /// Authorization: authorization id /// [ /// 2, 4, 5, 11 /// ] /// /// /// 要移除的事件唯一 id 的数组 /// 会话有效则返回操作影响的数据库行数 /// 返回操作影响的数据库行数 /// 未找到登录会话或已过期 /// 用户已禁用 /// 未找到关联用户 [Route("removeany", Name = "removeEvents")] [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status401Unauthorized)] [ProducesResponseType(StatusCodes.Status403Forbidden)] [ProducesResponseType(StatusCodes.Status404NotFound)] [HttpPost] [Consumes("application/json")] public ActionResult RemoveEvents([FromBody] int[] ids) { var (result, user) = CheckPermission(); if (result != null) { return result; } if (user == null) { return NotFound(); } var count = database.Records.Where(r => r.OwnerId == user.Id && ids.Contains(r.Id)).ExecuteDelete(); SaveDatabase(); return Ok(count); } /// /// 用户添加事件 /// /// /// 请求示例: /// /// POST /api/event/add /// Authorization: authorization id /// { /// "flowerId": 1, /// "eventId": 4, // 浇水 /// "byUser": "朋友", /// "memo": "快干死了" /// } /// /// /// 事件参数 /// 添加成功则返回已添加的事件对象 /// 返回已添加的事件对象 /// 未找到登录会话或已过期 /// 用户已禁用 /// 未找到关联用户 [Route("add", Name = "addEvent")] [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status401Unauthorized)] [ProducesResponseType(StatusCodes.Status403Forbidden)] [ProducesResponseType(StatusCodes.Status404NotFound)] [HttpPost] [Consumes("application/json")] public ActionResult AddEvent([FromBody] EventParameter @event) { var (result, user) = CheckPermission(); if (result != null) { return result; } if (user == null) { return NotFound(); } var item = new RecordItem { OwnerId = user.Id, FlowerId = @event.FlowerId, EventId = @event.EventId, DateUnixTime = user.ActiveDateUnixTime ?? DateTimeOffset.UtcNow.ToUnixTimeMilliseconds(), ByUserId = @event.ByUser == null ? user.Id : null, ByUserName = @event.ByUser, Memo = @event.Memo }; database.Records.Add(item); SaveDatabase(); return Ok(item); } /// /// 修改事件 /// /// /// 请求示例: /// /// PUT /api/event/update /// Authorization: authorization id /// { /// "id": 1, /// "flowerId": 1, /// "eventId": 5, // 施肥 /// "byUser": null, /// "memo": "花多多1号" /// } /// /// /// 修改参数 /// 修改成功则返回已修改的事件对象 /// 返回已修改的事件对象 /// 未找到登录会话或已过期 /// 用户已禁用 /// 未找到关联用户或者未找到将修改的事件对象 [Route("update", Name = "updateEvent")] [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status401Unauthorized)] [ProducesResponseType(StatusCodes.Status403Forbidden)] [ProducesResponseType(StatusCodes.Status404NotFound)] [HttpPut] [Consumes("application/json")] public ActionResult Update([FromBody] EventUpdateParameter update) { var (result, user) = CheckPermission(); if (result != null) { return result; } if (user == null) { return NotFound(); } var record = database.Records.SingleOrDefault(r => r.Id == update.Id && r.OwnerId == user.Id); if (record == null) { SaveDatabase(); return NotFound(update.Id); } record.FlowerId = update.FlowerId; record.EventId = update.EventId; if (update.ByUser == null) { record.ByUserId = user.Id; record.ByUserName = null; } else { record.ByUserId = null; record.ByUserName = update.ByUser; } record.Memo = update.Memo; SaveDatabase(); return Ok(user); } /// /// 添加事件关联照片 /// /// /// 请求示例: /// /// POST /api/event/add_photo /// Authorization: authorization id /// /// 参数: /// /// id: int /// photo: IFormFile /// /// /// 事件唯一 id /// 图片 /// 修改成功则返回 HTTP 204 /// 修改成功 /// 照片格式非法 /// 未找到登录会话或已过期 /// 用户已禁用 /// 未找到关联用户或者关联的事件 /// 提交正文过大 [Route("add_photo", Name = "addEventPhoto")] [ProducesResponseType(StatusCodes.Status204NoContent)] [ProducesResponseType(StatusCodes.Status400BadRequest)] [ProducesResponseType(StatusCodes.Status401Unauthorized)] [ProducesResponseType(StatusCodes.Status403Forbidden)] [ProducesResponseType(StatusCodes.Status404NotFound)] [ProducesResponseType(StatusCodes.Status413PayloadTooLarge)] [HttpPost] [Consumes("multipart/form-data")] [RequestSizeLimit(15 * 1024 * 1024)] public async Task UploadCovers([Required][FromQuery] int id, [Required] IFormFile photo) { var (result, user) = CheckPermission(); if (result != null) { return result; } if (user == null) { return NotFound(); } var record = database.Records.SingleOrDefault(r => r.Id == id && r.OwnerId == user.Id); if (record == null) { SaveDatabase(); return NotFound(id); } if (photo.Length > 0) { var file = WrapFormFile(photo); if (file == null) { SaveDatabase(); return BadRequest(); } var p = new PhotoItem { FlowerId = record.FlowerId, RecordId = id, FileType = file.FileType, FileName = file.Filename, Path = file.Path, DateUploadUnixTime = user.ActiveDateUnixTime ?? DateTimeOffset.UtcNow.ToUnixTimeMilliseconds() }; database.Photos.Add(p); try { await WriteToFile(user.Id, id, file); } catch (Exception ex) { SaveDatabase(); return Problem(ex.ToString(), "api/event/add_photo"); // TODO: Logger } } SaveDatabase(); return NoContent(); } /// /// 获取事件关联的照片列表 /// /// /// 请求示例: /// /// GET /api/event/photos /// Authorization: authorization id /// /// 参数: /// /// id: int /// /// /// 事件唯一 id /// 验证通过则返回事件关联的照片列表 /// 返回事件关联的照片列表 /// 未找到登录会话或已过期 /// 用户已禁用 /// 未找到关联用户或者未找到事件对象 [Route("photos", Name = "getEventPhotos")] [ProducesResponseType(StatusCodes.Status200OK)] [ProducesResponseType(StatusCodes.Status401Unauthorized)] [ProducesResponseType(StatusCodes.Status403Forbidden)] [ProducesResponseType(StatusCodes.Status404NotFound)] [HttpGet] [ResponseCache(NoStore = true, Location = ResponseCacheLocation.None)] public ActionResult GetPhotos([Required][FromQuery] int id) { var (result, user) = CheckPermission(); if (result != null) { return result; } if (user == null) { return NotFound(); } SaveDatabase(); var photos = database.Photos.Where(p => p.RecordId == id && database.Records.Any(r => r.Id == id && r.OwnerId == user.Id)); return Ok(photos); } }