-
Notifications
You must be signed in to change notification settings - Fork 2
/
view_lpa.go
45 lines (38 loc) · 1.43 KB
/
view_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
44
45
package supporter
import (
"errors"
"net/http"
"github.com/ministryofjustice/opg-go-common/template"
"github.com/ministryofjustice/opg-modernising-lpa/internal/actor"
"github.com/ministryofjustice/opg-modernising-lpa/internal/dynamo"
"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 viewLPAData struct {
App page.AppData
Errors validation.List
Lpa *lpastore.Lpa
Progress page.Progress
}
func ViewLPA(tmpl template.Template, lpaStoreResolvingService LpaStoreResolvingService, certificateProviderStore CertificateProviderStore, attorneyStore AttorneyStore, progressTracker ProgressTracker) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, organisation *actor.Organisation, _ *actor.Member) error {
lpa, err := lpaStoreResolvingService.Get(r.Context())
if err != nil {
return err
}
certificateProvider, err := certificateProviderStore.GetAny(r.Context())
if err != nil && !errors.Is(err, dynamo.NotFoundError{}) {
return err
}
attorneys, err := attorneyStore.GetAny(r.Context())
if err != nil && !errors.Is(err, dynamo.NotFoundError{}) {
return err
}
return tmpl(w, &viewLPAData{
App: appData,
Lpa: lpa,
Progress: progressTracker.Progress(lpa, certificateProvider, attorneys),
})
}
}