2021-11-08 04:53:03 +00:00
|
|
|
package usermngmt
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
|
2021-11-16 05:16:06 +00:00
|
|
|
"github.com/Selly-Modules/logger"
|
2021-11-08 04:53:03 +00:00
|
|
|
"github.com/Selly-Modules/mongodb"
|
2021-11-11 03:20:08 +00:00
|
|
|
"github.com/Selly-Modules/usermngmt/cache"
|
2021-11-10 04:01:39 +00:00
|
|
|
"github.com/Selly-Modules/usermngmt/database"
|
2021-11-10 05:07:58 +00:00
|
|
|
"github.com/Selly-Modules/usermngmt/internal"
|
2021-11-08 04:53:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// MongoDBConfig ...
|
|
|
|
type MongoDBConfig struct {
|
|
|
|
Host, User, Password, DBName, Mechanism, Source string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Config ...
|
|
|
|
type Config struct {
|
|
|
|
// MongoDB config, for save documents
|
|
|
|
MongoDB MongoDBConfig
|
|
|
|
// Table prefix, each service has its own prefix
|
|
|
|
TablePrefix string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Service ...
|
|
|
|
type Service struct {
|
2021-11-10 04:42:23 +00:00
|
|
|
config Config
|
2021-11-08 04:53:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var s *Service
|
|
|
|
|
|
|
|
// Init ...
|
|
|
|
func Init(config Config) (*Service, error) {
|
2021-11-08 10:04:01 +00:00
|
|
|
if config.MongoDB.Host == "" {
|
2021-11-08 04:53:03 +00:00
|
|
|
return nil, errors.New("please provide all necessary information for init user")
|
|
|
|
}
|
|
|
|
|
2021-11-08 11:21:52 +00:00
|
|
|
// If prefixTable is empty then it is usermngmt
|
|
|
|
if config.TablePrefix == "" {
|
2021-11-10 05:07:58 +00:00
|
|
|
config.TablePrefix = internal.TablePrefixDefault
|
2021-11-08 11:21:52 +00:00
|
|
|
}
|
|
|
|
|
2021-11-08 04:53:03 +00:00
|
|
|
// Connect MongoDB
|
|
|
|
db, err := mongodb.Connect(
|
|
|
|
config.MongoDB.Host,
|
|
|
|
config.MongoDB.User,
|
|
|
|
config.MongoDB.Password,
|
|
|
|
config.MongoDB.DBName,
|
|
|
|
config.MongoDB.Mechanism,
|
|
|
|
config.MongoDB.Source,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Cannot init module User MANAGEMENT", err)
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-11-24 09:28:01 +00:00
|
|
|
logger.Init(fmt.Sprintf("%s-usermngmt", config.TablePrefix), "")
|
2021-11-16 05:16:06 +00:00
|
|
|
|
2021-11-10 04:01:39 +00:00
|
|
|
// Set database
|
|
|
|
database.Set(db, config.TablePrefix)
|
|
|
|
|
2021-11-16 04:11:04 +00:00
|
|
|
// Init cache
|
|
|
|
cache.Init()
|
|
|
|
|
2021-11-08 04:53:03 +00:00
|
|
|
s = &Service{
|
2021-11-10 02:54:49 +00:00
|
|
|
config: config,
|
2021-11-08 04:53:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return s, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetInstance ...
|
|
|
|
func GetInstance() *Service {
|
|
|
|
return s
|
|
|
|
}
|