2020405e8b
I'm really sorry this came out as one huge commit, but I'm afraid I can't split this up. Closes https://gitlab.com/commento/commento-ce/issues/9
75 lines
2.0 KiB
Go
75 lines
2.0 KiB
Go
package main
|
|
|
|
import (
|
|
"golang.org/x/crypto/bcrypt"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
func commenterNew(email string, name string, link string, photo string, provider string, password string) (string, error) {
|
|
if email == "" || name == "" || link == "" || photo == "" || provider == "" {
|
|
return "", errorMissingField
|
|
}
|
|
|
|
if provider == "commento" && password == "" {
|
|
return "", errorMissingField
|
|
}
|
|
|
|
if _, err := commenterGetByEmail(provider, email); err == nil {
|
|
return "", errorEmailAlreadyExists
|
|
}
|
|
|
|
commenterHex, err := randomHex(32)
|
|
if err != nil {
|
|
return "", errorInternal
|
|
}
|
|
|
|
passwordHash := []byte{}
|
|
if (password != "") {
|
|
passwordHash, err = bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
|
|
if err != nil {
|
|
logger.Errorf("cannot generate hash from password: %v\n", err)
|
|
return "", errorInternal
|
|
}
|
|
}
|
|
|
|
statement := `
|
|
INSERT INTO
|
|
commenters (commenterHex, email, name, link, photo, provider, passwordHash, joinDate)
|
|
VALUES ($1, $2, $3, $4, $5, $6, $7, $8 );
|
|
`
|
|
_, err = db.Exec(statement, commenterHex, email, name, link, photo, provider, string(passwordHash), time.Now().UTC())
|
|
if err != nil {
|
|
logger.Errorf("cannot insert commenter: %v", err)
|
|
return "", errorInternal
|
|
}
|
|
|
|
return commenterHex, nil
|
|
}
|
|
|
|
|
|
func commenterNewHandler(w http.ResponseWriter, r *http.Request) {
|
|
type request struct {
|
|
Email *string `json:"email"`
|
|
Name *string `json:"name"`
|
|
Website *string `json:"website"`
|
|
Password *string `json:"password"`
|
|
}
|
|
|
|
var x request
|
|
if err := unmarshalBody(r, &x); err != nil {
|
|
writeBody(w, response{"success": false, "message": err.Error()})
|
|
return
|
|
}
|
|
|
|
// TODO: add gravatar?
|
|
// TODO: email confirmation if provider = commento?
|
|
// TODO: email confirmation if provider = commento?
|
|
if _, err := commenterNew(*x.Email, *x.Name, *x.Website, "undefined", "commento", *x.Password); err != nil {
|
|
writeBody(w, response{"success": false, "message": err.Error()})
|
|
return
|
|
}
|
|
|
|
writeBody(w, response{"success": true, "confirmEmail": smtpConfigured})
|
|
}
|