apiGroup.go 4.6 KB
Newer Older
E
eoLinker API Management 已提交
1 2 3 4 5 6
package api

import (
	"net/http"
	"strconv"

黄孟柱 已提交
7 8 9
	"github.com/eolinker/goku-api-gateway/console/controller"
	"github.com/eolinker/goku-api-gateway/console/module/api"
	"github.com/eolinker/goku-api-gateway/console/module/project"
E
eoLinker API Management 已提交
10 11
)

Y
Your Name 已提交
12 13
//AddAPIGroup 新建接口分组
func AddAPIGroup(httpResponse http.ResponseWriter, httpRequest *http.Request) {
E
eoLinker API Management 已提交
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
	_, e := controller.CheckLogin(httpResponse, httpRequest, controller.OperationAPI, controller.OperationEDIT)
	if e != nil {
		return
	}

	groupName := httpRequest.PostFormValue("groupName")
	projectID := httpRequest.PostFormValue("projectID")
	parentGroupID := httpRequest.PostFormValue("parentGroupID")
	if groupName == "" {
		controller.WriteError(httpResponse,
			"290006",
			"api", "[ERROR]Illegal groupName!", nil)
		return

	}
	pjID, err := strconv.Atoi(projectID)
	if err != nil {
		controller.WriteError(httpResponse,
			"290001",
			"api", "[ERROR]Illegal projectID!", err)
		return

	}
	pgID, err := strconv.Atoi(parentGroupID)
	if err != nil && parentGroupID != "" {
		controller.WriteError(httpResponse,
			"290002",
			"api", "[ERROR]Illegal parentGroupID!", err)
		return

	}
	flag, err := project.CheckProjectIsExist(pjID)
	if !flag {

		controller.WriteError(httpResponse,
			"290005",
			"api", "[ERROR]The project does not exist", err)
		return

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

		controller.WriteError(httpResponse,
			"290000",
			"apiGroup",
			result.(string),
			err)
		return
	}

	controller.WriteResultInfo(httpResponse, "apiGroup", "groupID", result)
	return
}

Y
Your Name 已提交
69 70
//EditAPIGroup 修改接口分组
func EditAPIGroup(httpResponse http.ResponseWriter, httpRequest *http.Request) {
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
	_, e := controller.CheckLogin(httpResponse, httpRequest, controller.OperationAPI, controller.OperationEDIT)
	if e != nil {
		return
	}

	groupName := httpRequest.PostFormValue("groupName")
	groupID := httpRequest.PostFormValue("groupID")
	projectID := httpRequest.PostFormValue("projectID")
	if groupName == "" {
		controller.WriteError(httpResponse,
			"290006",
			"apiGroup", "[ERROR]Illegal groupName!", nil)
		return
	}
	gID, err := strconv.Atoi(groupID)
	if err != nil {
		controller.WriteError(httpResponse,
			"290004",
			"apiGroup", "[ERROR]Illegal groupID!", err)
		return

	}
	pjID, err := strconv.Atoi(projectID)
	if err != nil {
		controller.WriteError(httpResponse,
			"290001",
			"apiGroup", "[ERROR]Illegal projectID!", err)
		return

	}
	flag, err := project.CheckProjectIsExist(pjID)
	if !flag {

		controller.WriteError(httpResponse,
			"290005",
			"apiGroup", "[ERROR]The project does not exist", err)
		return

	}
Y
Your Name 已提交
110
	flag, result, err := api.EditAPIGroup(groupName, gID, pjID)
E
eoLinker API Management 已提交
111 112 113 114 115 116 117 118 119 120
	if !flag {

		controller.WriteError(httpResponse,
			"290000",
			"apiGroup", result, err)
	}
	controller.WriteResultInfo(httpResponse, "apiGroup", "", nil)
	return
}

Y
Your Name 已提交
121 122
//DeleteAPIGroup 删除接口分组
func DeleteAPIGroup(httpResponse http.ResponseWriter, httpRequest *http.Request) {
E
eoLinker API Management 已提交
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
	_, e := controller.CheckLogin(httpResponse, httpRequest, controller.OperationAPI, controller.OperationEDIT)
	if e != nil {
		return
	}

	groupID := httpRequest.PostFormValue("groupID")
	projectID := httpRequest.PostFormValue("projectID")

	gID, err := strconv.Atoi(groupID)
	if err != nil {
		controller.WriteError(httpResponse,
			"290004",
			"apiGroup", "[ERROR]Illegal groupID!", err)
		return

	}
	pjID, err := strconv.Atoi(projectID)
	if err != nil {
		controller.WriteError(httpResponse,
			"290001",
			"apiGroup", "[ERROR]Illegal projectID!", err)
		return

	}
Y
Your Name 已提交
147
	flag, result, err := api.DeleteAPIGroup(pjID, gID)
E
eoLinker API Management 已提交
148 149 150 151 152 153 154 155 156 157 158
	if !flag {

		controller.WriteError(httpResponse,
			"290000",
			"apiGroup", result, err)
	}

	controller.WriteResultInfo(httpResponse, "apiGroup", "", nil)
	return
}

Y
Your Name 已提交
159 160
//GetAPIGroupList 获取接口分组列表
func GetAPIGroupList(httpResponse http.ResponseWriter, httpRequest *http.Request) {
E
eoLinker API Management 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173 174
	_, e := controller.CheckLogin(httpResponse, httpRequest, controller.OperationAPI, controller.OperationREAD)
	if e != nil {
		return
	}

	projectID := httpRequest.PostFormValue("projectID")
	pjID, err := strconv.Atoi(projectID)
	if err != nil {
		controller.WriteError(httpResponse,
			"290001",
			"apiGroup", "[ERROR]Illegal projectID!", err)
		return

	}
Y
Your Name 已提交
175
	flag, result, err := api.GetAPIGroupList(pjID)
E
eoLinker API Management 已提交
176 177 178 179 180 181 182 183 184 185 186 187 188
	if !flag {

		controller.WriteError(httpResponse,
			"290000",
			"apiGroup", "[ERROR]Empty api group list!", err)
		return

	}

	controller.WriteResultInfo(httpResponse, "apiGroup", "groupList", result)
	return
}

Y
Your Name 已提交
189 190 191
//UpdateAPIGroupScript 更新接口分组脚本
func UpdateAPIGroupScript(httpResponse http.ResponseWriter, httpRequest *http.Request) {
	api.UpdateAPIGroupScript()
E
eoLinker API Management 已提交
192
}