go-pingbot/database/connect.go
Medzik bd660f5427 v1.1.0: Change error msg, Changes 2 files name to ticker.go...
- Change error messages
- backend and update: changed files name to ticker.go
- Update README, Makefile
- Added nodemon
- website: URL type now is database.URL
- backend: Remove unused http info
- Upgrade deps
2021-07-19 14:24:33 +00:00

33 lines
736 B
Go

package database
import (
"context"
"os"
"time"
"gitlab.com/gaming0skar123/go/pingbot/common"
"gitlab.com/gaming0skar123/go/pingbot/config"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
"go.mongodb.org/mongo-driver/mongo/readpref"
)
var Client *mongo.Client
var DB *mongo.Database
func Connect() {
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
Client, err := mongo.Connect(ctx, options.Client().ApplyURI(config.Mongo_URI))
if common.CheckErr(err, "failed connecting to db") {
os.Exit(1)
}
err = Client.Ping(ctx, readpref.Primary())
if common.CheckErr(err, "failed pinging db") {
os.Exit(1)
}
DB = Client.Database(config.Mongo_DB)
}