2017-08-03 12:13:53 +00:00
|
|
|
package main
|
|
|
|
|
2018-10-06 18:08:21 +00:00
|
|
|
import "github.com/gofrs/uuid"
|
2017-08-03 12:13:53 +00:00
|
|
|
|
|
|
|
type storageMem struct {
|
|
|
|
store map[string]string
|
|
|
|
}
|
|
|
|
|
|
|
|
func newStorageMem() storage {
|
|
|
|
return &storageMem{
|
|
|
|
store: make(map[string]string),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s storageMem) Create(secret string) (string, error) {
|
2018-10-06 18:08:21 +00:00
|
|
|
id := uuid.Must(uuid.NewV4()).String()
|
2017-08-03 12:13:53 +00:00
|
|
|
s.store[id] = secret
|
|
|
|
|
|
|
|
return id, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s storageMem) ReadAndDestroy(id string) (string, error) {
|
|
|
|
secret, ok := s.store[id]
|
|
|
|
if !ok {
|
|
|
|
return "", errSecretNotFound
|
|
|
|
}
|
|
|
|
|
|
|
|
delete(s.store, id)
|
|
|
|
return secret, nil
|
|
|
|
}
|