63 lines
1.9 KiB
Go
63 lines
1.9 KiB
Go
package postgresql
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
|
|
"github.com/fiatjaf/relayer/v2/storage"
|
|
"github.com/nbd-wtf/go-nostr"
|
|
)
|
|
|
|
func (b *PostgresBackend) SaveEvent(ctx context.Context, evt *nostr.Event) error {
|
|
// react to different kinds of events
|
|
if evt.Kind == nostr.KindSetMetadata || evt.Kind == nostr.KindContactList || (10000 <= evt.Kind && evt.Kind < 20000) {
|
|
// delete past events from this user
|
|
b.DB.ExecContext(ctx, `DELETE FROM event WHERE pubkey = $1 AND kind = $2`, evt.PubKey, evt.Kind)
|
|
} else if evt.Kind == nostr.KindRecommendServer {
|
|
// delete past recommend_server events equal to this one
|
|
b.DB.ExecContext(ctx, `DELETE FROM event WHERE pubkey = $1 AND kind = $2 AND content = $3`,
|
|
evt.PubKey, evt.Kind, evt.Content)
|
|
} else if evt.Kind >= 30000 && evt.Kind < 40000 {
|
|
// NIP-33
|
|
d := evt.Tags.GetFirst([]string{"d"})
|
|
if d != nil {
|
|
b.DB.Exec(`DELETE FROM event WHERE pubkey = $1 AND kind = $2 AND tagvalues && ARRAY[$3]`,
|
|
evt.PubKey, evt.Kind, d.Value())
|
|
}
|
|
}
|
|
|
|
// insert
|
|
tagsj, _ := json.Marshal(evt.Tags)
|
|
res, err := b.DB.ExecContext(ctx, `
|
|
INSERT INTO event (id, pubkey, created_at, kind, tags, content, sig)
|
|
VALUES ($1, $2, $3, $4, $5, $6, $7)
|
|
ON CONFLICT (id) DO NOTHING
|
|
`, evt.ID, evt.PubKey, evt.CreatedAt, evt.Kind, tagsj, evt.Content, evt.Sig)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
nr, err := res.RowsAffected()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if nr == 0 {
|
|
return storage.ErrDupEvent
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (b *PostgresBackend) BeforeSave(ctx context.Context, evt *nostr.Event) {
|
|
// do nothing
|
|
}
|
|
|
|
func (b *PostgresBackend) AfterSave(evt *nostr.Event) {
|
|
// delete all but the 100 most recent ones for each key
|
|
b.DB.Exec(`DELETE FROM event WHERE pubkey = $1 AND kind = $2 AND created_at < (
|
|
SELECT created_at FROM event WHERE pubkey = $1
|
|
ORDER BY created_at DESC OFFSET 100 LIMIT 1
|
|
)`, evt.PubKey, evt.Kind)
|
|
}
|