李昊 vor 4 Jahren
Ursprung
Commit
84bdb6fda7

+ 66 - 0
gx_api/GxPress/Api/GxPress.Api/WebControllers/WebCollectionController.cs

@@ -0,0 +1,66 @@
+using System.Threading.Tasks;
+using GxPress.Auth;
+using GxPress.Common.Page;
+using GxPress.Request.App.Collection;
+using GxPress.Result.App.Collection;
+using GxPress.Service.Interface.Collection;
+using Microsoft.AspNetCore.Authorization;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.Extensions.Logging;
+
+namespace GxPress.Api.WebControllers
+{
+    /// <summary>
+    /// 收藏
+    /// </summary>
+    [Route("api/web/collection")]
+    [ApiController]
+    [Authorize]
+    public class WebCollectionController : Controller
+    {
+        private readonly ILogger<WebCollectionController> _logger;
+        private readonly ICollectionService _collectionService;
+        private readonly ILoginContext _loginContext;
+
+
+        public WebCollectionController(ILogger<WebCollectionController> logger, ICollectionService collectionService, ILoginContext loginContext)
+        {
+            _logger = logger;
+            _collectionService = collectionService;
+            _loginContext = loginContext;
+        }
+        /// <summary>
+        /// 添加收藏
+        /// </summary>
+        /// <param name="request"></param>
+        /// <returns></returns>
+        [HttpPut("add")]
+        public async Task<bool> Insert(CollectionInRequest request)
+        {
+            request.UserId = _loginContext.AccountId;
+            return await _collectionService.Insert(request);
+        }
+        /// <summary>
+        /// 收藏
+        /// </summary>
+        /// <param name="request"></param>
+        /// <returns></returns>
+        [HttpPost("search")]
+        public async Task<PagedList<CollectionListPageResult>> PageList(CollectionPageSearchRequest request)
+        {
+            request.UserId = _loginContext.AccountId;
+            return await _collectionService.PageListAsync(request);
+        }
+
+        /// <summary>
+        /// 获取收藏详情
+        /// </summary>
+        /// <param name="id"></param>
+        /// <returns></returns>
+        [HttpGet("{id}")]
+        public async Task<CollectionResult> GetCollectionDetail(int id)
+        {
+            return await _collectionService.GetCollectionDetailAsync(id);
+        }
+    }
+}