-
Notifications
You must be signed in to change notification settings - Fork 2
/
enter_your_name.go
65 lines (51 loc) · 1.54 KB
/
enter_your_name.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
63
64
65
package supporter
import (
"net/http"
"github.com/ministryofjustice/opg-go-common/template"
"github.com/ministryofjustice/opg-modernising-lpa/internal/page"
"github.com/ministryofjustice/opg-modernising-lpa/internal/validation"
)
type enterYourNameData struct {
App page.AppData
Errors validation.List
Form *enterYourNameForm
}
func EnterYourName(tmpl template.Template, memberStore MemberStore) page.Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request) error {
data := &enterYourNameData{
App: appData,
Form: &enterYourNameForm{},
}
if r.Method == http.MethodPost {
data.Form = readEnterYourNameForm(r)
data.Errors = data.Form.Validate()
if data.Errors.None() {
if _, err := memberStore.Create(r.Context(), data.Form.FirstNames, data.Form.LastName); err != nil {
return err
}
return page.Paths.Supporter.EnterOrganisationName.Redirect(w, r, appData)
}
}
return tmpl(w, data)
}
}
type enterYourNameForm struct {
FirstNames string
LastName string
}
func readEnterYourNameForm(r *http.Request) *enterYourNameForm {
return &enterYourNameForm{
FirstNames: page.PostFormString(r, "first-names"),
LastName: page.PostFormString(r, "last-name"),
}
}
func (f *enterYourNameForm) Validate() validation.List {
var errors validation.List
errors.String("first-names", "firstNames", f.FirstNames,
validation.Empty(),
validation.StringTooLong(53))
errors.String("last-name", "lastName", f.LastName,
validation.Empty(),
validation.StringTooLong(61))
return errors
}