-
Notifications
You must be signed in to change notification settings - Fork 0
/
sql.go
223 lines (189 loc) · 5.51 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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
/*
* 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 (
"fmt"
"sync/atomic"
"github.com/gobuffalo/packr"
"github.com/micro/go-micro/errors"
"github.com/pydio/cells/common/config"
"github.com/pydio/cells/common/proto/encryption"
"github.com/pydio/cells/common/sql"
migrate "github.com/rubenv/sql-migrate"
)
var (
queries = map[string]interface{}{
"enc_nodes_select": `SELECT * FROM enc_nodes WHERE node_id=?;`,
"enc_nodes_insert": `INSERT INTO enc_nodes (node_id,nonce,block_size) VALUES (?,?,?);`,
"enc_nodes_update": `UPDATE enc_nodes SET nonce=?,block_size=? WHERE node_id=?;`,
"enc_nodes_delete": `DELETE FROM enc_nodes WHERE node_id=?;`,
"enc_node_keys_insert": `INSERT INTO enc_node_keys (node_id,owner_id,user_id,key_data) VALUES (?,?,?,?)`,
"enc_node_keys_delete": `DELETE FROM enc_node_keys WHERE node_id=? AND user_id=?`,
"enc_node_keys_deleteShared": `DELETE FROM enc_node_keys WHERE user_id<>owner_id AND node_id=? AND owner_id=? AND user_id=?`,
"enc_node_keys_deleteAllShared": `DELETE FROM enc_node_keys WHERE user_id<>owner_id AND node_id=? AND owner_id=?`,
"selectNodeKey": `SELECT enc_nodes.node_id, user_id, owner_id, nonce, block_size, key_data FROM enc_node_keys, enc_nodes WHERE enc_nodes.node_id=enc_node_keys.node_id AND enc_node_keys.node_id=? AND user_id=?`,
}
mu atomic.Value
)
type sqlimpl struct {
sql.DAO
}
// Init handler for the SQL DAO
func (s *sqlimpl) Init(options config.Map) error {
// super
s.DAO.Init(options)
// Doing the database migrations
migrations := &sql.PackrMigrationSource{
Box: packr.NewBox("../../data/key/migrations"),
Dir: s.Driver(),
TablePrefix: s.Prefix(),
}
_, err := sql.ExecMigration(s.DB(), s.Driver(), migrations, migrate.Up, "data_key_")
if err != nil {
return err
}
// Preparing the db statements
if options.Bool("prepare", true) {
for key, query := range queries {
if err := s.Prepare(key, query); err != nil {
return err
}
}
}
return nil
}
func (h *sqlimpl) InsertNode(nodeUuid string, nonce []byte, blockSize int32) error {
stmt := h.GetStmt("enc_nodes_select")
if stmt == nil {
return fmt.Errorf("Unknown statement")
}
defer stmt.Close()
rows, err := stmt.Query(nodeUuid)
if err != nil && err != sql.ErrNoRows {
return err
}
if rows.Next() {
stmt := h.GetStmt("enc_nodes_update")
if stmt == nil {
return fmt.Errorf("Unknown statement")
}
defer stmt.Close()
_, err = stmt.Exec(
nonce,
blockSize,
nodeUuid,
)
} else {
stmt := h.GetStmt("enc_nodes_insert")
if stmt == nil {
return fmt.Errorf("Unknown statement")
}
defer stmt.Close()
_, err = stmt.Exec(
nodeUuid,
nonce,
blockSize,
)
}
return err
}
func (h *sqlimpl) DeleteNode(nodeUuid string) error {
stmt := h.GetStmt("enc_nodes_delete")
if stmt == nil {
return fmt.Errorf("Unknown statement")
}
defer stmt.Close()
_, err := stmt.Exec(
nodeUuid,
)
return err
}
func (h *sqlimpl) SetNodeKey(nodeUuid string, ownerId string, userId string, keyData []byte) error {
stmt := h.GetStmt("enc_node_keys_insert")
if stmt == nil {
return fmt.Errorf("Unknown statement")
}
defer stmt.Close()
_, err := stmt.Exec(
nodeUuid,
ownerId,
userId,
keyData,
)
return err
}
func (h *sqlimpl) GetNodeKey(node string, user string) (*encryption.NodeKey, error) {
stmt := h.GetStmt("selectNodeKey")
if stmt == nil {
return nil, fmt.Errorf("Unknown statement")
}
defer stmt.Close()
rows, err := stmt.Query(
node,
user,
)
if err != nil {
return nil, errors.New("NodeKey", "cannot retrieve node key", 500)
}
defer rows.Close()
var k encryption.NodeKey
if rows.Next() {
k.Nonce = []byte{}
k.Data = []byte{}
if err := rows.Scan(&(k.NodeId), &(k.UserId), &(k.OwnerId), &(k.Nonce), &(k.BlockSize), &(k.Data)); err != nil {
return nil, errors.New("NodeKey", "Error while parsing node key", 500)
}
return &k, nil
}
return nil, rows.Err()
}
func (h *sqlimpl) DeleteNodeKey(node string, user string) error {
stmt := h.GetStmt("enc_node_keys_delete")
if stmt == nil {
return fmt.Errorf("Unknown statement")
}
defer stmt.Close()
_, err := stmt.Exec(
node, user,
)
return err
}
func (h *sqlimpl) DeleteNodeSharedKey(node string, ownerId string, userId string) error {
stmt := h.GetStmt("enc_node_keys_deleteShared")
if stmt == nil {
return fmt.Errorf("Unknown statement")
}
defer stmt.Close()
_, err := stmt.Exec(
node, ownerId, userId,
)
return err
}
func (h *sqlimpl) DeleteNodeAllSharedKey(node string, ownerId string) error {
stmt := h.GetStmt("enc_node_keys_deleteAllShared")
if stmt == nil {
return fmt.Errorf("Unknown statement")
}
defer stmt.Close()
_, err := stmt.Exec(
node, ownerId,
)
return err
}