From 01b491e465e6bcba4abc5b0b9d3d56c1549006e8 Mon Sep 17 00:00:00 2001 From: liuxiaolong <736321739@qq.com> Date: 星期六, 31 八月 2019 16:34:03 +0800 Subject: [PATCH] fix dbtable update status when time invalid --- controllers/cluster.go | 71 +++++++++++++++++++++++++++++++++++ 1 files changed, 71 insertions(+), 0 deletions(-) diff --git a/controllers/cluster.go b/controllers/cluster.go index 4d844ee..7ac903d 100644 --- a/controllers/cluster.go +++ b/controllers/cluster.go @@ -2,7 +2,10 @@ import ( "basic.com/dbapi.git" + "fmt" "github.com/gin-gonic/gin" + "math/rand" + "time" "webserver/extend/code" "webserver/extend/util" ) @@ -72,6 +75,35 @@ util.ResponseFormat(c,code.Success, d) } else { util.ResponseFormat(c,code.ComError,"鍒涘缓澶辫触") + } +} + +// @Summary 鐢熸垚闆嗙兢6浣嶉殢鏈哄瘑鐮� +// @Description 鐢熸垚闆嗙兢6浣嶉殢鏈哄瘑鐮� +// @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/randomPwd [get] +func (cc ClusterController) RandomPwd(c *gin.Context) { + pwd := fmt.Sprintf("%06v", rand.New(rand.NewSource(time.Now().UnixNano())).Int31n(1000000)) + 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,"闆嗙兢鏌ヨ澶辫触") } } @@ -167,3 +199,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