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.AppControllers
{
///
/// 收藏
///
[Route("api/app/collection")]
[ApiController]
[Authorize]
public class CollectionController : ControllerBase
{
private readonly ILogger _logger;
private readonly ICollectionService _collectionService;
private readonly ILoginContext _loginContext;
public CollectionController(ILogger logger, ICollectionService collectionService, ILoginContext loginContext)
{
_logger = logger;
_collectionService = collectionService;
_loginContext = loginContext;
}
///
/// 添加收藏
///
///
///
[HttpPut("add")]
public async Task Insert(CollectionInRequest request)
{
request.UserId = _loginContext.AccountId;
return await _collectionService.Insert(request);
}
///
/// 收藏
///
///
///
[HttpPost("search")]
public async Task> PageList(CollectionPageSearchRequest request)
{
request.UserId = _loginContext.AccountId;
return await _collectionService. PageListAsync(request);
}
///
/// 获取收藏详情
///
///
///
[HttpGet("{id}")]
public async Task GetCollectionDetail(int id)
{
return await _collectionService.GetCollectionDetailAsync(id);
}
}
}