-
Notifications
You must be signed in to change notification settings - Fork 2
/
restrictions.go
62 lines (48 loc) · 1.46 KB
/
restrictions.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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 restrictionsData struct {
App page.AppData
Errors validation.List
Donor *actor.DonorProvidedDetails
}
func Restrictions(tmpl template.Template, donorStore DonorStore) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, donor *actor.DonorProvidedDetails) error {
data := &restrictionsData{
App: appData,
Donor: donor,
}
if r.Method == http.MethodPost {
form := readRestrictionsForm(r)
data.Errors = form.Validate()
if data.Errors.None() {
donor.Tasks.Restrictions = actor.TaskCompleted
donor.Restrictions = form.Restrictions
if err := donorStore.Put(r.Context(), donor); err != nil {
return err
}
return page.Paths.TaskList.Redirect(w, r, appData, donor)
}
}
return tmpl(w, data)
}
}
type restrictionsForm struct {
Restrictions string
}
func readRestrictionsForm(r *http.Request) *restrictionsForm {
return &restrictionsForm{
Restrictions: page.PostFormString(r, "restrictions"),
}
}
func (f *restrictionsForm) Validate() validation.List {
var errors validation.List
errors.String("restrictions", "restrictions", f.Restrictions,
validation.StringTooLong(10000))
return errors
}