| 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
64
65
66
67
68
69
70
71
72
73
 | package federatingdb
import (
	"context"
	"encoding/json"
	"fmt"
	"github.com/go-fed/activity/streams"
	"github.com/go-fed/activity/streams/vocab"
	"github.com/sirupsen/logrus"
	"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
	"github.com/superseriousbusiness/gotosocial/internal/util"
)
func (f *federatingDB) Announce(ctx context.Context, announce vocab.ActivityStreamsAnnounce) error {
	l := f.log.WithFields(
		logrus.Fields{
			"func": "Announce",
		},
	)
	m, err := streams.Serialize(announce)
	if err != nil {
		return err
	}
	b, err := json.Marshal(m)
	if err != nil {
		return err
	}
	l.Debugf("received ANNOUNCE %s", string(b))
	targetAcctI := ctx.Value(util.APAccount)
	if targetAcctI == nil {
		l.Error("target account wasn't set on context")
		return nil
	}
	targetAcct, ok := targetAcctI.(*gtsmodel.Account)
	if !ok {
		l.Error("target account was set on context but couldn't be parsed")
		return nil
	}
	fromFederatorChanI := ctx.Value(util.APFromFederatorChanKey)
	if fromFederatorChanI == nil {
		l.Error("from federator channel wasn't set on context")
		return nil
	}
	fromFederatorChan, ok := fromFederatorChanI.(chan gtsmodel.FromFederator)
	if !ok {
		l.Error("from federator channel was set on context but couldn't be parsed")
		return nil
	}
	boost, isNew, err := f.typeConverter.ASAnnounceToStatus(announce)
	if err != nil {
		return fmt.Errorf("Announce: error converting announce to boost: %s", err)
	}
	if !isNew {
		// nothing to do here if this isn't a new announce
		return nil
	}
	// it's a new announce so pass it back to the processor async for dereferencing etc
	fromFederatorChan <- gtsmodel.FromFederator{
		APObjectType:     gtsmodel.ActivityStreamsAnnounce,
		APActivityType:   gtsmodel.ActivityStreamsCreate,
		GTSModel:         boost,
		ReceivingAccount: targetAcct,
	}
	return nil
}
 |