backend/internal/db/mongo/restock_crud.go
package mongo
import (
"bar/internal/models"
"context"
"time"
"github.com/google/uuid"
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo/options"
)
func (b *Backend) CreateRestock(ctx context.Context, tx *models.Restock) error {
ctx, cancel := b.TimeoutContext(ctx)
defer cancel()
tx.CreatedAt = time.Now().Unix()
_, err := b.db.Collection(RestocksCollection).InsertOne(ctx, tx)
if err != nil {
return err
}
return nil
}
func (b *Backend) GetRestock(ctx context.Context, id string) (*models.Restock, error) {
ctx, cancel := b.TimeoutContext(ctx)
defer cancel()
var tx models.Restock
err := b.db.Collection(RestocksCollection).FindOne(ctx,
bson.M{
"id": uuid.MustParse(id),
"$or": []bson.M{
{
"deleted_at": bson.M{
"$exists": false,
},
},
{
"deleted_at": nil,
},
},
},
).Decode(&tx)
if err != nil {
return nil, err
}
return &tx, nil
}
func (b *Backend) UpdateRestock(ctx context.Context, tx *models.Restock) error {
ctx, cancel := b.TimeoutContext(ctx)
defer cancel()
res := b.db.Collection(RestocksCollection).FindOneAndUpdate(ctx,
bson.M{
"id": tx.Id,
"$or": []bson.M{
{
"deleted_at": bson.M{
"$exists": false,
},
},
{
"deleted_at": nil,
},
},
},
bson.M{
"$set": tx,
},
options.FindOneAndUpdate().SetUpsert(true))
if res.Err() != nil {
return res.Err()
}
return nil
}
func (b *Backend) MarkDeleteRestock(ctx context.Context, id, by string) error {
ctx, cancel := b.TimeoutContext(ctx)
defer cancel()
res := b.db.Collection(RestocksCollection).FindOneAndUpdate(ctx,
bson.M{
"id": uuid.MustParse(id),
},
bson.M{
"$set": bson.M{
"deleted_at": time.Now().Unix(),
"deleted_by": uuid.MustParse(by),
},
},
options.FindOneAndUpdate().SetUpsert(false))
if res.Err() != nil {
return res.Err()
}
return nil
}
func (b *Backend) UnMarkDeleteRestock(ctx context.Context, id string) error {
ctx, cancel := b.TimeoutContext(ctx)
defer cancel()
res := b.db.Collection(RestocksCollection).FindOneAndUpdate(ctx,
bson.M{
"id": uuid.MustParse(id),
},
bson.M{
"$set": bson.M{
"deleted_at": nil,
"deleted_by": nil,
},
},
options.FindOneAndUpdate().SetUpsert(false))
if res.Err() != nil {
return res.Err()
}
return nil
}
func (b *Backend) DeleteRestock(ctx context.Context, id string) error {
ctx, cancel := b.TimeoutContext(ctx)
defer cancel()
res := b.db.Collection(RestocksCollection).FindOneAndDelete(ctx,
bson.M{
"id": uuid.MustParse(id),
},
)
if res.Err() != nil {
return res.Err()
}
return nil
}
func (b *Backend) RestoreRestock(ctx context.Context, id string) error {
ctx, cancel := b.TimeoutContext(ctx)
defer cancel()
res := b.db.Collection(RestocksCollection).FindOneAndUpdate(ctx,
bson.M{
"id": uuid.MustParse(id),
},
bson.M{
"$unset": bson.M{
"deleted_at": "",
"deleted_by": "",
},
},
)
if res.Err() != nil {
return res.Err()
}
return nil
}
func (b *Backend) GetDeletedRestocks(ctx context.Context, page uint64, size uint64) ([]*models.Restock, error) {
ctx, cancel := b.TimeoutContext(ctx)
defer cancel()
var accs []*models.Restock
cursor, err := b.db.Collection(RestocksCollection).Find(ctx,
bson.M{
"deleted_at": bson.M{
"$ne": nil,
},
},
options.Find().SetSkip(int64(page*size)).SetLimit(int64(size)))
if err != nil {
return nil, err
}
if err := cursor.All(ctx, &accs); err != nil {
return nil, err
}
return accs, nil
}
func (b *Backend) CountDeletedRestocks(ctx context.Context) (uint64, error) {
ctx, cancel := b.TimeoutContext(ctx)
defer cancel()
count, err := b.db.Collection(RestocksCollection).CountDocuments(ctx, bson.M{
"deleted_at": bson.M{
"$ne": nil,
},
})
if err != nil {
return 0, err
}
return uint64(count), nil
}