-
Notifications
You must be signed in to change notification settings - Fork 2
/
do_you_want_to_notify_people.go
67 lines (54 loc) · 1.98 KB
/
do_you_want_to_notify_people.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
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 doYouWantToNotifyPeopleData struct {
App page.AppData
Errors validation.List
Form *form.YesNoForm
Donor *actor.DonorProvidedDetails
HowWorkTogether string
}
func DoYouWantToNotifyPeople(tmpl template.Template, donorStore DonorStore) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, donor *actor.DonorProvidedDetails) error {
if len(donor.PeopleToNotify) > 0 {
return page.Paths.ChoosePeopleToNotifySummary.Redirect(w, r, appData, donor)
}
data := &doYouWantToNotifyPeopleData{
App: appData,
Donor: donor,
Form: form.NewYesNoForm(donor.DoYouWantToNotifyPeople),
}
switch donor.AttorneyDecisions.How {
case actor.Jointly:
data.HowWorkTogether = "jointlyDescription"
case actor.JointlyAndSeverally:
data.HowWorkTogether = "jointlyAndSeverallyDescription"
case actor.JointlyForSomeSeverallyForOthers:
data.HowWorkTogether = "jointlyForSomeSeverallyForOthersDescription"
}
if r.Method == http.MethodPost {
data.Form = form.ReadYesNoForm(r, "yesToNotifySomeoneAboutYourLpa")
data.Errors = data.Form.Validate()
if data.Errors.None() {
donor.DoYouWantToNotifyPeople = data.Form.YesNo
donor.Tasks.PeopleToNotify = actor.TaskInProgress
redirectPath := page.Paths.ChoosePeopleToNotify
if donor.DoYouWantToNotifyPeople == form.No {
redirectPath = page.Paths.TaskList
donor.Tasks.PeopleToNotify = actor.TaskCompleted
}
if err := donorStore.Put(r.Context(), donor); err != nil {
return err
}
return redirectPath.Redirect(w, r, appData, donor)
}
}
return tmpl(w, data)
}
}