-
Notifications
You must be signed in to change notification settings - Fork 17
/
project.go
188 lines (158 loc) · 4.26 KB
/
project.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
// Kodex (Community Edition - CE) - Privacy & Security Engineering Platform
// Copyright (C) 2019-2024 KIProtect GmbH (HRB 208395B) - Germany
//
// This program 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.
//
// This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
package kodex
import (
"encoding/json"
"github.com/kiprotect/go-helpers/forms"
"time"
)
type Project interface {
Model
Name() string
SetName(string) error
Description() string
SetDescription(string) error
Data() interface{}
SetData(interface{}) error
SetCreatedAt(time time.Time) error
SetUpdatedAt(time time.Time) error
SetDeletedAt(time *time.Time) error
MakeActionConfig(id []byte) ActionConfig
MakeDestination(id []byte) Destination
MakeSource(id []byte) Source
MakeStream(id []byte) Stream
DeleteRelated() error
// datasets (for testing, error logging, ...)
MakeDataset(id []byte) Dataset
Controller() Controller
}
/* Base Functionality */
type BaseProject struct {
Self Project
Controller_ Controller
}
func (b *BaseProject) Type() string {
return "project"
}
func (b *BaseProject) Update(values map[string]interface{}) error {
if params, err := ProjectForm.ValidateUpdate(values); err != nil {
return err
} else {
return b.update(params)
}
}
func (b *BaseProject) DeleteRelated() error {
// we delete related streams
if streams, err := b.Controller().Streams(map[string]interface{}{"project.id": b.Self.ID()}); err != nil {
return err
} else {
for _, stream := range streams {
if err := stream.Delete(); err != nil {
return err
}
}
}
// we delete related actions
if actions, err := b.Controller().ActionConfigs(map[string]interface{}{"project.id": b.Self.ID()}); err != nil {
return err
} else {
for _, action := range actions {
if err := action.Delete(); err != nil {
return err
}
}
}
// we delete related sources
if sources, err := b.Controller().Sources(map[string]interface{}{"project.id": b.Self.ID()}); err != nil {
return err
} else {
for _, source := range sources {
if err := source.Delete(); err != nil {
return err
}
}
}
// we delete related destinations
if destinations, err := b.Controller().Destinations(map[string]interface{}{"project.id": b.Self.ID()}); err != nil {
return err
} else {
for _, destination := range destinations {
if err := destination.Delete(); err != nil {
return err
}
}
}
return nil
}
func (b *BaseProject) Create(values map[string]interface{}) error {
if params, err := ProjectForm.Validate(values); err != nil {
return err
} else {
return b.update(params)
}
}
func (b *BaseProject) MarshalJSON() ([]byte, error) {
data := map[string]interface{}{
"name": b.Self.Name(),
"description": b.Self.Description(),
"data": b.Self.Data(),
}
for k, v := range JSONData(b.Self) {
data[k] = v
}
return json.Marshal(data)
}
func (b *BaseProject) update(params map[string]interface{}) error {
for key, value := range params {
var err error
switch key {
case "name":
err = b.Self.SetName(value.(string))
case "description":
err = b.Self.SetDescription(value.(string))
case "data":
err = b.Self.SetData(value)
}
if err != nil {
return err
}
}
return nil
}
var ProjectForm = forms.Form{
ErrorMsg: "invalid data encountered in the project form",
Fields: []forms.Field{
{
Name: "name",
Validators: append([]forms.Validator{
forms.IsRequired{}}, NameValidators...),
},
{
Name: "description",
Validators: append([]forms.Validator{
forms.IsOptional{Default: ""}}, DescriptionValidators...),
},
{
Name: "data",
Validators: []forms.Validator{
forms.IsOptional{}, forms.IsStringMap{},
},
},
},
}
func (b *BaseProject) Controller() Controller {
return b.Controller_
}