-
Notifications
You must be signed in to change notification settings - Fork 2
/
how_should_attorneys_make_decisions.go
88 lines (72 loc) · 2.75 KB
/
how_should_attorneys_make_decisions.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
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/page"
"github.com/ministryofjustice/opg-modernising-lpa/internal/validation"
)
type howShouldAttorneysMakeDecisionsData struct {
App page.AppData
Errors validation.List
Form *howShouldAttorneysMakeDecisionsForm
Donor *actor.DonorProvidedDetails
Options actor.AttorneysActOptions
}
func HowShouldAttorneysMakeDecisions(tmpl template.Template, donorStore DonorStore) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, donor *actor.DonorProvidedDetails) error {
data := &howShouldAttorneysMakeDecisionsData{
App: appData,
Form: &howShouldAttorneysMakeDecisionsForm{
DecisionsType: donor.AttorneyDecisions.How,
DecisionsDetails: donor.AttorneyDecisions.Details,
},
Donor: donor,
Options: actor.AttorneysActValues,
}
if r.Method == http.MethodPost {
data.Form = readHowShouldAttorneysMakeDecisionsForm(r, "howAttorneysShouldMakeDecisions", "detailsAboutTheDecisionsYourAttorneysMustMakeTogether")
data.Errors = data.Form.Validate()
if data.Errors.None() {
donor.AttorneyDecisions = actor.MakeAttorneyDecisions(
donor.AttorneyDecisions,
data.Form.DecisionsType,
data.Form.DecisionsDetails)
donor.Tasks.ChooseAttorneys = page.ChooseAttorneysState(donor.Attorneys, donor.AttorneyDecisions)
donor.Tasks.ChooseReplacementAttorneys = page.ChooseReplacementAttorneysState(donor)
if err := donorStore.Put(r.Context(), donor); err != nil {
return err
}
return page.Paths.TaskList.Redirect(w, r, appData, donor)
}
}
return tmpl(w, data)
}
}
type howShouldAttorneysMakeDecisionsForm struct {
DecisionsType actor.AttorneysAct
Error error
DecisionsDetails string
errorLabel string
detailsErrorLabel string
}
func readHowShouldAttorneysMakeDecisionsForm(r *http.Request, errorLabel, detailsErrorLabel string) *howShouldAttorneysMakeDecisionsForm {
how, err := actor.ParseAttorneysAct(page.PostFormString(r, "decision-type"))
return &howShouldAttorneysMakeDecisionsForm{
DecisionsType: how,
Error: err,
DecisionsDetails: page.PostFormString(r, "mixed-details"),
errorLabel: errorLabel,
detailsErrorLabel: detailsErrorLabel,
}
}
func (f *howShouldAttorneysMakeDecisionsForm) Validate() validation.List {
var errors validation.List
errors.Error("decision-type", f.errorLabel, f.Error,
validation.Selected())
if f.DecisionsType == actor.JointlyForSomeSeverallyForOthers {
errors.String("mixed-details", f.detailsErrorLabel, f.DecisionsDetails,
validation.Empty())
}
return errors
}