-
Notifications
You must be signed in to change notification settings - Fork 2
/
witnessing_your_signature.go
48 lines (39 loc) · 1.35 KB
/
witnessing_your_signature.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
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 witnessingYourSignatureData struct {
App page.AppData
Errors validation.List
Donor *actor.DonorProvidedDetails
}
func WitnessingYourSignature(tmpl template.Template, witnessCodeSender WitnessCodeSender, donorStore DonorStore) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, donor *actor.DonorProvidedDetails) error {
if r.Method == http.MethodPost {
if err := witnessCodeSender.SendToCertificateProvider(r.Context(), donor, appData.Localizer); err != nil {
return err
}
if donor.Donor.CanSign.IsYes() {
return page.Paths.WitnessingAsCertificateProvider.Redirect(w, r, appData, donor)
} else {
lpa, err := donorStore.Get(r.Context())
if err != nil {
return err
}
if err := witnessCodeSender.SendToIndependentWitness(r.Context(), lpa, appData.Localizer); err != nil {
return err
}
return page.Paths.WitnessingAsIndependentWitness.Redirect(w, r, appData, lpa)
}
}
data := &witnessingYourSignatureData{
App: appData,
Donor: donor,
}
return tmpl(w, data)
}
}