-
Notifications
You must be signed in to change notification settings - Fork 2
/
choose_people_to_notify_summary.go
48 lines (40 loc) · 1.38 KB
/
choose_people_to_notify_summary.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"
"net/url"
"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 choosePeopleToNotifySummaryData struct {
App page.AppData
Errors validation.List
Form *form.YesNoForm
Donor *actor.DonorProvidedDetails
}
func ChoosePeopleToNotifySummary(tmpl template.Template) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, donor *actor.DonorProvidedDetails) error {
if len(donor.PeopleToNotify) == 0 {
return page.Paths.DoYouWantToNotifyPeople.Redirect(w, r, appData, donor)
}
data := &choosePeopleToNotifySummaryData{
App: appData,
Donor: donor,
Form: form.NewYesNoForm(form.YesNoUnknown),
}
if r.Method == http.MethodPost {
data.Form = form.ReadYesNoForm(r, "yesToAddAnotherPersonToNotify")
data.Errors = data.Form.Validate()
if data.Errors.None() {
if data.Form.YesNo == form.No {
return page.Paths.TaskList.Redirect(w, r, appData, donor)
} else {
return page.Paths.ChoosePeopleToNotify.RedirectQuery(w, r, appData, donor, url.Values{"addAnother": {"1"}})
}
}
}
return tmpl(w, data)
}
}