liuxiaolong
2019-06-15 1efc7ae174f57e6a0a96ccfe4efadc9390589b5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
package controllers
 
import (
    "encoding/json"
    "fmt"
 
    "github.com/gin-gonic/gin"
 
    "basic.com/dbapi.git"
    "webserver/extend/code"
    "webserver/extend/util"
)
 
type CameraController struct{}
 
type CameraVo struct {
    Id        string       `json:"id"`
    Name      string       `json:"name"`
    Type      int          `json:"type" `
    Addr      string       `json:"addr"`
    Areaid    uint         `json:"areaid"`
    Longitude float64      `json:"longitude"`
    Latitude  float64      `json:"latitude"`
    Rtsp      string       `json:"rtsp"`
    Ip        string       `json:"ip"`
    Port      int          `json:"port"`
    Username  string       `json:"username"`
    Password  string       `json:"password"`
    Brand     string       `json:"brand"`
    Reserved  string       `json:"reserved"`
}
 
// @Summary 添加摄像机
// @Description  "传入区域的id(areaid)和摄像机名字(name) 必须, 其他参数可以在摄像机配置点击保存进行添加"
// @Accept json
// @Produce json
// @Tags camera
// @Param  cameraStruct body controllers.CameraVo  false "struct of camera;the areaid of area's id and name of camera;must need"
// @Success 200 {string} json "{"code":200, success:true,  msg:"请求处理成功", data:"添加后的摄像机信息"}"
// @Failure 500 {string} json "{"code":500, success:false   msg:"null ",data:"错误信息内容"}"
// @Router /data/api-v/camera/add [post]
func (ac CameraController) CameraAdd(c *gin.Context) {
    var cam CameraVo
    var api dbapi.CameraApi
 
    err := c.BindJSON(&cam)
    if err != nil {
        util.ResponseFormat(c, code.RequestParamError, "参数错误")
        return
    }
    cam.Id = util.PseudoUuid()
    paramBody :=util.Struct2Map(cam)
    if api.CameraAdd(paramBody) {
        util.ResponseFormat(c, code.Success, cam)
        return
    }
    util.ResponseFormat(c, code.ComError, err)
 
}
 
// @Summary 更新摄像机
// @Description "用于更新摄像机操作"
// @Accept json
// @Produce json
// @Tags camera
// @Param cam body controllers.CameraVo true "id:摄像机id default:cid0 (string),     areaid:摄像机关联区域id default:1 (int),      name:摄像机名字 default:Testname(string) 必填; 其他参数可配 "
// @Success 200 {string} json "{"code":200, success:true,  msg:"请求处理成功", data:"修改后的摄像机信息"}"
// @Failure 500 {string} json "{"code":500, success:false   msg:"null",data:"错误信息内容"}"
// @Router /data/api-v/camera/update [put]
func (ac CameraController) CameraUpdate(c *gin.Context) {
    var cam CameraVo
    var api dbapi.CameraApi
 
    err := c.BindJSON(&cam)
    if err != nil {
        util.ResponseFormat(c, code.RequestParamError, "参数错误")
        return
    }
    paramBody :=util.Struct2Map(cam)
    if api.CameraAdd(paramBody) {
        util.ResponseFormat(c, code.Success, cam)
        return
    }
 
    util.ResponseFormat(c, code.ComError, err)
}
 
// @Summary "删除摄像机"
// @Description "根据摄像机id删除摄像机"
// @Produce json
// @Tags camera
// @Param cid path string true "摄像机id example: cid0"
// @Success 200 {string} json "{"code":200, success:true,  msg:"请求处理成功", data:"删除成功"}"
// @Failure 500 {string} json "{"code":500, success:false   msg:"",data:"错误信息内容"}"
// @Router /data/api-v/camera/del/{cid} [delete]
func (ac CameraController) CameraDel(c *gin.Context) {
    var api dbapi.CameraApi
    cid := c.Param("cid")
 
    if api.CameraDelete(cid){
        util.ResponseFormat(c, code.Success, "删除成功")
        return
    }
    util.ResponseFormat(c, code.ComError,"删除失败")
}
 
// @Summary 显示摄像机
// @Description "显示摄像机"
// @Produce json
// @Tags camera
// @Param cid path string true "摄像机id"
// @Success 200 {string} json "{"code":200, success:true,  msg:"请求处理成功", data:"摄像机信息"}"
// @Failure 500 {string} json "{"code":500, success:false   msg:"",data:"错误信息内容"}"
// @Router /data/api-v/camera/show/{cid} [get]
func (ac CameraController) CameraSel(c *gin.Context) {
    var api dbapi.CameraApi
    cid := c.Param("cid")
    camera,err := api.GetCameraById(cid)
    if err !=nil {
        util.ResponseFormat(c,code.ComError,"查询失败")
        return
    }
 
    util.ResponseFormat(c, code.Success, camera)
 
}
 
type camerSdkStruct struct {
    Sdkid   string `json:"sdkid"`
    Sdkname string `json:"sdkname"`
    Sdkargs string `json:"sdkargs"`
}
type CamerTask struct {
    Taskid   string `json:"taskid"`
    Taskname string `json:"taskname"`
}
 
type Sdks []camerSdkStruct
type ctpstruct struct {
    CamerTask
    Sdks `json:",omitempty"`
}
 
type Ctp map[CamerTask][]camerSdkStruct
 
func (cam Ctp) MarshalJSON() ([]byte, error) {
    var test []ctpstruct
    var temp ctpstruct
 
    for key, value := range cam {
        temp.CamerTask = key
        temp.Sdks = value
        test = append(test, temp)
 
    }
    return json.Marshal(test)
}
 
// @Summary 将摄像机挂到指定的目录树下
// @Description 将摄像机挂到指定的目录树下
// @Produce json
// @Tags camera
// @Param cameraId path string true "摄像机id"
// @Param areaId path string true "目录区域id"
// @Success 200 {string} json "{"code":200, success:true, msg:"请求处理成功", data:""}"
// @Failure 500 {string} json "{"code":500, success:false, msg:"",data:"错误信息内容"}"
// @Router /data/api-v/camera/cameraAreaAdd [get]
func (ac CameraController) CameraAreaAdd(c *gin.Context) {
    cameraId := c.Param("cameraId")
    areaId := c.Param("areaId")
    fmt.Println(cameraId)
    fmt.Println(areaId)
}
 
// @Summary 删除某一个目录树下的指定摄像机
// @Description 删除某一个目录树下的指定摄像机
// @Produce json
// @Tags camera
// @Param cameraId path string true "摄像机id"
// @Param areaId  path string true "指定目录区域id"
// @Success 200 {string} json "{"code":200, success:true, msg:"请求处理成功", data:""}"
// @Failure 500 {string} json "{"code":500, success:false, msg:"",data:"错误信息内容"}"
// @Router /data/api-v/camera/cameraAreaDel [get]
func (ac CameraController) CameraAreaDel(c *gin.Context) {
    cameraId := c.Param("cameraId")
    areaId := c.Param("areaId")
    fmt.Println(cameraId)
    fmt.Println(areaId)
}