diff --git a/modules/setting/service.go b/modules/setting/service.go index 74ed5cd3c9..f69041b3dc 100644 --- a/modules/setting/service.go +++ b/modules/setting/service.go @@ -85,6 +85,7 @@ var Service = struct { DefaultOrgMemberVisible bool UserDeleteWithCommentsMaxTime time.Duration ValidSiteURLSchemes []string + PrivacyPolicyURL string // OpenID settings EnableOpenIDSignIn bool @@ -263,6 +264,8 @@ func loadServiceFrom(rootCfg ConfigProvider) { } Service.ValidSiteURLSchemes = schemes + Service.PrivacyPolicyURL = sec.Key("PRIVACY_POLICY_URL").MustString("") + mustMapSetting(rootCfg, "service.explore", &Service.Explore) loadOpenIDSetting(rootCfg) diff --git a/modules/web/middleware/data.go b/modules/web/middleware/data.go index 08d83f94be..d33cf966c4 100644 --- a/modules/web/middleware/data.go +++ b/modules/web/middleware/data.go @@ -58,6 +58,7 @@ func CommonTemplateContextData() ContextData { "EnableOpenIDSignIn": setting.Service.EnableOpenIDSignIn, "PageStartTime": time.Now(), - "RunModeIsProd": setting.IsProd, + "RunModeIsProd": setting.IsProd, + "PrivacyPolicyURL": setting.Service.PrivacyPolicyURL, } } diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini index 88688e3f27..aae67734a8 100644 --- a/options/locale/locale_en-US.ini +++ b/options/locale/locale_en-US.ini @@ -28,6 +28,7 @@ licenses = Licenses return_to_forgejo = Return to Forgejo toggle_menu = Toggle menu more_items = More items +privacy_policy = Privacy Policy username = Username email = Email address @@ -38,6 +39,7 @@ captcha = CAPTCHA twofa = Two-factor authentication twofa_scratch = Two-factor scratch code passcode = Passcode +consent_agree = I agree to the Privacy Policy webauthn_insert_key = Insert your security key webauthn_sign_in = Press the button on your security key. If your security key has no button, re-insert it. @@ -486,6 +488,7 @@ password_pwned_err = Could not complete request to HaveIBeenPwned last_admin = You cannot remove the last admin. There must be at least one admin. back_to_sign_in = Back to Sign in sign_in_openid = Proceed with OpenID +must_consent = Agreement to our Privacy Policy is required to register. [mail] view_it_on = View it on %s diff --git a/routers/web/auth/auth.go b/routers/web/auth/auth.go index 2afaad45a2..5d1e9fea7b 100644 --- a/routers/web/auth/auth.go +++ b/routers/web/auth/auth.go @@ -457,6 +457,11 @@ func SignUpPost(ctx *context.Context) { return } + if !form.Consent { + ctx.RenderWithErr(ctx.Tr("auth.must_consent"), tplSignUp, &form) + return + } + context.VerifyCaptcha(ctx, tplSignUp, form) if ctx.Written() { return diff --git a/services/forms/user_form.go b/services/forms/user_form.go index 3ba8724c92..76a700364c 100644 --- a/services/forms/user_form.go +++ b/services/forms/user_form.go @@ -96,6 +96,7 @@ type RegisterForm struct { Email string `binding:"Required;MaxSize(254)"` Password string `binding:"MaxSize(255)"` Retype string + Consent bool // privacy policy consent } // Validate validates the fields diff --git a/templates/base/footer_content.tmpl b/templates/base/footer_content.tmpl index 133ebac33a..867eec02ce 100644 --- a/templates/base/footer_content.tmpl +++ b/templates/base/footer_content.tmpl @@ -27,6 +27,7 @@ {{ctx.Locale.Tr "licenses"}} {{if .EnableSwagger}}API{{end}} + {{if .PrivacyPolicyURL}}{{ctx.Locale.Tr "privacy_policy"}}{{end}} {{template "custom/extra_links_footer" .}} diff --git a/templates/user/auth/consent.tmpl b/templates/user/auth/consent.tmpl new file mode 100644 index 0000000000..e9ada64d3b --- /dev/null +++ b/templates/user/auth/consent.tmpl @@ -0,0 +1,10 @@ +{{ if (.PrivacyPolicyURL) }} +