forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sql.go
186 lines (159 loc) · 4.42 KB
/
sql.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/*
* Copyright (c) 2018. Abstrium SAS <team (at) pydio.com>
* This file is part of Pydio Cells.
*
* Pydio Cells is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Pydio Cells is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Pydio Cells. If not, see <http://www.gnu.org/licenses/>.
*
* The latest code can be found at <https://pydio.com>.
*/
package key
import (
"sync/atomic"
"github.com/gogo/protobuf/proto"
"github.com/micro/go-micro/errors"
"github.com/pydio/cells/common/proto/encryption"
"github.com/pydio/cells/common/sql"
"github.com/pydio/cells/x/configx"
"github.com/pydio/packr"
migrate "github.com/rubenv/sql-migrate"
)
var (
tableName = "idm_user_keys"
queries = map[string]string{
"insert": `INSERT INTO idm_user_keys VALUES (?,?,?,?,?,?);`,
"update": `UPDATE idm_user_keys SET key_data=?,key_info=? WHERE owner=? AND key_id=?;`,
"get": `SELECT * FROM idm_user_keys WHERE owner=? AND key_id=?;`,
"list": `SELECT * FROM idm_user_keys WHERE owner=?;`,
"delete": `DELETE FROM idm_user_keys WHERE owner=? AND key_id=?;`,
}
mu atomic.Value
)
type sqlimpl struct {
sql.DAO
}
// Init handler for the SQL DAO
func (dao *sqlimpl) Init(options configx.Values) error {
// super
dao.DAO.Init(options)
// Doing the database migrations
migrations := &sql.PackrMigrationSource{
Box: packr.NewBox("../../idm/key/migrations"),
Dir: dao.Driver(),
TablePrefix: dao.Prefix(),
}
_, err := sql.ExecMigration(dao.DB(), dao.Driver(), migrations, migrate.Up, "idm_key_")
if err != nil {
return err
}
// Preparing the db statements
if options.Val("prepare").Default(true).Bool() {
for key, query := range queries {
if err := dao.Prepare(key, query); err != nil {
return err
}
}
}
return nil
}
// SaveKey saves the key to persistence layer
func (dao *sqlimpl) SaveKey(key *encryption.Key) error {
insertStmt, er := dao.GetStmt("insert")
if er != nil {
return er
}
var bytes = []byte{}
var err error
if key.Info != nil {
bytes, err = proto.Marshal(key.Info)
if err != nil {
return err
}
}
_, err = insertStmt.Exec(key.Owner, key.ID, key.Label, key.Content, key.CreationDate, bytes)
if err != nil {
updateStmt, er := dao.GetStmt("update")
if er != nil {
return er
}
_, err = updateStmt.Exec(key.Content, bytes, key.Owner, key.ID)
}
return err
}
// GetKey loads key from persistence layer
func (dao *sqlimpl) GetKey(owner string, KeyID string) (*encryption.Key, error) {
getStmt, er := dao.GetStmt("get")
if er != nil {
return nil, er
}
rows, err := getStmt.Query(owner, KeyID)
if err != nil {
return nil, err
}
defer rows.Close()
if rows.Next() {
k := encryption.Key{
Info: &encryption.KeyInfo{},
}
var bytes []byte
err := rows.Scan(&(k.Owner), &(k.ID), &(k.Label), &(k.Content), &(k.CreationDate), &bytes)
if err != nil {
return nil, err
}
if bytes != nil && len(bytes) > 0 {
proto.Unmarshal(bytes, k.Info)
}
return &k, rows.Err()
} else {
return nil, errors.NotFound("encryption.key.notfound", "cannot find key with id "+KeyID)
}
}
// ListKeys list all keys by owner
func (dao *sqlimpl) ListKeys(owner string) ([]*encryption.Key, error) {
getStmt, er := dao.GetStmt("list")
if er != nil {
return nil, er
}
rows, err := getStmt.Query(owner)
if err != nil {
return nil, err
}
defer rows.Close()
var list []*encryption.Key
for rows.Next() {
var bytes []byte
var k encryption.Key
k.Info = &encryption.KeyInfo{}
err := rows.Scan(&(k.Owner), &(k.ID), &(k.Label), &(k.Content), &(k.CreationDate), &bytes)
if err != nil {
return nil, err
}
if len(bytes) > 0 {
err = proto.Unmarshal(bytes, k.Info)
if err != nil {
return nil, err
}
}
list = append(list, &k)
}
return list, rows.Err()
}
// DeleteKey removes a key from the persistence layer
func (dao *sqlimpl) DeleteKey(owner string, keyID string) error {
delStmt, er := dao.GetStmt("delete")
if er != nil {
return er
}
_, err := delStmt.Exec(owner, keyID)
return err
}