-
Notifications
You must be signed in to change notification settings - Fork 180
/
sql.go
174 lines (150 loc) · 4.22 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
/*
* 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 namespace
import (
"github.com/pydio/cells/common"
"github.com/pydio/cells/common/proto/idm"
service "github.com/pydio/cells/common/service/proto"
"github.com/pydio/cells/common/sql"
"github.com/pydio/cells/common/sql/resources"
"github.com/pydio/packr"
migrate "github.com/rubenv/sql-migrate"
)
var (
queries = map[string]string{
"Add": `insert into idm_usr_meta_ns (namespace, label, ns_order, indexable, definition) values (?,?,?,?,?)`,
"Delete": `delete from idm_usr_meta_ns where namespace=?`,
"List": `select * from idm_usr_meta_ns order by ns_order asc`,
}
)
// Impl of the SQL interface
type sqlimpl struct {
*sql.Handler
*resources.ResourcesSQL
}
// Init handler for the SQL DAO
func (dao *sqlimpl) Init(options common.ConfigValues) error {
// super
dao.DAO.Init(options)
// Preparing the resources
dao.ResourcesSQL = resources.NewDAO(dao.Handler, "idm_usr_meta_ns.namespace").(*resources.ResourcesSQL)
if err := dao.ResourcesSQL.Init(options); err != nil {
return err
}
// Doing the database migrations
migrations := &sql.PackrMigrationSource{
Box: packr.NewBox("../../../idm/meta/namespace/migrations"),
Dir: dao.Driver(),
TablePrefix: dao.Prefix() + "_ns",
}
_, err := sql.ExecMigration(dao.DB(), dao.Driver(), migrations, migrate.Up, "idm_usr_meta_ns_")
if err != nil {
return err
}
// Preparing the db statements
if options.Bool("prepare", true) {
for key, query := range queries {
if err := dao.Prepare(key, query); err != nil {
return err
}
}
}
dao.Add(&idm.UserMetaNamespace{
Namespace: ReservedNamespaceBookmark,
Label: "Bookmarks",
Policies: []*service.ResourcePolicy{
{Action: service.ResourcePolicyAction_READ, Subject: "*", Effect: service.ResourcePolicy_allow},
{Action: service.ResourcePolicyAction_WRITE, Subject: "*", Effect: service.ResourcePolicy_allow},
},
})
return nil
}
// Add inserts a namespace
func (dao *sqlimpl) Add(ns *idm.UserMetaNamespace) error {
indexableValue := 0
if ns.Indexable {
indexableValue = 1
}
stmt, er := dao.GetStmt("Add")
if er != nil {
return er
}
_, err := stmt.Exec(
ns.Namespace,
ns.Label,
ns.Order,
indexableValue,
ns.JsonDefinition,
)
if err != nil {
return err
}
if len(ns.Policies) > 0 {
if err := dao.AddPolicies(false, ns.Namespace, ns.Policies); err != nil {
return err
}
}
return nil
}
// Del removes a namespace
func (dao *sqlimpl) Del(ns *idm.UserMetaNamespace) (e error) {
stmt, er := dao.GetStmt("Delete")
if er != nil {
return er
}
if _, err := stmt.Exec(ns.Namespace); err != nil {
return err
}
if err := dao.DeletePoliciesForResource(ns.Namespace); err != nil {
return err
}
return nil
}
// List list all namespaces
func (dao *sqlimpl) List() (result map[string]*idm.UserMetaNamespace, err error) {
stmt, er := dao.GetStmt("List")
if er != nil {
return nil, er
}
res, err := stmt.Query()
if err != nil {
return nil, err
}
defer res.Close()
result = make(map[string]*idm.UserMetaNamespace)
for res.Next() {
ns := new(idm.UserMetaNamespace)
var indexableValue int
if err := res.Scan(&ns.Namespace, &ns.Label, &ns.Order, &indexableValue, &ns.JsonDefinition); err != nil {
return nil, err
}
if indexableValue == 1 {
ns.Indexable = true
}
// Add policies
pol, err := dao.GetPoliciesForResource(ns.Namespace)
if err != nil {
return nil, err
}
ns.Policies = pol
result[ns.Namespace] = ns
}
return
}