-
Notifications
You must be signed in to change notification settings - Fork 2
/
your_preferred_language.go
58 lines (49 loc) · 2.02 KB
/
your_preferred_language.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
package certificateproviderpage
import (
"net/http"
"github.com/ministryofjustice/opg-go-common/template"
"github.com/ministryofjustice/opg-modernising-lpa/internal/appcontext"
"github.com/ministryofjustice/opg-modernising-lpa/internal/certificateprovider"
"github.com/ministryofjustice/opg-modernising-lpa/internal/certificateprovider/certificateproviderdata"
"github.com/ministryofjustice/opg-modernising-lpa/internal/form"
"github.com/ministryofjustice/opg-modernising-lpa/internal/localize"
"github.com/ministryofjustice/opg-modernising-lpa/internal/lpastore/lpadata"
"github.com/ministryofjustice/opg-modernising-lpa/internal/validation"
)
type yourPreferredLanguageData struct {
App appcontext.Data
Errors validation.List
Form *form.LanguagePreferenceForm
Options localize.LangOptions
FieldName string
Lpa *lpadata.Lpa
}
func YourPreferredLanguage(tmpl template.Template, certificateProviderStore CertificateProviderStore, lpaStoreResolvingService LpaStoreResolvingService) Handler {
return func(appData appcontext.Data, w http.ResponseWriter, r *http.Request, certificateProvider *certificateproviderdata.Provided) error {
lpa, err := lpaStoreResolvingService.Get(r.Context())
if err != nil {
return err
}
data := &yourPreferredLanguageData{
App: appData,
Form: &form.LanguagePreferenceForm{
Preference: certificateProvider.ContactLanguagePreference,
},
Options: localize.LangValues,
FieldName: form.FieldNames.LanguagePreference,
Lpa: lpa,
}
if r.Method == http.MethodPost {
data.Form = form.ReadLanguagePreferenceForm(r, "whichLanguageYouWouldLikeUsToUseWhenWeContactYou")
data.Errors = data.Form.Validate()
if data.Errors.None() {
certificateProvider.ContactLanguagePreference = data.Form.Preference
if err := certificateProviderStore.Put(r.Context(), certificateProvider); err != nil {
return err
}
return certificateprovider.PathConfirmYourDetails.Redirect(w, r, appData, certificateProvider.LpaID)
}
}
return tmpl(w, data)
}
}