Camera Information System
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
2.6 KiB

using Cis.Application.Core;
using Cis.Application.Core.Component.CameraSDK;
using Cis.Application.Core.Component.PtzServer;
using EC.Helper.CameraSDK;
using Newtonsoft.Json.Linq;
namespace Cis.Application.Cm;
/// <summary>
/// 标签服务
/// </summary>
[ApiDescriptionSettings(CmInfo.GroupName, Order = CmInfo.GroupOrder)]
public class CmMarkLabelService : IDynamicApiController, ITransient
{
private readonly SqlSugarRepository<CmMarkLabel> _baseRep;
private ICameraSdkServer _cameraSdk { get; set; }
public CmMarkLabelService(
SqlSugarRepository<CmMarkLabel> baseRep,
ICameraSdkServer cameraSdk
)
{
_baseRep = baseRep;
_cameraSdk = cameraSdk;
}
[HttpPost]
public async Task<bool> Add([FromForm] CmMarkLabel entity)
{
bool ret = _cameraSdk.GetPtzInfoById(entity.CbCameraId.ToString(), out PtzInfo ptzInfo);
if (!ret) return false;
entity.PanPosition = ptzInfo.Pan;
entity.TiltPosition = ptzInfo.Tilt;
entity.ZoomPosition = ptzInfo.Zoom;
return await _baseRep.InsertAsync(entity);
}
[HttpPost]
public async Task<long> AddReturnId([FromForm] CmMarkLabel entity)
{
bool ret = _cameraSdk.GetPtzInfoById(entity.CbCameraId.ToString(), out PtzInfo ptzInfo);
if (!ret) return 0;
entity.PanPosition = ptzInfo.Pan;
entity.TiltPosition = ptzInfo.Tilt;
entity.ZoomPosition = ptzInfo.Zoom;
await _baseRep.InsertAsync(entity);
return entity.Id;
}
[HttpPost]
public async Task<bool> Update([FromForm] CmMarkLabel entity)
{
return await _baseRep.UpdateAsync(entity);
}
[HttpPost]
public async Task<bool> Delete([FromForm] CmMarkLabel entity)
{
return await _baseRep.DeleteAsync(entity);
}
[HttpGet]
public async Task<CmMarkLabel> Get(long id)
{
CmMarkLabel entity = await _baseRep.GetByIdAsync(id);
return entity;
}
[HttpGet]
public async Task<List<CmMarkLabel>> GetList(string queryJson = "")
{
JObject queryObj = queryJson.ToJObject();
List<CmMarkLabel> list = await _baseRep.AsQueryable()
.ToListAsync();
return list;
}
[HttpGet]
public async Task<List<CmMarkLabel>> GetPageList(string queryJson, string pagination)
{
Pagination pageObj = pagination.ToObject<Pagination>();
JObject queryObj = queryJson.ToJObject();
List<CmMarkLabel> list = await _baseRep.AsQueryable()
.ToPageListAsync(pageObj.Index, pageObj.Size);
return list;
}
}