-
Notifications
You must be signed in to change notification settings - Fork 2
/
sign_your_lpa.go
92 lines (72 loc) · 2.1 KB
/
sign_your_lpa.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
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/validation"
)
type signYourLpaData struct {
App page.AppData
Errors validation.List
Donor *actor.DonorProvidedDetails
Form *signYourLpaForm
WantToSignFormValue string
WantToApplyFormValue string
}
const (
WantToSignLpa = "want-to-sign"
WantToApplyForLpa = "want-to-apply"
)
func SignYourLpa(tmpl template.Template, donorStore DonorStore) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, donor *actor.DonorProvidedDetails) error {
data := &signYourLpaData{
App: appData,
Donor: donor,
Form: &signYourLpaForm{
WantToApply: donor.WantToApplyForLpa,
WantToSign: donor.WantToSignLpa,
},
WantToSignFormValue: WantToSignLpa,
WantToApplyFormValue: WantToApplyForLpa,
}
if r.Method == http.MethodPost {
r.ParseForm()
data.Form = readSignYourLpaForm(r)
data.Errors = data.Form.Validate()
donor.WantToApplyForLpa = data.Form.WantToApply
donor.WantToSignLpa = data.Form.WantToSign
if err := donorStore.Put(r.Context(), donor); err != nil {
return err
}
if data.Errors.None() {
return page.Paths.WitnessingYourSignature.Redirect(w, r, appData, donor)
}
}
return tmpl(w, data)
}
}
type signYourLpaForm struct {
WantToApply bool
WantToSign bool
}
func readSignYourLpaForm(r *http.Request) *signYourLpaForm {
r.ParseForm()
form := &signYourLpaForm{}
for _, checkBox := range r.PostForm["sign-lpa"] {
if checkBox == WantToSignLpa {
form.WantToSign = true
}
if checkBox == WantToApplyForLpa {
form.WantToApply = true
}
}
return form
}
func (f *signYourLpaForm) Validate() validation.List {
var errors validation.List
if !(f.WantToApply && f.WantToSign) {
errors.Add("sign-lpa", validation.SelectError{Label: "bothBoxesToSignAndApply"})
}
return errors
}