aboutsummaryrefslogtreecommitdiff
path: root/models/outbox_item.go
blob: 9d9de97b3b464e6752ce9a6d260e3c97ed4c7d38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package models

import (
	"bytes"
	"encoding/gob"
	"fmt"
	"time"

	"git.capotej.com/capotej/communique/config"
	"github.com/dgraph-io/badger/v3"
	"github.com/segmentio/ksuid"
)

type OutboxItem struct {
	Handler   config.Handler
	Content   []byte
	Id        []byte
	CreatedAt time.Time
}

// used for lookup purposes (count, collect, find)
func NewOutboxItem(h config.Handler) *OutboxItem {
	aso := &OutboxItem{Handler: h}
	return aso
}

func CreateOutboxItem(h config.Handler, content []byte) *OutboxItem {
	t := time.Now()
	k, _ := ksuid.NewRandomWithTime(t)
	aso := &OutboxItem{
		Handler:   h,
		CreatedAt: t,
		Content:   content,
		Id:        []byte(k.String()), // NOTE: we want the bytes of the string representation of a hash, NOT a binary hash
	}
	return aso
}

func (a *OutboxItem) Key() string {
	return fmt.Sprintf("%s:%s", a.Keybase(), a.Id)
}

func (a *OutboxItem) Keybase() string {
	keyBase := fmt.Sprintf("outboxes:%s", a.Handler.Name)
	return keyBase
}

func (a *OutboxItem) Save(txn *badger.Txn) error {
	if len(a.Content) == 0 {
		return fmt.Errorf("content not set")
	}
	if len(a.Id) == 0 {
		return fmt.Errorf("id not set")
	}
	var network bytes.Buffer
	enc := gob.NewEncoder(&network)
	err := enc.Encode(a)
	if err != nil {
		return fmt.Errorf("could not encode outbox item: %w", err)
	}
	e := badger.NewEntry([]byte(a.Key()), network.Bytes())
	return txn.SetEntry(e)
}