-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathverify.go
182 lines (143 loc) · 4.68 KB
/
verify.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
// Copyright 2019 Aporeto Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package elemental
import (
"fmt"
"net/http"
"reflect"
)
const (
readOnlyErrorTitle = "Read Only Error"
creationOnlyErrorTitle = "Creation Only Error"
)
// ValidateAdvancedSpecification verifies advanced specifications attributes like ReadOnly and CreationOnly.
//
// For instance, it will check if the given Manipulable has field marked as
// readonly, that it has not changed according to the db.
func ValidateAdvancedSpecification(obj AttributeSpecifiable, pristine AttributeSpecifiable, op Operation) error {
errors := NewErrors()
for _, field := range extractFieldNames(obj) {
spec := obj.SpecificationForAttribute(field)
// If the field is not exposed, we don't enforce anything.
if !spec.Exposed || spec.Transient {
continue
}
switch op {
case OperationCreate:
if spec.ReadOnly && !isFieldValueZero(field, obj) && !areFieldsValueEqualValue(field, obj, spec.DefaultValue) {
// Special case here. If we have a pristine object, and the fields are equal, it is fine.
if pristine != nil && areFieldValuesEqual(field, obj, pristine) {
continue
}
e := NewError(
readOnlyErrorTitle,
fmt.Sprintf("Field %s is read only. You cannot set its value.", spec.Name),
"elemental",
http.StatusUnprocessableEntity,
)
e.Data = map[string]string{"attribute": spec.Name}
errors = append(errors, e)
}
case OperationUpdate:
if !spec.CreationOnly && spec.ReadOnly && !areFieldValuesEqual(field, obj, pristine) {
e := NewError(
readOnlyErrorTitle,
fmt.Sprintf("Field %s is read only. You cannot modify its value.", spec.Name),
"elemental",
http.StatusUnprocessableEntity,
)
e.Data = map[string]string{"attribute": spec.Name}
errors = append(errors, e)
}
if spec.CreationOnly && !areFieldValuesEqual(field, obj, pristine) {
e := NewError(
creationOnlyErrorTitle,
fmt.Sprintf("Field %s can only be set during creation. You cannot modify its value.", spec.Name),
"elemental",
http.StatusUnprocessableEntity,
)
e.Data = map[string]string{"attribute": spec.Name}
errors = append(errors, e)
}
}
}
if len(errors) > 0 {
return errors
}
return nil
}
// BackportUnexposedFields copy the values of unexposed fields from src to dest.
func BackportUnexposedFields(src, dest AttributeSpecifiable) {
for _, field := range extractFieldNames(src) {
spec := src.SpecificationForAttribute(field)
if !spec.Exposed {
reflect.Indirect(reflect.ValueOf(dest)).FieldByName(field).Set(reflect.Indirect(reflect.ValueOf(src)).FieldByName(field))
}
if spec.Secret && isFieldValueZero(field, dest) {
reflect.Indirect(reflect.ValueOf(dest)).FieldByName(field).Set(reflect.Indirect(reflect.ValueOf(src)).FieldByName(field))
}
}
}
// ResetDefaultForZeroValues reset the default value from the specification when a field is Zero.
// If the given object is not an elemental.AttributeSpecifiable this function
// does nothing.
func ResetDefaultForZeroValues(obj any) {
o, ok := obj.(AttributeSpecifiable)
if !ok {
return
}
for _, field := range extractFieldNames(o) {
spec := o.SpecificationForAttribute(field)
if spec.DefaultValue == nil || !isFieldValueZero(field, o) {
continue
}
reflect.Indirect(reflect.ValueOf(o)).FieldByName(field).Set(reflect.ValueOf(spec.DefaultValue))
}
}
// ResetMaps recursively empty all kinds of maps in the given
// reflect.Value.
func ResetMaps(v reflect.Value) {
indirect := func(vv reflect.Value) reflect.Value {
for ; vv.Kind() == reflect.Ptr; vv = vv.Elem() {
_ = vv // this makes the linter happy as the loop is not empty
}
return vv
}
v = indirect(v)
if !v.IsValid() {
return
}
reset := func(f reflect.Value) {
switch f.Kind() {
case reflect.Map:
if f.IsNil() {
return
}
for _, k := range f.MapKeys() {
f.SetMapIndex(k, reflect.Value{})
}
case reflect.Struct, reflect.Slice:
ResetMaps(f)
}
}
switch v.Kind() {
case reflect.Map:
reset(v)
case reflect.Slice:
for i := 0; i < v.Len(); i++ {
reset(indirect(v.Index(i)))
}
case reflect.Struct:
for i := 0; i < v.NumField(); i++ {
reset(indirect(v.Field(i)))
}
}
}