mirror of
https://github.com/0ceanSlim/grain.git
synced 2024-11-22 16:47:13 +00:00
34 lines
710 B
Go
34 lines
710 B
Go
package events
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"go.mongodb.org/mongo-driver/mongo"
|
|
)
|
|
|
|
func HandleEventKind1(ctx context.Context, evt Event, collection *mongo.Collection) error {
|
|
// Perform specific validation for event kind 1
|
|
if !isValidEventKind1(evt) {
|
|
return fmt.Errorf("validation failed for event kind 1: %s", evt.ID)
|
|
}
|
|
|
|
// Insert event into MongoDB
|
|
_, err := collection.InsertOne(ctx, evt)
|
|
if err != nil {
|
|
fmt.Println("Error inserting event into MongoDB:", err)
|
|
return err
|
|
}
|
|
|
|
fmt.Println("Inserted event kind 1 into MongoDB:", evt.ID)
|
|
return nil
|
|
}
|
|
|
|
func isValidEventKind1(evt Event) bool {
|
|
// Placeholder for actual validation logic
|
|
if evt.Content == "" {
|
|
return false
|
|
}
|
|
return true
|
|
}
|