2021-05-08 13:25:55 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2021-12-20 17:42:19 +00:00
|
|
|
Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
|
2021-05-08 13:25:55 +01:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package federation
|
|
|
|
|
|
|
|
import (
|
2021-07-05 12:23:03 +01:00
|
|
|
"context"
|
2021-05-08 13:25:55 +01:00
|
|
|
"net/url"
|
|
|
|
|
2021-11-13 16:29:43 +00:00
|
|
|
"github.com/superseriousbusiness/activity/pub"
|
2021-08-10 12:32:39 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/ap"
|
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"
|
2022-04-26 17:10:11 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2021-06-27 15:52:18 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
|
2021-07-05 12:23:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/media"
|
2021-05-08 13:25:55 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/transport"
|
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/typeutils"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Federator wraps various interfaces and functions to manage activitypub federation from gotosocial
|
|
|
|
type Federator interface {
|
|
|
|
// FederatingActor returns the underlying pub.FederatingActor, which can be used to send activities, and serve actors at inboxes/outboxes.
|
|
|
|
FederatingActor() pub.FederatingActor
|
2021-05-21 14:48:26 +01:00
|
|
|
// FederatingDB returns the underlying FederatingDB interface.
|
2021-05-27 15:06:24 +01:00
|
|
|
FederatingDB() federatingdb.DB
|
2022-03-07 10:08:26 +00:00
|
|
|
// TransportController returns the underlying transport controller.
|
|
|
|
TransportController() transport.Controller
|
2021-08-10 12:32:39 +01:00
|
|
|
|
2021-05-08 13:25:55 +01:00
|
|
|
// AuthenticateFederatedRequest can be used to check the authenticity of incoming http-signed requests for federating resources.
|
|
|
|
// The given username will be used to create a transport for making outgoing requests. See the implementation for more detailed comments.
|
2021-07-05 12:23:03 +01:00
|
|
|
//
|
|
|
|
// If the request is valid and passes authentication, the URL of the key owner ID will be returned, as well as true, and nil.
|
|
|
|
//
|
|
|
|
// If the request does not pass authentication, or there's a domain block, nil, false, nil will be returned.
|
|
|
|
//
|
|
|
|
// If something goes wrong during authentication, nil, false, and an error will be returned.
|
2022-04-26 17:10:11 +01:00
|
|
|
AuthenticateFederatedRequest(ctx context.Context, username string) (*url.URL, gtserror.WithCode)
|
2021-08-10 12:32:39 +01:00
|
|
|
|
2022-11-29 09:24:55 +00:00
|
|
|
/*
|
|
|
|
dereferencing functions
|
|
|
|
*/
|
2022-09-25 12:09:41 +01:00
|
|
|
DereferenceRemoteThread(ctx context.Context, username string, statusURI *url.URL, status *gtsmodel.Status, statusable ap.Statusable)
|
2021-08-25 14:34:33 +01:00
|
|
|
DereferenceAnnounce(ctx context.Context, announce *gtsmodel.Status, requestingUsername string) error
|
2022-11-29 09:24:55 +00:00
|
|
|
GetAccount(ctx context.Context, params dereferencing.GetAccountParams) (*gtsmodel.Account, error)
|
|
|
|
GetStatus(ctx context.Context, username string, remoteStatusID *url.URL, refetch, includeParent bool) (*gtsmodel.Status, ap.Statusable, error)
|
2021-09-14 11:23:56 +01:00
|
|
|
EnrichRemoteStatus(ctx context.Context, username string, status *gtsmodel.Status, includeParent bool) (*gtsmodel.Status, error)
|
2021-08-25 14:34:33 +01:00
|
|
|
GetRemoteInstance(ctx context.Context, username string, remoteInstanceURI *url.URL) (*gtsmodel.Instance, error)
|
2021-08-10 12:32:39 +01:00
|
|
|
|
2021-06-27 10:46:07 +01:00
|
|
|
// Handshaking returns true if the given username is currently in the process of dereferencing the remoteAccountID.
|
2021-08-25 14:34:33 +01:00
|
|
|
Handshaking(ctx context.Context, username string, remoteAccountID *url.URL) bool
|
2021-05-08 13:25:55 +01:00
|
|
|
pub.CommonBehavior
|
|
|
|
pub.FederatingProtocol
|
|
|
|
}
|
|
|
|
|
|
|
|
type federator struct {
|
|
|
|
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
|
|
|
|
typeConverter typeutils.TypeConverter
|
|
|
|
transportController transport.Controller
|
2021-08-10 12:32:39 +01:00
|
|
|
dereferencer dereferencing.Dereferencer
|
2021-12-28 15:36:00 +00:00
|
|
|
mediaManager media.Manager
|
2021-05-08 13:25:55 +01:00
|
|
|
actor pub.FederatingActor
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewFederator returns a new federator
|
2021-12-28 15:36:00 +00:00
|
|
|
func NewFederator(db db.DB, federatingDB federatingdb.DB, transportController transport.Controller, typeConverter typeutils.TypeConverter, mediaManager media.Manager) Federator {
|
|
|
|
dereferencer := dereferencing.NewDereferencer(db, typeConverter, transportController, mediaManager)
|
2021-08-10 12:32:39 +01:00
|
|
|
|
2021-05-08 13:25:55 +01:00
|
|
|
clock := &Clock{}
|
|
|
|
f := &federator{
|
|
|
|
db: db,
|
2021-05-21 14:48:26 +01:00
|
|
|
federatingDB: federatingDB,
|
2021-05-08 13:25:55 +01:00
|
|
|
clock: &Clock{},
|
|
|
|
typeConverter: typeConverter,
|
|
|
|
transportController: transportController,
|
2021-08-10 12:32:39 +01:00
|
|
|
dereferencer: dereferencer,
|
2021-12-28 15:36:00 +00:00
|
|
|
mediaManager: 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
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *federator) FederatingActor() pub.FederatingActor {
|
|
|
|
return f.actor
|
|
|
|
}
|
2021-05-21 14:48:26 +01:00
|
|
|
|
2021-05-27 15:06:24 +01:00
|
|
|
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
|
|
|
|
|
|
|
func (f *federator) TransportController() transport.Controller {
|
|
|
|
return f.transportController
|
|
|
|
}
|