|
@@ -0,0 +1,140 @@
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.Threading.Tasks;
|
|
|
+using GxPress.Entity.tede2.AppChannel;
|
|
|
+using GxPress.EnumConst;
|
|
|
+using GxPress.Repository.Interface.AppChannel;
|
|
|
+using GxPress.Request.AppChannel;
|
|
|
+using GxPress.Result.AppChannel;
|
|
|
+using Microsoft.AspNetCore.Authorization;
|
|
|
+using Microsoft.AspNetCore.Mvc;
|
|
|
+
|
|
|
+namespace GxPress.Api.AdminControllers
|
|
|
+{
|
|
|
+ /// <summary>
|
|
|
+ /// 文章组
|
|
|
+ /// </summary>
|
|
|
+ [Route("api/admin/app-channel")]
|
|
|
+ [ApiController]
|
|
|
+ [Authorize]
|
|
|
+ public class AdminAppChannelController : Controller
|
|
|
+ {
|
|
|
+ private readonly IChannelCategoryMediaRepository channelCategoryMediaRepository;
|
|
|
+ private readonly IChannelCategoryRepository channelCategoryRepository;
|
|
|
+ private readonly IAppChannelRepository appChannelRepository;
|
|
|
+
|
|
|
+ public AdminAppChannelController(IChannelCategoryMediaRepository channelCategoryMediaRepository, IChannelCategoryRepository channelCategoryRepository, IAppChannelRepository appChannelRepository)
|
|
|
+ {
|
|
|
+ this.channelCategoryMediaRepository = channelCategoryMediaRepository;
|
|
|
+ this.channelCategoryRepository = channelCategoryRepository;
|
|
|
+ this.appChannelRepository = appChannelRepository;
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 获取导航详情
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="id"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpGet("channel/{id}")]
|
|
|
+ public async Task<Entity.tede2.AppChannel.AppChannel> GetAsync(int id)
|
|
|
+ {
|
|
|
+ return await appChannelRepository.GetAsync(id);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 查询 公众号 700 视频 710 期刊杂志 720 图书 730
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpGet("channel/list/{id}")]
|
|
|
+ public async Task<IEnumerable<Entity.tede2.AppChannel.AppChannel>> GetAllAsync(int channelTypeValye)
|
|
|
+ {
|
|
|
+ return await appChannelRepository.GetAllAsync((AppChannelConst)channelTypeValye);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 删除导航
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="id"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpDelete("channel/{id}")]
|
|
|
+ public async Task<bool> DeleteAsync(int id)
|
|
|
+ {
|
|
|
+ return await appChannelRepository.DeleteAsync(id);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 修改导航
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="request"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpPut("channel")]
|
|
|
+ public async Task<bool> UpdateAsync(Entity.tede2.AppChannel.AppChannel request)
|
|
|
+ {
|
|
|
+ return await appChannelRepository.UpdateAsync(request);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 添加导航
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="model"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpPost("channel")]
|
|
|
+ public async Task<bool> InsertAsync(Entity.tede2.AppChannel.AppChannel model)
|
|
|
+ {
|
|
|
+ return await appChannelRepository.UpdateAsync(model);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 获取导航分类详情
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="id"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpGet("channel-category/{id}")]
|
|
|
+ public async Task<Entity.tede2.AppChannel.ChannelCategory> ChannelCategoryGetAsync(int id)
|
|
|
+ {
|
|
|
+ return await channelCategoryRepository.GetAsync(id);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 查询导航分类
|
|
|
+ /// </summary>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpGet("channel-category/list/{channelTypeValye}")]
|
|
|
+ public async Task<IEnumerable<ChannelCategoryResult>> ChannelCategoryGetAllAsync(int channelTypeValye)
|
|
|
+ {
|
|
|
+ return await channelCategoryRepository.GetAllAsync((AppChannelConst)channelTypeValye);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 删除导航分类
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="id"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpDelete("channel-category/{id}")]
|
|
|
+ public async Task<bool> ChannelCategoryDeleteAsync(int id)
|
|
|
+ {
|
|
|
+ return await channelCategoryRepository.DeleteAsync(id);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 添加导航分类
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="request"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpPost("channel-category")]
|
|
|
+ public async Task<bool> InsertAsync(ChannelCategory request)
|
|
|
+ {
|
|
|
+ return await channelCategoryRepository.InsertAsync(request);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 删除导航媒体
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="id"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpDelete("channel-category-media/{id}")]
|
|
|
+ public async Task<bool> ChannelCategoryMediaDeleteAsync(int id)
|
|
|
+ {
|
|
|
+ return await channelCategoryMediaRepository.DeleteAsync(id);
|
|
|
+ }
|
|
|
+ /// <summary>
|
|
|
+ /// 添加导航媒体
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="request"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ [HttpPost("channel-category-media")]
|
|
|
+ public async Task<bool> ChannelCategoryMediaInsertAsync(ChannelCategoryMediaInRequest request)
|
|
|
+ {
|
|
|
+ return await channelCategoryMediaRepository.InsertAsync(request);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|