-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtypes.go
44 lines (39 loc) · 991 Bytes
/
types.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
package couchdb
import (
"encoding/json"
"fmt"
"net/http"
)
func responseToCouchError(r *http.Response) error {
e := new(CouchError)
e.ReturnCode = r.StatusCode
e.URL = r.Request.URL.String()
j := json.NewDecoder(r.Body)
err := j.Decode(e)
if err != nil {
e.Err = err.Error()
}
return e
}
// A type describing an error returned by couchdb per CouchDB Error Status (plus fields for an HTTP return code and URL)
type CouchError struct {
ReturnCode int
URL string
ID string `json:"id"`
Err string `json:"error"`
Reason string `json:"reason"`
}
func (c *CouchError) Error() string {
if c.ReturnCode == 0 {
if c.Err == "" {
panic("Internal error in couchdb library, c.ReturnCode == 0 and c.Err == \"\"")
}
return c.Err
}
return fmt.Sprintf("URL: %s, HTTP response: %d, Error: %s, Reason: %s", c.URL, c.ReturnCode, c.Err, c.Reason)
}
type CouchSuccess struct {
OK bool `json:"ok"`
ID string `json:"id"`
Rev string `json:"rev"`
}