-
Notifications
You must be signed in to change notification settings - Fork 2
/
choose_attorneys_summary.go
55 lines (46 loc) · 1.57 KB
/
choose_attorneys_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
49
50
51
52
53
54
55
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 chooseAttorneysSummaryData struct {
App page.AppData
Errors validation.List
Form *form.YesNoForm
Donor *actor.DonorProvidedDetails
Options form.YesNoOptions
}
func ChooseAttorneysSummary(tmpl template.Template) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, donor *actor.DonorProvidedDetails) error {
if donor.Attorneys.Len() == 0 {
return appData.Paths.ChooseAttorneys.RedirectQuery(w, r, appData, donor, url.Values{"addAnother": {"1"}})
}
data := &chooseAttorneysSummaryData{
App: appData,
Donor: donor,
Form: &form.YesNoForm{},
Options: form.YesNoValues,
}
if r.Method == http.MethodPost {
data.Form = form.ReadYesNoForm(r, "yesToAddAnotherAttorney")
data.Errors = data.Form.Validate()
if data.Errors.None() {
redirectUrl := appData.Paths.TaskList
if donor.Attorneys.Len() > 1 {
redirectUrl = appData.Paths.HowShouldAttorneysMakeDecisions
}
if data.Form.YesNo == form.Yes {
return appData.Paths.ChooseAttorneys.RedirectQuery(w, r, appData, donor, url.Values{"addAnother": {"1"}})
} else {
return redirectUrl.Redirect(w, r, appData, donor)
}
}
}
return tmpl(w, data)
}
}