-
Notifications
You must be signed in to change notification settings - Fork 2
/
lpa_progress.go
45 lines (37 loc) · 1.26 KB
/
lpa_progress.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 donor
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/page"
"github.com/ministryofjustice/opg-modernising-lpa/internal/validation"
)
type lpaProgressData struct {
App page.AppData
Donor *actor.DonorProvidedDetails
Progress actor.Progress
Errors validation.List
}
func LpaProgress(tmpl template.Template, certificateProviderStore CertificateProviderStore, attorneyStore AttorneyStore) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, donor *actor.DonorProvidedDetails) error {
certificateProvider, err := certificateProviderStore.GetAny(r.Context())
if err != nil && !errors.Is(err, dynamo.NotFoundError{}) {
return err
}
if certificateProvider == nil {
certificateProvider = &actor.CertificateProviderProvidedDetails{}
}
attorneys, err := attorneyStore.GetAny(r.Context())
if err != nil {
return err
}
data := &lpaProgressData{
App: appData,
Donor: donor,
Progress: donor.Progress(certificateProvider, attorneys),
}
return tmpl(w, data)
}
}