-
Notifications
You must be signed in to change notification settings - Fork 2
/
remove_attorney.go
64 lines (52 loc) · 1.88 KB
/
remove_attorney.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
package donor
import (
"fmt"
"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 removeAttorneyData struct {
App page.AppData
TitleLabel string
Name string
Errors validation.List
Form *form.YesNoForm
}
func RemoveAttorney(logger Logger, tmpl template.Template, donorStore DonorStore) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, donor *actor.DonorProvidedDetails) error {
id := r.FormValue("id")
attorney, found := donor.Attorneys.Get(id)
if found == false {
return page.Paths.ChooseAttorneysSummary.Redirect(w, r, appData, donor)
}
data := &removeAttorneyData{
App: appData,
TitleLabel: "removeAnAttorney",
Name: attorney.FullName(),
Form: form.NewYesNoForm(form.YesNoUnknown),
}
if r.Method == http.MethodPost {
data.Form = form.ReadYesNoForm(r, "yesToRemoveAttorney")
data.Errors = data.Form.Validate()
if data.Errors.None() {
if data.Form.YesNo == form.Yes {
donor.Attorneys.Delete(attorney)
if donor.Attorneys.Len() == 1 {
donor.AttorneyDecisions = actor.AttorneyDecisions{}
}
donor.Tasks.ChooseAttorneys = page.ChooseAttorneysState(donor.Attorneys, donor.AttorneyDecisions)
donor.Tasks.ChooseReplacementAttorneys = page.ChooseReplacementAttorneysState(donor)
if err := donorStore.Put(r.Context(), donor); err != nil {
logger.Print(fmt.Sprintf("error removing Attorney from LPA: %s", err.Error()))
return err
}
}
return page.Paths.ChooseAttorneysSummary.Redirect(w, r, appData, donor)
}
}
return tmpl(w, data)
}
}