-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathread_the_lpa.go
43 lines (34 loc) · 1.22 KB
/
read_the_lpa.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
package attorney
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/lpastore"
"github.com/ministryofjustice/opg-modernising-lpa/internal/page"
"github.com/ministryofjustice/opg-modernising-lpa/internal/validation"
)
type readTheLpaData struct {
App page.AppData
Errors validation.List
Lpa *lpastore.Lpa
}
func ReadTheLpa(tmpl template.Template, lpaStoreResolvingService LpaStoreResolvingService, attorneyStore AttorneyStore) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, attorneyProvidedDetails *actor.AttorneyProvidedDetails) error {
if r.Method == http.MethodPost {
attorneyProvidedDetails.Tasks.ReadTheLpa = actor.TaskCompleted
if err := attorneyStore.Put(r.Context(), attorneyProvidedDetails); err != nil {
return err
}
return page.Paths.Attorney.RightsAndResponsibilities.Redirect(w, r, appData, attorneyProvidedDetails.LpaID)
}
lpa, err := lpaStoreResolvingService.Get(r.Context())
if err != nil {
return err
}
data := &readTheLpaData{
App: appData,
Lpa: lpa,
}
return tmpl(w, data)
}
}