forked from go-kivik/couchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.go
115 lines (99 loc) · 3.2 KB
/
client.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
// 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 couchdb
import (
"context"
"encoding/json"
"io"
"net/http"
"strings"
"github.com/go-kivik/couchdb/v4/chttp"
kivik "github.com/go-kivik/kivik/v4"
"github.com/go-kivik/kivik/v4/driver"
)
func (c *client) AllDBs(ctx context.Context, opts map[string]interface{}) ([]string, error) {
query, err := optionsToParams(opts)
if err != nil {
return nil, err
}
var allDBs []string
_, err = c.DoJSON(ctx, http.MethodGet, "/_all_dbs", &chttp.Options{Query: query}, &allDBs)
return allDBs, err
}
func (c *client) DBExists(ctx context.Context, dbName string, _ map[string]interface{}) (bool, error) {
if dbName == "" {
return false, missingArg("dbName")
}
_, err := c.DoError(ctx, http.MethodHead, dbName, nil)
if kivik.StatusCode(err) == http.StatusNotFound {
return false, nil
}
return err == nil, err
}
func (c *client) CreateDB(ctx context.Context, dbName string, opts map[string]interface{}) error {
if dbName == "" {
return missingArg("dbName")
}
query, err := optionsToParams(opts)
if err != nil {
return err
}
_, err = c.DoError(ctx, http.MethodPut, dbName, &chttp.Options{Query: query})
return err
}
func (c *client) DestroyDB(ctx context.Context, dbName string, _ map[string]interface{}) error {
if dbName == "" {
return missingArg("dbName")
}
_, err := c.DoError(ctx, http.MethodDelete, dbName, nil)
return err
}
func (c *client) DBUpdates(ctx context.Context) (updates driver.DBUpdates, err error) {
resp, err := c.DoReq(ctx, http.MethodGet, "/_db_updates?feed=continuous&since=now", nil)
if err != nil {
return nil, err
}
if err := chttp.ResponseError(resp); err != nil {
return nil, err
}
return newUpdates(ctx, resp.Body), nil
}
type couchUpdates struct {
*iter
}
var _ driver.DBUpdates = &couchUpdates{}
type updatesParser struct{}
var _ parser = &updatesParser{}
func (p *updatesParser) decodeItem(i interface{}, dec *json.Decoder) error {
return dec.Decode(i)
}
func newUpdates(ctx context.Context, body io.ReadCloser) *couchUpdates {
return &couchUpdates{
iter: newIter(ctx, nil, "", body, &updatesParser{}),
}
}
func (u *couchUpdates) Next(update *driver.DBUpdate) error {
return u.iter.next(update)
}
// Ping queries the /_up endpoint, and returns true if there are no errors, or
// if a 400 (Bad Request) is returned, and the Server: header indicates a server
// version prior to 2.x.
func (c *client) Ping(ctx context.Context) (bool, error) {
resp, err := c.DoError(ctx, http.MethodHead, "/_up", nil)
if kivik.StatusCode(err) == http.StatusBadRequest {
return strings.HasPrefix(resp.Header.Get("Server"), "CouchDB/1."), nil
}
if kivik.StatusCode(err) == http.StatusNotFound {
return false, nil
}
return err == nil, err
}