123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- package service
- import (
- "iot_manager_service/app/device/dao"
- "iot_manager_service/app/device/model"
- "iot_manager_service/app/system/service"
- "iot_manager_service/util/cache"
- "iot_manager_service/util/common"
- "iot_manager_service/util/logger"
- "time"
- )
- // 中间件管理服务
- var CaptureUintService = new(captureUintService)
- type captureUintService struct{}
- func (s *captureUintService) CaptureSubmit(userId int64, tenantId string, req *model.CaptureDetail) *common.Errors {
- device := req.CaptureUnit
- device.TenantId = tenantId
- device.UpdateUser = userId
- device.UpdateTime = time.Now()
- if gateway, err := GatewayService.GetOne(device.GatewayId); err == nil {
- device.GatewayName = gateway.GatewayName
- device.GatewaySn = gateway.GatewaySn
- }
- if device.ID == 0 {
- device.CreateTime = time.Now()
- device.CreateUser = userId
- if device.IsExistedBySN() {
- logger.Logger.Errorf("Create IsExistedBySN \n")
- return common.ParamsInvalidResponse(model.RepeatedPrompts, nil)
- }
- logger.Logger.Errorf("device = %+v \n", device)
- if err := device.Create(); err != nil {
- logger.Logger.Errorf("Create err = %s \n", err.Error())
- return common.FailResponse(err.Error(), nil)
- }
- service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeDevice,
- common.DeviceTypeCaptureUnit, common.GetDeviceObject(device.ID, device.GatewayName), common.OperationSuccess)
- return common.SuccessResponse(common.Succeeded, nil)
- }
- if err := device.Update(); err != nil {
- logger.Logger.Errorf("Update err = %s \n", err.Error())
- return common.FailResponse(err.Error(), nil)
- }
- service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeDevice,
- common.DeviceTypeCaptureUnit, common.GetDeviceObject(device.ID, device.GatewayName), common.OperationSuccess)
- return common.SuccessResponse(common.Succeeded, nil)
- }
- func (s *captureUintService) GetCapture(id int) (*model.CaptureDetail, *common.Errors) {
- // 创建查询实例
- device := &dao.CaptureUnit{
- ID: id,
- }
- err := device.GetDevice()
- if err != nil {
- return nil, common.FailResponse(err.Error(), nil)
- }
- detail := &model.CaptureDetail{CaptureUnit: *device}
- endTime, state := cache.GetDeviceState(device.CaptureSn)
- detail.NetworkState = state
- detail.EndLineTime = endTime
- return detail, nil
- }
- func (s *captureUintService) CaptureList(searchValue string, current, size int) ([]model.CaptureDetail, int64, *common.Errors) {
- var details []model.CaptureDetail
- device := dao.CaptureUnit{}
- if searchValue != "" {
- device.CaptureSn = searchValue
- }
- offset := (current - 1) * size
- limit := size
- devices, total, err := device.GetDevices(offset, limit)
- if err != nil {
- return nil, 0, common.FailResponse(err.Error(), nil)
- }
- for _, d := range devices {
- endTime, state := cache.GetDeviceState(d.CaptureSn)
- details = append(details, model.CaptureDetail{
- CaptureUnit: d,
- EndLineTime: endTime,
- NetworkState: state,
- })
- }
- return details, total, nil
- }
- func (s *captureUintService) CaptureGetList(tenantId string, ) ([]*dao.CaptureUnit, *common.Errors) {
- device := &dao.CaptureUnit{
- TenantId: tenantId,
- IsDeleted: 0,
- }
- devices, err := device.GetAllDevices()
- if err != nil {
- return nil, common.FailResponse(err.Error(), nil)
- }
- for _, d := range devices {
- d.CaptureName = d.CaptureName + "(" + d.CaptureSn + ")"
- }
- return devices, nil
- }
- func (s *captureUintService) GetPoint(id int) (*dao.CheckPoint, *common.Errors) {
- // 创建查询实例
- device := &dao.CheckPoint{
- ID: id,
- }
- err := device.GetDevice()
- if err != nil {
- return nil, common.FailResponse(err.Error(), nil)
- }
- return device, nil
- }
- func (s *captureUintService) PointSubmit(userId int64, tenantId string, req *dao.CheckPoint) *common.Errors {
- device := req
- device.TenantId = tenantId
- device.UpdateUser = userId
- device.UpdateTime = time.Now()
- if device.ID == 0 {
- device.CreateTime = time.Now()
- device.CreateUser = userId
- if device.IsExistedBySN() {
- logger.Logger.Errorf("Create IsExistedBySN \n")
- return common.ParamsInvalidResponse(model.RepeatedPrompts, nil)
- }
- logger.Logger.Errorf("device = %+v \n", device)
- if err := device.Create(); err != nil {
- logger.Logger.Errorf("Create err = %s \n", err.Error())
- return common.FailResponse(err.Error(), nil)
- }
- service.OperationHisService.Save(userId, tenantId, common.OperationCreate, common.ModuleTypeDevice,
- common.DeviceTypePoint, common.GetDeviceObject(device.ID, device.PointName), common.OperationSuccess)
- return common.SuccessResponse(common.Succeeded, nil)
- }
- if err := device.Update(); err != nil {
- logger.Logger.Errorf("Update err = %s \n", err.Error())
- return common.FailResponse(err.Error(), nil)
- }
- service.OperationHisService.Save(userId, tenantId, common.OperationUpdate, common.ModuleTypeDevice,
- common.DeviceTypePoint, common.GetDeviceObject(device.ID, device.PointName), common.OperationSuccess)
- return common.SuccessResponse(common.Succeeded, nil)
- }
- func (s *captureUintService) PointList(searchValue string, current, size int) ([]dao.CheckPoint, int64, *common.Errors) {
- device := dao.CheckPoint{}
- if searchValue != "" {
- device.PointSN = searchValue
- }
- offset := (current - 1) * size
- limit := size
- devices, total, err := device.GetDevices(offset, limit)
- if err != nil {
- return nil, 0, common.FailResponse(err.Error(), nil)
- }
- return devices, total, nil
- }
- func (s *captureUintService) PointGetList(tenantId string, ) ([]*dao.CheckPoint, *common.Errors) {
- device := &dao.CheckPoint{
- TenantId: tenantId,
- IsDeleted: 0,
- }
- devices, err := device.GetAllDevices()
- if err != nil {
- return nil, common.FailResponse(err.Error(), nil)
- }
- for _, d := range devices {
- d.PointName = d.PointName + "(" + d.PointSN + ")"
- }
- return devices, nil
- }
- func (s *captureUintService) RemoveCapture(userId int64, tenantId string, id int) *common.Errors {
- // 创建查询实例
- device := &dao.CaptureUnit{
- ID: id,
- IsDeleted: 1,
- UpdateUser: userId,
- UpdateTime: time.Now(),
- }
- err := device.Delete()
- if err != nil {
- return common.FailResponse(err.Error(), nil)
- }
- service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
- common.DeviceTypeCaptureUnit, common.GetDeviceObject(device.ID, device.CaptureName), common.OperationSuccess)
- return nil
- }
- func (s *captureUintService) RemovePoint(userId int64, tenantId string, id int) *common.Errors {
- // 创建查询实例
- device := &dao.CheckPoint{
- ID: id,
- IsDeleted: 1,
- UpdateUser: userId,
- UpdateTime: time.Now(),
- }
- err := device.Delete()
- if err != nil {
- return common.FailResponse(err.Error(), nil)
- }
- service.OperationHisService.Save(userId, tenantId, common.OperationRemove, common.ModuleTypeDevice,
- common.DeviceTypePoint, common.GetDeviceObject(device.ID, device.PointName), common.OperationSuccess)
- return nil
- }
- func (s *captureUintService) GetCaptureByGateway(id int) []dao.CaptureUnit {
- // 创建查询实例
- device := &dao.CaptureUnit{
- GatewayId: id,
- }
- return device.GetDevicesByGateway()
- }
- func (s *captureUintService) GetByLampPole(id int) []dao.CaptureUnit {
- // 创建查询实例
- device := &dao.CaptureUnit{
- LampPoleId: id,
- }
- return device.GetDevicesByLampPole()
- }
|