-
Notifications
You must be signed in to change notification settings - Fork 3
/
db.go
86 lines (64 loc) · 1.67 KB
/
db.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
package main
import (
"errors"
"os"
"sync"
"github.com/spf13/viper"
"github.com/tobischo/gokeepasslib"
)
var sharedRoot *gokeepasslib.RootData
var sharedRootLock sync.RWMutex
func GetUserName(entry *gokeepasslib.Entry) string {
return entry.Get("UserName").Value.Content
}
func GetURL(entry *gokeepasslib.Entry) string {
return entry.Get("URL").Value.Content
}
func findInGroupByValues(group *gokeepasslib.Group, values map[string]string) (*gokeepasslib.Entry, error) {
for _, entry := range group.Entries {
match := true
for key, value := range values {
match = match && entry.Get(key).Value.Content == value
}
if match {
return &entry, nil
}
}
for _, innerGroup := range group.Groups {
entry, err := findInGroupByValues(&innerGroup, values)
if err == nil {
return entry, err
}
}
return nil, errors.New("Entry not found")
}
func findInRootByValues(root *gokeepasslib.RootData, values map[string]string) (*gokeepasslib.Entry, error) {
sharedRootLock.RLock()
defer sharedRootLock.RUnlock()
for _, innerGroup := range root.Groups {
entry, err := findInGroupByValues(&innerGroup, values)
if err == nil {
return entry, err
}
}
return nil, errors.New("Entry not found")
}
func loadDB(password string) error {
path := viper.GetString("keepass-file")
file, err := os.Open(path)
defer file.Close()
if err != nil {
return err
}
db := gokeepasslib.NewDatabase()
db.Credentials = gokeepasslib.NewPasswordCredentials(password)
err = gokeepasslib.NewDecoder(file).Decode(db)
if err != nil {
return err
}
db.UnlockProtectedEntries()
sharedRootLock.Lock()
defer sharedRootLock.Unlock()
sharedRoot = db.Content.Root
return nil
}