change group to tags field
This commit is contained in:
parent
a7b8646378
commit
7d94108600
2
main.go
2
main.go
|
@ -122,8 +122,6 @@ func main() {
|
||||||
orm.RegisterSchemaWithIndexName(elastic.CommonCommand{}, "commands")
|
orm.RegisterSchemaWithIndexName(elastic.CommonCommand{}, "commands")
|
||||||
orm.RegisterSchemaWithIndexName(elastic.TraceTemplate{}, "trace-template")
|
orm.RegisterSchemaWithIndexName(elastic.TraceTemplate{}, "trace-template")
|
||||||
orm.RegisterSchemaWithIndexName(gateway.Instance{} , "gateway-instance")
|
orm.RegisterSchemaWithIndexName(gateway.Instance{} , "gateway-instance")
|
||||||
orm.RegisterSchemaWithIndexName(gateway.Group{} , "gateway-group")
|
|
||||||
orm.RegisterSchemaWithIndexName(gateway.InstanceGroup{} , "gateway-instance-group")
|
|
||||||
|
|
||||||
api.RegisterSchema()
|
api.RegisterSchema()
|
||||||
|
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
|
||||||
* web: https://infinilabs.com
|
|
||||||
* mail: hello#infini.ltd */
|
|
||||||
|
|
||||||
package gateway
|
|
||||||
|
|
||||||
import "infini.sh/framework/core/orm"
|
|
||||||
|
|
||||||
type Group struct {
|
|
||||||
orm.ORMObjectBase
|
|
||||||
Name string `json:"name,omitempty" elastic_mapping:"name:{type:keyword,fields:{text: {type: text}}}"`
|
|
||||||
Owner string `json:"owner,omitempty" config:"owner" elastic_mapping:"owner:{type:keyword}"`
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
|
||||||
* web: https://infinilabs.com
|
|
||||||
* mail: hello#infini.ltd */
|
|
||||||
|
|
||||||
package gateway
|
|
||||||
|
|
||||||
import "infini.sh/framework/core/orm"
|
|
||||||
|
|
||||||
type InstanceGroup struct {
|
|
||||||
orm.ORMObjectBase
|
|
||||||
GroupID string `json:"group_id,omitempty" elastic_mapping:"group_id: { type: keyword }"`
|
|
||||||
InstanceID string `json:"instance_id,omitempty" elastic_mapping:"instance_id: { type: keyword }"`
|
|
||||||
}
|
|
|
@ -21,6 +21,6 @@ type Instance struct {
|
||||||
Password string `json:"password,omitempty" config:"password" elastic_mapping:"password:{type:keyword}"`
|
Password string `json:"password,omitempty" config:"password" elastic_mapping:"password:{type:keyword}"`
|
||||||
} `config:"basic_auth" json:"basic_auth,omitempty" elastic_mapping:"basic_auth:{type:object}"`
|
} `config:"basic_auth" json:"basic_auth,omitempty" elastic_mapping:"basic_auth:{type:object}"`
|
||||||
Owner string `json:"owner,omitempty" config:"owner" elastic_mapping:"owner:{type:keyword}"`
|
Owner string `json:"owner,omitempty" config:"owner" elastic_mapping:"owner:{type:keyword}"`
|
||||||
Group string `json:"group,omitempty"`
|
Tags [] string `json:"tags,omitempty"`
|
||||||
Description string `json:"description,omitempty" config:"description" elastic_mapping:"description:{type:keyword}"`
|
Description string `json:"description,omitempty" config:"description" elastic_mapping:"description:{type:keyword}"`
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,4 @@ func init() {
|
||||||
api.HandleAPIMethod(api.PUT, "/gateway/instance/:instance_id", gateway.updateInstance)
|
api.HandleAPIMethod(api.PUT, "/gateway/instance/:instance_id", gateway.updateInstance)
|
||||||
api.HandleAPIMethod(api.DELETE, "/gateway/instance/:instance_id", gateway.deleteInstance)
|
api.HandleAPIMethod(api.DELETE, "/gateway/instance/:instance_id", gateway.deleteInstance)
|
||||||
api.HandleAPIMethod(api.GET, "/gateway/instance/_search", gateway.searchInstance)
|
api.HandleAPIMethod(api.GET, "/gateway/instance/_search", gateway.searchInstance)
|
||||||
|
|
||||||
api.HandleAPIMethod(api.GET, "/gateway/group/:group_id", gateway.getGroup)
|
|
||||||
api.HandleAPIMethod(api.GET, "/gateway/group/_search", gateway.searchGroup)
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,77 +0,0 @@
|
||||||
/* Copyright © INFINI Ltd. All rights reserved.
|
|
||||||
* web: https://infinilabs.com
|
|
||||||
* mail: hello#infini.ltd */
|
|
||||||
|
|
||||||
package gateway
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
"infini.sh/console/model/gateway"
|
|
||||||
httprouter "infini.sh/framework/core/api/router"
|
|
||||||
"infini.sh/framework/core/orm"
|
|
||||||
"infini.sh/framework/core/util"
|
|
||||||
"net/http"
|
|
||||||
log "src/github.com/cihub/seelog"
|
|
||||||
"strconv"
|
|
||||||
"strings"
|
|
||||||
)
|
|
||||||
|
|
||||||
func (h *GatewayAPI) getGroup(w http.ResponseWriter, req *http.Request, ps httprouter.Params) {
|
|
||||||
id := ps.MustGetParameter("group_id")
|
|
||||||
|
|
||||||
obj := gateway.Group{}
|
|
||||||
obj.ID = id
|
|
||||||
|
|
||||||
exists, err := orm.Get(&obj)
|
|
||||||
if !exists || err != nil {
|
|
||||||
h.WriteJSON(w, util.MapStr{
|
|
||||||
"_id": id,
|
|
||||||
"found": false,
|
|
||||||
}, http.StatusNotFound)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
if err != nil {
|
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
h.WriteJSON(w, util.MapStr{
|
|
||||||
"found": true,
|
|
||||||
"_id": id,
|
|
||||||
"_source": obj,
|
|
||||||
}, 200)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (h *GatewayAPI) searchGroup(w http.ResponseWriter, req *http.Request, ps httprouter.Params) {
|
|
||||||
|
|
||||||
var (
|
|
||||||
name = h.GetParameterOrDefault(req, "name", "")
|
|
||||||
queryDSL = `{"query":{"bool":{"must":[%s]}}, "size": %d, "from": %d}`
|
|
||||||
strSize = h.GetParameterOrDefault(req, "size", "20")
|
|
||||||
strFrom = h.GetParameterOrDefault(req, "from", "0")
|
|
||||||
mustBuilder = &strings.Builder{}
|
|
||||||
)
|
|
||||||
if name != "" {
|
|
||||||
mustBuilder.WriteString(fmt.Sprintf(`{"prefix":{"name.text": "%s"}}`, name))
|
|
||||||
}
|
|
||||||
size, _ := strconv.Atoi(strSize)
|
|
||||||
if size <= 0 {
|
|
||||||
size = 20
|
|
||||||
}
|
|
||||||
from, _ := strconv.Atoi(strFrom)
|
|
||||||
if from < 0 {
|
|
||||||
from = 0
|
|
||||||
}
|
|
||||||
|
|
||||||
q := orm.Query{}
|
|
||||||
queryDSL = fmt.Sprintf(queryDSL, mustBuilder.String(), size, from)
|
|
||||||
q.RawQuery = []byte(queryDSL)
|
|
||||||
|
|
||||||
err, res := orm.Search(&gateway.Group{}, &q)
|
|
||||||
if err != nil {
|
|
||||||
log.Error(err)
|
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
h.Write(w, res.Raw)
|
|
||||||
}
|
|
|
@ -4,87 +4,87 @@
|
||||||
|
|
||||||
package gateway
|
package gateway
|
||||||
|
|
||||||
import (
|
//import (
|
||||||
"fmt"
|
// "fmt"
|
||||||
"infini.sh/console/model/gateway"
|
// "infini.sh/console/model/gateway"
|
||||||
"infini.sh/framework/core/orm"
|
// "infini.sh/framework/core/orm"
|
||||||
"infini.sh/framework/core/util"
|
// "infini.sh/framework/core/util"
|
||||||
)
|
//)
|
||||||
|
//
|
||||||
func fetchInstanceGroup(instanceID string) (string, error){
|
//func fetchInstanceGroup(instanceID string) (string, error){
|
||||||
// fetch gateway instance group
|
// // fetch gateway instance group
|
||||||
q := orm.Query{}
|
// q := orm.Query{}
|
||||||
q.RawQuery = []byte(fmt.Sprintf(`{"size": 1, "query":{"term":{"instance_id":{"value":"%s"}}}}`, instanceID))
|
// q.RawQuery = []byte(fmt.Sprintf(`{"size": 1, "query":{"term":{"instance_id":{"value":"%s"}}}}`, instanceID))
|
||||||
err, res := orm.Search(&gateway.InstanceGroup{}, &q)
|
// err, res := orm.Search(&gateway.InstanceGroup{}, &q)
|
||||||
if err != nil {
|
// if err != nil {
|
||||||
return "", err
|
// return "", err
|
||||||
}
|
// }
|
||||||
if len(res.Result) > 0 {
|
// if len(res.Result) > 0 {
|
||||||
if rowMap, ok := res.Result[0].(map[string]interface{}); ok {
|
// if rowMap, ok := res.Result[0].(map[string]interface{}); ok {
|
||||||
return rowMap["group_id"].(string), nil
|
// return rowMap["group_id"].(string), nil
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
return "", nil
|
// return "", nil
|
||||||
}
|
//}
|
||||||
|
//
|
||||||
func fetchInstanceGroupByID(instanceIDs []interface{})([]interface{}, error){
|
//func fetchInstanceGroupByID(instanceIDs []interface{})([]interface{}, error){
|
||||||
if len(instanceIDs) == 0 {
|
// if len(instanceIDs) == 0 {
|
||||||
return nil, nil
|
// return nil, nil
|
||||||
}
|
// }
|
||||||
// fetch gateway instance groups
|
// // fetch gateway instance groups
|
||||||
esQuery := util.MapStr{
|
// esQuery := util.MapStr{
|
||||||
"query": util.MapStr{
|
// "query": util.MapStr{
|
||||||
"terms": util.MapStr{
|
// "terms": util.MapStr{
|
||||||
"instance_id": instanceIDs,
|
// "instance_id": instanceIDs,
|
||||||
},
|
// },
|
||||||
},
|
// },
|
||||||
}
|
// }
|
||||||
q := orm.Query{}
|
// q := orm.Query{}
|
||||||
q.RawQuery = util.MustToJSONBytes(esQuery)
|
// q.RawQuery = util.MustToJSONBytes(esQuery)
|
||||||
err, res := orm.Search(&gateway.InstanceGroup{}, &q)
|
// err, res := orm.Search(&gateway.InstanceGroup{}, &q)
|
||||||
return res.Result, err
|
// return res.Result, err
|
||||||
}
|
//}
|
||||||
func fetchGroupByID(groupIDs []interface{})([]interface{}, error){
|
//func fetchGroupByID(groupIDs []interface{})([]interface{}, error){
|
||||||
if len(groupIDs) == 0 {
|
// if len(groupIDs) == 0 {
|
||||||
return nil, nil
|
// return nil, nil
|
||||||
}
|
// }
|
||||||
// fetch gateway groups
|
// // fetch gateway groups
|
||||||
esQuery := util.MapStr{
|
// esQuery := util.MapStr{
|
||||||
"query": util.MapStr{
|
// "query": util.MapStr{
|
||||||
"terms": util.MapStr{
|
// "terms": util.MapStr{
|
||||||
"_id": groupIDs,
|
// "_id": groupIDs,
|
||||||
},
|
// },
|
||||||
},
|
// },
|
||||||
}
|
// }
|
||||||
q := orm.Query{}
|
// q := orm.Query{}
|
||||||
q.RawQuery = util.MustToJSONBytes(esQuery)
|
// q.RawQuery = util.MustToJSONBytes(esQuery)
|
||||||
err, res := orm.Search(&gateway.Group{}, &q)
|
// err, res := orm.Search(&gateway.Group{}, &q)
|
||||||
return res.Result, err
|
// return res.Result, err
|
||||||
}
|
//}
|
||||||
|
//
|
||||||
func pickElasticsearchColumnValues(result []interface{}, columnName string) []interface{}{
|
//func pickElasticsearchColumnValues(result []interface{}, columnName string) []interface{}{
|
||||||
if len(result) == 0 {
|
// if len(result) == 0 {
|
||||||
return nil
|
// return nil
|
||||||
}
|
// }
|
||||||
columnValues := make([]interface{}, 0, len(result))
|
// columnValues := make([]interface{}, 0, len(result))
|
||||||
for _, row := range result {
|
// for _, row := range result {
|
||||||
if rowMap, ok := row.(map[string]interface{}); ok {
|
// if rowMap, ok := row.(map[string]interface{}); ok {
|
||||||
columnValues = append(columnValues, rowMap[columnName])
|
// columnValues = append(columnValues, rowMap[columnName])
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
return columnValues
|
// return columnValues
|
||||||
}
|
//}
|
||||||
|
//
|
||||||
func getRelationshipMap(result []interface{}, key string, value string) map[string]interface{}{
|
//func getRelationshipMap(result []interface{}, key string, value string) map[string]interface{}{
|
||||||
if len(result) == 0 {
|
// if len(result) == 0 {
|
||||||
return nil
|
// return nil
|
||||||
}
|
// }
|
||||||
resultMap := map[string]interface{}{}
|
// resultMap := map[string]interface{}{}
|
||||||
for _, row := range result {
|
// for _, row := range result {
|
||||||
if rowMap, ok := row.(map[string]interface{}); ok {
|
// if rowMap, ok := row.(map[string]interface{}); ok {
|
||||||
resultMap[rowMap[key].(string)] = rowMap[value]
|
// resultMap[rowMap[key].(string)] = rowMap[value]
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
return resultMap
|
// return resultMap
|
||||||
}
|
//}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,6 @@ import (
|
||||||
"github.com/segmentio/encoding/json"
|
"github.com/segmentio/encoding/json"
|
||||||
"infini.sh/console/model/gateway"
|
"infini.sh/console/model/gateway"
|
||||||
httprouter "infini.sh/framework/core/api/router"
|
httprouter "infini.sh/framework/core/api/router"
|
||||||
"infini.sh/framework/core/elastic"
|
|
||||||
"infini.sh/framework/core/orm"
|
"infini.sh/framework/core/orm"
|
||||||
"infini.sh/framework/core/util"
|
"infini.sh/framework/core/util"
|
||||||
"infini.sh/framework/lib/fasthttp"
|
"infini.sh/framework/lib/fasthttp"
|
||||||
|
@ -30,25 +29,12 @@ func (h *GatewayAPI) createInstance(w http.ResponseWriter, req *http.Request, ps
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
var groupID = obj.Group
|
|
||||||
obj.Group = ""
|
|
||||||
err = orm.Create(obj)
|
err = orm.Create(obj)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
||||||
log.Error(err)
|
log.Error(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if groupID != "" {
|
|
||||||
groupInstance := &gateway.InstanceGroup{}
|
|
||||||
groupInstance.InstanceID = obj.ID
|
|
||||||
groupInstance.GroupID = groupID
|
|
||||||
err = orm.Create(groupInstance)
|
|
||||||
if err != nil {
|
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
log.Error(err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
h.WriteJSON(w, util.MapStr{
|
h.WriteJSON(w, util.MapStr{
|
||||||
"_id": obj.ID,
|
"_id": obj.ID,
|
||||||
|
@ -71,7 +57,6 @@ func (h *GatewayAPI) getInstance(w http.ResponseWriter, req *http.Request, ps ht
|
||||||
}, http.StatusNotFound)
|
}, http.StatusNotFound)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
obj.Group, err = fetchInstanceGroup(id)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
||||||
log.Error(err)
|
log.Error(err)
|
||||||
|
@ -98,12 +83,6 @@ func (h *GatewayAPI) updateInstance(w http.ResponseWriter, req *http.Request, ps
|
||||||
}, http.StatusNotFound)
|
}, http.StatusNotFound)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
oldGroup, err := fetchInstanceGroup(id)
|
|
||||||
if err != nil {
|
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
log.Error(err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
id = obj.ID
|
id = obj.ID
|
||||||
create := obj.Created
|
create := obj.Created
|
||||||
|
@ -114,50 +93,10 @@ func (h *GatewayAPI) updateInstance(w http.ResponseWriter, req *http.Request, ps
|
||||||
log.Error(err)
|
log.Error(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if obj.Group != oldGroup {
|
|
||||||
delQuery := util.MapStr{
|
|
||||||
"query": util.MapStr{
|
|
||||||
"bool": util.MapStr{
|
|
||||||
"must": []util.MapStr{
|
|
||||||
//{
|
|
||||||
// "term": util.MapStr{
|
|
||||||
// "group_id": util.MapStr{
|
|
||||||
// "value": oldGroup,
|
|
||||||
// },
|
|
||||||
// },
|
|
||||||
//},
|
|
||||||
{
|
|
||||||
"term": util.MapStr{
|
|
||||||
"instance_id": util.MapStr{
|
|
||||||
"value": id,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
}
|
|
||||||
err = orm.DeleteBy(&gateway.InstanceGroup{}, util.MustToJSONBytes(delQuery))
|
|
||||||
if err != nil {
|
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
log.Error(err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
err = orm.Create(&gateway.InstanceGroup{
|
|
||||||
GroupID: obj.Group,
|
|
||||||
InstanceID: id,
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
log.Error(err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//protect
|
//protect
|
||||||
obj.ID = id
|
obj.ID = id
|
||||||
obj.Created = create
|
obj.Created = create
|
||||||
obj.Group = ""
|
|
||||||
err = orm.Update(&obj)
|
err = orm.Update(&obj)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
||||||
|
@ -202,14 +141,14 @@ func (h *GatewayAPI) deleteInstance(w http.ResponseWriter, req *http.Request, ps
|
||||||
func (h *GatewayAPI) searchInstance(w http.ResponseWriter, req *http.Request, ps httprouter.Params) {
|
func (h *GatewayAPI) searchInstance(w http.ResponseWriter, req *http.Request, ps httprouter.Params) {
|
||||||
|
|
||||||
var (
|
var (
|
||||||
name = h.GetParameterOrDefault(req, "name", "")
|
keyword = h.GetParameterOrDefault(req, "keyword", "")
|
||||||
queryDSL = `{"query":{"bool":{"must":[%s]}}, "size": %d, "from": %d}`
|
queryDSL = `{"query":{"bool":{"must":[%s]}}, "size": %d, "from": %d}`
|
||||||
strSize = h.GetParameterOrDefault(req, "size", "20")
|
strSize = h.GetParameterOrDefault(req, "size", "20")
|
||||||
strFrom = h.GetParameterOrDefault(req, "from", "0")
|
strFrom = h.GetParameterOrDefault(req, "from", "0")
|
||||||
mustBuilder = &strings.Builder{}
|
mustBuilder = &strings.Builder{}
|
||||||
)
|
)
|
||||||
if name != "" {
|
if keyword != "" {
|
||||||
mustBuilder.WriteString(fmt.Sprintf(`{"prefix":{"name": "%s"}}`, name))
|
mustBuilder.WriteString(fmt.Sprintf(`{"query_string":{"default_field":"*","query": "%s"}}`, keyword))
|
||||||
}
|
}
|
||||||
size, _ := strconv.Atoi(strSize)
|
size, _ := strconv.Atoi(strSize)
|
||||||
if size <= 0 {
|
if size <= 0 {
|
||||||
|
@ -230,44 +169,7 @@ func (h *GatewayAPI) searchInstance(w http.ResponseWriter, req *http.Request, ps
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
//fetch relationship
|
h.Write(w, res.Raw)
|
||||||
instanceIDs := pickElasticsearchColumnValues(res.Result, "id")
|
|
||||||
instanceGroups, err := fetchInstanceGroupByID(instanceIDs)
|
|
||||||
if err != nil {
|
|
||||||
log.Error(err)
|
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
//fetch group
|
|
||||||
|
|
||||||
groupIDs := pickElasticsearchColumnValues(instanceGroups, "group_id")
|
|
||||||
groups, err := fetchGroupByID(groupIDs)
|
|
||||||
if err != nil {
|
|
||||||
log.Error(err)
|
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
groupsMap := getRelationshipMap(groups, "id", "name")
|
|
||||||
relationshipMap := getRelationshipMap(instanceGroups, "instance_id", "group_id")
|
|
||||||
|
|
||||||
resultRes := &elastic.SearchResponse{}
|
|
||||||
err = util.FromJSONBytes(res.Raw, resultRes)
|
|
||||||
if err != nil {
|
|
||||||
h.WriteError(w, err.Error(), http.StatusInternalServerError)
|
|
||||||
log.Error(err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
for _, hit := range resultRes.Hits.Hits {
|
|
||||||
hit.Source["group"] = relationshipMap[hit.ID]
|
|
||||||
}
|
|
||||||
|
|
||||||
h.WriteJSON(w, struct{
|
|
||||||
elastic.SearchResponse
|
|
||||||
Groups interface{} `json:"groups"`
|
|
||||||
}{
|
|
||||||
SearchResponse: *resultRes,
|
|
||||||
Groups: groupsMap,
|
|
||||||
}, http.StatusOK)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type GatewayConnectResponse struct {
|
type GatewayConnectResponse struct {
|
||||||
|
|
Loading…
Reference in New Issue