2019-07-06 18:53:20 +03:00
|
|
|
|
package services
|
|
|
|
|
|
|
|
|
|
import (
|
2021-01-21 02:26:52 +03:00
|
|
|
|
"errors"
|
2021-01-30 13:17:37 +03:00
|
|
|
|
"github.com/emvi/logbuch"
|
2020-09-29 19:55:07 +03:00
|
|
|
|
"github.com/muety/wakapi/config"
|
2021-01-21 02:26:52 +03:00
|
|
|
|
"github.com/muety/wakapi/models"
|
2020-11-01 18:56:36 +03:00
|
|
|
|
"github.com/muety/wakapi/repositories"
|
2019-10-10 17:47:19 +03:00
|
|
|
|
"sync"
|
2019-07-06 18:53:20 +03:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type AliasService struct {
|
2020-11-01 18:56:36 +03:00
|
|
|
|
config *config.Config
|
2020-11-08 12:12:49 +03:00
|
|
|
|
repository repositories.IAliasRepository
|
2019-07-06 18:53:20 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-11-08 12:12:49 +03:00
|
|
|
|
func NewAliasService(aliasRepo repositories.IAliasRepository) *AliasService {
|
2020-05-24 18:32:26 +03:00
|
|
|
|
return &AliasService{
|
2020-11-01 18:56:36 +03:00
|
|
|
|
config: config.Get(),
|
|
|
|
|
repository: aliasRepo,
|
2020-05-24 18:32:26 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-07-06 18:53:20 +03:00
|
|
|
|
|
2020-05-24 18:32:26 +03:00
|
|
|
|
var userAliases sync.Map
|
2020-02-20 16:28:55 +03:00
|
|
|
|
|
2021-01-21 02:26:52 +03:00
|
|
|
|
func (srv *AliasService) IsInitialized(userId string) bool {
|
|
|
|
|
if _, ok := userAliases.Load(userId); ok {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (srv *AliasService) InitializeUser(userId string) error {
|
2020-11-01 18:56:36 +03:00
|
|
|
|
aliases, err := srv.repository.GetByUser(userId)
|
|
|
|
|
if err == nil {
|
|
|
|
|
userAliases.Store(userId, aliases)
|
2019-07-06 18:53:20 +03:00
|
|
|
|
}
|
2020-11-01 18:56:36 +03:00
|
|
|
|
return err
|
2019-07-06 18:53:20 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-21 02:26:52 +03:00
|
|
|
|
func (srv *AliasService) GetByUser(userId string) ([]*models.Alias, error) {
|
|
|
|
|
aliases, err := srv.repository.GetByUser(userId)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
return aliases, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (srv *AliasService) GetByUserAndKeyAndType(userId, key string, summaryType uint8) ([]*models.Alias, error) {
|
|
|
|
|
aliases, err := srv.repository.GetByUserAndKeyAndType(userId, key, summaryType)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
return aliases, nil
|
|
|
|
|
}
|
|
|
|
|
|
2019-07-06 18:53:20 +03:00
|
|
|
|
func (srv *AliasService) GetAliasOrDefault(userId string, summaryType uint8, value string) (string, error) {
|
2020-11-01 18:03:30 +03:00
|
|
|
|
if !srv.IsInitialized(userId) {
|
2021-01-21 02:26:52 +03:00
|
|
|
|
if err := srv.InitializeUser(userId); err != nil {
|
2020-11-01 18:03:30 +03:00
|
|
|
|
return "", err
|
2019-07-06 18:53:20 +03:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-11-01 18:03:30 +03:00
|
|
|
|
|
|
|
|
|
aliases, _ := userAliases.Load(userId)
|
|
|
|
|
for _, a := range aliases.([]*models.Alias) {
|
|
|
|
|
if a.Type == summaryType && a.Value == value {
|
|
|
|
|
return a.Key, nil
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return value, nil
|
2019-07-06 18:53:20 +03:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-21 02:26:52 +03:00
|
|
|
|
func (srv *AliasService) Create(alias *models.Alias) (*models.Alias, error) {
|
|
|
|
|
result, err := srv.repository.Insert(alias)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
go srv.reinitUser(alias.UserID)
|
|
|
|
|
return result, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (srv *AliasService) Delete(alias *models.Alias) error {
|
|
|
|
|
if alias.UserID == "" {
|
|
|
|
|
return errors.New("no user id specified")
|
|
|
|
|
}
|
|
|
|
|
err := srv.repository.Delete(alias.ID)
|
|
|
|
|
go srv.reinitUser(alias.UserID)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (srv *AliasService) DeleteMulti(aliases []*models.Alias) error {
|
|
|
|
|
ids := make([]uint, len(aliases))
|
|
|
|
|
affectedUsers := make(map[string]bool)
|
|
|
|
|
for i, a := range aliases {
|
|
|
|
|
if a.UserID == "" {
|
|
|
|
|
return errors.New("no user id specified")
|
|
|
|
|
}
|
|
|
|
|
affectedUsers[a.UserID] = true
|
|
|
|
|
ids[i] = a.ID
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
err := srv.repository.DeleteBatch(ids)
|
|
|
|
|
|
|
|
|
|
for k := range affectedUsers {
|
|
|
|
|
go srv.reinitUser(k)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (srv *AliasService) reinitUser(userId string) {
|
|
|
|
|
if err := srv.InitializeUser(userId); err != nil {
|
2021-01-30 13:17:37 +03:00
|
|
|
|
logbuch.Error("error initializing user aliases – %v", err)
|
2019-07-06 18:53:20 +03:00
|
|
|
|
}
|
|
|
|
|
}
|