using Microsoft.AspNetCore.Mvc;
|
using System.Net;
|
using System.Net.Http.Headers;
|
using Microsoft.Extensions.Hosting.Internal;
|
using Microsoft.AspNetCore.Http.Extensions;
|
using IStation.Untity;
|
using Furion.DynamicApiController;
|
using System.ComponentModel.DataAnnotations;
|
using Mapster;
|
|
|
namespace IStation.Application
|
{
|
/// <summary>
|
/// UserAttention
|
/// </summary>
|
[Route("User/UserAttention")]
|
[ApiDescriptionSettings("User", Name = "用户关注", Order = 899)]
|
public class UserAttention_Controller : IDynamicApiController
|
{
|
private readonly Service.UserAttention _service = new Service.UserAttention();
|
|
#region Query
|
|
/// <summary>
|
///获取所有
|
/// </summary>
|
[Route("GetAll@V1.0")]
|
[HttpGet]
|
public List<UserAttentionDto> GetAll()
|
{
|
var list = _service.GetAll();
|
var vm_list = list?.Select(x => x.Adapt<Model.UserAttention, UserAttentionDto>()).ToList();
|
return vm_list;
|
}
|
|
/// <summary>
|
/// 通过 ID 获取
|
/// </summary>
|
[Route("GetByID@V1.0")]
|
[HttpGet]
|
public UserAttentionDto GetByID([FromQuery][Required] IDInput input)
|
{
|
var model = _service.GetByID(input.ID);
|
return model?.Adapt<Model.UserAttention, UserAttentionDto>();
|
}
|
|
/// <summary>
|
/// 通过 Ids 获取
|
/// </summary>
|
[Route("GetByIds@V1.0")]
|
[HttpGet]
|
public List<UserAttentionDto> GetByIds([FromQuery] IdsInput model)
|
{
|
var ids = LongListHelper.ToList(model.Ids);
|
var list = _service.GetByIds(ids);
|
var vm_list = list?.Select(x => x.Adapt<Model.UserAttention, UserAttentionDto>()).ToList();
|
return vm_list;
|
}
|
|
/// <summary>
|
/// 通过 UserID 获取
|
/// </summary>
|
[Route("GetByUserID@V1.0")]
|
[HttpGet]
|
public List<UserAttentionDto> GetByUserID
|
(
|
[Required,Range(1,long.MaxValue,ErrorMessage ="UserID 必须大于0")]
|
long UserID
|
)
|
{
|
var list = _service.GetByUserID(UserID);
|
var vm_list = list?.Select(x => x.Adapt<Model.UserAttention, UserAttentionDto>()).ToList();
|
return vm_list;
|
}
|
|
/// <summary>
|
/// 通过 UserID 和 ObjectType 获取
|
/// </summary>
|
[Route("GetByUserIDAndObjectType@V1.0")]
|
[HttpGet]
|
public List<UserAttentionDto> GetByUserIDAndObjectType
|
(
|
[Required,Range(1,long.MaxValue,ErrorMessage ="UserID 必须大于0")]
|
long UserID,
|
[Required,DataValidation(AllowEmptyStrings =false)]
|
string ObjectType
|
)
|
{
|
var list = _service.GetByUserIDAndObjectType(UserID,ObjectType);
|
var vm_list = list?.Select(x => x.Adapt<Model.UserAttention, UserAttentionDto>()).ToList();
|
return vm_list;
|
}
|
|
/// <summary>
|
/// 通过 UserID 和 ObjectType 获取
|
/// </summary>
|
[Route("GetByUserIDAndObjectTypeUnderCorpID@V1.0")]
|
[HttpGet]
|
public List<UserAttentionDto> GetByUserIDAndObjectTypeUnderCorpID
|
(
|
[Required,Range(1,long.MaxValue,ErrorMessage ="UserID 必须大于0")]
|
long UserID,
|
[Required,Range(1,long.MaxValue,ErrorMessage ="CorpID 必须大于0")]
|
long CorpID,
|
[Required,DataValidation(AllowEmptyStrings =false)]
|
string ObjectType
|
)
|
{
|
|
var list = _service.GetByUserIDAndObjectTypeUnderCorpID(UserID,CorpID, ObjectType);
|
var vm_list = list?.Select(x => x.Adapt<Model.UserAttention, UserAttentionDto>()).ToList();
|
return vm_list;
|
}
|
|
/// <summary>
|
/// 通过 UserID 和 Object 获取
|
/// </summary>
|
[Route("GetByUserIDAndObject@V1.0")]
|
[HttpGet]
|
public UserAttentionDto GetByUserIDAndObject
|
(
|
[Required,Range(1,long.MaxValue,ErrorMessage ="UserID 必须大于0")]
|
long UserID,
|
[Required,Range(1,long.MaxValue,ErrorMessage ="CorpID 必须大于0")]
|
long CorpID,
|
[Required,DataValidation(AllowEmptyStrings =false)]
|
string ObjectType,
|
[Required,Range(1,long.MaxValue,ErrorMessage ="ObjectID 必须大于0")]
|
long ObjectID
|
)
|
{
|
var model = _service.GetByUserIDAndObject(UserID, CorpID, ObjectType,ObjectID);
|
return model?.Adapt<Model.UserAttention, UserAttentionDto>();
|
}
|
|
#endregion
|
|
#region Insert
|
|
/// <summary>
|
/// 插入一条
|
/// </summary>
|
[Route("Insert@V1.0")]
|
[HttpPost]
|
public long Insert(AddUserAttentionInput input)
|
{
|
if (input == null)
|
return default;
|
var model = input.Adapt<AddUserAttentionInput, Model.UserAttention>();
|
var id = _service.Insert(model);
|
return id;
|
}
|
|
/// <summary>
|
/// 插入多条
|
/// </summary>
|
[Route("Inserts@V1.0")]
|
[HttpPost]
|
public bool Inserts(List<AddUserAttentionInput> inputList)
|
{
|
if (inputList == null || inputList.Count < 1)
|
return false;
|
var list = inputList.Select(x => x.Adapt<AddUserAttentionInput, Model.UserAttention>()).ToList();
|
var bol = _service.Inserts(list);
|
return bol;
|
}
|
|
#endregion
|
|
#region 设置
|
|
/// <summary>
|
/// 更新多条
|
/// </summary>
|
[Route("Set@V1.0")]
|
[HttpPost]
|
public bool Set(SetUserAttentionInput input)
|
{
|
if (input == null)
|
{
|
return false;
|
}
|
var attentions = input.Attentions?.Select(x => x.Adapt<AttentionObjectSelected, Model.AttentionObjectSelected>()).ToList();
|
var bol = _service.Set(input.UserID, attentions);
|
return bol;
|
}
|
|
#endregion
|
|
#region Delete
|
|
/// <summary>
|
/// 通过 ID 删除
|
/// </summary>
|
[Route("DeleteByID@V1.0")]
|
[HttpDelete]
|
public DeleteReasonOutput DeleteByID
|
(
|
[Required,Range(1,long.MaxValue,ErrorMessage ="ID 必须大于0")]
|
long ID
|
)
|
{
|
var bol = _service.DeleteByID(ID, out string msg);
|
return new DeleteReasonOutput() { Success = bol, Reason = msg };
|
}
|
|
/// <summary>
|
/// 通过 UserID 和 Object 删除
|
/// </summary>
|
[Route("DeleteByUserIDAndObject@V1.0")]
|
[HttpDelete]
|
public DeleteReasonOutput DeleteByUserIDAndObject
|
(
|
[Required,Range(1,long.MaxValue,ErrorMessage ="UserID 必须大于0")]
|
long UserID,
|
[Required,Range(1,long.MaxValue,ErrorMessage ="CorpID 必须大于0")]
|
long CorpID,
|
[Required,DataValidation(AllowEmptyStrings =false)]
|
string ObjectType,
|
[Required,Range(1,long.MaxValue,ErrorMessage ="ObjectID 必须大于0")]
|
long ObjectID
|
)
|
{
|
var bol = _service.DeleteByUserIDAndObject(UserID,CorpID,ObjectType,ObjectID,out string msg);
|
return new DeleteReasonOutput() { Success = bol, Reason = msg };
|
}
|
|
#endregion
|
|
}
|
}
|