If the user is hosting the dashboard in the same domain as their blog (with a nginx suburi, for example), the two session cookies clash; logging into one service logs you out of the other. With this patch, both have separate names. Fixes https://gitlab.com/commento/commento-ce/issues/49
77 lines
1.7 KiB
Go
77 lines
1.7 KiB
Go
package main
|
|
|
|
import (
|
|
"golang.org/x/crypto/bcrypt"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
func ownerLogin(email string, password string) (string, error) {
|
|
if email == "" || password == "" {
|
|
return "", errorMissingField
|
|
}
|
|
|
|
statement := `
|
|
SELECT ownerHex, confirmedEmail, passwordHash
|
|
FROM owners
|
|
WHERE email=$1;
|
|
`
|
|
row := db.QueryRow(statement, email)
|
|
|
|
var ownerHex string
|
|
var confirmedEmail bool
|
|
var passwordHash string
|
|
if err := row.Scan(&ownerHex, &confirmedEmail, &passwordHash); err != nil {
|
|
return "", errorInvalidEmailPassword
|
|
}
|
|
|
|
if !confirmedEmail {
|
|
return "", errorUnconfirmedEmail
|
|
}
|
|
|
|
if err := bcrypt.CompareHashAndPassword([]byte(passwordHash), []byte(password)); err != nil {
|
|
// TODO: is this the only possible error?
|
|
return "", errorInvalidEmailPassword
|
|
}
|
|
|
|
ownerToken, err := randomHex(32)
|
|
if err != nil {
|
|
logger.Errorf("cannot create ownerToken: %v", err)
|
|
return "", errorInternal
|
|
}
|
|
|
|
statement = `
|
|
INSERT INTO
|
|
ownerSessions (ownerToken, ownerHex, loginDate)
|
|
VALUES ($1, $2, $3 );
|
|
`
|
|
_, err = db.Exec(statement, ownerToken, ownerHex, time.Now().UTC())
|
|
if err != nil {
|
|
logger.Errorf("cannot insert ownerSession: %v\n", err)
|
|
return "", errorInternal
|
|
}
|
|
|
|
return ownerToken, nil
|
|
}
|
|
|
|
func ownerLoginHandler(w http.ResponseWriter, r *http.Request) {
|
|
type request struct {
|
|
Email *string `json:"email"`
|
|
Password *string `json:"password"`
|
|
}
|
|
|
|
var x request
|
|
if err := unmarshalBody(r, &x); err != nil {
|
|
writeBody(w, response{"success": false, "message": err.Error()})
|
|
return
|
|
}
|
|
|
|
ownerToken, err := ownerLogin(*x.Email, *x.Password)
|
|
if err != nil {
|
|
writeBody(w, response{"success": false, "message": err.Error()})
|
|
return
|
|
}
|
|
|
|
writeBody(w, response{"success": true, "ownerToken": ownerToken})
|
|
}
|