2021-06-19 10:18:55 +01:00
|
|
|
package streaming
|
|
|
|
|
|
|
|
import (
|
2021-08-25 14:34:33 +01:00
|
|
|
"context"
|
2021-06-19 10:18:55 +01:00
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/typeutils"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/visibility"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Processor wraps a bunch of functions for processing streaming.
|
|
|
|
type Processor interface {
|
|
|
|
// AuthorizeStreamingRequest returns an oauth2 token info in response to an access token query from the streaming API
|
2021-08-25 14:34:33 +01:00
|
|
|
AuthorizeStreamingRequest(ctx context.Context, accessToken string) (*gtsmodel.Account, error)
|
2021-06-21 14:56:00 +01:00
|
|
|
// OpenStreamForAccount returns a new Stream for the given account, which will contain a channel for passing messages back to the caller.
|
2021-08-25 14:34:33 +01:00
|
|
|
OpenStreamForAccount(ctx context.Context, account *gtsmodel.Account, streamType string) (*gtsmodel.Stream, gtserror.WithCode)
|
2021-06-21 14:56:00 +01:00
|
|
|
// StreamStatusToAccount streams the given status to any open, appropriate streams belonging to the given account.
|
2021-06-19 10:18:55 +01:00
|
|
|
StreamStatusToAccount(s *apimodel.Status, account *gtsmodel.Account) error
|
2021-06-21 14:56:00 +01:00
|
|
|
// StreamNotificationToAccount streams the given notification to any open, appropriate streams belonging to the given account.
|
2021-06-19 10:18:55 +01:00
|
|
|
StreamNotificationToAccount(n *apimodel.Notification, account *gtsmodel.Account) error
|
2021-06-21 14:56:00 +01:00
|
|
|
// StreamDelete streams the delete of the given statusID to *ALL* open streams.
|
|
|
|
StreamDelete(statusID string) error
|
2021-06-19 10:18:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type processor struct {
|
|
|
|
tc typeutils.TypeConverter
|
|
|
|
config *config.Config
|
|
|
|
db db.DB
|
|
|
|
filter visibility.Filter
|
|
|
|
log *logrus.Logger
|
|
|
|
oauthServer oauth.Server
|
|
|
|
streamMap *sync.Map
|
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a new status processor.
|
|
|
|
func New(db db.DB, tc typeutils.TypeConverter, oauthServer oauth.Server, config *config.Config, log *logrus.Logger) Processor {
|
|
|
|
return &processor{
|
|
|
|
tc: tc,
|
|
|
|
config: config,
|
|
|
|
db: db,
|
|
|
|
filter: visibility.NewFilter(db, log),
|
|
|
|
log: log,
|
|
|
|
oauthServer: oauthServer,
|
|
|
|
streamMap: &sync.Map{},
|
|
|
|
}
|
|
|
|
}
|