2019-05-06 01:40:41 +03:00
|
|
|
package services
|
|
|
|
|
|
|
|
import (
|
2020-09-29 19:55:07 +03:00
|
|
|
"github.com/muety/wakapi/config"
|
2020-03-31 13:22:17 +03:00
|
|
|
"github.com/muety/wakapi/models"
|
2020-11-01 18:56:36 +03:00
|
|
|
"github.com/muety/wakapi/repositories"
|
2020-05-25 22:42:45 +03:00
|
|
|
"github.com/muety/wakapi/utils"
|
2020-05-24 17:34:32 +03:00
|
|
|
uuid "github.com/satori/go.uuid"
|
2019-05-06 01:40:41 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type UserService struct {
|
2020-11-01 18:56:36 +03:00
|
|
|
Config *config.Config
|
2020-11-08 12:12:49 +03:00
|
|
|
repository repositories.IUserRepository
|
2019-05-06 01:40:41 +03:00
|
|
|
}
|
|
|
|
|
2020-11-08 12:12:49 +03:00
|
|
|
func NewUserService(userRepo repositories.IUserRepository) *UserService {
|
2020-05-24 18:32:26 +03:00
|
|
|
return &UserService{
|
2020-11-01 18:56:36 +03:00
|
|
|
Config: config.Get(),
|
|
|
|
repository: userRepo,
|
2020-05-24 18:32:26 +03:00
|
|
|
}
|
|
|
|
}
|
2020-02-20 16:28:55 +03:00
|
|
|
|
2019-05-11 18:49:56 +03:00
|
|
|
func (srv *UserService) GetUserById(userId string) (*models.User, error) {
|
2020-11-01 18:56:36 +03:00
|
|
|
return srv.repository.GetById(userId)
|
2019-05-06 01:40:41 +03:00
|
|
|
}
|
|
|
|
|
2019-05-11 18:49:56 +03:00
|
|
|
func (srv *UserService) GetUserByKey(key string) (*models.User, error) {
|
2020-11-01 18:56:36 +03:00
|
|
|
return srv.repository.GetByApiKey(key)
|
2019-05-06 01:40:41 +03:00
|
|
|
}
|
2019-10-10 00:26:28 +03:00
|
|
|
|
|
|
|
func (srv *UserService) GetAll() ([]*models.User, error) {
|
2020-11-01 18:56:36 +03:00
|
|
|
return srv.repository.GetAll()
|
2019-10-10 00:26:28 +03:00
|
|
|
}
|
2020-05-24 17:34:32 +03:00
|
|
|
|
|
|
|
func (srv *UserService) CreateOrGet(signup *models.Signup) (*models.User, bool, error) {
|
|
|
|
u := &models.User{
|
|
|
|
ID: signup.Username,
|
2020-05-25 22:42:45 +03:00
|
|
|
ApiKey: uuid.NewV4().String(),
|
|
|
|
Password: signup.Password,
|
|
|
|
}
|
|
|
|
|
2020-10-16 17:11:14 +03:00
|
|
|
if hash, err := utils.HashBcrypt(u.Password, srv.Config.Security.PasswordSalt); err != nil {
|
2020-05-25 22:42:45 +03:00
|
|
|
return nil, false, err
|
2020-10-16 17:11:14 +03:00
|
|
|
} else {
|
|
|
|
u.Password = hash
|
2020-05-24 17:34:32 +03:00
|
|
|
}
|
|
|
|
|
2020-11-01 18:56:36 +03:00
|
|
|
return srv.repository.InsertOrGet(u)
|
2020-05-24 17:34:32 +03:00
|
|
|
}
|
2020-05-25 23:24:29 +03:00
|
|
|
|
2020-05-30 23:19:05 +03:00
|
|
|
func (srv *UserService) Update(user *models.User) (*models.User, error) {
|
2020-11-01 18:56:36 +03:00
|
|
|
return srv.repository.Update(user)
|
2020-05-30 23:19:05 +03:00
|
|
|
}
|
|
|
|
|
2020-06-07 20:58:06 +03:00
|
|
|
func (srv *UserService) ResetApiKey(user *models.User) (*models.User, error) {
|
|
|
|
user.ApiKey = uuid.NewV4().String()
|
|
|
|
return srv.Update(user)
|
|
|
|
}
|
|
|
|
|
2020-09-12 17:09:23 +03:00
|
|
|
func (srv *UserService) ToggleBadges(user *models.User) (*models.User, error) {
|
2020-11-01 18:56:36 +03:00
|
|
|
return srv.repository.UpdateField(user, "badges_enabled", !user.BadgesEnabled)
|
2020-09-12 17:09:23 +03:00
|
|
|
}
|
|
|
|
|
2020-05-25 23:24:29 +03:00
|
|
|
func (srv *UserService) MigrateMd5Password(user *models.User, login *models.Login) (*models.User, error) {
|
|
|
|
user.Password = login.Password
|
2020-10-16 17:11:14 +03:00
|
|
|
if hash, err := utils.HashBcrypt(user.Password, srv.Config.Security.PasswordSalt); err != nil {
|
2020-05-25 23:24:29 +03:00
|
|
|
return nil, err
|
2020-10-16 17:11:14 +03:00
|
|
|
} else {
|
|
|
|
user.Password = hash
|
2020-05-25 23:24:29 +03:00
|
|
|
}
|
2020-11-01 18:56:36 +03:00
|
|
|
return srv.repository.UpdateField(user, "password", user.Password)
|
2020-05-25 23:24:29 +03:00
|
|
|
}
|