-
Notifications
You must be signed in to change notification settings - Fork 2
/
choose_people_to_notify_address.go
97 lines (79 loc) · 2.56 KB
/
choose_people_to_notify_address.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
93
94
95
96
97
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/place"
)
func ChoosePeopleToNotifyAddress(logger Logger, tmpl template.Template, addressClient AddressClient, donorStore DonorStore) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, donor *actor.DonorProvidedDetails) error {
personId := r.FormValue("id")
personToNotify, found := donor.PeopleToNotify.Get(personId)
if found == false {
return page.Paths.ChoosePeopleToNotify.Redirect(w, r, appData, donor)
}
data := newChooseAddressData(
appData,
"personToNotify",
personToNotify.FullName(),
personToNotify.ID,
false,
)
if personToNotify.Address.Line1 != "" {
data.Form.Action = "manual"
data.Form.Address = &personToNotify.Address
}
if r.Method == http.MethodPost {
data.Form = form.ReadAddressForm(r)
data.Errors = data.Form.Validate(false)
setAddress := func(address place.Address) error {
personToNotify.Address = *data.Form.Address
donor.PeopleToNotify.Put(personToNotify)
donor.Tasks.PeopleToNotify = actor.TaskCompleted
return donorStore.Put(r.Context(), donor)
}
switch data.Form.Action {
case "manual":
if data.Errors.None() {
if err := setAddress(*data.Form.Address); err != nil {
return err
}
return page.Paths.ChoosePeopleToNotifySummary.Redirect(w, r, appData, donor)
}
case "postcode-select":
if data.Errors.None() {
data.Form.Action = "manual"
} else {
lookupAddress(r.Context(), logger, addressClient, data, false)
}
case "postcode-lookup":
if data.Errors.None() {
lookupAddress(r.Context(), logger, addressClient, data, false)
} else {
data.Form.Action = "postcode"
}
case "reuse":
data.Addresses = donor.ActorAddresses()
case "reuse-select":
if data.Errors.None() {
if err := setAddress(*data.Form.Address); err != nil {
return err
}
return page.Paths.ChoosePeopleToNotifySummary.Redirect(w, r, appData, donor)
} else {
data.Addresses = donor.ActorAddresses()
}
}
}
if r.Method == http.MethodGet {
action := r.FormValue(data.Form.FieldNames.Action)
if action == "manual" {
data.Form.Action = "manual"
data.Form.Address = &place.Address{}
}
}
return tmpl(w, data)
}
}