-
Notifications
You must be signed in to change notification settings - Fork 17
/
source.go
212 lines (179 loc) · 5.16 KB
/
source.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
// 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"
"fmt"
"github.com/kiprotect/go-helpers/forms"
)
type SourceStatus string
const (
// If a source is active, we try to read from it
ActiveSource SourceStatus = "active"
// If it is disabled, we ignore it
DisabledSource SourceStatus = "disabled"
)
type Source interface {
Processable // Processable includes Model
Reader() (Reader, error)
ConfigData() map[string]interface{}
SetConfigData(map[string]interface{}) error
SourceType() string
SetSourceType(string) error
Name() string
SetName(string) error
Description() string
SetDescription(string) error
// Return all streams with a given source status for this source
Streams(SourceStatus) ([]Stream, error)
SetData(interface{}) error
Data() interface{}
Project() Project
Service() Service
SetService(Service) error
}
/* Base Functionality */
type BaseSource struct {
Self Source
Project_ Project
}
func (b *BaseSource) Type() string {
return "source"
}
func (b *BaseSource) Stats() (map[string]float64, error) {
return nil, nil
}
func (b *BaseSource) Stat(name string) (float64, error) {
return 0.0, nil
}
func (b *BaseSource) SetStat(name string, value float64) error {
return nil
}
func (b *BaseSource) Project() Project {
return b.Project_
}
func (b *BaseSource) checkSourceConfig(sourceType string, config map[string]interface{}) error {
definitions := b.Self.Project().Controller().Definitions()
if definition, ok := definitions.ReaderDefinitions[sourceType]; !ok {
return fmt.Errorf("invalid source type: %s", sourceType)
} else if _, err := definition.Maker(config); err != nil {
return err
}
return nil
}
func (b *BaseSource) Update(values map[string]interface{}) error {
if params, err := SourceForm.ValidateUpdate(values); err != nil {
return err
} else {
sourceType, ok := params["type"].(string)
if !ok {
sourceType = b.Self.SourceType()
}
sourceConfig, ok := params["config"].(map[string]interface{})
if !ok {
sourceConfig = b.Self.ConfigData()
}
// we validate the new config/type combination
if err := b.checkSourceConfig(sourceType, sourceConfig); err != nil {
return err
}
return b.update(params)
}
}
func (b *BaseSource) Create(values map[string]interface{}) error {
if params, err := SourceForm.Validate(values); err != nil {
return err
} else {
sourceType := params["type"].(string)
sourceConfig := params["config"].(map[string]interface{})
if err := b.checkSourceConfig(sourceType, sourceConfig); err != nil {
return err
}
return b.update(params)
}
}
func (b *BaseSource) MarshalJSON() ([]byte, error) {
data := map[string]interface{}{
"name": b.Self.Name(),
"description": b.Self.Description(),
"type": b.Self.SourceType(),
"config": b.Self.ConfigData(),
"project": b.Self.Project(),
"data": b.Self.Data(),
}
for k, v := range JSONData(b.Self) {
data[k] = v
}
return json.Marshal(data)
}
func (b *BaseSource) 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 "config":
err = b.Self.SetConfigData(value.(map[string]interface{}))
case "data":
err = b.Self.SetData(value)
case "type":
err = b.Self.SetSourceType(value.(string))
}
if err != nil {
return err
}
}
return nil
}
func (b *BaseSource) Reader() (Reader, error) {
definitions := b.Self.Project().Controller().Definitions()
sourceType := b.Self.SourceType()
config := b.Self.ConfigData()
definition, ok := definitions.ReaderDefinitions[sourceType]
if !ok {
return nil, fmt.Errorf("unknown reader type %s", sourceType)
}
return definition.Maker(config)
}
var SourceForm = forms.Form{
ErrorMsg: "invalid data encountered in the source form",
Fields: []forms.Field{
{
Name: "name",
Validators: append([]forms.Validator{
forms.IsRequired{}}, NameValidators...),
},
{
Name: "description",
Validators: append([]forms.Validator{
forms.IsOptional{Default: ""}}, DescriptionValidators...),
},
{
Name: "config",
Validators: []forms.Validator{forms.IsStringMap{}},
},
{
Name: "data",
Validators: []forms.Validator{forms.IsOptional{}, forms.IsStringMap{}},
},
{
Name: "type",
Validators: []forms.Validator{forms.IsString{}},
},
},
}