Files
fnx_web/webcontroller/user_account.go

274 lines
7.3 KiB
Go
Raw Normal View History

package webcontroller
2018-06-23 21:17:53 +02:00
import (
"html/template"
2018-06-23 21:17:53 +02:00
"net/http"
"time"
2018-06-23 21:17:53 +02:00
"github.com/Fornaxian/log"
"github.com/julienschmidt/httprouter"
)
func (wc *WebController) serveLogout(
w http.ResponseWriter,
r *http.Request,
p httprouter.Params,
) {
if key, err := wc.getAPIKey(r); err == nil {
var api = wc.api.Login(key)
2021-03-10 20:13:32 +01:00
if err = api.DeleteUserSession(key); err != nil {
2019-12-17 19:28:30 +01:00
log.Warn("logout failed for session '%s': %s", key, err)
2018-06-23 21:17:53 +02:00
}
}
2018-07-08 14:47:51 +02:00
http.Redirect(w, r, "/", http.StatusSeeOther)
2018-07-08 14:40:20 +02:00
}
2019-12-23 23:56:57 +01:00
func (wc *WebController) registerForm(td *TemplateData, r *http.Request) (f Form) {
2020-05-05 22:03:34 +02:00
var err error
// This only runs on the first request
if wc.captchaSiteKey == "" {
2021-03-10 20:13:32 +01:00
capt, err := td.PixelAPI.GetMiscRecaptcha()
if err != nil {
log.Error("Error getting recaptcha key: %s", err)
f.SubmitMessages = []template.HTML{
"An internal server error had occurred. Registration is " +
"unavailable at the moment. Please return later",
}
return f
}
if capt.SiteKey == "" {
wc.captchaSiteKey = "none"
} else {
wc.captchaSiteKey = capt.SiteKey
}
}
// Construct the form
2019-12-23 23:56:57 +01:00
f = Form{
Name: "register",
2020-07-31 21:21:14 +02:00
Title: "Register a new pixeldrain account",
2019-12-23 23:56:57 +01:00
Fields: []Field{
{
Name: "username",
Label: "Username",
Description: "used for logging into your account",
Separator: true,
2019-12-23 23:56:57 +01:00
Type: FieldTypeUsername,
}, {
2020-05-05 22:03:34 +02:00
Name: "email",
Label: "E-mail address",
2020-07-21 12:01:02 +02:00
Description: `not required. your e-mail address will only be
used for password resets and important account
2020-08-03 15:36:51 +02:00
notifications`,
Separator: true,
2019-12-23 23:56:57 +01:00
Type: FieldTypeEmail,
}, {
2020-05-05 22:03:34 +02:00
Name: "password",
Label: "Password",
2019-12-23 23:56:57 +01:00
Type: FieldTypeNewPassword,
}, {
Name: "password2",
Label: "Password verification",
Description: "you need to enter your password twice so we " +
"can verify that no typing errors were made, which would " +
"prevent you from logging into your new account",
Separator: true,
2019-12-23 23:56:57 +01:00
Type: FieldTypeNewPassword,
}, {
Name: "recaptcha_response",
2020-05-05 22:03:34 +02:00
Label: "reCaptcha",
Description: "the reCaptcha turing test verifies that you " +
"are not an evil robot that is trying to flood the " +
2020-05-05 22:03:34 +02:00
"website with fake accounts. Please click the white box " +
"to prove that you're not a robot",
Separator: true,
2019-12-23 23:56:57 +01:00
Type: FieldTypeCaptcha,
CaptchaSiteKey: wc.captchaKey(),
},
},
BackLink: "/",
SubmitLabel: "Register",
PostFormHTML: template.HTML("<p>Welcome to the club!</p>"),
}
if f.ReadInput(r) {
2020-05-05 22:03:34 +02:00
if f.FieldVal("password") != f.FieldVal("password2") {
f.SubmitMessages = []template.HTML{
"Password verification failed. Please enter the same " +
"password in both password fields"}
return f
}
log.Debug("capt: %s", f.FieldVal("recaptcha_response"))
2020-05-05 22:03:34 +02:00
if err = td.PixelAPI.UserRegister(
f.FieldVal("username"),
2020-05-05 22:03:34 +02:00
f.FieldVal("email"),
f.FieldVal("password"),
f.FieldVal("recaptcha_response"),
2020-05-05 22:03:34 +02:00
); err != nil {
formAPIError(err, &f)
} else {
// Request was a success
f.SubmitSuccess = true
f.SubmitMessages = []template.HTML{
`Registration completed! You can now <a href="/login">log in ` +
`to your account</a>.<br/>We're glad to have you on ` +
`board, have fun sharing!`}
}
}
return f
}
2019-12-23 23:56:57 +01:00
func (wc *WebController) loginForm(td *TemplateData, r *http.Request) (f Form) {
f = Form{
Name: "login",
Title: "Log in to your pixeldrain account",
2019-12-23 23:56:57 +01:00
Fields: []Field{
{
Name: "username",
Label: "Username / e-mail",
2019-12-23 23:56:57 +01:00
Type: FieldTypeUsername,
}, {
Name: "password",
Label: "Password",
2019-12-23 23:56:57 +01:00
Type: FieldTypeCurrentPassword,
},
},
BackLink: "/",
SubmitLabel: "Login",
PostFormHTML: template.HTML(
2019-12-17 19:28:30 +01:00
`<p>If you don't have a pixeldrain account yet, you can ` +
`<a href="/register">register here</a>. No e-mail address is ` +
2019-12-17 19:28:30 +01:00
`required.</p>` +
`<p>Forgot your password? If your account has a valid e-mail ` +
`address you can <a href="/password_reset">request a new ` +
`password here</a>.</p>`,
),
}
if f.ReadInput(r) {
2021-03-10 20:13:32 +01:00
if session, err := td.PixelAPI.PostUserLogin(
2021-01-12 14:07:55 +01:00
f.FieldVal("username"),
f.FieldVal("password"),
); err != nil {
2021-03-11 18:52:55 +01:00
log.Debug("Login failed: %s", err)
2020-05-05 22:03:34 +02:00
formAPIError(err, &f)
} else {
// Request was a success
f.SubmitSuccess = true
f.SubmitMessages = []template.HTML{"Success!"}
2020-02-05 11:56:08 +01:00
// Set the autentication cookie
f.Extra.SetCookie = &http.Cookie{
2020-02-19 14:36:55 +01:00
Name: "pd_auth_key",
2021-01-12 14:07:55 +01:00
Value: session.AuthKey.String(),
2020-02-19 14:36:55 +01:00
Path: "/",
Expires: time.Now().AddDate(50, 0, 0),
Domain: wc.sessionCookieDomain,
// Strict means the Cookie will only be sent when the user
// reaches a page by a link from the same domain. Lax means any
// page on the domain gets the cookie and None means embedded
// content also gets the cookie. We're not trying to track the
// user around the web so we use lax
SameSite: http.SameSiteLaxMode,
2021-03-10 20:13:32 +01:00
Secure: true,
}
f.Extra.RedirectTo = "/user"
}
}
return f
}
2019-12-23 23:56:57 +01:00
func (wc *WebController) passwordResetForm(td *TemplateData, r *http.Request) (f Form) {
f = Form{
2019-12-17 19:28:30 +01:00
Name: "password_reset",
2020-07-31 21:21:14 +02:00
Title: "Recover lost password",
2019-12-23 23:56:57 +01:00
Fields: []Field{
{
2019-12-17 19:28:30 +01:00
Name: "email",
Label: "E-mail address",
2020-07-21 12:01:02 +02:00
Description: `we will send a password reset link to this e-mail
2020-08-03 15:36:51 +02:00
address`,
2019-12-17 19:28:30 +01:00
Separator: true,
2019-12-23 23:56:57 +01:00
Type: FieldTypeEmail,
}, {
2019-12-17 19:28:30 +01:00
Name: "recaptcha_response",
Label: "Turing test (click the white box)",
Description: "the reCaptcha turing test verifies that you " +
"are not an evil robot that is trying hijack accounts",
Separator: true,
2019-12-23 23:56:57 +01:00
Type: FieldTypeCaptcha,
2019-12-17 19:28:30 +01:00
CaptchaSiteKey: wc.captchaKey(),
},
},
2019-12-17 19:28:30 +01:00
BackLink: "/login",
SubmitLabel: "Submit",
}
if f.ReadInput(r) {
2021-03-10 20:13:32 +01:00
if err := td.PixelAPI.PutUserPasswordReset(
2020-05-05 22:03:34 +02:00
f.FieldVal("email"),
f.FieldVal("recaptcha_response"),
); err != nil {
formAPIError(err, &f)
} else {
f.SubmitSuccess = true
2019-12-23 23:56:57 +01:00
f.SubmitMessages = []template.HTML{
"Success! Check your inbox for instructions to reset your password",
}
}
}
return f
}
func (wc *WebController) passwordResetConfirmForm(td *TemplateData, r *http.Request) (f Form) {
f = Form{
Name: "password_reset_confirm",
2020-07-31 21:21:14 +02:00
Title: "Reset lost password",
2019-12-23 23:56:57 +01:00
Fields: []Field{
{
2020-05-05 22:03:34 +02:00
Name: "new_password",
Label: "Password",
2019-12-23 23:56:57 +01:00
Type: FieldTypeNewPassword,
}, {
2020-05-05 22:03:34 +02:00
Name: "new_password2",
Label: "Password again",
2019-12-23 23:56:57 +01:00
Description: "you need to enter your password twice so we " +
"can verify that no typing errors were made, which would " +
"prevent you from logging into your new account",
Separator: true,
Type: FieldTypeNewPassword,
},
},
SubmitLabel: "Submit",
}
var resetKey = r.FormValue("key")
if resetKey == "" {
f.SubmitSuccess = false
f.SubmitMessages = []template.HTML{"Password reset key required"}
return f
}
if f.ReadInput(r) {
2020-05-05 22:03:34 +02:00
if f.FieldVal("new_password") != f.FieldVal("new_password2") {
2019-12-23 23:56:57 +01:00
f.SubmitMessages = []template.HTML{
"Password verification failed. Please enter the same " +
"password in both password fields"}
return f
}
2021-03-10 20:13:32 +01:00
if err := td.PixelAPI.PutUserPasswordResetConfirm(resetKey, f.FieldVal("new_password")); err != nil {
2020-05-05 22:03:34 +02:00
formAPIError(err, &f)
2019-12-23 23:56:57 +01:00
} else {
f.SubmitSuccess = true
2020-05-05 22:03:34 +02:00
f.SubmitMessages = []template.HTML{
`Success! You can now <a href="/login">log in</a> with your new password`,
}
}
}
return f
}