forked from arangodb/go-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient_server_admin_impl.go
More file actions
120 lines (112 loc) · 3.15 KB
/
client_server_admin_impl.go
File metadata and controls
120 lines (112 loc) · 3.15 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
//
// DISCLAIMER
//
// Copyright 2017 ArangoDB GmbH, Cologne, Germany
//
// 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.
//
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//
// Author Ewout Prangsma
//
package driver
import (
"context"
)
type serverModeResponse struct {
Mode ServerMode `json:"mode"`
}
type serverModeRequest struct {
Mode ServerMode `json:"mode"`
}
// ServerMode returns the current mode in which the server/cluster is operating.
// This call needs ArangoDB 3.3 and up.
func (c *client) ServerMode(ctx context.Context) (ServerMode, error) {
req, err := c.conn.NewRequest("GET", "_admin/server/mode")
if err != nil {
return "", WithStack(err)
}
resp, err := c.conn.Do(ctx, req)
if err != nil {
return "", WithStack(err)
}
if err := resp.CheckStatus(200); err != nil {
return "", WithStack(err)
}
var result serverModeResponse
if err := resp.ParseBody("", &result); err != nil {
return "", WithStack(err)
}
return result.Mode, nil
}
// SetServerMode changes the current mode in which the server/cluster is operating.
// This call needs a client that uses JWT authentication.
// This call needs ArangoDB 3.3 and up.
func (c *client) SetServerMode(ctx context.Context, mode ServerMode) error {
req, err := c.conn.NewRequest("PUT", "_admin/server/mode")
if err != nil {
return WithStack(err)
}
input := serverModeRequest{
Mode: mode,
}
req, err = req.SetBody(input)
if err != nil {
return WithStack(err)
}
resp, err := c.conn.Do(ctx, req)
if err != nil {
return WithStack(err)
}
if err := resp.CheckStatus(200); err != nil {
return WithStack(err)
}
return nil
}
// Shutdown a specific server, optionally removing it from its cluster.
func (c *client) Shutdown(ctx context.Context, removeFromCluster bool) error {
req, err := c.conn.NewRequest("DELETE", "_admin/shutdown")
if err != nil {
return WithStack(err)
}
if removeFromCluster {
req.SetQuery("remove_from_cluster", "1")
}
resp, err := c.conn.Do(ctx, req)
if err != nil {
return WithStack(err)
}
if err := resp.CheckStatus(200); err != nil {
return WithStack(err)
}
return nil
}
// Statistics queries statistics from a specific server.
func (c *client) Statistics(ctx context.Context) (ServerStatistics, error) {
req, err := c.conn.NewRequest("GET", "_admin/statistics")
if err != nil {
return ServerStatistics{}, WithStack(err)
}
resp, err := c.conn.Do(ctx, req)
if err != nil {
return ServerStatistics{}, WithStack(err)
}
if err := resp.CheckStatus(200); err != nil {
return ServerStatistics{}, WithStack(err)
}
var data ServerStatistics
if err := resp.ParseBody("", &data); err != nil {
return ServerStatistics{}, WithStack(err)
}
return data, nil
}