-
Notifications
You must be signed in to change notification settings - Fork 2
/
choose_replacement_attorneys_summary.go
55 lines (46 loc) · 1.91 KB
/
choose_replacement_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 chooseReplacementAttorneysSummaryData struct {
App page.AppData
Errors validation.List
Form *form.YesNoForm
Donor *actor.DonorProvidedDetails
Options form.YesNoOptions
}
func ChooseReplacementAttorneysSummary(tmpl template.Template) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, donor *actor.DonorProvidedDetails) error {
if donor.ReplacementAttorneys.Len() == 0 {
return page.Paths.DoYouWantReplacementAttorneys.Redirect(w, r, appData, donor)
}
data := &chooseReplacementAttorneysSummaryData{
App: appData,
Donor: donor,
Form: &form.YesNoForm{},
Options: form.YesNoValues,
}
if r.Method == http.MethodPost {
data.Form = form.ReadYesNoForm(r, "yesToAddAnotherReplacementAttorney")
data.Errors = data.Form.Validate()
if data.Errors.None() {
if data.Form.YesNo == form.Yes {
return appData.Paths.ChooseReplacementAttorneys.RedirectQuery(w, r, appData, donor, url.Values{"addAnother": {"1"}})
} else if donor.ReplacementAttorneys.Len() > 1 && (donor.Attorneys.Len() == 1 || donor.AttorneyDecisions.How.IsJointlyForSomeSeverallyForOthers() || donor.AttorneyDecisions.How.IsJointly()) {
return appData.Paths.HowShouldReplacementAttorneysMakeDecisions.Redirect(w, r, appData, donor)
} else if donor.AttorneyDecisions.How.IsJointlyAndSeverally() {
return appData.Paths.HowShouldReplacementAttorneysStepIn.Redirect(w, r, appData, donor)
} else {
return page.Paths.TaskList.Redirect(w, r, appData, donor)
}
}
}
return tmpl(w, data)
}
}