2023-10-28 14:42:29 -04:00
|
|
|
package db
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2023-11-01 22:40:50 -04:00
|
|
|
"errors"
|
2023-10-28 14:42:29 -04:00
|
|
|
|
2023-11-01 22:40:50 -04:00
|
|
|
"git.preston-baxter.com/Preston_PLB/capstone/frontend-service/config"
|
|
|
|
"go.mongodb.org/mongo-driver/bson"
|
|
|
|
"go.mongodb.org/mongo-driver/bson/primitive"
|
2023-10-28 14:42:29 -04:00
|
|
|
"go.mongodb.org/mongo-driver/mongo"
|
|
|
|
"go.mongodb.org/mongo-driver/mongo/options"
|
|
|
|
)
|
|
|
|
|
2023-11-14 13:58:08 -05:00
|
|
|
//Interface for any object that wants to take advantage of the DB package
|
2023-10-28 14:42:29 -04:00
|
|
|
type Model interface {
|
2023-11-14 13:58:08 -05:00
|
|
|
|
|
|
|
//Should return the _id field of the object if it exits
|
|
|
|
//if it is new it should generate a new objectId
|
2023-11-01 22:40:50 -04:00
|
|
|
MongoId() primitive.ObjectID
|
2023-11-14 13:58:08 -05:00
|
|
|
|
|
|
|
//It is expected that this will update the CommonFields part of the model
|
2023-11-01 22:40:50 -04:00
|
|
|
UpdateObjectInfo()
|
2023-10-28 14:42:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type DB struct {
|
|
|
|
client *mongo.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewClient(uri string) (*DB, error) {
|
|
|
|
client, err := mongo.Connect(context.TODO(), options.Client().ApplyURI(uri))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &DB{client: client}, nil
|
|
|
|
}
|
2023-10-28 17:50:44 -04:00
|
|
|
|
2023-11-12 20:01:58 -05:00
|
|
|
//Upserts
|
2023-10-28 17:50:44 -04:00
|
|
|
func (db *DB) SaveModel(m Model) error {
|
2023-11-01 22:40:50 -04:00
|
|
|
conf := config.Config()
|
|
|
|
|
2023-11-02 19:23:07 -04:00
|
|
|
m.UpdateObjectInfo()
|
2023-11-01 22:40:50 -04:00
|
|
|
opts := options.Update().SetUpsert(true)
|
|
|
|
res, err := db.client.Database(conf.Mongo.EntDb).Collection(conf.Mongo.EntCol).UpdateOne(context.Background(), bson.M{"_id": m.MongoId()}, bson.M{"$set": m}, opts)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if res.MatchedCount == 0 && res.ModifiedCount == 0 && res.UpsertedCount == 0 {
|
|
|
|
return errors.New("Failed to update vendor account properly")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-11-12 20:01:58 -05:00
|
|
|
//Doesn't upsert
|
|
|
|
func (db *DB) InsertModel(m Model) error {
|
|
|
|
conf := config.Config()
|
|
|
|
|
|
|
|
m.UpdateObjectInfo()
|
|
|
|
opts := options.InsertOne()
|
|
|
|
_, err := db.client.Database(conf.Mongo.EntDb).Collection(conf.Mongo.EntCol).InsertOne(context.Background(), m, opts)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-11-01 22:40:50 -04:00
|
|
|
func (db *DB) DeleteModel(m Model) error {
|
|
|
|
conf := config.Config()
|
|
|
|
|
|
|
|
opts := options.Delete()
|
|
|
|
res, err := db.client.Database(conf.Mongo.EntDb).Collection(conf.Mongo.EntCol).DeleteOne(context.Background(), bson.M{"_id": m.MongoId()}, opts)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if res.DeletedCount == 0 {
|
|
|
|
return errors.New("There was no item to delete")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2023-10-28 17:50:44 -04:00
|
|
|
}
|