Passed
Pull Request — main (#23)
by Igor
01:35
created

validation.newScope   A

Complexity

Conditions 1

Size

Total Lines 7
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 6
dl 0
loc 7
ccs 2
cts 2
cp 1
crap 1
rs 10
c 0
b 0
f 0
nop 0
1
package validation
2
3
import (
4
	"context"
5
	"fmt"
6
7
	languagepkg "github.com/muonsoft/language"
8
	"golang.org/x/text/language"
9
)
10
11
// Scope holds the current state of validation. On the client-side of the package,
12
// it can be used to build violations.
13
type Scope struct {
14
	context          context.Context
15
	propertyPath     PropertyPath
16
	language         language.Tag
17
	translator       *Translator
18
	violationFactory ViolationFactory
19
}
20
21
// Context returns context value that was passed to the validator by Context argument or
22
// by creating scoped validator with the validator.WithContext method.
23
func (s Scope) Context() context.Context {
24 1
	return s.context
25
}
26
27
// BuildViolation is used to create violations in validation methods of constraints.
28
// This method automatically injects the property path and language of the current validation scope.
29
func (s Scope) BuildViolation(code, message string) *ViolationBuilder {
30 1
	b := NewViolationBuilder(s.violationFactory).BuildViolation(code, message)
31 1
	b.SetPropertyPath(s.propertyPath)
32
33 1
	if s.language != language.Und {
34 1
		b.SetLanguage(s.language)
35 1
	} else if s.context != nil {
36 1
		b.SetLanguage(languagepkg.FromContext(s.context))
37
	}
38
39 1
	return b
40
}
41
42
func (s *Scope) applyOptions(options ...Option) error {
43 1
	for _, option := range options {
44 1
		err := option.SetUp(s)
45 1
		if err != nil {
46 1
			return s.describeOptionError(option, err)
47
		}
48
	}
49
50 1
	return nil
51
}
52
53
func (s *Scope) describeOptionError(option Option, err error) error {
54 1
	c, ok := option.(Constraint)
55 1
	if !ok {
56
		return fmt.Errorf(`failed to set up option: %w`, err)
57
	}
58
59 1
	if len(s.propertyPath) == 0 {
60 1
		err = fmt.Errorf(`failed to set up constraint "%s": %w`, c.Name(), err)
61
	} else {
62 1
		err = fmt.Errorf(`failed to set up constraint "%s" at path "%s": %w`, c.Name(), s.propertyPath.String(), err)
63
	}
64
65 1
	return err
66
}
67
68
func (s Scope) withContext(ctx context.Context) Scope {
69 1
	s.context = ctx
70
71 1
	return s
72
}
73
74
func (s Scope) withLanguage(tag language.Tag) Scope {
75 1
	s.language = tag
76
77 1
	return s
78
}
79
80
func (s Scope) atProperty(name string) Scope {
81 1
	s.propertyPath = append(s.propertyPath, PropertyNameElement(name))
82
83 1
	return s
84
}
85
86
func (s Scope) atIndex(index int) Scope {
87 1
	s.propertyPath = append(s.propertyPath, ArrayIndexElement(index))
88
89 1
	return s
90
}
91
92
func newScope() Scope {
93 1
	translator := newTranslator()
94
95 1
	return Scope{
96
		context:          context.Background(),
97
		translator:       translator,
98
		violationFactory: newViolationFactory(translator),
99
	}
100
}
101