using System.Collections.Generic;
using System.Threading.Tasks;
using GxPress.Auth;
using GxPress.Repository.Interface.Media;
using GxPress.Result.Media;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860
namespace GxPress.Api.AdminControllers
{
[Route("api/admin/media")]
[ApiController]
[Authorize]
public class AdminMediaController : Controller
{
private readonly IMediaRepository mediaRepository;
private readonly ILoginContext _loginContext;
public AdminMediaController(IMediaRepository mediaRepository, ILoginContext _loginContext)
{
this.mediaRepository = mediaRepository;
this._loginContext = _loginContext;
}
///
/// 详情
///
///
///
[HttpGet("{id}")]
public async Task GetAsync(int id)
{
return await mediaRepository.GetAsync(id);
}
///
/// 删除
///
///
///
[HttpDelete("{id}")]
public async Task DeleteAsync(int id)
{
return await mediaRepository.DeleteAsync(id);
}
///
/// 添加媒体
///
///
///
[HttpPost]
public async Task InsertAsync(MediaResult result)
{
result.AdminId = _loginContext.AccountId;
result.Creator = _loginContext.Name;
return await mediaRepository.InsertAsync(result);
}
///
/// 修改
///
///
///
[HttpPut]
public async Task UpdateAsync(MediaResult result)
{
return await mediaRepository.UpdateAsync(result);
}
///
/// 查询
///
///
///
[HttpPost("list/{mediaType}")]
public async Task> GetAllAsync(int mediaType)
{
return await mediaRepository.GetAllAsync(mediaType);
}
}
}