Some checks failed
Go / build-and-release (push) Has been cancelled
Major refactoring of event handling into clean, testable domain services: - Add pkg/event/validation: JSON hex validation, signature verification, timestamp bounds, NIP-70 protected tag validation - Add pkg/event/authorization: Policy and ACL authorization decisions, auth challenge handling, access level determination - Add pkg/event/routing: Event router registry with ephemeral and delete handlers, kind-based dispatch - Add pkg/event/processing: Event persistence, delivery to subscribers, and post-save hooks (ACL reconfig, sync, relay groups) - Reduce handle-event.go from 783 to 296 lines (62% reduction) - Add comprehensive unit tests for all new domain services - Refactor database tests to use shared TestMain setup - Fix blossom URL test expectations (missing "/" separator) - Add go-memory-optimization skill and analysis documentation - Update DDD_ANALYSIS.md to reflect completed decomposition Files modified: - app/handle-event.go: Slim orchestrator using domain services - app/server.go: Service initialization and interface wrappers - app/handle-event-types.go: Shared types (OkHelper, result types) - pkg/event/validation/*: New validation service package - pkg/event/authorization/*: New authorization service package - pkg/event/routing/*: New routing service package - pkg/event/processing/*: New processing service package - pkg/database/*_test.go: Refactored to shared TestMain - pkg/blossom/http_test.go: Fixed URL format expectations 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
51 lines
1.4 KiB
Go
51 lines
1.4 KiB
Go
package routing
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.mleku.dev/mleku/nostr/encoders/event"
|
|
)
|
|
|
|
// DeleteProcessor handles event deletion operations.
|
|
type DeleteProcessor interface {
|
|
// SaveDeleteEvent saves the delete event itself.
|
|
SaveDeleteEvent(ctx context.Context, ev *event.E) error
|
|
// ProcessDeletion removes the target events.
|
|
ProcessDeletion(ctx context.Context, ev *event.E) error
|
|
// DeliverEvent sends the delete event to subscribers.
|
|
DeliverEvent(ev *event.E)
|
|
}
|
|
|
|
// MakeDeleteHandler creates a handler for delete events (kind 5).
|
|
// Delete events:
|
|
// - Save the delete event itself first
|
|
// - Process target event deletions
|
|
// - Deliver the delete event to subscribers
|
|
func MakeDeleteHandler(processor DeleteProcessor) Handler {
|
|
return func(ev *event.E, authedPubkey []byte) Result {
|
|
ctx := context.Background()
|
|
|
|
// Save delete event first
|
|
if err := processor.SaveDeleteEvent(ctx, ev); err != nil {
|
|
return ErrorResult(err)
|
|
}
|
|
|
|
// Process the deletion (remove target events)
|
|
if err := processor.ProcessDeletion(ctx, ev); err != nil {
|
|
// Log but don't fail - delete event was saved
|
|
// Some targets may not exist or may be owned by others
|
|
}
|
|
|
|
// Deliver the delete event to subscribers
|
|
cloned := ev.Clone()
|
|
go processor.DeliverEvent(cloned)
|
|
|
|
return HandledResult("")
|
|
}
|
|
}
|
|
|
|
// IsDeleteKind returns true if the kind is a delete event (kind 5).
|
|
func IsDeleteKind(k uint16) bool {
|
|
return k == 5
|
|
}
|