-
Notifications
You must be signed in to change notification settings - Fork 62
/
register.go
116 lines (99 loc) · 3 KB
/
register.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
package register
import (
"context"
"errors"
"github.com/PacktPublishing/Hands-On-Dependency-Injection-in-Go/ch07/acme/internal/config"
"github.com/PacktPublishing/Hands-On-Dependency-Injection-in-Go/ch07/acme/internal/logging"
"github.com/PacktPublishing/Hands-On-Dependency-Injection-in-Go/ch07/acme/internal/modules/data"
"github.com/PacktPublishing/Hands-On-Dependency-Injection-in-Go/ch07/acme/internal/modules/exchange"
)
const (
// default person id (returned on error)
defaultPersonID = 0
)
var (
// validation errors
errNameMissing = errors.New("name is missing")
errPhoneMissing = errors.New("phone is missing")
errCurrencyMissing = errors.New("currency is missing")
errInvalidCurrency = errors.New("currency is invalid, supported types are AUD, CNY, EUR, GBP, JPY, MYR, SGD, USD")
// a little trick to make checking for supported currencies easier
supportedCurrencies = map[string]struct{}{
"AUD": {},
"CNY": {},
"EUR": {},
"GBP": {},
"JPY": {},
"MYR": {},
"SGD": {},
"USD": {},
}
)
// Registerer validates the supplied person, calculates the price in the requested currency and saves the result.
// It will return an error when:
// -the person object does not include all the fields
// -the currency is invalid
// -the exchange rate cannot be loaded
// -the data layer throws an error.
type Registerer struct {
}
// Do is API for this struct
func (r *Registerer) Do(ctx context.Context, in *data.Person) (int, error) {
// validate the request
err := r.validateInput(in)
if err != nil {
logging.L.Warn("input validation failed with err: %s", err)
return defaultPersonID, err
}
// get price in the requested currency
price, err := r.getPrice(ctx, in.Currency)
if err != nil {
return defaultPersonID, err
}
// save registration
id, err := r.save(ctx, in, price)
if err != nil {
// no need to log here as we expect the data layer to do so
return defaultPersonID, err
}
return id, nil
}
// validate input and return error on fail
func (r *Registerer) validateInput(in *data.Person) error {
if in.FullName == "" {
return errNameMissing
}
if in.Phone == "" {
return errPhoneMissing
}
if in.Currency == "" {
return errCurrencyMissing
}
if _, found := supportedCurrencies[in.Currency]; !found {
return errInvalidCurrency
}
// happy path
return nil
}
// get price in the requested currency
func (r *Registerer) getPrice(ctx context.Context, currency string) (float64, error) {
converter := &exchange.Converter{}
price, err := converter.Do(ctx, config.App.BasePrice, currency)
if err != nil {
logging.L.Warn("failed to convert the price. err: %s", err)
return defaultPersonID, err
}
return price, nil
}
// save the registration
func (r *Registerer) save(ctx context.Context, in *data.Person, price float64) (int, error) {
person := &data.Person{
FullName: in.FullName,
Phone: in.Phone,
Currency: in.Currency,
Price: price,
}
return saver(ctx, person)
}
// this function as a variable allows us to Monkey Patch during testing
var saver = data.Save