generated from TrueCloudLab/basic
84c4872b20
All checks were successful
DCO action / DCO (pull_request) Successful in 1m11s
Tests and linters / Tests (1.20) (pull_request) Successful in 1m22s
Tests and linters / Tests (1.21) (pull_request) Successful in 1m29s
Tests and linters / Tests with -race (pull_request) Successful in 1m39s
Tests and linters / Staticcheck (pull_request) Successful in 1m40s
Tests and linters / Lint (pull_request) Successful in 2m29s
* Rename `ObjectType` to `Kind`; * Rename `Object` field in `Condition` to `ConditionKind`; * Regenerate easy-json marshalers/unmarshalers; * Fix unit-tests Signed-off-by: Airat Arifullin <aarifullin@yadro.com>
145 lines
2.7 KiB
Go
145 lines
2.7 KiB
Go
package chain
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
|
|
jlexer "github.com/mailru/easyjson/jlexer"
|
|
jwriter "github.com/mailru/easyjson/jwriter"
|
|
)
|
|
|
|
// Run `make generate`` if types added or changed
|
|
|
|
var matchTypeToJSONValue = []struct {
|
|
mt MatchType
|
|
str string
|
|
}{
|
|
{MatchTypeDenyPriority, "DenyPriority"},
|
|
{MatchTypeFirstMatch, "FirstMatch"},
|
|
}
|
|
|
|
var statusToJSONValue = []struct {
|
|
s Status
|
|
str string
|
|
}{
|
|
{Allow, "Allow"},
|
|
{NoRuleFound, "NoRuleFound"},
|
|
{AccessDenied, "AccessDenied"},
|
|
{QuotaLimitReached, "QuotaLimitReached"},
|
|
}
|
|
|
|
var objectTypeToJSONValue = []struct {
|
|
t ConditionKindType
|
|
str string
|
|
}{
|
|
{KindRequest, "Request"},
|
|
{KindResource, "Resource"},
|
|
}
|
|
|
|
func (mt MatchType) MarshalEasyJSON(w *jwriter.Writer) {
|
|
for _, p := range matchTypeToJSONValue {
|
|
if p.mt == mt {
|
|
w.String(p.str)
|
|
return
|
|
}
|
|
}
|
|
w.String(strconv.FormatUint(uint64(mt), 10))
|
|
}
|
|
|
|
func (mt *MatchType) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
|
str := l.String()
|
|
for _, p := range matchTypeToJSONValue {
|
|
if p.str == str {
|
|
*mt = p.mt
|
|
return
|
|
}
|
|
}
|
|
|
|
v, err := strconv.ParseUint(str, 10, 8)
|
|
if err != nil {
|
|
l.AddError(fmt.Errorf("failed to parse match type: %w", err))
|
|
return
|
|
}
|
|
*mt = MatchType(v)
|
|
}
|
|
|
|
func (st Status) MarshalEasyJSON(w *jwriter.Writer) {
|
|
for _, p := range statusToJSONValue {
|
|
if p.s == st {
|
|
w.String(p.str)
|
|
return
|
|
}
|
|
}
|
|
w.String(strconv.FormatUint(uint64(st), 10))
|
|
}
|
|
|
|
func (st *Status) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
|
str := l.String()
|
|
for _, p := range statusToJSONValue {
|
|
if p.str == str {
|
|
*st = p.s
|
|
return
|
|
}
|
|
}
|
|
|
|
v, err := strconv.ParseUint(str, 10, 8)
|
|
if err != nil {
|
|
l.AddError(fmt.Errorf("failed to parse status: %w", err))
|
|
return
|
|
}
|
|
*st = Status(v)
|
|
}
|
|
|
|
func (ot ConditionKindType) MarshalEasyJSON(w *jwriter.Writer) {
|
|
for _, p := range objectTypeToJSONValue {
|
|
if p.t == ot {
|
|
w.String(p.str)
|
|
return
|
|
}
|
|
}
|
|
w.String(strconv.FormatUint(uint64(ot), 10))
|
|
}
|
|
|
|
func (ot *ConditionKindType) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
|
str := l.String()
|
|
for _, p := range objectTypeToJSONValue {
|
|
if p.str == str {
|
|
*ot = p.t
|
|
return
|
|
}
|
|
}
|
|
|
|
v, err := strconv.ParseUint(str, 10, 8)
|
|
if err != nil {
|
|
l.AddError(fmt.Errorf("failed to parse object type: %w", err))
|
|
return
|
|
}
|
|
*ot = ConditionKindType(v)
|
|
}
|
|
|
|
func (ct ConditionType) MarshalEasyJSON(w *jwriter.Writer) {
|
|
for _, p := range condToStr {
|
|
if p.ct == ct {
|
|
w.String(p.str)
|
|
return
|
|
}
|
|
}
|
|
w.String(strconv.FormatUint(uint64(ct), 10))
|
|
}
|
|
|
|
func (ct *ConditionType) UnmarshalEasyJSON(l *jlexer.Lexer) {
|
|
str := l.String()
|
|
for _, p := range condToStr {
|
|
if p.str == str {
|
|
*ct = p.ct
|
|
return
|
|
}
|
|
}
|
|
|
|
v, err := strconv.ParseUint(str, 10, 8)
|
|
if err != nil {
|
|
l.AddError(fmt.Errorf("failed to parse condition type: %w", err))
|
|
return
|
|
}
|
|
*ct = ConditionType(v)
|
|
}
|