-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.go
91 lines (79 loc) · 1.6 KB
/
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
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
package main
import (
"bytes"
"compress/gzip"
"encoding/base64"
"encoding/xml"
"io/ioutil"
)
type KeePassFile struct {
Meta Meta `xml:"Meta"`
Groups []Group `xml:"Root>Group"`
}
type Meta struct {
Binaries []Binary `xml:"Binaries>Binary"`
}
type Binary struct {
ID string `xml:"ID,attr"`
Compressed bool `xml:"Compressed,attr"`
Base64 string `xml:",innerxml"`
}
type Group struct {
Name string `xml:"Name"`
Entries []Entry `xml:"Entry"`
Groups []Group `xml:"Group"`
}
type Entry struct {
UUID string `xml:"UUID"`
Strings []String `xml:"String"`
Binaries []BinaryRef `xml:"Binary"`
}
type String struct {
Key string `xml:"Key"`
Value string `xml:"Value"`
}
type BinaryRef struct {
Key string `xml:"Key"`
Value ValueRef `xml:"Value"`
}
type ValueRef struct {
Ref string `xml:"Ref,attr"`
}
func Parse(path string) (*KeePassFile, error) {
data, err := ioutil.ReadFile(path)
if err != nil {
return nil, err
}
kpFile := &KeePassFile{}
if err := xml.Unmarshal(data, kpFile); err != nil {
return nil, err
}
return kpFile, nil
}
func (b *Binary) Decode() ([]byte, error) {
raw, err := base64.StdEncoding.DecodeString(b.Base64)
if err != nil {
return nil, err
}
if !b.Compressed {
return raw, nil
}
buf := bytes.NewBuffer(raw)
gzipReader, err := gzip.NewReader(buf)
if err != nil {
return nil, err
}
uncompressed, err := ioutil.ReadAll(gzipReader)
if err != nil {
return nil, err
}
return uncompressed, nil
}
func (e *Entry) GetValue(key string) string {
for _, s := range e.Strings {
if s.Key == key {
return s.Value
}
}
return ""
}