2023-03-12 15:00:57 +00:00
|
|
|
// GoToSocial
|
|
|
|
// Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2021-05-08 13:25:55 +01:00
|
|
|
|
|
|
|
package federation
|
|
|
|
|
|
|
|
import (
|
2021-11-13 16:29:43 +00:00
|
|
|
"github.com/superseriousbusiness/activity/pub"
|
2021-05-08 13:25:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/db"
|
2021-08-10 12:32:39 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/federation/dereferencing"
|
2021-05-27 15:06:24 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/federation/federatingdb"
|
2021-07-05 12:23:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/media"
|
2023-05-12 10:15:54 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/state"
|
2021-05-08 13:25:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/transport"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/typeutils"
|
|
|
|
)
|
|
|
|
|
2023-10-23 10:58:13 +01:00
|
|
|
var _ interface {
|
2021-05-08 13:25:55 +01:00
|
|
|
pub.CommonBehavior
|
|
|
|
pub.FederatingProtocol
|
2023-10-23 10:58:13 +01:00
|
|
|
} = &Federator{}
|
2021-05-08 13:25:55 +01:00
|
|
|
|
2023-10-23 10:58:13 +01:00
|
|
|
type Federator struct {
|
2021-05-08 13:25:55 +01:00
|
|
|
db db.DB
|
2021-05-27 15:06:24 +01:00
|
|
|
federatingDB federatingdb.DB
|
2021-05-08 13:25:55 +01:00
|
|
|
clock pub.Clock
|
2023-09-23 17:44:11 +01:00
|
|
|
converter *typeutils.Converter
|
2021-05-08 13:25:55 +01:00
|
|
|
transportController transport.Controller
|
2023-05-28 13:08:35 +01:00
|
|
|
mediaManager *media.Manager
|
2021-05-08 13:25:55 +01:00
|
|
|
actor pub.FederatingActor
|
2023-02-03 20:03:05 +00:00
|
|
|
dereferencing.Dereferencer
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
|
|
|
|
2023-10-23 10:58:13 +01:00
|
|
|
// NewFederator returns a new federator instance.
|
|
|
|
func NewFederator(
|
|
|
|
state *state.State,
|
|
|
|
federatingDB federatingdb.DB,
|
|
|
|
transportController transport.Controller,
|
|
|
|
converter *typeutils.Converter,
|
|
|
|
mediaManager *media.Manager,
|
|
|
|
) *Federator {
|
2021-05-08 13:25:55 +01:00
|
|
|
clock := &Clock{}
|
2023-10-23 10:58:13 +01:00
|
|
|
f := &Federator{
|
2023-05-12 10:15:54 +01:00
|
|
|
db: state.DB,
|
2021-05-21 14:48:26 +01:00
|
|
|
federatingDB: federatingDB,
|
2023-10-23 10:58:13 +01:00
|
|
|
clock: clock,
|
2023-09-23 17:44:11 +01:00
|
|
|
converter: converter,
|
2021-05-08 13:25:55 +01:00
|
|
|
transportController: transportController,
|
2021-12-28 15:36:00 +00:00
|
|
|
mediaManager: mediaManager,
|
2023-10-23 10:58:13 +01:00
|
|
|
Dereferencer: dereferencing.NewDereferencer(state, converter, transportController, mediaManager),
|
2021-05-08 13:25:55 +01:00
|
|
|
}
|
2021-05-21 14:48:26 +01:00
|
|
|
actor := newFederatingActor(f, f, federatingDB, clock)
|
2021-05-08 13:25:55 +01:00
|
|
|
f.actor = actor
|
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
2023-10-23 10:58:13 +01:00
|
|
|
// FederatingActor returns the underlying pub.FederatingActor, which can be used to send activities, and serve actors at inboxes/outboxes.
|
|
|
|
func (f *Federator) FederatingActor() pub.FederatingActor {
|
2021-05-08 13:25:55 +01:00
|
|
|
return f.actor
|
|
|
|
}
|
2021-05-21 14:48:26 +01:00
|
|
|
|
2023-10-23 10:58:13 +01:00
|
|
|
// FederatingDB returns the underlying FederatingDB interface.
|
|
|
|
func (f *Federator) FederatingDB() federatingdb.DB {
|
2021-05-21 14:48:26 +01:00
|
|
|
return f.federatingDB
|
|
|
|
}
|
2022-03-07 10:08:26 +00:00
|
|
|
|
2023-10-23 10:58:13 +01:00
|
|
|
// TransportController returns the underlying transport controller.
|
|
|
|
func (f *Federator) TransportController() transport.Controller {
|
2022-03-07 10:08:26 +00:00
|
|
|
return f.transportController
|
|
|
|
}
|