forked from ravendb/ravendb-go-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_indexing_status_operation.go
52 lines (39 loc) · 1.14 KB
/
get_indexing_status_operation.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
package ravendb
import (
"net/http"
)
var _ IMaintenanceOperation = &GetIndexingStatusOperation{}
type GetIndexingStatusOperation struct {
Command *GetIndexingStatusCommand
}
func NewGetIndexingStatusOperation() *GetIndexingStatusOperation {
return &GetIndexingStatusOperation{}
}
func (o *GetIndexingStatusOperation) GetCommand(conventions *DocumentConventions) (RavenCommand, error) {
o.Command = NewGetIndexingStatusCommand()
return o.Command, nil
}
var (
_ RavenCommand = &GetIndexingStatusCommand{}
)
type GetIndexingStatusCommand struct {
RavenCommandBase
Result *IndexingStatus
}
func NewGetIndexingStatusCommand() *GetIndexingStatusCommand {
res := &GetIndexingStatusCommand{
RavenCommandBase: NewRavenCommandBase(),
}
res.IsReadRequest = true
return res
}
func (c *GetIndexingStatusCommand) CreateRequest(node *ServerNode) (*http.Request, error) {
url := node.URL + "/databases/" + node.Database + "/indexes/status"
return newHttpGet(url)
}
func (c *GetIndexingStatusCommand) SetResponse(response []byte, fromCache bool) error {
if response == nil {
return throwInvalidResponse()
}
return jsonUnmarshal(response, &c.Result)
}