This repository has been archived by the owner on Apr 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Derek Trider <[email protected]>
- Loading branch information
Derek Trider
committed
Feb 18, 2020
1 parent
2f206aa
commit 3be481a
Showing
8 changed files
with
688 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,193 @@ | ||
/* | ||
Copyright SecureKey Technologies Inc. All Rights Reserved. | ||
SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package couchdbstore | ||
|
||
import ( | ||
"context" | ||
"encoding/base64" | ||
"encoding/json" | ||
"errors" | ||
"fmt" | ||
"io/ioutil" | ||
|
||
_ "github.com/go-kivik/couchdb" // The CouchDB driver | ||
"github.com/go-kivik/kivik" | ||
|
||
"github.com/trustbloc/edge-core/pkg/storage" | ||
) | ||
|
||
// Provider represents an CouchDB implementation of the storage.Provider interface | ||
type Provider struct { | ||
hostURL string | ||
couchDBClient *kivik.Client | ||
dbs map[string]*CouchDBStore | ||
} | ||
|
||
const ( | ||
blankHostErrMsg = "hostURL for new CouchDB provider can't be blank" | ||
failToCloseProviderErrMsg = "failed to close provider" | ||
) | ||
|
||
// NewProvider instantiates Provider | ||
func NewProvider(hostURL string) (*Provider, error) { | ||
if hostURL == "" { | ||
return nil, errors.New(blankHostErrMsg) | ||
} | ||
|
||
client, err := kivik.New("couch", hostURL) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return &Provider{hostURL: hostURL, couchDBClient: client, dbs: map[string]*CouchDBStore{}}, nil | ||
} | ||
|
||
// CreateStore creates a new store with the given name. | ||
func (p *Provider) CreateStore(name string) error { | ||
err := p.couchDBClient.CreateDB(context.Background(), name) | ||
return err | ||
} | ||
|
||
// OpenStore opens an existing store with the given name and returns it. | ||
func (p *Provider) OpenStore(name string) (storage.Store, error) { | ||
exists, err := p.storeExists(name) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
if !exists { | ||
return nil, storage.ErrStoreNotFound | ||
} | ||
|
||
db := p.couchDBClient.DB(context.Background(), name) | ||
|
||
if dbErr := db.Err(); dbErr != nil { | ||
return nil, dbErr | ||
} | ||
|
||
store := &CouchDBStore{db: db} | ||
|
||
p.dbs[name] = store | ||
|
||
return store, nil | ||
} | ||
|
||
func (p *Provider) storeExists(name string) (bool, error) { | ||
_, existsInCache := p.dbs[name] | ||
|
||
if existsInCache { | ||
return true, nil | ||
} | ||
|
||
return p.couchDBClient.DBExists(context.Background(), name) | ||
} | ||
|
||
// CloseStore closes a previously opened store. | ||
func (p *Provider) CloseStore(name string) error { | ||
store, exists := p.dbs[name] | ||
if !exists { | ||
return storage.ErrStoreNotFound | ||
} | ||
|
||
delete(p.dbs, name) | ||
|
||
return store.db.Close(context.Background()) | ||
} | ||
|
||
// Close closes the provider. | ||
func (p *Provider) Close() error { | ||
for _, store := range p.dbs { | ||
err := store.db.Close(context.Background()) | ||
if err != nil { | ||
return fmt.Errorf(failToCloseProviderErrMsg+": %w", err) | ||
} | ||
} | ||
|
||
p.dbs = make(map[string]*CouchDBStore) | ||
|
||
return p.couchDBClient.Close(context.Background()) | ||
} | ||
|
||
// CouchDBStore represents a CouchDB-backed database. | ||
type CouchDBStore struct { | ||
db *kivik.DB | ||
} | ||
|
||
// Put stores the given key-value pair in the store. | ||
func (c *CouchDBStore) Put(k string, v []byte) error { | ||
var valueToPut []byte | ||
if isJSON(v) { | ||
valueToPut = v | ||
} else { | ||
valueToPut = wrapTextAsCouchDBAttachment(v) | ||
} | ||
|
||
_, err := c.db.Put(context.Background(), k, valueToPut) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
return nil | ||
} | ||
|
||
func isJSON(textToCheck []byte) bool { | ||
var js json.RawMessage | ||
return json.Unmarshal(textToCheck, &js) == nil | ||
} | ||
|
||
// Kivik has a PutAttachment method, but it requires creating a document first and then adding an attachment after. | ||
// We want to do it all in one step, hence this manual stuff below. | ||
func wrapTextAsCouchDBAttachment(textToWrap []byte) []byte { | ||
encodedTextToWrap := base64.StdEncoding.EncodeToString(textToWrap) | ||
return []byte(`{"_attachments": {"data": {"data": "` + encodedTextToWrap + `", "content_type": "text/plain"}}}`) | ||
} | ||
|
||
// Get retrieves the value in the store associated with the given key. | ||
func (c *CouchDBStore) Get(k string) ([]byte, error) { | ||
destinationData := make(map[string]interface{}) | ||
|
||
row := c.db.Get(context.Background(), k) | ||
|
||
err := row.ScanDoc(&destinationData) | ||
if err != nil { | ||
if err.Error() == "Not Found: missing" { | ||
return nil, storage.ErrValueNotFound | ||
} | ||
|
||
return nil, err | ||
} | ||
|
||
_, containsAttachment := destinationData["_attachments"] | ||
if containsAttachment { | ||
return c.getDataFromAttachment(k) | ||
} | ||
|
||
// Stripping out the CouchDB-specific fields | ||
delete(destinationData, "_id") | ||
delete(destinationData, "_rev") | ||
|
||
strippedJSON, err := json.Marshal(destinationData) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return strippedJSON, nil | ||
} | ||
|
||
func (c *CouchDBStore) getDataFromAttachment(k string) ([]byte, error) { | ||
// Original data was not JSON and so it was stored as an attachment | ||
attachment, err := c.db.GetAttachment(context.Background(), k, "data") | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
data, err := ioutil.ReadAll(attachment.Content) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return data, nil | ||
} |
Oops, something went wrong.