2016-12-08 20:45:26 +01:00
|
|
|
package commands
|
|
|
|
|
2016-12-11 14:50:01 +01:00
|
|
|
import (
|
2017-01-25 13:46:43 +01:00
|
|
|
"github.com/dannyvankooten/ana/datastore"
|
2016-12-11 14:50:01 +01:00
|
|
|
"github.com/dannyvankooten/ana/models"
|
|
|
|
"golang.org/x/crypto/bcrypt"
|
2017-01-25 15:17:24 +01:00
|
|
|
"log"
|
2016-12-08 20:45:26 +01:00
|
|
|
)
|
|
|
|
|
2017-01-24 20:28:22 +01:00
|
|
|
// Register creates a new user with the given email & password
|
|
|
|
func Register(email string, password string) {
|
|
|
|
hash, _ := bcrypt.GenerateFromPassword([]byte(password), 10)
|
2016-12-11 14:50:01 +01:00
|
|
|
user := models.User{
|
2017-01-24 20:28:22 +01:00
|
|
|
Email: email,
|
2016-12-11 14:50:01 +01:00
|
|
|
Password: string(hash),
|
|
|
|
}
|
2017-01-25 13:46:43 +01:00
|
|
|
user.Save(datastore.DB)
|
2016-12-08 20:57:44 +01:00
|
|
|
|
2017-01-25 15:17:24 +01:00
|
|
|
log.Printf("User %s #%d created.\n", email, user.ID)
|
2016-12-08 20:45:26 +01:00
|
|
|
}
|