From 5d78b36e851a5862302f2e40c99a4477020c79bc Mon Sep 17 00:00:00 2001
From: liuxiaolong <736321739@qq.com>
Date: 星期五, 20 九月 2019 13:46:52 +0800
Subject: [PATCH] 查找此人时先切图

---
 controllers/cluster.go |   64 ++++++++++++++++++++++++++++---
 1 files changed, 57 insertions(+), 7 deletions(-)

diff --git a/controllers/cluster.go b/controllers/cluster.go
index 3344bb9..5e9314c 100644
--- a/controllers/cluster.go
+++ b/controllers/cluster.go
@@ -90,6 +90,23 @@
 	util.ResponseFormat(c,code.Success,pwd)
 }
 
+// @Summary 鏌ヨ鏈湴闆嗙兢
+// @Description 鏌ヨ鏈湴闆嗙兢
+// @Produce json
+// @Tags cluster
+// @Success 200 {string} json "{"code":200, success:true, msg:"", data:""}"
+// @Failure 500 {string} json "{"code":500, success:false, msg:"",data:""}"
+// @Router /data/api-v/cluster/findCluster [get]
+func (cc ClusterController) FindCluster(c *gin.Context) {
+	var clusterApi dbapi.ClusterApi
+	b, d := clusterApi.FindCluster()
+	if b {
+		util.ResponseFormat(c,code.Success, d)
+	} else {
+		util.ResponseFormat(c,code.ComError,"闆嗙兢鏌ヨ澶辫触")
+	}
+}
+
 // @Summary 鎼滅储闆嗙兢
 // @Description 鎼滅储闆嗙兢
 // @Accept json
@@ -137,18 +154,12 @@
 // @Description 閫氳繃searchNum鍋滄鎼滅储
 // @Produce json
 // @Tags cluster
-// @Param searchNum query string true "鎼滅储缂栧彿"
 // @Success 200 {string} json "{"code":200, success:true, msg:"", data:""}"
 // @Failure 500 {string} json "{"code":500, success:false, msg:"",data:""}"
 // @Router /data/api-v/cluster/stopSearching [post]
 func (cc ClusterController) StopSearching(c *gin.Context) {
-	searchNum := c.Query("searchNum")
-	if searchNum == "" {
-		util.ResponseFormat(c,code.RequestParamError, "鍙傛暟鏈夎")
-		return
-	}
 	var api dbapi.ClusterApi
-	b, d := api.StopSearching(searchNum)
+	b, d := api.StopSearching("")
 	if b {
 		util.ResponseFormat(c,code.Success, d)
 	} else {
@@ -182,3 +193,42 @@
 		util.ResponseFormat(c,code.ComError,"鍔犲叆澶辫触")
 	}
 }
+
+// @Summary 淇濆瓨闆嗙兢鍚嶇О
+// @Description 淇濆瓨闆嗙兢鍚嶇О
+// @Produce json
+// @Tags cluster
+// @Param  clusterName query string true "闆嗙兢鍚嶇О"
+// @Success 200 {string} json "{"code":200, success:true, msg:"", data:""}"
+// @Failure 500 {string} json "{"code":500, success:false, msg:"",data:""}"
+// @Router /data/api-v/cluster/updateClusterName [post]
+func (cc ClusterController) UpdateClusterName(c *gin.Context) {
+	clusterName := c.PostForm("clusterName")
+	if clusterName == "" {
+		util.ResponseFormat(c,code.RequestParamError, "鍙傛暟鏈夎")
+		return
+	}
+	var api dbapi.ClusterApi
+	b,_ := api.UpdateClusterName(clusterName)
+	if b {
+		util.ResponseFormat(c,code.UpdateSuccess,"鏇存柊鎴愬姛")
+	} else {
+		util.ResponseFormat(c,code.ComError, "鏇存柊澶辫触")
+	}
+}
+
+// @Summary 閫�鍑洪泦缇�
+// @Description 閫�鍑洪泦缇�
+// @Produce json
+// @Tags cluster
+// @Success 200 {string} json "{"code":200, success:true, msg:"", data:""}"
+// @Failure 500 {string} json "{"code":500, success:false, msg:"",data:""}"
+// @Router /data/api-v/cluster/leave [post]
+func (cc ClusterController) Leave(c *gin.Context) {
+	var api dbapi.ClusterApi
+	if b,_:= api.Leave();b {
+		util.ResponseFormat(c,code.Success,"閫�鍑烘垚鍔�")
+	} else {
+		util.ResponseFormat(c,code.ComError,"閫�鍑哄け璐�")
+	}
+}
\ No newline at end of file

--
Gitblit v1.8.0