This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
validators.go
239 lines (167 loc) · 5.87 KB
/
validators.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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package metadata
import (
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"reflect"
"strings"
"github.com/hyperledger/fabric/common/flogging"
)
var logger = flogging.MustGetLogger("metadata")
// fileValidators are used as handlers to validate specific metadata directories
type fileValidator func(srcPath string) error
// Currently, the only metadata expected and allowed is for META-INF/statedb/couchdb/indexes.
var fileValidators = map[string]fileValidator{
"META-INF/statedb/couchdb/indexes": couchdbIndexFileValidator,
}
// UnhandledDirectoryError is returned for metadata files in unhandled directories
type UnhandledDirectoryError struct {
err string
}
func (e *UnhandledDirectoryError) Error() string {
return e.err
}
// InvalidFileError is returned for invalid metadata files
type InvalidFileError struct {
err string
}
func (e *InvalidFileError) Error() string {
return e.err
}
// ValidateMetadataFile checks that metadata files are valid
// according to the validation rules of the metadata directory (metadataType)
func ValidateMetadataFile(srcPath, metadataType string) error {
// Get the validator handler for the metadata directory
fileValidator, ok := fileValidators[metadataType]
// If there is no validator handler for metadata directory, return UnhandledDirectoryError
if !ok {
return &UnhandledDirectoryError{fmt.Sprintf("Metadata not supported in directory: %s", metadataType)}
}
// If the file is not valid for the given metadata directory, return InvalidFileError
err := fileValidator(srcPath)
if err != nil {
return &InvalidFileError{fmt.Sprintf("Metadata file [%s] failed validation: %s", srcPath, err)}
}
// file is valid, return nil error
return nil
}
// couchdbIndexFileValidator implements fileValidator
func couchdbIndexFileValidator(srcPath string) error {
fileBytes, err := ioutil.ReadFile(srcPath)
if err != nil {
return err
}
// if the content does not validate as JSON, return err to invalidate the file
boolIsJSON, indexDefinition := isJSON(fileBytes)
if !boolIsJSON {
return errors.New("File is not valid JSON")
}
// validate the index definition
return validateIndexJSON(indexDefinition)
}
// isJSON tests a string to determine if it can be parsed as valid JSON
func isJSON(s []byte) (bool, map[string]interface{}) {
var js map[string]interface{}
return json.Unmarshal([]byte(s), &js) == nil, js
}
func validateIndexJSON(indexDefinition map[string]interface{}) error {
//flag to track if the "index" key is included
indexIncluded := false
//iterate through the JSON index definition
for jsonKey, jsonValue := range indexDefinition {
//create a case for the top level entries
switch jsonKey {
case "index":
if reflect.TypeOf(jsonValue).Kind() != reflect.Map {
return fmt.Errorf("Invalid entry, \"index\" must be a JSON")
}
err := processIndexMap(jsonValue.(map[string]interface{}))
if err != nil {
return err
}
indexIncluded = true
case "ddoc":
//Verify the design doc is a string
if reflect.TypeOf(jsonValue).Kind() != reflect.String {
return fmt.Errorf("Invalid entry, \"ddoc\" must be a string")
}
logger.Debugf("Found index object: \"%s\":\"%s\"", jsonKey, jsonValue)
case "name":
//Verify the name is a string
if reflect.TypeOf(jsonValue).Kind() != reflect.String {
return fmt.Errorf("Invalid entry, \"name\" must be a string")
}
logger.Debugf("Found index object: \"%s\":\"%s\"", jsonKey, jsonValue)
case "type":
if jsonValue != "json" {
return fmt.Errorf("Index type must be json")
}
logger.Debugf("Found index object: \"%s\":\"%s\"", jsonKey, jsonValue)
default:
return fmt.Errorf("Invalid Entry. Entry %s", jsonKey)
}
}
if !indexIncluded {
return fmt.Errorf("Index definition must include a \"fields\" definition")
}
return nil
}
//processIndexMap processes an interface map and wraps field names or traverses
//the next level of the json query
func processIndexMap(jsonFragment map[string]interface{}) error {
//iterate the item in the map
for jsonKey, jsonValue := range jsonFragment {
switch jsonKey {
case "fields":
switch jsonValueType := jsonValue.(type) {
case []interface{}:
//iterate the index field objects
for _, itemValue := range jsonValueType {
switch reflect.TypeOf(itemValue).Kind() {
case reflect.String:
//String is a valid field descriptor ex: "color", "size"
logger.Debugf("Found index field name: \"%s\"", itemValue)
case reflect.Map:
//Handle the case where a sort is included ex: {"size":"asc"}, {"color":"desc"}
err := validateFieldMap(itemValue.(map[string]interface{}))
if err != nil {
return err
}
}
}
default:
return fmt.Errorf("Expecting a JSON array of fields")
}
case "partial_filter_selector":
//TODO - add support for partial filter selector, for now return nil
//Take no other action, will be considered valid for now
default:
//if anything other than "fields" or "partial_filter_selector" was found,
//return an error
return fmt.Errorf("Invalid Entry. Entry %s", jsonKey)
}
}
return nil
}
//validateFieldMap validates the list of field objects
func validateFieldMap(jsonFragment map[string]interface{}) error {
//iterate the fields to validate the sort criteria
for jsonKey, jsonValue := range jsonFragment {
switch jsonValue.(type) {
case string:
//Ensure the sort is either "asc" or "desc"
if !(strings.ToLower(jsonValue.(string)) == "asc" || strings.ToLower(jsonValue.(string)) == "desc") {
return fmt.Errorf("Sort must be either \"asc\" or \"desc\". \"%s\" was found.", jsonValue)
}
logger.Debugf("Found index field name: \"%s\":\"%s\"", jsonKey, jsonValue)
default:
return fmt.Errorf("Invalid field definition, fields must be in the form \"fieldname\":\"sort\"")
}
}
return nil
}