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"
|
2021-01-22 01:19:17 +03:00
|
|
|
"github.com/patrickmn/go-cache"
|
2020-05-24 17:34:32 +03:00
|
|
|
uuid "github.com/satori/go.uuid"
|
2021-01-22 01:19:17 +03:00
|
|
|
"time"
|
2019-05-06 01:40:41 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type UserService struct {
|
2020-11-01 18:56:36 +03:00
|
|
|
Config *config.Config
|
2021-01-22 01:19:17 +03:00
|
|
|
cache *cache.Cache
|
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,
|
2021-01-22 01:19:17 +03:00
|
|
|
cache: cache.New(1*time.Hour, 2*time.Hour),
|
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) {
|
2021-01-22 01:19:17 +03:00
|
|
|
if u, ok := srv.cache.Get(userId); ok {
|
|
|
|
return u.(*models.User), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
u, err := srv.repository.GetById(userId)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
srv.cache.Set(u.ID, u, cache.DefaultExpiration)
|
|
|
|
return u, nil
|
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) {
|
2021-01-22 01:19:17 +03:00
|
|
|
if u, ok := srv.cache.Get(key); ok {
|
|
|
|
return u.(*models.User), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
u, err := srv.repository.GetByApiKey(key)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
srv.cache.Set(u.ID, u, cache.DefaultExpiration)
|
|
|
|
return u, nil
|
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
|
|
|
|
2021-02-13 01:06:48 +03:00
|
|
|
func (srv *UserService) GetActive() ([]*models.User, error) {
|
|
|
|
minDate := time.Now().Add(-24 * time.Hour * time.Duration(srv.Config.App.InactiveDays))
|
2021-02-13 13:23:58 +03:00
|
|
|
return srv.repository.GetByLastActiveAfter(minDate)
|
2021-02-13 01:06:48 +03:00
|
|
|
}
|
|
|
|
|
2021-02-12 20:49:47 +03:00
|
|
|
func (srv *UserService) Count() (int64, error) {
|
|
|
|
return srv.repository.Count()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (srv *UserService) CreateOrGet(signup *models.Signup, isAdmin bool) (*models.User, bool, error) {
|
2020-05-24 17:34:32 +03:00
|
|
|
u := &models.User{
|
|
|
|
ID: signup.Username,
|
2021-02-21 15:02:11 +03:00
|
|
|
Email: signup.Email,
|
2020-05-25 22:42:45 +03:00
|
|
|
ApiKey: uuid.NewV4().String(),
|
|
|
|
Password: signup.Password,
|
2021-02-12 20:49:47 +03:00
|
|
|
IsAdmin: isAdmin,
|
2020-05-25 22:42:45 +03:00
|
|
|
}
|
|
|
|
|
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) {
|
2021-01-22 01:19:17 +03:00
|
|
|
srv.cache.Flush()
|
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) {
|
2021-01-22 01:19:17 +03:00
|
|
|
srv.cache.Flush()
|
2020-06-07 20:58:06 +03:00
|
|
|
user.ApiKey = uuid.NewV4().String()
|
|
|
|
return srv.Update(user)
|
|
|
|
}
|
|
|
|
|
2021-01-22 01:26:50 +03:00
|
|
|
func (srv *UserService) SetWakatimeApiKey(user *models.User, apiKey string) (*models.User, error) {
|
|
|
|
srv.cache.Flush()
|
|
|
|
return srv.repository.UpdateField(user, "wakatime_api_key", apiKey)
|
|
|
|
}
|
|
|
|
|
2020-05-25 23:24:29 +03:00
|
|
|
func (srv *UserService) MigrateMd5Password(user *models.User, login *models.Login) (*models.User, error) {
|
2021-01-22 01:19:17 +03:00
|
|
|
srv.cache.Flush()
|
2020-05-25 23:24:29 +03:00
|
|
|
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
|
|
|
}
|
2021-02-03 00:54:22 +03:00
|
|
|
|
|
|
|
func (srv *UserService) Delete(user *models.User) error {
|
|
|
|
srv.cache.Flush()
|
|
|
|
return srv.repository.Delete(user)
|
|
|
|
}
|
2021-02-07 00:32:03 +03:00
|
|
|
|
|
|
|
func (srv *UserService) FlushCache() {
|
|
|
|
srv.cache.Flush()
|
|
|
|
}
|