This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
forked from go-kivik/couchdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcouchdb.go
82 lines (70 loc) · 2.01 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
package couchdb
import (
"context"
"fmt"
"net/http"
"sync"
"github.com/go-kivik/couchdb/v4/chttp"
kivik "github.com/go-kivik/kivik/v4"
"github.com/go-kivik/kivik/v4/driver"
)
// Couch represents the parent driver instance.
type Couch struct {
// If provided, UserAgent is appended to the User-Agent header on all
// outbound requests.
UserAgent string
// If provided, HTTPClient will be used for requests to the CouchDB server.
HTTPClient *http.Client
}
var _ driver.Driver = &Couch{}
func init() {
kivik.Register("couch", &Couch{})
}
// Known vendor strings
const (
VendorCouchDB = "The Apache Software Foundation"
VendorCloudant = "IBM Cloudant"
)
type client struct {
*chttp.Client
// schedulerDetected will be set once the scheduler has been detected.
// It should only be accessed through the schedulerSupported() method.
schedulerDetected *bool
sdMU sync.Mutex
}
var _ driver.Client = &client{}
var _ driver.DBUpdater = &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(dsn string) (driver.Client, error) {
httpClient := d.HTTPClient
if httpClient == nil {
httpClient = &http.Client{}
}
chttpClient, err := chttp.NewWithClient(httpClient, dsn)
if err != nil {
return nil, err
}
chttpClient.UserAgents = []string{
fmt.Sprintf("Kivik/%s", kivik.KivikVersion),
fmt.Sprintf("Kivik CouchDB driver/%s", Version),
}
if d.UserAgent != "" {
chttpClient.UserAgents = append(chttpClient.UserAgents, d.UserAgent)
}
return &client{
Client: chttpClient,
}, nil
}
func (c *client) DB(_ context.Context, dbName string, _ map[string]interface{}) (driver.DB, error) {
if dbName == "" {
return nil, missingArg("dbName")
}
return &db{
client: c,
dbName: dbName,
}, nil
}