-
Notifications
You must be signed in to change notification settings - Fork 2
/
mobile_number.go
68 lines (54 loc) · 1.78 KB
/
mobile_number.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
66
67
68
package attorney
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/lpastore"
"github.com/ministryofjustice/opg-modernising-lpa/internal/page"
"github.com/ministryofjustice/opg-modernising-lpa/internal/validation"
)
type mobileNumberData struct {
App page.AppData
Donor *lpastore.Lpa
Form *mobileNumberForm
Errors validation.List
}
type mobileNumberForm struct {
Mobile string
}
func MobileNumber(tmpl template.Template, attorneyStore AttorneyStore) Handler {
return func(appData page.AppData, w http.ResponseWriter, r *http.Request, attorneyProvidedDetails *actor.AttorneyProvidedDetails) error {
data := &mobileNumberData{
App: appData,
Form: &mobileNumberForm{
Mobile: attorneyProvidedDetails.Mobile,
},
}
if r.Method == http.MethodPost {
data.Form = readMobileNumberForm(r)
data.Errors = data.Form.Validate()
if data.Errors.None() {
attorneyProvidedDetails.Mobile = data.Form.Mobile
if attorneyProvidedDetails.Tasks.ConfirmYourDetails == actor.TaskNotStarted {
attorneyProvidedDetails.Tasks.ConfirmYourDetails = actor.TaskInProgress
}
if err := attorneyStore.Put(r.Context(), attorneyProvidedDetails); err != nil {
return err
}
return page.Paths.Attorney.YourPreferredLanguage.Redirect(w, r, appData, attorneyProvidedDetails.LpaID)
}
}
return tmpl(w, data)
}
}
func readMobileNumberForm(r *http.Request) *mobileNumberForm {
return &mobileNumberForm{
Mobile: page.PostFormString(r, "mobile"),
}
}
func (f *mobileNumberForm) Validate() validation.List {
var errors validation.List
errors.String("mobile", "mobile", f.Mobile,
validation.Mobile())
return errors
}