2018-01-23 10:48:44 +00:00
package routes
import (
2018-05-31 06:51:31 +00:00
"crypto/sha256"
2018-06-17 07:28:18 +00:00
"crypto/subtle"
2018-05-14 08:56:56 +00:00
"database/sql"
2018-05-31 06:51:31 +00:00
"encoding/hex"
2019-03-11 08:47:45 +00:00
"html"
2018-02-03 05:47:14 +00:00
"log"
2018-10-10 07:33:51 +00:00
"math"
2018-01-23 10:48:44 +00:00
"net/http"
2018-03-17 08:16:43 +00:00
"strconv"
2018-02-03 05:47:14 +00:00
"strings"
2018-01-23 10:48:44 +00:00
2019-04-19 06:36:26 +00:00
c "github.com/Azareal/Gosora/common"
2019-10-06 00:34:09 +00:00
p "github.com/Azareal/Gosora/common/phrases"
2019-12-08 03:40:56 +00:00
qgen "github.com/Azareal/Gosora/query_gen"
2018-01-23 10:48:44 +00:00
)
// A blank list to fill out that parameter in Page for routes which don't use it
var tList [ ] interface { }
2020-03-15 11:34:57 +00:00
func AccountLogin ( w http . ResponseWriter , r * http . Request , user c . User , h * c . Header ) c . RouteError {
2018-02-03 05:47:14 +00:00
if user . Loggedin {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "You're already logged in." , w , r , user )
2018-02-03 05:47:14 +00:00
}
2019-10-06 00:34:09 +00:00
h . Title = p . GetTitlePhrase ( "login" )
return renderTemplate ( "login" , w , r , h , c . Page { h , tList , nil } )
2018-02-03 05:47:14 +00:00
}
// TODO: Log failed attempted logins?
// TODO: Lock IPS out if they have too many failed attempts?
// TODO: Log unusual countries in comparison to the country a user usually logs in from? Alert the user about this?
2020-03-15 11:34:57 +00:00
func AccountLoginSubmit ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
2018-02-03 05:47:14 +00:00
if user . Loggedin {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "You're already logged in." , w , r , user )
2018-02-03 05:47:14 +00:00
}
2019-12-31 21:57:54 +00:00
name := c . SanitiseSingleLine ( r . PostFormValue ( "username" ) )
uid , err , requiresExtraAuth := c . Auth . Authenticate ( name , r . PostFormValue ( "password" ) )
2018-02-03 05:47:14 +00:00
if err != nil {
2019-08-31 22:34:43 +00:00
// TODO: uid is currently set to 0 as authenticate fetches the user by username and password. Get the actual uid, so we can alert the user of attempted logins? What if someone takes advantage of the response times to deduce if an account exists?
2019-12-31 21:57:54 +00:00
logItem := & c . LoginLogItem { UID : uid , Success : false , IP : user . GetIP ( ) }
2019-08-31 22:34:43 +00:00
_ , err := logItem . Create ( )
if err != nil {
return c . InternalError ( err , w , r )
2018-12-17 04:58:55 +00:00
}
2019-04-19 06:36:26 +00:00
return c . LocalError ( err . Error ( ) , w , r , user )
2018-02-03 05:47:14 +00:00
}
2018-12-17 04:58:55 +00:00
// TODO: Take 2FA into account
2019-12-31 21:57:54 +00:00
logItem := & c . LoginLogItem { UID : uid , Success : true , IP : user . GetIP ( ) }
2018-12-17 04:58:55 +00:00
_ , err = logItem . Create ( )
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-12-17 04:58:55 +00:00
}
2018-06-17 07:28:18 +00:00
// TODO: Do we want to slacken this by only doing it when the IP changes?
if requiresExtraAuth {
2019-04-19 06:36:26 +00:00
provSession , signedSession , err := c . Auth . CreateProvisionalSession ( uid )
2018-06-17 07:28:18 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-06-17 07:28:18 +00:00
}
2018-12-17 04:58:55 +00:00
// TODO: Use the login log ID in the provisional cookie?
2019-04-19 06:36:26 +00:00
c . Auth . SetProvisionalCookies ( w , uid , provSession , signedSession )
2018-06-17 07:28:18 +00:00
http . Redirect ( w , r , "/accounts/mfa_verify/" , http . StatusSeeOther )
return nil
}
2018-02-03 05:47:14 +00:00
2020-03-15 11:34:57 +00:00
return loginSuccess ( uid , w , r , & user )
2018-06-17 07:28:18 +00:00
}
2019-04-19 06:36:26 +00:00
func loginSuccess ( uid int , w http . ResponseWriter , r * http . Request , user * c . User ) c . RouteError {
userPtr , err := c . Users . Get ( uid )
2018-02-03 05:47:14 +00:00
if err != nil {
2020-03-15 11:34:57 +00:00
return c . LocalError ( "Bad account" , w , r , * user )
2018-02-03 05:47:14 +00:00
}
2018-06-17 07:28:18 +00:00
* user = * userPtr
2018-02-03 05:47:14 +00:00
var session string
if user . Session == "" {
2019-04-19 06:36:26 +00:00
session , err = c . Auth . CreateSession ( uid )
2018-02-03 05:47:14 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-02-03 05:47:14 +00:00
}
} else {
session = user . Session
}
2019-04-19 06:36:26 +00:00
c . Auth . SetCookies ( w , uid , session )
2018-02-03 05:47:14 +00:00
if user . IsAdmin {
// Is this error check redundant? We already check for the error in PreRoute for the same IP
// TODO: Should we be logging this?
2019-12-31 21:57:54 +00:00
log . Printf ( "#%d has logged in with IP %s" , uid , user . GetIP ( ) )
2018-02-03 05:47:14 +00:00
}
http . Redirect ( w , r , "/" , http . StatusSeeOther )
return nil
}
2018-06-17 07:28:18 +00:00
func extractCookie ( name string , r * http . Request ) ( string , error ) {
cookie , err := r . Cookie ( name )
if err != nil {
return "" , err
}
return cookie . Value , nil
}
2020-03-15 11:34:57 +00:00
func mfaGetCookies ( r * http . Request ) ( uid int , provSession string , signedSession string , err error ) {
2018-06-17 07:28:18 +00:00
suid , err := extractCookie ( "uid" , r )
if err != nil {
return 0 , "" , "" , err
}
uid , err = strconv . Atoi ( suid )
if err != nil {
return 0 , "" , "" , err
}
provSession , err = extractCookie ( "provSession" , r )
if err != nil {
return 0 , "" , "" , err
}
signedSession , err = extractCookie ( "signedSession" , r )
return uid , provSession , signedSession , err
}
2020-03-15 11:34:57 +00:00
func mfaVerifySession ( provSession string , signedSession string , uid int ) bool {
2018-06-17 07:28:18 +00:00
h := sha256 . New ( )
2019-04-19 06:36:26 +00:00
h . Write ( [ ] byte ( c . SessionSigningKeyBox . Load ( ) . ( string ) ) )
2018-06-17 07:28:18 +00:00
h . Write ( [ ] byte ( provSession ) )
h . Write ( [ ] byte ( strconv . Itoa ( uid ) ) )
expected := hex . EncodeToString ( h . Sum ( nil ) )
if subtle . ConstantTimeCompare ( [ ] byte ( signedSession ) , [ ] byte ( expected ) ) == 1 {
return true
}
h = sha256 . New ( )
2019-04-19 06:36:26 +00:00
h . Write ( [ ] byte ( c . OldSessionSigningKeyBox . Load ( ) . ( string ) ) )
2018-06-17 07:28:18 +00:00
h . Write ( [ ] byte ( provSession ) )
h . Write ( [ ] byte ( strconv . Itoa ( uid ) ) )
expected = hex . EncodeToString ( h . Sum ( nil ) )
return subtle . ConstantTimeCompare ( [ ] byte ( signedSession ) , [ ] byte ( expected ) ) == 1
}
2020-03-15 11:34:57 +00:00
func AccountLoginMFAVerify ( w http . ResponseWriter , r * http . Request , user c . User , h * c . Header ) c . RouteError {
if user . Loggedin {
return c . LocalError ( "You're already logged in." , w , r , user )
2018-06-17 07:28:18 +00:00
}
2019-10-06 00:34:09 +00:00
h . Title = p . GetTitlePhrase ( "login_mfa_verify" )
2018-06-17 07:28:18 +00:00
uid , provSession , signedSession , err := mfaGetCookies ( r )
if err != nil {
2020-03-15 11:34:57 +00:00
return c . LocalError ( "Invalid cookie" , w , r , user )
2018-06-17 07:28:18 +00:00
}
if ! mfaVerifySession ( provSession , signedSession , uid ) {
2020-03-15 11:34:57 +00:00
return c . LocalError ( "Invalid session" , w , r , user )
2018-06-17 07:28:18 +00:00
}
2019-12-08 03:40:56 +00:00
2019-10-06 00:34:09 +00:00
return renderTemplate ( "login_mfa_verify" , w , r , h , c . Page { h , tList , nil } )
2018-06-17 07:28:18 +00:00
}
2020-03-15 11:34:57 +00:00
func AccountLoginMFAVerifySubmit ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
2018-06-17 07:28:18 +00:00
uid , provSession , signedSession , err := mfaGetCookies ( r )
if err != nil {
2020-03-15 11:34:57 +00:00
return c . LocalError ( "Invalid cookie" , w , r , user )
2018-06-17 07:28:18 +00:00
}
if ! mfaVerifySession ( provSession , signedSession , uid ) {
2020-03-15 11:34:57 +00:00
return c . LocalError ( "Invalid session" , w , r , user )
2018-06-17 07:28:18 +00:00
}
2019-10-29 22:13:45 +00:00
token := r . PostFormValue ( "mfa_token" )
2018-06-17 07:28:18 +00:00
2019-04-19 06:36:26 +00:00
err = c . Auth . ValidateMFAToken ( token , uid )
2018-06-17 07:28:18 +00:00
if err != nil {
2020-03-15 11:34:57 +00:00
return c . LocalError ( err . Error ( ) , w , r , user )
2018-06-17 07:28:18 +00:00
}
2020-03-15 11:34:57 +00:00
return loginSuccess ( uid , w , r , & user )
2018-06-17 07:28:18 +00:00
}
2020-03-15 11:34:57 +00:00
func AccountLogout ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
c . Auth . Logout ( w , user . ID )
2018-05-15 05:59:52 +00:00
http . Redirect ( w , r , "/" , http . StatusSeeOther )
return nil
}
2020-03-15 11:34:57 +00:00
func AccountRegister ( w http . ResponseWriter , r * http . Request , user c . User , h * c . Header ) c . RouteError {
if user . Loggedin {
return c . LocalError ( "You're already logged in." , w , r , user )
2018-02-03 05:47:14 +00:00
}
2019-10-06 00:34:09 +00:00
h . Title = p . GetTitlePhrase ( "register" )
h . AddScriptAsync ( "register.js" )
2019-10-29 22:13:45 +00:00
return renderTemplate ( "register" , w , r , h , c . Page { h , tList , h . Settings [ "activation_type" ] != 2 } )
2018-02-03 05:47:14 +00:00
}
2018-09-20 04:36:50 +00:00
func isNumeric ( data string ) ( numeric bool ) {
for _ , char := range data {
if char < 48 || char > 57 {
return false
}
}
return true
}
2020-03-15 11:34:57 +00:00
func AccountRegisterSubmit ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
headerLite , _ := c . SimpleUserCheck ( w , r , & user )
2018-02-03 05:47:14 +00:00
2018-05-16 10:46:14 +00:00
// TODO: Should we push multiple validation errors to the user instead of just one?
2019-10-06 00:34:09 +00:00
regSuccess := true
regErrMsg := ""
regErrReason := ""
2020-02-09 13:48:33 +00:00
regError := func ( userMsg , reason string ) {
2018-05-16 10:46:14 +00:00
regSuccess = false
if regErrMsg == "" {
regErrMsg = userMsg
}
regErrReason += reason + "|"
}
2018-05-31 06:51:31 +00:00
if r . PostFormValue ( "tos" ) != "0" {
2019-10-06 00:34:09 +00:00
regError ( p . GetErrorPhrase ( "register_might_be_machine" ) , "trap-question" )
2018-05-31 06:51:31 +00:00
}
2019-04-19 06:36:26 +00:00
if ! c . Config . DisableJSAntispam {
2018-10-16 10:02:51 +00:00
h := sha256 . New ( )
2019-04-19 06:36:26 +00:00
h . Write ( [ ] byte ( c . JSTokenBox . Load ( ) . ( string ) ) )
2019-12-31 21:57:54 +00:00
h . Write ( [ ] byte ( user . GetIP ( ) ) )
2018-10-16 10:02:51 +00:00
if r . PostFormValue ( "golden-watch" ) != hex . EncodeToString ( h . Sum ( nil ) ) {
2019-10-06 00:34:09 +00:00
regError ( p . GetErrorPhrase ( "register_might_be_machine" ) , "js-antispam" )
2018-10-16 10:02:51 +00:00
}
2018-05-31 06:51:31 +00:00
}
2019-10-29 22:13:45 +00:00
name := c . SanitiseSingleLine ( r . PostFormValue ( "name" ) )
if name == "" {
2019-10-06 00:34:09 +00:00
regError ( p . GetErrorPhrase ( "register_need_username" ) , "no-username" )
2018-02-03 05:47:14 +00:00
}
2018-09-20 04:36:50 +00:00
// This is so a numeric name won't interfere with mentioning a user by ID, there might be a better way of doing this like perhaps !@ to mean IDs and @ to mean usernames in the pre-parser
2019-10-29 22:13:45 +00:00
nameBits := strings . Split ( name , " " )
if isNumeric ( nameBits [ 0 ] ) {
2019-10-06 00:34:09 +00:00
regError ( p . GetErrorPhrase ( "register_first_word_numeric" ) , "numeric-name" )
2018-09-20 04:36:50 +00:00
}
2019-12-08 03:40:56 +00:00
if strings . Contains ( name , "http://" ) || strings . Contains ( name , "https://" ) || strings . Contains ( name , "ftp://" ) || strings . Contains ( name , "ssh://" ) {
2019-11-04 11:55:52 +00:00
regError ( p . GetErrorPhrase ( "register_url_username" ) , "url-name" )
}
2018-09-20 04:36:50 +00:00
2019-10-30 06:37:51 +00:00
// TODO: Add a dedicated function for validating emails
email := c . SanitiseSingleLine ( r . PostFormValue ( "email" ) )
if headerLite . Settings [ "activation_type" ] == 2 && email == "" {
regError ( p . GetErrorPhrase ( "register_need_email" ) , "no-email" )
}
2019-10-06 00:34:09 +00:00
if c . HasSuspiciousEmail ( email ) {
regError ( p . GetErrorPhrase ( "register_suspicious_email" ) , "suspicious-email" )
2018-06-30 10:22:39 +00:00
}
2018-02-03 05:47:14 +00:00
password := r . PostFormValue ( "password" )
// ? Move this into Create()? What if we want to programatically set weak passwords for tests?
2019-10-29 22:13:45 +00:00
err := c . WeakPassword ( password , name , email )
2018-02-03 05:47:14 +00:00
if err != nil {
2018-05-16 10:46:14 +00:00
regError ( err . Error ( ) , "weak-password" )
} else {
// Do the two inputted passwords match..?
confirmPassword := r . PostFormValue ( "confirm_password" )
if password != confirmPassword {
2019-10-06 00:34:09 +00:00
regError ( p . GetErrorPhrase ( "register_password_mismatch" ) , "password-mismatch" )
2018-05-16 10:46:14 +00:00
}
2018-02-03 05:47:14 +00:00
}
2019-12-31 21:57:54 +00:00
regLog := c . RegLogItem { Username : name , Email : email , FailureReason : regErrReason , Success : regSuccess , IP : user . GetIP ( ) }
2020-01-04 05:30:25 +00:00
if ! c . Config . DisableRegLog {
_ , err := regLog . Create ( )
if err != nil {
return c . InternalError ( err , w , r )
}
2018-05-16 10:46:14 +00:00
}
if ! regSuccess {
2019-04-19 06:36:26 +00:00
return c . LocalError ( regErrMsg , w , r , user )
2018-02-03 05:47:14 +00:00
}
var active bool
var group int
switch headerLite . Settings [ "activation_type" ] {
case 1 : // Activate All
active = true
2019-04-19 06:36:26 +00:00
group = c . Config . DefaultGroup
2018-02-03 05:47:14 +00:00
default : // Anything else. E.g. Admin Activation or Email Activation.
2019-04-19 06:36:26 +00:00
group = c . Config . ActivationGroup
2018-02-03 05:47:14 +00:00
}
2020-01-04 05:30:25 +00:00
addReason := func ( reason string ) error {
if c . Config . DisableRegLog {
return nil
}
regLog . FailureReason += reason
return regLog . Commit ( )
}
2018-05-16 10:46:14 +00:00
// TODO: Do the registration attempt logging a little less messily (without having to amend the result after the insert)
2019-10-29 22:13:45 +00:00
uid , err := c . Users . Create ( name , password , email , group , active )
2018-05-16 10:46:14 +00:00
if err != nil {
regLog . Success = false
2019-04-19 06:36:26 +00:00
if err == c . ErrAccountExists {
2020-01-04 05:30:25 +00:00
err = addReason ( "username-exists" )
2018-05-16 10:46:14 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-05-16 10:46:14 +00:00
}
2019-10-06 00:34:09 +00:00
return c . LocalError ( p . GetErrorPhrase ( "register_username_unavailable" ) , w , r , user )
2019-04-19 06:36:26 +00:00
} else if err == c . ErrLongUsername {
2020-01-04 05:30:25 +00:00
err = addReason ( "username-too-long" )
2018-05-16 10:46:14 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-05-16 10:46:14 +00:00
}
2019-10-06 00:34:09 +00:00
return c . LocalError ( p . GetErrorPhrase ( "register_username_too_long_prefix" ) + strconv . Itoa ( c . Config . MaxUsernameLength ) , w , r , user )
2018-05-16 10:46:14 +00:00
}
2020-01-04 05:30:25 +00:00
err2 := addReason ( "internal-error" )
2018-05-16 10:46:14 +00:00
if err2 != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err2 , w , r )
2018-05-16 10:46:14 +00:00
}
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-02-03 05:47:14 +00:00
}
2020-02-09 13:48:33 +00:00
u , err := c . Users . Get ( uid )
if err == sql . ErrNoRows {
return c . LocalError ( "You no longer exist." , w , r , user )
} else if err != nil {
return c . InternalError ( err , w , r )
}
err = c . GroupPromotions . PromoteIfEligible ( u , u . Level , u . Posts , u . CreatedAt )
if err != nil {
return c . InternalError ( err , w , r )
}
u . CacheRemove ( )
2019-04-19 06:36:26 +00:00
session , err := c . Auth . CreateSession ( uid )
2019-03-03 03:19:32 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2019-03-03 03:19:32 +00:00
}
2019-04-19 06:36:26 +00:00
c . Auth . SetCookies ( w , uid , session )
2019-03-03 03:19:32 +00:00
2018-02-03 05:47:14 +00:00
// Check if this user actually owns this email, if email activation is on, automatically flip their account to active when the email is validated. Validation is also useful for determining whether this user should receive any alerts, etc. via email
2019-10-30 06:37:51 +00:00
if c . Site . EnableEmails && email != "" {
2019-04-19 06:36:26 +00:00
token , err := c . GenerateSafeString ( 80 )
2018-02-03 05:47:14 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-02-03 05:47:14 +00:00
}
// TODO: Add an EmailStore and move this there
2019-10-29 22:13:45 +00:00
_ , err = qgen . NewAcc ( ) . Insert ( "emails" ) . Columns ( "email,uid,validated,token" ) . Fields ( "?,?,?,?" ) . Exec ( email , uid , 0 , token )
2018-02-03 05:47:14 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-02-03 05:47:14 +00:00
}
2019-10-30 06:37:51 +00:00
err = c . SendActivationEmail ( name , email , token )
2019-03-03 03:19:32 +00:00
if err != nil {
2019-10-06 00:34:09 +00:00
return c . LocalError ( p . GetErrorPhrase ( "register_email_fail" ) , w , r , user )
2018-02-03 05:47:14 +00:00
}
}
http . Redirect ( w , r , "/" , http . StatusSeeOther )
return nil
}
2018-06-17 07:28:18 +00:00
// TODO: Figure a way of making this into middleware?
2019-10-06 00:34:09 +00:00
func accountEditHead ( titlePhrase string , w http . ResponseWriter , r * http . Request , user * c . User , h * c . Header ) {
h . Title = p . GetTitlePhrase ( titlePhrase )
h . Path = "/user/edit/"
h . AddSheet ( h . Theme . Name + "/account.css" )
h . AddScriptAsync ( "account.js" )
2018-06-17 07:28:18 +00:00
}
2020-03-15 11:34:57 +00:00
func AccountEdit ( w http . ResponseWriter , r * http . Request , user c . User , header * c . Header ) c . RouteError {
accountEditHead ( "account" , w , r , & user , header )
2018-06-17 07:28:18 +00:00
if r . FormValue ( "avatar_updated" ) == "1" {
header . AddNotice ( "account_avatar_updated" )
} else if r . FormValue ( "username_updated" ) == "1" {
header . AddNotice ( "account_username_updated" )
} else if r . FormValue ( "mfa_setup_success" ) == "1" {
header . AddNotice ( "account_mfa_setup_success" )
}
// TODO: Find a more efficient way of doing this
2019-10-06 00:34:09 +00:00
mfaSetup := false
2019-04-19 06:36:26 +00:00
_ , err := c . MFAstore . Get ( user . ID )
2018-06-17 07:28:18 +00:00
if err != sql . ErrNoRows && err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-06-17 07:28:18 +00:00
} else if err != sql . ErrNoRows {
mfaSetup = true
}
2018-10-08 05:34:25 +00:00
// Normalise the score so that the user sees their relative progress to the next level rather than showing them their total score
2019-04-19 06:36:26 +00:00
prevScore := c . GetLevelScore ( user . Level )
2018-10-08 05:34:25 +00:00
currentScore := user . Score - prevScore
2019-04-19 06:36:26 +00:00
nextScore := c . GetLevelScore ( user . Level + 1 ) - prevScore
2018-10-14 05:08:44 +00:00
perc := int ( math . Ceil ( ( float64 ( nextScore ) / float64 ( currentScore ) ) * 100 ) )
2018-10-08 05:34:25 +00:00
2019-04-19 06:36:26 +00:00
pi := c . Account { header , "dashboard" , "account_own_edit" , c . AccountDashPage { header , mfaSetup , currentScore , nextScore , user . Level + 1 , perc * 2 } }
2018-10-27 03:21:02 +00:00
return renderTemplate ( "account" , w , r , header , pi )
2018-06-17 07:28:18 +00:00
}
2018-11-01 06:43:56 +00:00
//edit_password
2020-03-15 11:34:57 +00:00
func AccountEditPassword ( w http . ResponseWriter , r * http . Request , user c . User , h * c . Header ) c . RouteError {
accountEditHead ( "account_password" , w , r , & user , h )
2019-10-06 00:34:09 +00:00
return renderTemplate ( "account_own_edit_password" , w , r , h , c . Page { h , tList , nil } )
2018-01-23 10:48:44 +00:00
}
2018-05-14 08:56:56 +00:00
2018-06-17 07:28:18 +00:00
// TODO: Require re-authentication if the user hasn't logged in in a while
2020-03-15 11:34:57 +00:00
func AccountEditPasswordSubmit ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
_ , ferr := c . SimpleUserCheck ( w , r , & user )
2018-05-14 08:56:56 +00:00
if ferr != nil {
return ferr
}
var realPassword , salt string
2019-10-29 22:13:45 +00:00
currentPassword := r . PostFormValue ( "current-password" )
newPassword := r . PostFormValue ( "new-password" )
confirmPassword := r . PostFormValue ( "confirm-password" )
2018-05-14 08:56:56 +00:00
// TODO: Use a reusable statement
2019-10-29 22:13:45 +00:00
err := qgen . NewAcc ( ) . Select ( "users" ) . Columns ( "password,salt" ) . Where ( "uid=?" ) . QueryRow ( user . ID ) . Scan ( & realPassword , & salt )
2018-05-14 08:56:56 +00:00
if err == sql . ErrNoRows {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "Your account no longer exists." , w , r , user )
2018-05-14 08:56:56 +00:00
} else if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-05-14 08:56:56 +00:00
}
2019-04-19 06:36:26 +00:00
err = c . CheckPassword ( realPassword , currentPassword , salt )
if err == c . ErrMismatchedHashAndPassword {
return c . LocalError ( "That's not the correct password." , w , r , user )
2018-05-14 08:56:56 +00:00
} else if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-05-14 08:56:56 +00:00
}
if newPassword != confirmPassword {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "The two passwords don't match." , w , r , user )
2018-05-14 08:56:56 +00:00
}
2019-04-19 06:36:26 +00:00
c . SetPassword ( user . ID , newPassword ) // TODO: Limited version of WeakPassword()
2018-05-14 08:56:56 +00:00
// Log the user out as a safety precaution
2019-04-19 06:36:26 +00:00
c . Auth . ForceLogout ( user . ID )
2018-05-14 08:56:56 +00:00
http . Redirect ( w , r , "/" , http . StatusSeeOther )
return nil
}
2020-03-15 11:34:57 +00:00
func AccountEditAvatarSubmit ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
_ , ferr := c . SimpleUserCheck ( w , r , & user )
2018-05-14 08:56:56 +00:00
if ferr != nil {
return ferr
}
2019-06-09 03:21:48 +00:00
if ! user . Perms . UploadAvatars {
return c . NoPermissions ( w , r , user )
}
2018-05-14 08:56:56 +00:00
2019-12-08 03:40:56 +00:00
ext , ferr := c . UploadAvatar ( w , r , user , user . ID )
2019-06-10 22:00:57 +00:00
if ferr != nil {
return ferr
2018-05-14 08:56:56 +00:00
}
2019-12-08 03:40:56 +00:00
ferr = c . ChangeAvatar ( "." + ext , w , r , user )
2019-06-10 22:00:57 +00:00
if ferr != nil {
return ferr
2019-03-05 04:46:43 +00:00
}
2019-12-08 03:40:56 +00:00
2018-07-28 12:52:23 +00:00
// TODO: Only schedule a resize if the avatar isn't tiny
2019-06-10 22:00:57 +00:00
err := user . ScheduleAvatarResize ( )
2018-07-28 12:52:23 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-07-28 12:52:23 +00:00
}
2018-06-17 07:28:18 +00:00
http . Redirect ( w , r , "/user/edit/?avatar_updated=1" , http . StatusSeeOther )
2018-05-14 08:56:56 +00:00
return nil
}
2020-03-15 11:34:57 +00:00
func AccountEditRevokeAvatarSubmit ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
_ , ferr := c . SimpleUserCheck ( w , r , & user )
2019-06-09 03:21:48 +00:00
if ferr != nil {
return ferr
}
2019-06-10 22:00:57 +00:00
ferr = c . ChangeAvatar ( "" , w , r , user )
if ferr != nil {
return ferr
2019-06-09 03:21:48 +00:00
}
http . Redirect ( w , r , "/user/edit/?avatar_updated=1" , http . StatusSeeOther )
return nil
}
2020-03-15 11:34:57 +00:00
func AccountEditUsernameSubmit ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
_ , ferr := c . SimpleUserCheck ( w , r , & user )
2018-05-14 08:56:56 +00:00
if ferr != nil {
return ferr
}
2018-06-17 07:28:18 +00:00
2019-04-19 06:36:26 +00:00
newUsername := c . SanitiseSingleLine ( r . PostFormValue ( "account-new-username" ) )
2018-06-17 07:28:18 +00:00
if newUsername == "" {
2020-03-15 11:34:57 +00:00
return c . LocalError ( "You can't leave your username blank" , w , r , user )
2018-06-17 07:28:18 +00:00
}
2020-03-15 11:34:57 +00:00
err := user . ChangeName ( newUsername )
2018-06-17 07:28:18 +00:00
if err != nil {
2020-03-15 11:34:57 +00:00
return c . LocalError ( "Unable to change the username. Does someone else already have this name?" , w , r , user )
2018-06-17 07:28:18 +00:00
}
http . Redirect ( w , r , "/user/edit/?username_updated=1" , http . StatusSeeOther )
return nil
}
2020-03-15 11:34:57 +00:00
func AccountEditMFA ( w http . ResponseWriter , r * http . Request , user c . User , h * c . Header ) c . RouteError {
accountEditHead ( "account_mfa" , w , r , & user , h )
2018-06-17 07:28:18 +00:00
2020-03-15 11:34:57 +00:00
mfaItem , err := c . MFAstore . Get ( user . ID )
2018-06-17 07:28:18 +00:00
if err != sql . ErrNoRows && err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-06-17 07:28:18 +00:00
} else if err == sql . ErrNoRows {
2020-03-15 11:34:57 +00:00
return c . LocalError ( "Two-factor authentication hasn't been setup on your account" , w , r , user )
2018-05-14 08:56:56 +00:00
}
2019-10-06 00:34:09 +00:00
pi := c . Page { h , tList , mfaItem . Scratch }
return renderTemplate ( "account_own_edit_mfa" , w , r , h , pi )
2018-05-14 08:56:56 +00:00
}
2018-06-17 07:28:18 +00:00
// If not setup, generate a string, otherwise give an option to disable mfa given the right code
2020-03-15 11:34:57 +00:00
func AccountEditMFASetup ( w http . ResponseWriter , r * http . Request , user c . User , h * c . Header ) c . RouteError {
accountEditHead ( "account_mfa_setup" , w , r , & user , h )
2018-06-17 07:28:18 +00:00
// Flash an error if mfa is already setup
2020-03-15 11:34:57 +00:00
_ , err := c . MFAstore . Get ( user . ID )
2018-06-17 07:28:18 +00:00
if err != sql . ErrNoRows && err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-06-17 07:28:18 +00:00
} else if err != sql . ErrNoRows {
2020-03-15 11:34:57 +00:00
return c . LocalError ( "You have already setup two-factor authentication" , w , r , user )
2018-06-17 07:28:18 +00:00
}
// TODO: Entitise this?
2019-04-19 06:36:26 +00:00
code , err := c . GenerateGAuthSecret ( )
2018-06-17 07:28:18 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-06-17 07:28:18 +00:00
}
2019-10-06 00:34:09 +00:00
pi := c . Page { h , tList , c . FriendlyGAuthSecret ( code ) }
return renderTemplate ( "account_own_edit_mfa_setup" , w , r , h , pi )
2018-06-17 07:28:18 +00:00
}
// Form should bounce the random mfa secret back and the otp to be verified server-side to reduce the chances of a bug arising on the JS side which makes every code mismatch
2020-03-15 11:34:57 +00:00
func AccountEditMFASetupSubmit ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
_ , ferr := c . SimpleUserCheck ( w , r , & user )
2018-05-14 08:56:56 +00:00
if ferr != nil {
return ferr
}
2018-06-17 07:28:18 +00:00
// Flash an error if mfa is already setup
2019-04-19 06:36:26 +00:00
_ , err := c . MFAstore . Get ( user . ID )
2018-06-17 07:28:18 +00:00
if err != sql . ErrNoRows && err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-06-17 07:28:18 +00:00
} else if err != sql . ErrNoRows {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "You have already setup two-factor authentication" , w , r , user )
2018-06-17 07:28:18 +00:00
}
2019-10-06 00:34:09 +00:00
code := r . PostFormValue ( "code" )
otp := r . PostFormValue ( "otp" )
2019-04-19 06:36:26 +00:00
ok , err := c . VerifyGAuthToken ( code , otp )
2018-05-14 08:56:56 +00:00
if err != nil {
2018-06-17 07:28:18 +00:00
//fmt.Println("err: ", err)
2019-04-19 06:36:26 +00:00
return c . LocalError ( "Something weird happened" , w , r , user ) // TODO: Log this error?
2018-06-17 07:28:18 +00:00
}
// TODO: Use AJAX for this
if ! ok {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "The token isn't right" , w , r , user )
2018-06-17 07:28:18 +00:00
}
// TODO: How should we handle races where a mfa key is already setup? Right now, it's a fairly generic error, maybe try parsing the error message?
2019-04-19 06:36:26 +00:00
err = c . MFAstore . Create ( code , user . ID )
2018-06-17 07:28:18 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-05-14 08:56:56 +00:00
}
2018-06-17 07:28:18 +00:00
http . Redirect ( w , r , "/user/edit/?mfa_setup_success=1" , http . StatusSeeOther )
2018-05-14 08:56:56 +00:00
return nil
}
2018-05-27 09:36:35 +00:00
2018-06-17 07:28:18 +00:00
// TODO: Implement this
2020-03-15 11:34:57 +00:00
func AccountEditMFADisableSubmit ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
_ , ferr := c . SimpleUserCheck ( w , r , & user )
2018-05-27 09:36:35 +00:00
if ferr != nil {
return ferr
}
2018-06-17 07:28:18 +00:00
// Flash an error if mfa is already setup
2019-04-19 06:36:26 +00:00
mfaItem , err := c . MFAstore . Get ( user . ID )
2018-06-17 07:28:18 +00:00
if err != sql . ErrNoRows && err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-06-17 07:28:18 +00:00
} else if err == sql . ErrNoRows {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "You don't have two-factor enabled on your account" , w , r , user )
2018-06-17 07:28:18 +00:00
}
err = mfaItem . Delete ( )
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-06-17 07:28:18 +00:00
}
http . Redirect ( w , r , "/user/edit/?mfa_disabled=1" , http . StatusSeeOther )
return nil
}
2020-03-15 11:34:57 +00:00
func AccountEditPrivacy ( w http . ResponseWriter , r * http . Request , user c . User , h * c . Header ) c . RouteError {
accountEditHead ( "account_privacy" , w , r , & user , h )
2019-12-08 03:40:56 +00:00
profileComments := false
receiveConvos := false
enableEmbeds := ! c . DefaultParseSettings . NoEmbed
2020-03-15 11:34:57 +00:00
if user . ParseSettings != nil {
enableEmbeds = ! user . ParseSettings . NoEmbed
2019-12-08 03:40:56 +00:00
}
pi := c . Account { h , "privacy" , "account_own_edit_privacy" , c . AccountPrivacyPage { h , profileComments , receiveConvos , enableEmbeds } }
return renderTemplate ( "account" , w , r , h , pi )
}
2020-03-15 11:34:57 +00:00
func AccountEditPrivacySubmit ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
//headerLite, _ := c.SimpleUserCheck(w, r, &user)
2019-12-08 03:40:56 +00:00
sEnableEmbeds := r . FormValue ( "enable_embeds" )
enableEmbeds , err := strconv . Atoi ( sEnableEmbeds )
if err != nil {
return c . LocalError ( "enable_embeds must be 0 or 1" , w , r , user )
}
if sEnableEmbeds != r . FormValue ( "o_enable_embeds" ) {
2020-03-15 11:34:57 +00:00
err = ( & user ) . UpdatePrivacy ( enableEmbeds )
2019-12-08 03:40:56 +00:00
if err != nil {
return c . InternalError ( err , w , r )
}
}
http . Redirect ( w , r , "/user/edit/privacy/?updated=1" , http . StatusSeeOther )
return nil
}
2020-03-15 11:34:57 +00:00
func AccountEditEmail ( w http . ResponseWriter , r * http . Request , user c . User , h * c . Header ) c . RouteError {
accountEditHead ( "account_email" , w , r , & user , h )
emails , err := c . Emails . GetEmailsByUser ( & user )
2018-05-27 09:36:35 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-05-27 09:36:35 +00:00
}
// Was this site migrated from another forum software? Most of them don't have multiple emails for a single user.
// This also applies when the admin switches site.EnableEmails on after having it off for a while.
2019-10-29 22:13:45 +00:00
if len ( emails ) == 0 && user . Email != "" {
2019-10-06 00:34:09 +00:00
emails = append ( emails , c . Email { UserID : user . ID , Email : user . Email , Validated : false , Primary : true } )
2018-05-27 09:36:35 +00:00
}
2019-04-19 06:36:26 +00:00
if ! c . Site . EnableEmails {
2019-10-06 00:34:09 +00:00
h . AddNotice ( "account_mail_disabled" )
2018-05-27 09:36:35 +00:00
}
if r . FormValue ( "verified" ) == "1" {
2019-10-06 00:34:09 +00:00
h . AddNotice ( "account_mail_verify_success" )
2018-05-27 09:36:35 +00:00
}
2019-10-06 00:34:09 +00:00
pi := c . Account { h , "edit_emails" , "account_own_edit_email" , c . EmailListPage { h , emails } }
return renderTemplate ( "account" , w , r , h , pi )
2018-05-27 09:36:35 +00:00
}
2020-03-15 11:34:57 +00:00
func AccountEditEmailAddSubmit ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
2019-10-30 06:37:51 +00:00
email := r . PostFormValue ( "email" )
2020-03-15 11:34:57 +00:00
_ , err := c . Emails . Get ( & user , email )
2019-10-30 06:37:51 +00:00
if err == nil {
2019-12-08 03:40:56 +00:00
return c . LocalError ( "You have already added this email." , w , r , user )
2019-10-30 06:37:51 +00:00
} else if err != sql . ErrNoRows && err != nil {
return c . InternalError ( err , w , r )
}
var token string
if c . Site . EnableEmails {
token , err = c . GenerateSafeString ( 80 )
if err != nil {
return c . InternalError ( err , w , r )
}
}
err = c . Emails . Add ( user . ID , email , token )
if err != nil {
2019-12-08 03:40:56 +00:00
return c . InternalError ( err , w , r )
2019-10-30 06:37:51 +00:00
}
if c . Site . EnableEmails {
err = c . SendValidationEmail ( user . Name , email , token )
if err != nil {
return c . LocalError ( p . GetErrorPhrase ( "register_email_fail" ) , w , r , user )
}
}
2019-12-08 03:40:56 +00:00
2019-10-30 06:37:51 +00:00
http . Redirect ( w , r , "/user/edit/email/?added=1" , http . StatusSeeOther )
return nil
}
2020-03-15 11:34:57 +00:00
func AccountEditEmailRemoveSubmit ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
headerLite , _ := c . SimpleUserCheck ( w , r , & user )
2019-10-30 06:37:51 +00:00
email := r . PostFormValue ( "email" )
// Quick and dirty check
2020-03-15 11:34:57 +00:00
_ , err := c . Emails . Get ( & user , email )
2019-10-30 06:37:51 +00:00
if err == sql . ErrNoRows {
2019-12-08 03:40:56 +00:00
return c . LocalError ( "This email isn't set on this user." , w , r , user )
2019-10-30 06:37:51 +00:00
} else if err != nil {
return c . InternalError ( err , w , r )
}
if headerLite . Settings [ "activation_type" ] == 2 && user . Email == email {
2019-12-08 03:40:56 +00:00
return c . LocalError ( "You can't remove your primary email when mandatory email activation is enabled." , w , r , user )
2019-10-30 06:37:51 +00:00
}
err = c . Emails . Delete ( user . ID , email )
if err != nil {
2019-12-08 03:40:56 +00:00
return c . InternalError ( err , w , r )
2019-10-30 06:37:51 +00:00
}
2019-12-08 03:40:56 +00:00
2019-10-30 06:37:51 +00:00
http . Redirect ( w , r , "/user/edit/email/?removed=1" , http . StatusSeeOther )
return nil
}
2018-06-06 00:21:22 +00:00
// TODO: Should we make this an AnonAction so someone can do this without being logged in?
2020-03-15 11:34:57 +00:00
func AccountEditEmailTokenSubmit ( w http . ResponseWriter , r * http . Request , user c . User , token string ) c . RouteError {
header , ferr := c . UserCheck ( w , r , & user )
2018-05-27 09:36:35 +00:00
if ferr != nil {
return ferr
}
2019-04-19 06:36:26 +00:00
if ! c . Site . EnableEmails {
2018-05-27 09:36:35 +00:00
http . Redirect ( w , r , "/user/edit/email/" , http . StatusSeeOther )
return nil
}
2019-04-19 06:36:26 +00:00
targetEmail := c . Email { UserID : user . ID }
2020-03-15 11:34:57 +00:00
emails , err := c . Emails . GetEmailsByUser ( & user )
2019-10-29 22:13:45 +00:00
if err == sql . ErrNoRows {
return c . LocalError ( "A verification email was never sent for you!" , w , r , user )
} else if err != nil {
// TODO: Better error if we don't have an email or it's not in the emails table for some reason
2019-04-19 06:36:26 +00:00
return c . LocalError ( "You are not logged in" , w , r , user )
2018-05-27 09:36:35 +00:00
}
for _ , email := range emails {
2019-03-11 08:47:45 +00:00
if subtle . ConstantTimeCompare ( [ ] byte ( email . Token ) , [ ] byte ( token ) ) == 1 {
2018-05-27 09:36:35 +00:00
targetEmail = email
}
}
if len ( emails ) == 0 {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "A verification email was never sent for you!" , w , r , user )
2018-05-27 09:36:35 +00:00
}
if targetEmail . Token == "" {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "That's not a valid token!" , w , r , user )
2018-05-27 09:36:35 +00:00
}
2019-04-19 06:36:26 +00:00
err = c . Emails . VerifyEmail ( user . Email )
2018-05-27 09:36:35 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-05-27 09:36:35 +00:00
}
// If Email Activation is on, then activate the account while we're here
2018-06-06 00:21:22 +00:00
if header . Settings [ "activation_type" ] == 2 {
2019-10-29 22:13:45 +00:00
if err = user . Activate ( ) ; err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-05-27 09:36:35 +00:00
}
2020-02-09 13:48:33 +00:00
u2 , err := c . Users . Get ( user . ID )
if err == sql . ErrNoRows {
return c . LocalError ( "The user no longer exists." , w , r , user )
} else if err != nil {
return c . InternalError ( err , w , r )
}
err = c . GroupPromotions . PromoteIfEligible ( u2 , u2 . Level , u2 . Posts , u2 . CreatedAt )
if err != nil {
return c . InternalError ( err , w , r )
}
u2 . CacheRemove ( )
2018-05-27 09:36:35 +00:00
}
http . Redirect ( w , r , "/user/edit/email/?verified=1" , http . StatusSeeOther )
return nil
}
2018-10-10 07:33:51 +00:00
2020-03-15 11:34:57 +00:00
func AccountLogins ( w http . ResponseWriter , r * http . Request , user c . User , h * c . Header ) c . RouteError {
accountEditHead ( "account_logins" , w , r , & user , h )
2018-12-17 04:58:55 +00:00
page , _ := strconv . Atoi ( r . FormValue ( "page" ) )
perPage := 12
2020-03-15 11:34:57 +00:00
offset , page , lastPage := c . PageOffset ( c . LoginLogs . CountUser ( user . ID ) , page , perPage )
2018-12-17 04:58:55 +00:00
2020-03-15 11:34:57 +00:00
logs , err := c . LoginLogs . GetOffset ( user . ID , offset , perPage )
2018-12-17 04:58:55 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2018-12-17 04:58:55 +00:00
}
2019-06-04 05:48:12 +00:00
pageList := c . Paginate ( page , lastPage , 5 )
2019-10-06 00:34:09 +00:00
pi := c . Account { h , "logins" , "account_logins" , c . AccountLoginsPage { h , logs , c . Paginator { pageList , page , lastPage } } }
return renderTemplate ( "account" , w , r , h , pi )
2019-11-12 06:17:46 +00:00
}
2020-03-15 11:34:57 +00:00
func AccountBlocked ( w http . ResponseWriter , r * http . Request , user c . User , h * c . Header ) c . RouteError {
accountEditHead ( "account_blocked" , w , r , & user , h )
2019-11-12 06:17:46 +00:00
page , _ := strconv . Atoi ( r . FormValue ( "page" ) )
perPage := 12
offset , page , lastPage := c . PageOffset ( c . UserBlocks . BlockedByCount ( user . ID ) , page , perPage )
uids , err := c . UserBlocks . BlockedByOffset ( user . ID , offset , perPage )
if err != nil {
return c . InternalError ( err , w , r )
}
var blocks [ ] * c . User
for _ , uid := range uids {
u , err := c . Users . Get ( uid )
if err != nil {
2019-12-08 03:40:56 +00:00
return c . InternalError ( err , w , r )
2019-11-12 06:17:46 +00:00
}
blocks = append ( blocks , u )
}
pageList := c . Paginate ( page , lastPage , 5 )
2019-12-08 03:40:56 +00:00
pi := c . Account { h , "blocked" , "account_blocked" , c . AccountBlocksPage { h , blocks , c . Paginator { pageList , page , lastPage } } }
2019-11-12 06:17:46 +00:00
return renderTemplate ( "account" , w , r , h , pi )
2018-12-17 04:58:55 +00:00
}
2020-03-15 11:34:57 +00:00
func LevelList ( w http . ResponseWriter , r * http . Request , user c . User , h * c . Header ) c . RouteError {
2019-10-06 00:34:09 +00:00
h . Title = p . GetTitlePhrase ( "account_level_list" )
2018-10-10 07:33:51 +00:00
2019-10-06 00:34:09 +00:00
fScores := c . GetLevels ( 20 )
levels := make ( [ ] c . LevelListItem , len ( fScores ) )
2018-10-10 07:33:51 +00:00
for i , fScore := range fScores {
var status string
if user . Level > i {
status = "complete"
} else if user . Level < i {
status = "future"
} else {
status = "inprogress"
}
iScore := int ( math . Ceil ( fScore ) )
perc := int ( math . Ceil ( ( fScore / float64 ( user . Score ) ) * 100 ) )
2019-04-19 06:36:26 +00:00
levels [ i ] = c . LevelListItem { i , iScore , status , perc * 2 }
2018-10-10 07:33:51 +00:00
}
2019-10-06 00:34:09 +00:00
return renderTemplate ( "level_list" , w , r , h , c . LevelListPage { h , levels [ 1 : ] } )
2018-10-10 07:33:51 +00:00
}
2019-03-11 08:47:45 +00:00
2020-03-15 11:34:57 +00:00
func Alerts ( w http . ResponseWriter , r * http . Request , user c . User , h * c . Header ) c . RouteError {
2019-03-11 08:47:45 +00:00
return nil
}
2020-03-15 11:34:57 +00:00
func AccountPasswordReset ( w http . ResponseWriter , r * http . Request , user c . User , h * c . Header ) c . RouteError {
if user . Loggedin {
return c . LocalError ( "You're already logged in." , w , r , user )
2019-03-11 08:47:45 +00:00
}
2019-04-19 06:36:26 +00:00
if ! c . Site . EnableEmails {
2020-03-15 11:34:57 +00:00
return c . LocalError ( p . GetNoticePhrase ( "account_mail_disabled" ) , w , r , user )
2019-03-11 08:47:45 +00:00
}
if r . FormValue ( "email_sent" ) == "1" {
2019-10-06 00:34:09 +00:00
h . AddNotice ( "password_reset_email_sent" )
2019-03-11 08:47:45 +00:00
}
2019-10-06 00:34:09 +00:00
h . Title = p . GetTitlePhrase ( "password_reset" )
return renderTemplate ( "password_reset" , w , r , h , c . Page { h , tList , nil } )
2019-03-11 08:47:45 +00:00
}
// TODO: Ratelimit this
2020-03-15 11:34:57 +00:00
func AccountPasswordResetSubmit ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
2019-03-11 08:47:45 +00:00
if user . Loggedin {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "You're already logged in." , w , r , user )
2019-03-11 08:47:45 +00:00
}
2019-04-19 06:36:26 +00:00
if ! c . Site . EnableEmails {
2019-10-06 00:34:09 +00:00
return c . LocalError ( p . GetNoticePhrase ( "account_mail_disabled" ) , w , r , user )
2019-03-11 08:47:45 +00:00
}
username := r . PostFormValue ( "username" )
2019-04-19 06:36:26 +00:00
tuser , err := c . Users . GetByName ( username )
2019-03-11 08:47:45 +00:00
if err == sql . ErrNoRows {
// Someone trying to stir up trouble?
http . Redirect ( w , r , "/accounts/password-reset/?email_sent=1" , http . StatusSeeOther )
return nil
} else if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2019-03-11 08:47:45 +00:00
}
2019-04-19 06:36:26 +00:00
token , err := c . GenerateSafeString ( 80 )
2019-03-11 08:47:45 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2019-03-11 08:47:45 +00:00
}
2019-03-12 09:13:57 +00:00
// TODO: Move these queries somewhere else
2019-03-11 08:47:45 +00:00
var disc string
err = qgen . NewAcc ( ) . Select ( "password_resets" ) . Columns ( "createdAt" ) . DateCutoff ( "createdAt" , 1 , "hour" ) . QueryRow ( ) . Scan ( & disc )
if err != nil && err != sql . ErrNoRows {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2019-03-11 08:47:45 +00:00
}
if err == nil {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "You can only send a password reset email for a user once an hour" , w , r , user )
2019-03-11 08:47:45 +00:00
}
2019-03-12 09:13:57 +00:00
count , err := qgen . NewAcc ( ) . Count ( "password_resets" ) . DateCutoff ( "createdAt" , 6 , "hour" ) . Total ( )
if err != nil && err != sql . ErrNoRows {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2019-03-12 09:13:57 +00:00
}
if count >= 3 {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "You can only send a password reset email for a user three times every six hours" , w , r , user )
2019-03-12 09:13:57 +00:00
}
count , err = qgen . NewAcc ( ) . Count ( "password_resets" ) . DateCutoff ( "createdAt" , 12 , "hour" ) . Total ( )
if err != nil && err != sql . ErrNoRows {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2019-03-12 09:13:57 +00:00
}
if count >= 4 {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "You can only send a password reset email for a user four times every twelve hours" , w , r , user )
2019-03-12 09:13:57 +00:00
}
2019-04-19 06:36:26 +00:00
err = c . PasswordResetter . Create ( tuser . Email , tuser . ID , token )
2019-03-11 08:47:45 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2019-03-11 08:47:45 +00:00
}
2019-11-04 11:55:52 +00:00
var s string
if c . Config . SslSchema {
s = "s"
2019-03-11 08:47:45 +00:00
}
2019-11-04 11:55:52 +00:00
err = c . SendEmail ( tuser . Email , p . GetTmplPhrase ( "password_reset_subject" ) , p . GetTmplPhrasef ( "password_reset_body" , tuser . Name , "http" + s + "://" + c . Site . URL + "/accounts/password-reset/token/?uid=" + strconv . Itoa ( tuser . ID ) + "&token=" + token ) )
2019-03-11 08:47:45 +00:00
if err != nil {
2019-10-06 00:34:09 +00:00
return c . LocalError ( p . GetErrorPhrase ( "password_reset_email_fail" ) , w , r , user )
2019-03-11 08:47:45 +00:00
}
http . Redirect ( w , r , "/accounts/password-reset/?email_sent=1" , http . StatusSeeOther )
return nil
}
2020-03-15 11:34:57 +00:00
func AccountPasswordResetToken ( w http . ResponseWriter , r * http . Request , user c . User , header * c . Header ) c . RouteError {
2019-03-11 08:47:45 +00:00
if user . Loggedin {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "You're already logged in." , w , r , user )
2019-03-11 08:47:45 +00:00
}
// TODO: Find a way to flash this notice
/ * if r . FormValue ( "token_verified" ) == "1" {
header . AddNotice ( "password_reset_token_token_verified" )
} * /
uid , err := strconv . Atoi ( r . FormValue ( "uid" ) )
if err != nil {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "Invalid uid" , w , r , user )
2019-03-11 08:47:45 +00:00
}
2019-10-29 22:13:45 +00:00
token := r . FormValue ( "token" )
2019-04-19 06:36:26 +00:00
err = c . PasswordResetter . ValidateToken ( uid , token )
if err == sql . ErrNoRows || err == c . ErrBadResetToken {
return c . LocalError ( "This reset token has expired." , w , r , user )
2019-03-11 08:47:45 +00:00
} else if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2019-03-11 08:47:45 +00:00
}
2019-04-19 06:36:26 +00:00
_ , err = c . MFAstore . Get ( uid )
2019-03-11 08:47:45 +00:00
if err != sql . ErrNoRows && err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2019-03-11 08:47:45 +00:00
}
mfa := err != sql . ErrNoRows
2019-10-06 00:34:09 +00:00
header . Title = p . GetTitlePhrase ( "password_reset_token" )
2019-04-19 06:36:26 +00:00
return renderTemplate ( "password_reset_token" , w , r , header , c . ResetPage { header , uid , html . EscapeString ( token ) , mfa } )
2019-03-11 08:47:45 +00:00
}
2020-03-15 11:34:57 +00:00
func AccountPasswordResetTokenSubmit ( w http . ResponseWriter , r * http . Request , user c . User ) c . RouteError {
2019-03-11 08:47:45 +00:00
if user . Loggedin {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "You're already logged in." , w , r , user )
2019-03-11 08:47:45 +00:00
}
uid , err := strconv . Atoi ( r . FormValue ( "uid" ) )
if err != nil {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "Invalid uid" , w , r , user )
2019-03-11 08:47:45 +00:00
}
2019-04-19 06:36:26 +00:00
if ! c . Users . Exists ( uid ) {
return c . LocalError ( "This reset token has expired." , w , r , user )
2019-03-11 08:47:45 +00:00
}
2019-10-29 22:13:45 +00:00
err = c . PasswordResetter . ValidateToken ( uid , r . FormValue ( "token" ) )
2019-04-19 06:36:26 +00:00
if err == sql . ErrNoRows || err == c . ErrBadResetToken {
return c . LocalError ( "This reset token has expired." , w , r , user )
2019-03-11 08:47:45 +00:00
} else if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2019-03-11 08:47:45 +00:00
}
mfaToken := r . PostFormValue ( "mfa_token" )
2019-04-19 06:36:26 +00:00
err = c . Auth . ValidateMFAToken ( mfaToken , uid )
if err != nil && err != c . ErrNoMFAToken {
return c . LocalError ( err . Error ( ) , w , r , user )
2019-03-11 08:47:45 +00:00
}
newPassword := r . PostFormValue ( "password" )
confirmPassword := r . PostFormValue ( "confirm_password" )
if newPassword != confirmPassword {
2019-04-19 06:36:26 +00:00
return c . LocalError ( "The two passwords don't match." , w , r , user )
2019-03-11 08:47:45 +00:00
}
2019-04-19 06:36:26 +00:00
c . SetPassword ( uid , newPassword ) // TODO: Limited version of WeakPassword()
2019-03-11 08:47:45 +00:00
2019-04-19 06:36:26 +00:00
err = c . PasswordResetter . FlushTokens ( uid )
2019-03-11 08:47:45 +00:00
if err != nil {
2019-04-19 06:36:26 +00:00
return c . InternalError ( err , w , r )
2019-03-11 08:47:45 +00:00
}
// Log the user out as a safety precaution
2019-04-19 06:36:26 +00:00
c . Auth . ForceLogout ( uid )
2019-03-11 08:47:45 +00:00
//http.Redirect(w, r, "/accounts/password-reset/token/?token_verified=1", http.StatusSeeOther)
http . Redirect ( w , r , "/" , http . StatusSeeOther )
return nil
}