-
Notifications
You must be signed in to change notification settings - Fork 2
/
withdraw_lpa.go
36 lines (30 loc) · 978 Bytes
/
withdraw_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
package donor
import (
"net/http"
"net/url"
"time"
"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 withdrawLpaData struct {
App page.AppData
Errors validation.List
Donor *actor.DonorProvidedDetails
}
func WithdrawLpa(tmpl template.Template, donorStore DonorStore, now func() time.Time) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, donor *actor.DonorProvidedDetails) error {
if r.Method == http.MethodPost {
donor.WithdrawnAt = now()
if err := donorStore.Put(r.Context(), donor); err != nil {
return err
}
return page.Paths.LpaWithdrawn.RedirectQuery(w, r, appData, url.Values{"uid": {donor.LpaUID}})
}
return tmpl(w, &withdrawLpaData{
App: appData,
Donor: donor,
})
}
}