oc-lib/models/booking/booking_mongo_accessor.go

89 lines
2.8 KiB
Go
Raw Normal View History

2024-08-12 14:18:13 +02:00
package booking
import (
"cloud.o-forge.io/core/oc-lib/dbs"
"cloud.o-forge.io/core/oc-lib/dbs/mongo"
"cloud.o-forge.io/core/oc-lib/models/utils"
)
2024-08-22 13:11:21 +02:00
type bookingMongoAccessor struct {
utils.AbstractAccessor // AbstractAccessor contains the basic fields of an accessor (model, caller)
2024-08-12 14:18:13 +02:00
}
// New creates a new instance of the bookingMongoAccessor
2024-08-22 13:11:21 +02:00
func New() *bookingMongoAccessor {
return &bookingMongoAccessor{}
2024-08-12 14:18:13 +02:00
}
/*
* Nothing special here, just the basic CRUD operations
*/
2024-08-22 13:11:21 +02:00
func (wfa *bookingMongoAccessor) DeleteOne(id string) (utils.DBObject, int, error) {
2024-08-12 14:18:13 +02:00
return wfa.GenericDeleteOne(id, wfa)
}
2024-08-22 13:11:21 +02:00
func (wfa *bookingMongoAccessor) UpdateOne(set utils.DBObject, id string) (utils.DBObject, int, error) {
2024-08-12 14:18:13 +02:00
return wfa.GenericUpdateOne(set, id, wfa, &Booking{})
}
2024-08-22 13:11:21 +02:00
func (wfa *bookingMongoAccessor) StoreOne(data utils.DBObject) (utils.DBObject, int, error) {
2024-08-12 14:18:13 +02:00
return wfa.GenericStoreOne(data, wfa)
}
2024-08-22 13:11:21 +02:00
func (wfa *bookingMongoAccessor) CopyOne(data utils.DBObject) (utils.DBObject, int, error) {
2024-08-12 14:18:13 +02:00
return wfa.GenericStoreOne(data, wfa)
}
2024-08-22 13:11:21 +02:00
func (wfa *bookingMongoAccessor) LoadOne(id string) (utils.DBObject, int, error) {
2024-08-12 14:18:13 +02:00
var workflow Booking
res_mongo, code, err := mongo.MONGOService.LoadOne(id, wfa.GetType())
if err != nil {
wfa.Logger.Error().Msg("Could not retrieve " + id + " from db. Error: " + err.Error())
return nil, code, err
}
res_mongo.Decode(&workflow)
return &workflow, 200, nil
}
2024-08-22 13:11:21 +02:00
func (wfa bookingMongoAccessor) LoadAll() ([]utils.ShallowDBObject, int, error) {
2024-08-12 14:18:13 +02:00
objs := []utils.ShallowDBObject{}
res_mongo, code, err := mongo.MONGOService.LoadAll(wfa.GetType())
if err != nil {
wfa.Logger.Error().Msg("Could not retrieve any from db. Error: " + err.Error())
return nil, code, err
}
var results []Booking
if err = res_mongo.All(mongo.MngoCtx, &results); err != nil {
return nil, 404, err
}
for _, r := range results {
objs = append(objs, &r.AbstractObject) // Warning only AbstractObject is returned
2024-08-12 14:18:13 +02:00
}
return objs, 200, nil
}
// Search is a function that searches for a booking in the database
2024-08-22 13:11:21 +02:00
func (wfa *bookingMongoAccessor) Search(filters *dbs.Filters, search string) ([]utils.ShallowDBObject, int, error) {
2024-08-12 14:18:13 +02:00
objs := []utils.ShallowDBObject{}
if (filters == nil || len(filters.And) == 0 || len(filters.Or) == 0) && search != "" {
filters = &dbs.Filters{
Or: map[string][]dbs.Filter{ // filter by name if no filters are provided
2024-08-12 14:18:13 +02:00
"abstractobject.name": {{Operator: dbs.LIKE.String(), Value: search}},
},
}
}
res_mongo, code, err := mongo.MONGOService.Search(filters, wfa.GetType())
if err != nil {
wfa.Logger.Error().Msg("Could not store to db. Error: " + err.Error())
return nil, code, err
}
var results []Booking
if err = res_mongo.All(mongo.MngoCtx, &results); err != nil {
return nil, 404, err
}
for _, r := range results {
objs = append(objs, &r)
}
return objs, 200, nil
}