-
Notifications
You must be signed in to change notification settings - Fork 2
/
check_you_can_sign.go
48 lines (38 loc) · 1.27 KB
/
check_you_can_sign.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
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/form"
"github.com/ministryofjustice/opg-modernising-lpa/internal/page"
"github.com/ministryofjustice/opg-modernising-lpa/internal/validation"
)
type checkYouCanSignData struct {
App page.AppData
Errors validation.List
Form *form.YesNoForm
}
func CheckYouCanSign(tmpl template.Template, donorStore DonorStore) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, donor *actor.DonorProvidedDetails) error {
data := &checkYouCanSignData{
App: appData,
Form: form.NewYesNoForm(donor.Donor.CanSign),
}
if r.Method == http.MethodPost {
data.Form = form.ReadYesNoForm(r, "yesIfYouWillBeAbleToSignYourself")
data.Errors = data.Form.Validate()
if data.Errors.None() {
donor.Donor.CanSign = data.Form.YesNo
if err := donorStore.Put(r.Context(), donor); err != nil {
return err
}
redirect := page.Paths.YourAddress
if donor.Donor.CanSign.IsNo() {
redirect = page.Paths.NeedHelpSigningConfirmation
}
return redirect.Redirect(w, r, appData, donor)
}
}
return tmpl(w, data)
}
}