mirror of
https://github.com/0ceanSlim/grain.git
synced 2024-11-21 16:17:13 +00:00
refactor event purging
This commit is contained in:
parent
4fef7088bb
commit
a7ade9a40d
@ -4,7 +4,7 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"grain/config"
|
"grain/config"
|
||||||
types "grain/config/types"
|
types "grain/config/types"
|
||||||
"grain/server/utils"
|
nostr "grain/server/types"
|
||||||
"log"
|
"log"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -12,7 +12,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// PurgeOldEvents removes old events based on the configuration and a list of whitelisted pubkeys.
|
// PurgeOldEvents removes old events based on the configuration and a list of whitelisted pubkeys.
|
||||||
func PurgeOldEvents(cfg *types.EventPurgeConfig, whitelist []string) {
|
func PurgeOldEvents(cfg *types.EventPurgeConfig) {
|
||||||
if !cfg.Enabled {
|
if !cfg.Enabled {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -23,78 +23,49 @@ func PurgeOldEvents(cfg *types.EventPurgeConfig, whitelist []string) {
|
|||||||
// Calculate the cutoff time
|
// Calculate the cutoff time
|
||||||
cutoff := time.Now().AddDate(0, 0, -cfg.KeepDurationDays).Unix()
|
cutoff := time.Now().AddDate(0, 0, -cfg.KeepDurationDays).Unix()
|
||||||
|
|
||||||
// Create the filter for purging old events
|
// Create the base filter for fetching old events
|
||||||
filter := bson.M{
|
baseFilter := bson.M{
|
||||||
"created_at": bson.M{"$lt": cutoff}, // Filter older events
|
"created_at": bson.M{"$lt": cutoff}, // Filter for events older than the cutoff
|
||||||
}
|
}
|
||||||
|
|
||||||
// Exclude whitelisted pubkeys if specified in the config
|
cursor, err := collection.Find(context.TODO(), baseFilter)
|
||||||
if cfg.ExcludeWhitelisted && len(whitelist) > 0 {
|
if err != nil {
|
||||||
filter["pubkey"] = bson.M{"$nin": whitelist} // Exclude whitelisted pubkeys
|
log.Printf("Error fetching old events for purging: %v", err)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
defer cursor.Close(context.TODO())
|
||||||
|
|
||||||
// Handle purging by category
|
for cursor.Next(context.TODO()) {
|
||||||
for category, purge := range cfg.PurgeByCategory {
|
var evt nostr.Event
|
||||||
if purge {
|
if err := cursor.Decode(&evt); err != nil {
|
||||||
filter["category"] = category
|
log.Printf("Error decoding event: %v", err)
|
||||||
_, err := collection.DeleteMany(context.TODO(), filter)
|
continue
|
||||||
if err != nil {
|
|
||||||
log.Printf("Error purging events by category %s: %v", category, err)
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// Handle purging by kind
|
// Check if the event's pubkey is whitelisted and skip purging if configured to do so
|
||||||
for _, kindRule := range cfg.PurgeByKind {
|
if cfg.ExcludeWhitelisted && config.IsPubKeyWhitelisted(evt.PubKey) {
|
||||||
if kindRule.Enabled {
|
log.Printf("Skipping purging for whitelisted event ID: %s, pubkey: %s", evt.ID, evt.PubKey)
|
||||||
filter["kind"] = kindRule.Kind
|
continue
|
||||||
_, err := collection.DeleteMany(context.TODO(), filter)
|
}
|
||||||
if err != nil {
|
|
||||||
log.Printf("Error purging events by kind %d: %v", kindRule.Kind, err)
|
// Proceed with deleting the event if it is not whitelisted
|
||||||
}
|
_, err := collection.DeleteOne(context.TODO(), bson.M{"id": evt.ID})
|
||||||
|
if err != nil {
|
||||||
|
log.Printf("Error purging event ID %s: %v", evt.ID, err)
|
||||||
|
} else {
|
||||||
|
log.Printf("Purged event ID: %s", evt.ID)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// ScheduleEventPurging runs the event purging at a configurable interval.
|
// ScheduleEventPurging runs the event purging at a configurable interval.
|
||||||
func ScheduleEventPurging(cfg *types.ServerConfig) {
|
func ScheduleEventPurging(cfg *types.ServerConfig) {
|
||||||
// Use the purge interval from the configuration
|
|
||||||
purgeInterval := time.Duration(cfg.EventPurge.PurgeIntervalHours) * time.Hour
|
purgeInterval := time.Duration(cfg.EventPurge.PurgeIntervalHours) * time.Hour
|
||||||
ticker := time.NewTicker(purgeInterval)
|
ticker := time.NewTicker(purgeInterval)
|
||||||
defer ticker.Stop()
|
defer ticker.Stop()
|
||||||
|
|
||||||
for range ticker.C {
|
for range ticker.C {
|
||||||
// Fetch the whitelisted pubkeys without passing cfg directly
|
PurgeOldEvents(&cfg.EventPurge)
|
||||||
whitelist := getWhitelistedPubKeys()
|
log.Println("Scheduled purging completed.")
|
||||||
PurgeOldEvents(&cfg.EventPurge, whitelist)
|
|
||||||
log.Printf("Purged old events, keeping whitelisted pubkeys: %v", whitelist)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fetch whitelisted pubkeys from both the whitelist config and any additional domains.
|
|
||||||
func getWhitelistedPubKeys() []string {
|
|
||||||
// Get the whitelist configuration
|
|
||||||
whitelistCfg := config.GetWhitelistConfig()
|
|
||||||
if whitelistCfg == nil {
|
|
||||||
log.Println("whitelistCfg is nil, returning an empty list of whitelisted pubkeys.")
|
|
||||||
return []string{}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Start with the statically defined pubkeys
|
|
||||||
whitelistedPubkeys := whitelistCfg.PubkeyWhitelist.Pubkeys
|
|
||||||
|
|
||||||
// Fetch pubkeys from domains if domain whitelist is enabled
|
|
||||||
if whitelistCfg.DomainWhitelist.Enabled {
|
|
||||||
domains := whitelistCfg.DomainWhitelist.Domains
|
|
||||||
pubkeys, err := utils.FetchPubkeysFromDomains(domains)
|
|
||||||
if err != nil {
|
|
||||||
log.Printf("Error fetching pubkeys from domains: %v", err)
|
|
||||||
// Return the existing statically whitelisted pubkeys in case of an error
|
|
||||||
return whitelistedPubkeys
|
|
||||||
}
|
|
||||||
// Append fetched pubkeys from domains to the whitelisted pubkeys
|
|
||||||
whitelistedPubkeys = append(whitelistedPubkeys, pubkeys...)
|
|
||||||
}
|
|
||||||
|
|
||||||
return whitelistedPubkeys
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user