forked from go-kivik/couchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
couchdb.go
101 lines (87 loc) · 2.35 KB
/
couchdb.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
// Package couchdb is a driver for connecting with a CouchDB server over HTTP.
package couchdb
import (
"context"
"fmt"
"strings"
"github.com/flimzy/kivik"
"github.com/flimzy/kivik/driver"
"github.com/go-kivik/couchdb/chttp"
)
// Couch represents the parent driver instance.
type Couch struct{}
var _ driver.Driver = &Couch{}
func init() {
kivik.Register("couch", &Couch{})
}
// CompatMode is a flag indicating the compatibility mode of the driver.
type CompatMode int
// Compatibility modes
const (
CompatUnknown = iota
CompatCouch16
CompatCouch20
)
// Known vendor strings
const (
VendorCouchDB = "The Apache Software Foundation"
VendorCloudant = "IBM Cloudant"
)
type client struct {
*chttp.Client
Compat CompatMode
}
var _ driver.Client = &client{}
// NewClient establishes a new connection to a CouchDB server instance. If
// auth credentials are included in the URL, they are used to authenticate using
// CookieAuth (or BasicAuth if compiled with GopherJS). If you wish to use a
// different auth mechanism, do not specify credentials here, and instead call
// Authenticate() later.
func (d *Couch) NewClient(ctx context.Context, dsn string) (driver.Client, error) {
chttpClient, err := chttp.New(ctx, dsn)
if err != nil {
return nil, err
}
c := &client{
Client: chttpClient,
}
c.setCompatMode(ctx)
return c, nil
}
func (c *client) setCompatMode(ctx context.Context) {
info, err := c.Version(ctx)
if err != nil {
// We don't want to error here, in case the / endpoint is just blocked
// for security reasons or something; but then we also can't infer the
// compat mode, so just return, defaulting to CompatUnknown.
return
}
switch info.Vendor {
case VendorCouchDB, VendorCloudant:
switch {
case strings.HasPrefix(info.Version, "2.0."):
c.Compat = CompatCouch20
case strings.HasPrefix(info.Version, "1.6"):
c.Compat = CompatCouch16
}
}
}
func (c *client) DB(_ context.Context, dbName string, options map[string]interface{}) (driver.DB, error) {
forceCommit, err := forceCommit(options)
if err != nil {
return nil, err
}
if key, exists := getAnyKey(options); exists {
return nil, fmt.Errorf("kivik: unrecognized option '%s'", key)
}
return &db{
client: c,
dbName: dbName,
forceCommit: forceCommit,
}, nil
}
type putResponse struct {
ID string `json:"id"`
OK bool `json:"ok"`
Rev string `json:"rev"`
}