-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathremoveNode.go
101 lines (84 loc) · 2.66 KB
/
removeNode.go
1
2
3
4
5
6
7
8
9
10
11
12
13
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
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
/*
* Copyright 2020 Dgraph Labs, Inc. and Contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package admin
import (
"context"
"encoding/json"
"fmt"
"strconv"
"github.com/pkg/errors"
"github.com/dgraph-io/dgraph/graphql/resolve"
"github.com/dgraph-io/dgraph/graphql/schema"
"github.com/dgraph-io/dgraph/protos/pb"
"github.com/dgraph-io/dgraph/worker"
)
type removeNodeInput struct {
NodeId uint64
GroupId uint32
}
func resolveRemoveNode(ctx context.Context, m schema.Mutation) (*resolve.Resolved, bool) {
input, err := getRemoveNodeInput(m)
if err != nil {
return resolve.EmptyResult(m, err), false
}
if _, err = worker.RemoveNodeOverNetwork(ctx, &pb.RemoveNodeRequest{NodeId: input.NodeId,
GroupId: input.GroupId}); err != nil {
return resolve.EmptyResult(m, err), false
}
return resolve.DataResult(m,
map[string]interface{}{m.Name(): response("Success",
fmt.Sprintf("Removed node with group: %v, idx: %v", input.GroupId, input.NodeId))},
nil,
), true
}
func getRemoveNodeInput(m schema.Mutation) (*removeNodeInput, error) {
inputArg, ok := m.ArgValue(schema.InputArgName).(map[string]interface{})
if !ok {
return nil, inputArgError(errors.Errorf("can't convert input to map"))
}
inputRef := &removeNodeInput{}
nodeId, err := parseAsUint64(inputArg["nodeId"])
if err != nil {
return nil, inputArgError(schema.GQLWrapf(err, "can't convert input.nodeId to uint64"))
}
inputRef.NodeId = nodeId
gId, err := parseAsUint32(inputArg["groupId"])
if err != nil {
return nil, inputArgError(schema.GQLWrapf(err, "can't convert input.groupId to uint32"))
}
inputRef.GroupId = gId
return inputRef, nil
}
func parseAsUint64(val interface{}) (uint64, error) {
return parseAsUint(val, 64)
}
func parseAsUint32(val interface{}) (uint32, error) {
ret, err := parseAsUint(val, 32)
return uint32(ret), err
}
func parseAsUint(val interface{}, bitSize int) (uint64, error) {
ret := uint64(0)
var err error
switch v := val.(type) {
case string:
ret, err = strconv.ParseUint(v, 10, bitSize)
case json.Number:
ret, err = strconv.ParseUint(v.String(), 10, bitSize)
default:
err = errors.Errorf("got unexpected value type")
}
return ret, err
}