123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218 |
- package service
- import (
- "fmt"
- "iot_manager_service/app/device/dao"
- "iot_manager_service/app/device/model"
- "iot_manager_service/util"
- "time"
- )
- // 中间件管理服务
- var CaptureUintService = new(captureUintService)
- type captureUintService struct{}
- func (s *captureUintService) CaptureSubmit(userId int64, tenantId int, req *model.CaptureDetail) *util.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() {
- fmt.Printf("Create IsExistedBySN \n")
- return util.ParamsInvalidResponse(model.RepeatedPrompts, nil)
- }
- fmt.Printf("device = %+v \n", device)
- if err := device.Create(); err != nil {
- fmt.Printf("Create err = %s \n", err.Error())
- return util.FailResponse(err.Error(), nil)
- }
- return util.SuccessResponse(util.Succeeded, nil)
- }
- if err := device.Update(); err != nil {
- fmt.Printf("Update err = %s \n", err.Error())
- return util.FailResponse(err.Error(), nil)
- }
- //todo operation record
- return util.SuccessResponse(util.Succeeded, nil)
- }
- func (s *captureUintService) GetCapture(id int) (*model.CaptureDetail, *util.Errors) {
- // 创建查询实例
- device := &dao.CaptureUnit{
- ID: id,
- }
- err := device.GetDevice()
- if err != nil {
- return nil, util.FailResponse(err.Error(), nil)
- }
- detail := &model.CaptureDetail{CaptureUnit: *device}
- //todo 获取实时在线最新数据
- // detail.EndLineTime = *
- // detail.NetworkState = *
- return detail, nil
- }
- func (s *captureUintService) CaptureList(searchValue string, current, size int) ([]model.CaptureDetail, *util.Errors) {
- var details []model.CaptureDetail
- device := dao.CaptureUnit{}
- if searchValue != "" {
- device.CaptureSN = searchValue
- }
- offset := (current - 1) * size
- limit := size
- devices, err := device.GetDevices(offset, limit)
- if err != nil {
- return nil, util.FailResponse(err.Error(), nil)
- }
- for _, d := range devices {
- details = append(details, model.CaptureDetail{
- CaptureUnit: d,
- //todo 获取实时在线最新数据
- // detail.EndLineTime = *
- // detail.NetworkState = *
- })
- }
- return details, nil
- }
- func (s *captureUintService) CaptureGetList(tenantId int) ([]*dao.CaptureUnit, *util.Errors) {
- device := &dao.CaptureUnit{
- TenantId: tenantId,
- IsDeleted: 0,
- }
- devices, err := device.GetAllDevices()
- if err != nil {
- return nil, util.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, *util.Errors) {
- // 创建查询实例
- device := &dao.CheckPoint{
- ID: id,
- }
- err := device.GetDevice()
- if err != nil {
- return nil, util.FailResponse(err.Error(), nil)
- }
- return device, nil
- }
- func (s *captureUintService) PointSubmit(userId int64, tenantId int, req *dao.CheckPoint) *util.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() {
- fmt.Printf("Create IsExistedBySN \n")
- return util.ParamsInvalidResponse(model.RepeatedPrompts, nil)
- }
- fmt.Printf("device = %+v \n", device)
- if err := device.Create(); err != nil {
- fmt.Printf("Create err = %s \n", err.Error())
- return util.FailResponse(err.Error(), nil)
- }
- return util.SuccessResponse(util.Succeeded, nil)
- }
- if err := device.Update(); err != nil {
- fmt.Printf("Update err = %s \n", err.Error())
- return util.FailResponse(err.Error(), nil)
- }
- //todo operation record
- return util.SuccessResponse(util.Succeeded, nil)
- }
- func (s *captureUintService) PointList(searchValue string, current, size int) ([]dao.CheckPoint, *util.Errors) {
- device := dao.CheckPoint{}
- if searchValue != "" {
- device.PointSN = searchValue
- }
- offset := (current - 1) * size
- limit := size
- devices, err := device.GetDevices(offset, limit)
- if err != nil {
- return nil, util.FailResponse(err.Error(), nil)
- }
- return devices, nil
- }
- func (s *captureUintService) PointGetList(tenantId int) ([]*dao.CheckPoint, *util.Errors) {
- device := &dao.CheckPoint{
- TenantId: tenantId,
- IsDeleted: 0,
- }
- devices, err := device.GetAllDevices()
- if err != nil {
- return nil, util.FailResponse(err.Error(), nil)
- }
- for _, d := range devices {
- d.PointName = d.PointName + "(" + d.PointSN + ")"
- }
- return devices, nil
- }
- func (s *captureUintService) RemoveCapture(userId int64, id int) *util.Errors {
- // 创建查询实例
- device := &dao.CaptureUnit{
- ID: id,
- IsDeleted: 1,
- UpdateUser: userId,
- UpdateTime: time.Now(),
- }
- //todo operation record
- err := device.Delete()
- if err != nil {
- return util.FailResponse(err.Error(), nil)
- }
- return nil
- }
- func (s *captureUintService) RemovePoint(userId int64, id int) *util.Errors {
- // 创建查询实例
- device := &dao.CheckPoint{
- ID: id,
- IsDeleted: 1,
- UpdateUser: userId,
- UpdateTime: time.Now(),
- }
- //todo operation record
- err := device.Delete()
- if err != nil {
- return util.FailResponse(err.Error(), nil)
- }
- return nil
- }
|