nodeGroup.go 4.7 KB
Newer Older
E
eoLinker API Management 已提交
1 2 3 4 5 6
package node

import (
	"net/http"
	"strconv"

Y
Your Name 已提交
7 8
	goku_handler "github.com/eolinker/goku-api-gateway/goku-handler"

黄孟柱 已提交
9
	"github.com/eolinker/goku-api-gateway/console/controller"
Y
Your Name 已提交
10
	"github.com/eolinker/goku-api-gateway/console/module/cluster"
黄孟柱 已提交
11
	"github.com/eolinker/goku-api-gateway/console/module/node"
E
eoLinker API Management 已提交
12 13
)

Y
Your Name 已提交
14 15 16
//GroupHandlers groupHandlers
type GroupHandlers struct {
}
E
eoLinker API Management 已提交
17

Y
Your Name 已提交
18 19 20 21 22 23 24 25
//Handlers handlers
func (h *GroupHandlers) Handlers(factory *goku_handler.AccountHandlerFactory) map[string]http.Handler {
	return map[string]http.Handler{
		"/add":     factory.NewAccountHandleFunction(operationNode, true, AddNodeGroup),
		"/edit":    factory.NewAccountHandleFunction(operationNode, true, EditNodeGroup),
		"/delete":  factory.NewAccountHandleFunction(operationNode, true, DeleteNodeGroup),
		"/getInfo": factory.NewAccountHandleFunction(operationNode, false, GetNodeGroupInfo),
		"/getList": factory.NewAccountHandleFunction(operationNode, false, GetNodeGroupList),
E
eoLinker API Management 已提交
26
	}
Y
Your Name 已提交
27 28 29 30 31 32 33 34 35
}

//NewGroupHandlers new groupHandlers
func NewGroupHandlers() *GroupHandlers {
	return &GroupHandlers{}
}

//AddNodeGroup 新增节点分组
func AddNodeGroup(httpResponse http.ResponseWriter, httpRequest *http.Request) {
E
eoLinker API Management 已提交
36 37 38

	cluserName := httpRequest.PostFormValue("cluster")

Y
Your Name 已提交
39 40
	clusterID := cluster.GetClusterIDByName(cluserName)
	if clusterID == 0 {
E
eoLinker API Management 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53
		controller.WriteError(httpResponse, "340003", "", "[ERROR]Illegal cluster!", nil)
		return
	}
	groupName := httpRequest.PostFormValue("groupName")
	if groupName == "" {
		controller.WriteError(httpResponse,
			"280002",
			"nodeGroup",
			"[ERROR]Illegal groupName!",
			nil)
		return

	}
Y
Your Name 已提交
54
	flag, result, err := node.AddNodeGroup(groupName, clusterID)
E
eoLinker API Management 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
	if !flag {

		controller.WriteError(httpResponse,
			"280000",
			"nodeGroup",
			result.(string),
			err)
		return

	}
	controller.WriteResultInfo(httpResponse, "node", "groupID", result)

	return
}

Y
Your Name 已提交
70
//EditNodeGroup 修改节点分组信息
E
eoLinker API Management 已提交
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
func EditNodeGroup(httpResponse http.ResponseWriter, httpRequest *http.Request) {

	groupName := httpRequest.PostFormValue("groupName")
	groupID := httpRequest.PostFormValue("groupID")
	if groupName == "" {
		controller.WriteError(httpResponse,
			"280002",
			"nodeGroup",
			"[ERROR]Illegal groupName!",
			nil)
		return

	}
	id, err := strconv.Atoi(groupID)
	if err != nil {
		controller.WriteError(httpResponse,
			"280001",
			"nodeGroup",
			"[ERROR]Illegal groupID!",
			err)
		return

	}

	flag, result, err := node.EditNodeGroup(groupName, id)
	if !flag {

		controller.WriteError(httpResponse,
			"280000",
			"nodeGroup",
			result,
			err)
		return

	}

	controller.WriteResultInfo(httpResponse, "nodeGroup", "", nil)
}

Y
Your Name 已提交
110
//DeleteNodeGroup 删除节点分组
E
eoLinker API Management 已提交
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
func DeleteNodeGroup(httpResponse http.ResponseWriter, httpRequest *http.Request) {

	groupID := httpRequest.PostFormValue("groupID")

	id, err := strconv.Atoi(groupID)
	if err != nil {
		controller.WriteError(httpResponse,
			"280001",
			"nodeGroup",
			"[ERROR]Illegal groupID!",
			err)
		return

	}
	flag, result, err := node.GetRunningNodeCount(id)
	if !flag {
		controller.WriteError(httpResponse,
			"280013",
			"nodeGroup",
			result.(string),
			err)
		return

	}
	if result.(int) > 0 {
		controller.WriteError(httpResponse,
			"280013",
			"nodeGroup",
			"[ERROR]Contains running nodes",
			err)
		return
	}
	flag, result, err = node.DeleteNodeGroup(id)
	if !flag {

		controller.WriteError(httpResponse,
			"280000",
			"nodeGroup",
			result.(string),
			err)
		return
	}

	controller.WriteResultInfo(httpResponse, "nodeGroup", "", nil)

}

Y
Your Name 已提交
158
//GetNodeGroupInfo 获取节点分组信息
E
eoLinker API Management 已提交
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
func GetNodeGroupInfo(httpResponse http.ResponseWriter, httpRequest *http.Request) {

	groupID := httpRequest.PostFormValue("groupID")

	id, err := strconv.Atoi(groupID)
	if err != nil {
		controller.WriteError(httpResponse,
			"280001",
			"nodeGroup",
			"[ERROR]Illegal groupID!",
			err)
		return

	}
	flag, result, err := node.GetNodeGroupInfo(id)
	if !flag {

		controller.WriteError(httpResponse,
			"280000",
			"nodeGroup",
			"[ERROR]The node group information does not exist!",
			err)
		return
	}

	controller.WriteResultInfo(httpResponse, "node", "groupInfo", result)
}

Y
Your Name 已提交
187
//GetNodeGroupList 获取节点分组列表
E
eoLinker API Management 已提交
188 189 190
func GetNodeGroupList(httpResponse http.ResponseWriter, httpRequest *http.Request) {

	cluserName := httpRequest.FormValue("cluster")
Y
Your Name 已提交
191 192
	clusterID := cluster.GetClusterIDByName(cluserName)
	if clusterID == 0 {
E
eoLinker API Management 已提交
193 194 195 196 197 198 199
		controller.WriteError(httpResponse,
			"280001",
			"nodeGroup",
			"[ERROR]Illegal cluster!",
			nil)
		return
	}
Y
Your Name 已提交
200
	flag, result, err := node.GetNodeGroupList(clusterID)
E
eoLinker API Management 已提交
201 202 203 204 205 206 207 208 209 210 211
	if !flag {

		controller.WriteError(httpResponse,
			"280000",
			"nodeGroup",
			"[ERROR]Empty group list!",
			err)
		return
	}
	controller.WriteResultInfo(httpResponse, "node", "groupList", result)
}