2020-01-26 18:08:06 +01:00
|
|
|
// Copyright2018-2020 Vikunja and contriubtors. All rights reserved.
|
2018-11-26 21:17:33 +01:00
|
|
|
//
|
2020-01-26 18:08:06 +01:00
|
|
|
// This file is part of Vikunja.
|
|
|
|
//
|
|
|
|
// Vikunja is free software: you can redistribute it and/or modify
|
2019-12-04 20:39:56 +01:00
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2018-11-26 21:17:33 +01:00
|
|
|
//
|
2020-01-26 18:08:06 +01:00
|
|
|
// Vikunja is distributed in the hope that it will be useful,
|
2019-12-04 20:39:56 +01:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2018-11-26 21:17:33 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// You should have received a copy of the GNU General Public License
|
2020-01-26 18:08:06 +01:00
|
|
|
// along with Vikunja. If not, see <https://www.gnu.org/licenses/>.
|
2018-11-26 21:17:33 +01:00
|
|
|
|
2020-01-26 18:08:06 +01:00
|
|
|
package user
|
2018-06-10 11:11:41 +02:00
|
|
|
|
|
|
|
import (
|
2020-10-11 22:10:03 +02:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"reflect"
|
|
|
|
"time"
|
|
|
|
|
2018-12-01 00:26:56 +01:00
|
|
|
"code.vikunja.io/web"
|
2018-06-10 11:11:41 +02:00
|
|
|
"github.com/dgrijalva/jwt-go"
|
2019-05-07 21:42:24 +02:00
|
|
|
"github.com/labstack/echo/v4"
|
2018-06-10 11:11:41 +02:00
|
|
|
"golang.org/x/crypto/bcrypt"
|
|
|
|
)
|
|
|
|
|
2020-01-26 18:08:06 +01:00
|
|
|
// Login Object to recive user credentials in JSON format
|
|
|
|
type Login struct {
|
2019-01-03 23:22:06 +01:00
|
|
|
// The username used to log in.
|
2019-01-14 23:32:56 +01:00
|
|
|
Username string `json:"username"`
|
2019-01-03 23:22:06 +01:00
|
|
|
// The password for the user.
|
2019-01-14 23:32:56 +01:00
|
|
|
Password string `json:"password"`
|
2020-04-17 21:25:35 +02:00
|
|
|
// The totp passcode of a user. Only needs to be provided when enabled.
|
|
|
|
TOTPPasscode string `json:"totp_passcode"`
|
2018-06-10 11:11:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// User holds information about an user
|
|
|
|
type User struct {
|
2019-01-03 23:22:06 +01:00
|
|
|
// The unique, numeric id of this user.
|
|
|
|
ID int64 `xorm:"int(11) autoincr not null unique pk" json:"id"`
|
2020-11-21 21:51:55 +01:00
|
|
|
// The full name of the user.
|
|
|
|
Name string `xorm:"text null" json:"name"`
|
2019-01-14 23:32:56 +01:00
|
|
|
// The username of the user. Is always unique.
|
2020-09-26 23:02:17 +02:00
|
|
|
Username string `xorm:"varchar(250) not null unique" json:"username" valid:"length(1|250)" minLength:"1" maxLength:"250"`
|
2020-11-21 17:38:58 +01:00
|
|
|
Password string `xorm:"varchar(250) null" json:"-"`
|
2019-01-14 23:32:56 +01:00
|
|
|
// The user's email address.
|
2019-04-23 10:34:06 +02:00
|
|
|
Email string `xorm:"varchar(250) null" json:"email,omitempty" valid:"email,length(0|250)" maxLength:"250"`
|
2019-03-29 18:54:35 +01:00
|
|
|
IsActive bool `xorm:"null" json:"-"`
|
2018-10-27 11:33:28 +02:00
|
|
|
|
2019-03-29 18:54:35 +01:00
|
|
|
PasswordResetToken string `xorm:"varchar(450) null" json:"-"`
|
|
|
|
EmailConfirmToken string `xorm:"varchar(450) null" json:"-"`
|
2018-10-27 11:33:28 +02:00
|
|
|
|
2020-08-02 19:16:58 +02:00
|
|
|
AvatarProvider string `xorm:"varchar(255) null" json:"-"`
|
|
|
|
AvatarFileID int64 `xorn:"null" json:"-"`
|
|
|
|
|
2020-11-21 17:38:58 +01:00
|
|
|
// Issuer and Subject contain the issuer and subject from the source the user authenticated with.
|
|
|
|
Issuer string `xorm:"text null" json:"-"`
|
|
|
|
Subject string `xorm:"text null" json:"-"`
|
|
|
|
|
2020-02-08 13:48:49 +01:00
|
|
|
// A timestamp when this task was created. You cannot change this value.
|
2020-06-27 19:04:01 +02:00
|
|
|
Created time.Time `xorm:"created not null" json:"created"`
|
2020-02-08 13:48:49 +01:00
|
|
|
// A timestamp when this task was last updated. You cannot change this value.
|
2020-06-27 19:04:01 +02:00
|
|
|
Updated time.Time `xorm:"updated not null" json:"updated"`
|
2018-12-01 00:26:56 +01:00
|
|
|
|
|
|
|
web.Auth `xorm:"-" json:"-"`
|
2018-06-10 11:11:41 +02:00
|
|
|
}
|
|
|
|
|
2019-06-28 10:21:48 +02:00
|
|
|
// GetID implements the Auth interface
|
|
|
|
func (u *User) GetID() int64 {
|
|
|
|
return u.ID
|
|
|
|
}
|
2018-12-01 00:26:56 +01:00
|
|
|
|
2018-06-10 11:11:41 +02:00
|
|
|
// TableName returns the table name for users
|
|
|
|
func (User) TableName() string {
|
|
|
|
return "users"
|
|
|
|
}
|
|
|
|
|
2020-01-26 18:08:06 +01:00
|
|
|
// GetFromAuth returns a user object from a web.Auth object and returns an error if the underlying type
|
|
|
|
// is not a user object
|
|
|
|
func GetFromAuth(a web.Auth) (*User, error) {
|
2018-12-01 00:26:56 +01:00
|
|
|
u, is := a.(*User)
|
|
|
|
if !is {
|
|
|
|
return &User{}, fmt.Errorf("user is not user element, is %s", reflect.TypeOf(a))
|
|
|
|
}
|
|
|
|
return u, nil
|
|
|
|
}
|
|
|
|
|
2018-07-10 14:02:23 +02:00
|
|
|
// APIUserPassword represents a user object without timestamps and a json password field.
|
|
|
|
type APIUserPassword struct {
|
2019-01-03 23:22:06 +01:00
|
|
|
// The unique, numeric id of this user.
|
|
|
|
ID int64 `json:"id"`
|
|
|
|
// The username of the username. Is always unique.
|
|
|
|
Username string `json:"username" valid:"length(3|250)" minLength:"3" maxLength:"250"`
|
|
|
|
// The user's password in clear text. Only used when registering the user.
|
|
|
|
Password string `json:"password" valid:"length(8|250)" minLength:"8" maxLength:"250"`
|
|
|
|
// The user's email address
|
|
|
|
Email string `json:"email" valid:"email,length(0|250)" maxLength:"250"`
|
2018-06-13 13:45:22 +02:00
|
|
|
}
|
|
|
|
|
2018-07-10 14:02:23 +02:00
|
|
|
// APIFormat formats an API User into a normal user struct
|
2019-08-14 21:59:31 +02:00
|
|
|
func (apiUser *APIUserPassword) APIFormat() *User {
|
|
|
|
return &User{
|
2018-06-13 13:45:22 +02:00
|
|
|
ID: apiUser.ID,
|
|
|
|
Username: apiUser.Username,
|
|
|
|
Password: apiUser.Password,
|
|
|
|
Email: apiUser.Email,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-10 11:11:41 +02:00
|
|
|
// GetUserByID gets informations about a user by its ID
|
2019-08-14 21:59:31 +02:00
|
|
|
func GetUserByID(id int64) (user *User, err error) {
|
2018-06-10 11:11:41 +02:00
|
|
|
// Apparently xorm does otherwise look for all users but return only one, which leads to returing one even if the ID is 0
|
2018-09-13 20:07:11 +02:00
|
|
|
if id < 1 {
|
2019-08-14 21:59:31 +02:00
|
|
|
return &User{}, ErrUserDoesNotExist{}
|
2018-06-10 11:11:41 +02:00
|
|
|
}
|
|
|
|
|
2019-08-14 21:59:31 +02:00
|
|
|
return GetUser(&User{ID: id})
|
2018-06-10 11:11:41 +02:00
|
|
|
}
|
|
|
|
|
2019-05-25 11:47:16 +02:00
|
|
|
// GetUserByUsername gets a user from its user name. This is an extra function to be able to add an extra error check.
|
2019-08-14 21:59:31 +02:00
|
|
|
func GetUserByUsername(username string) (user *User, err error) {
|
2019-05-25 11:47:16 +02:00
|
|
|
if username == "" {
|
2019-08-14 21:59:31 +02:00
|
|
|
return &User{}, ErrUserDoesNotExist{}
|
2019-05-25 11:47:16 +02:00
|
|
|
}
|
|
|
|
|
2019-08-14 21:59:31 +02:00
|
|
|
return GetUser(&User{Username: username})
|
2019-05-25 11:47:16 +02:00
|
|
|
}
|
|
|
|
|
2018-06-10 11:11:41 +02:00
|
|
|
// GetUser gets a user object
|
2019-08-14 21:59:31 +02:00
|
|
|
func GetUser(user *User) (userOut *User, err error) {
|
|
|
|
return getUser(user, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetUserWithEmail returns a user object with email
|
|
|
|
func GetUserWithEmail(user *User) (userOut *User, err error) {
|
|
|
|
return getUser(user, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
// getUser is a small helper function to avoid having duplicated code for almost the same use case
|
|
|
|
func getUser(user *User, withEmail bool) (userOut *User, err error) {
|
|
|
|
userOut = &User{} // To prevent a panic if user is nil
|
|
|
|
*userOut = *user
|
|
|
|
exists, err := x.Get(userOut)
|
2020-06-27 19:04:01 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2018-06-10 11:11:41 +02:00
|
|
|
if !exists {
|
2019-08-14 21:59:31 +02:00
|
|
|
return &User{}, ErrUserDoesNotExist{UserID: user.ID}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !withEmail {
|
|
|
|
userOut.Email = ""
|
2018-06-10 11:11:41 +02:00
|
|
|
}
|
|
|
|
|
2018-08-30 19:14:02 +02:00
|
|
|
return userOut, err
|
2018-06-10 11:11:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// CheckUserCredentials checks user credentials
|
2020-01-26 18:08:06 +01:00
|
|
|
func CheckUserCredentials(u *Login) (*User, error) {
|
2018-11-01 23:51:05 +01:00
|
|
|
// Check if we have any credentials
|
|
|
|
if u.Password == "" || u.Username == "" {
|
2019-08-14 21:59:31 +02:00
|
|
|
return &User{}, ErrNoUsernamePassword{}
|
2018-11-01 23:51:05 +01:00
|
|
|
}
|
|
|
|
|
2018-06-10 11:11:41 +02:00
|
|
|
// Check if the user exists
|
2019-05-25 11:47:16 +02:00
|
|
|
user, err := GetUserByUsername(u.Username)
|
2018-06-10 11:11:41 +02:00
|
|
|
if err != nil {
|
2018-12-19 22:05:25 +01:00
|
|
|
// hashing the password takes a long time, so we hash something to not make it clear if the username was wrong
|
2020-04-13 22:30:09 +02:00
|
|
|
_, _ = bcrypt.GenerateFromPassword([]byte(u.Username), 14)
|
2019-08-14 21:59:31 +02:00
|
|
|
return &User{}, ErrWrongUsernameOrPassword{}
|
2018-06-10 11:11:41 +02:00
|
|
|
}
|
|
|
|
|
2018-11-01 23:47:41 +01:00
|
|
|
// User is invalid if it needs to verify its email address
|
|
|
|
if !user.IsActive {
|
2019-08-14 21:59:31 +02:00
|
|
|
return &User{}, ErrEmailNotConfirmed{UserID: user.ID}
|
2018-11-01 23:47:41 +01:00
|
|
|
}
|
|
|
|
|
2018-06-10 11:11:41 +02:00
|
|
|
// Check the users password
|
2020-04-18 01:38:49 +02:00
|
|
|
err = CheckUserPassword(user, u.Password)
|
2018-06-10 11:11:41 +02:00
|
|
|
if err != nil {
|
2019-08-14 21:59:31 +02:00
|
|
|
return &User{}, err
|
2018-06-10 11:11:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return user, nil
|
|
|
|
}
|
|
|
|
|
2020-04-18 01:38:49 +02:00
|
|
|
// CheckUserPassword checks and verifies a user's password. The user object needs to contain the hashed password from the database.
|
|
|
|
func CheckUserPassword(user *User, password string) error {
|
|
|
|
err := bcrypt.CompareHashAndPassword([]byte(user.Password), []byte(password))
|
|
|
|
if err != nil {
|
2020-10-11 22:10:03 +02:00
|
|
|
if errors.Is(err, bcrypt.ErrMismatchedHashAndPassword) {
|
2020-04-18 01:38:49 +02:00
|
|
|
return ErrWrongUsernameOrPassword{}
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-06-10 11:11:41 +02:00
|
|
|
// GetCurrentUser returns the current user based on its jwt token
|
2018-12-01 00:26:56 +01:00
|
|
|
func GetCurrentUser(c echo.Context) (user *User, err error) {
|
2018-06-10 11:11:41 +02:00
|
|
|
jwtinf := c.Get("user").(*jwt.Token)
|
|
|
|
claims := jwtinf.Claims.(jwt.MapClaims)
|
2019-08-31 22:56:41 +02:00
|
|
|
return GetUserFromClaims(claims)
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetUserFromClaims Returns a new user from jwt claims
|
|
|
|
func GetUserFromClaims(claims jwt.MapClaims) (user *User, err error) {
|
2018-06-10 11:11:41 +02:00
|
|
|
userID, ok := claims["id"].(float64)
|
|
|
|
if !ok {
|
|
|
|
return user, ErrCouldNotGetUserID{}
|
|
|
|
}
|
2018-12-01 00:26:56 +01:00
|
|
|
user = &User{
|
2018-06-10 11:11:41 +02:00
|
|
|
ID: int64(userID),
|
|
|
|
Email: claims["email"].(string),
|
|
|
|
Username: claims["username"].(string),
|
2020-11-21 21:51:55 +01:00
|
|
|
Name: claims["name"].(string),
|
2018-06-10 11:11:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2018-12-12 23:50:35 +01:00
|
|
|
|
2019-07-16 16:15:40 +02:00
|
|
|
// UpdateUser updates a user
|
2019-08-14 21:59:31 +02:00
|
|
|
func UpdateUser(user *User) (updatedUser *User, err error) {
|
2019-07-16 16:15:40 +02:00
|
|
|
|
|
|
|
// Check if it exists
|
2020-08-13 17:34:02 +02:00
|
|
|
theUser, err := GetUserWithEmail(&User{ID: user.ID})
|
2019-07-16 16:15:40 +02:00
|
|
|
if err != nil {
|
2019-08-14 21:59:31 +02:00
|
|
|
return &User{}, err
|
2019-07-16 16:15:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check if we have at least a username
|
|
|
|
if user.Username == "" {
|
|
|
|
user.Username = theUser.Username // Dont change the username if we dont have one
|
2020-08-13 17:34:02 +02:00
|
|
|
} else {
|
|
|
|
// Check if the new username already exists
|
|
|
|
uu, err := GetUserByUsername(user.Username)
|
|
|
|
if err != nil && !IsErrUserDoesNotExist(err) {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if uu.ID != 0 && uu.ID != user.ID {
|
|
|
|
return nil, &ErrUsernameExists{Username: user.Username, UserID: uu.ID}
|
|
|
|
}
|
2019-07-16 16:15:40 +02:00
|
|
|
}
|
|
|
|
|
2020-11-21 21:51:55 +01:00
|
|
|
// Check if we have a name
|
|
|
|
if user.Name == "" {
|
|
|
|
user.Name = theUser.Name
|
|
|
|
}
|
|
|
|
|
2020-08-13 17:34:02 +02:00
|
|
|
// Check if the email is already used
|
|
|
|
if user.Email == "" {
|
|
|
|
user.Email = theUser.Email
|
|
|
|
} else {
|
2020-11-21 17:38:58 +01:00
|
|
|
uu, err := getUser(&User{
|
|
|
|
Email: user.Email,
|
|
|
|
Issuer: user.Issuer,
|
|
|
|
Subject: user.Subject,
|
|
|
|
}, true)
|
2020-08-13 17:34:02 +02:00
|
|
|
if err != nil && !IsErrUserDoesNotExist(err) {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if uu.ID != 0 && uu.ID != user.ID {
|
|
|
|
return nil, &ErrUserEmailExists{Email: user.Email, UserID: uu.ID}
|
|
|
|
}
|
|
|
|
}
|
2019-07-16 16:15:40 +02:00
|
|
|
|
2020-08-02 19:16:58 +02:00
|
|
|
// Validate the avatar type
|
|
|
|
if user.AvatarProvider != "" {
|
|
|
|
if user.AvatarProvider != "default" &&
|
|
|
|
user.AvatarProvider != "gravatar" &&
|
|
|
|
user.AvatarProvider != "initials" &&
|
|
|
|
user.AvatarProvider != "upload" {
|
|
|
|
return updatedUser, &ErrInvalidAvatarProvider{AvatarProvider: user.AvatarProvider}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-16 16:15:40 +02:00
|
|
|
// Update it
|
2020-08-13 17:34:02 +02:00
|
|
|
_, err = x.
|
|
|
|
ID(user.ID).
|
2020-09-27 12:50:52 +02:00
|
|
|
Cols(
|
|
|
|
"username",
|
|
|
|
"email",
|
|
|
|
"avatar_provider",
|
|
|
|
"avatar_file_id",
|
2020-11-21 21:51:55 +01:00
|
|
|
"is_active",
|
|
|
|
"name",
|
|
|
|
).
|
2020-08-13 17:34:02 +02:00
|
|
|
Update(user)
|
2019-07-16 16:15:40 +02:00
|
|
|
if err != nil {
|
2019-08-14 21:59:31 +02:00
|
|
|
return &User{}, err
|
2019-07-16 16:15:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get the newly updated user
|
|
|
|
updatedUser, err = GetUserByID(user.ID)
|
|
|
|
if err != nil {
|
2019-08-14 21:59:31 +02:00
|
|
|
return &User{}, err
|
2019-07-16 16:15:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return updatedUser, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// UpdateUserPassword updates the password of a user
|
|
|
|
func UpdateUserPassword(user *User, newPassword string) (err error) {
|
|
|
|
|
|
|
|
if newPassword == "" {
|
|
|
|
return ErrEmptyNewPassword{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get all user details
|
|
|
|
theUser, err := GetUserByID(user.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Hash the new password and set it
|
|
|
|
hashed, err := hashPassword(newPassword)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
theUser.Password = hashed
|
|
|
|
|
|
|
|
// Update it
|
2020-04-12 19:29:24 +02:00
|
|
|
_, err = x.ID(user.ID).Update(theUser)
|
2019-07-16 16:15:40 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|