-
Notifications
You must be signed in to change notification settings - Fork 2
/
previous_fee.go
76 lines (60 loc) · 1.86 KB
/
previous_fee.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
package donor
import (
"net/http"
"github.com/ministryofjustice/opg-go-common/template"
"github.com/ministryofjustice/opg-modernising-lpa/internal/actor"
"github.com/ministryofjustice/opg-modernising-lpa/internal/page"
"github.com/ministryofjustice/opg-modernising-lpa/internal/pay"
"github.com/ministryofjustice/opg-modernising-lpa/internal/validation"
)
type previousFeeData struct {
App page.AppData
Errors validation.List
Form *previousFeeForm
Options pay.PreviousFeeOptions
}
func PreviousFee(tmpl template.Template, payer Payer, donorStore DonorStore) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, donor *actor.DonorProvidedDetails) error {
data := &previousFeeData{
App: appData,
Form: &previousFeeForm{
PreviousFee: donor.PreviousFee,
},
Options: pay.PreviousFeeValues,
}
if r.Method == http.MethodPost {
data.Form = readPreviousFeeForm(r)
data.Errors = data.Form.Validate()
if data.Errors.None() {
if donor.PreviousFee != data.Form.PreviousFee {
donor.PreviousFee = data.Form.PreviousFee
if err := donorStore.Put(r.Context(), donor); err != nil {
return err
}
}
if donor.PreviousFee.IsPreviousFeeFull() {
return payer.Pay(appData, w, r, donor)
}
return page.Paths.EvidenceRequired.Redirect(w, r, appData, donor)
}
}
return tmpl(w, data)
}
}
type previousFeeForm struct {
PreviousFee pay.PreviousFee
Error error
}
func readPreviousFeeForm(r *http.Request) *previousFeeForm {
previousFee, err := pay.ParsePreviousFee(page.PostFormString(r, "previous-fee"))
return &previousFeeForm{
PreviousFee: previousFee,
Error: err,
}
}
func (f *previousFeeForm) Validate() validation.List {
var errors validation.List
errors.Error("previous-fee", "howMuchYouPreviouslyPaid", f.Error,
validation.Selected())
return errors
}