devicemngmt/devicemngt.go

64 lines
1.1 KiB
Go
Raw Normal View History

2021-11-05 07:21:57 +00:00
package devicemngmt
import (
"errors"
"fmt"
"github.com/Selly-Modules/mongodb"
"go.mongodb.org/mongo-driver/mongo"
)
// 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 {
Config
DB *mongo.Database
}
var s *Service
// Init ...
2021-11-05 08:40:07 +00:00
func Init(config Config) (*Service, error) {
if config.MongoDB.Host == "" || config.TablePrefix == "" {
return nil, errors.New("please provide all necessary information for init device")
2021-11-05 07:21:57 +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 DEVICE MANAGEMENT", err)
2021-11-05 08:40:07 +00:00
return nil, err
2021-11-05 07:21:57 +00:00
}
s = &Service{
Config: config,
DB: db,
}
2021-11-05 08:40:07 +00:00
return s, nil
2021-11-05 07:21:57 +00:00
}
// GetInstance ...
func GetInstance() *Service {
return s
}