-
Notifications
You must be signed in to change notification settings - Fork 5
/
api_key_repo.go
120 lines (100 loc) · 3.18 KB
/
api_key_repo.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// Copyright (c) 2021 BitMaelum Authors
//
// Permission is hereby granted, free of charge, to any person obtaining a copy of
// this software and associated documentation files (the "Software"), to deal in
// the Software without restriction, including without limitation the rights to
// use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
// the Software, and to permit persons to whom the Software is furnished to do so,
// subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
// FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
// COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
// IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package key
import (
"path/filepath"
"github.com/bitmaelum/bitmaelum-suite/internal"
"github.com/go-redis/redis/v7"
"github.com/sirupsen/logrus"
bolt "go.etcd.io/bbolt"
)
// APIKeyRepository is a repository to fetch and store API keys
type APIKeyRepository struct {
storageRepo StorageBackend
}
// NewAPIKeyRedisRepository initializes a new repository
func NewAPIKeyRedisRepository(opts *redis.Options) APIKeyRepo {
c := redis.NewClient(opts)
// Setup generic repository
repo := &redisRepo{
client: &internal.RedisBridge{Client: *c},
context: c.Context(),
KeyPrefix: "apikey",
}
return &APIKeyRepository{
storageRepo: repo,
}
}
// NewAPIBoltRepository initializes a new BoltDb repository
func NewAPIBoltRepository(dbPath string) APIKeyRepo {
p := filepath.Join(dbPath, BoltDBFile)
db, err := bolt.Open(p, 0600, nil)
if err != nil {
logrus.Error("Unable to open filepath ", p, err)
return nil
}
repo := boltRepo{
client: db,
BucketName: "api",
}
return &APIKeyRepository{
storageRepo: repo,
}
}
// NewAPIMockRepository initializes a new mock repository
func NewAPIMockRepository() APIKeyRepo {
repo := &mockRepo{
keys: map[string][]byte{},
addr: map[string]map[string]int{},
}
return &APIKeyRepository{
storageRepo: repo,
}
}
// FetchByHash will fetch all api keys for the given address hash
func (a APIKeyRepository) FetchByHash(h string) ([]APIKeyType, error) {
v := &APIKeyType{}
l, err := a.storageRepo.FetchByHash(h, v)
var ll []APIKeyType
for _, item := range l.([]interface{}) {
if item == nil {
continue
}
p := item.(*APIKeyType)
ll = append(ll, *p)
}
return ll, err
}
// Fetch will get a single API key
func (a APIKeyRepository) Fetch(ID string) (*APIKeyType, error) {
v := &APIKeyType{}
err := a.storageRepo.Fetch(ID, &v)
if err != nil {
return nil, errKeyNotFound
}
return v, err
}
// Store will store a single api key
func (a APIKeyRepository) Store(v APIKeyType) error {
return a.storageRepo.Store(&v)
}
// Remove will remove a single api key
func (a APIKeyRepository) Remove(v APIKeyType) error {
return a.storageRepo.Remove(&v)
}