2021-03-07 12:05:33 +00:00
|
|
|
/*
|
|
|
|
GoToSocial
|
|
|
|
Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
|
|
|
|
|
|
|
|
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 provides ActivityPub/federation functionality for GoToSocial
|
|
|
|
package federation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net/http"
|
|
|
|
"net/url"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/go-fed/activity/pub"
|
|
|
|
"github.com/go-fed/activity/streams/vocab"
|
|
|
|
"github.com/gotosocial/gotosocial/internal/db"
|
|
|
|
)
|
|
|
|
|
|
|
|
func New(db db.DB) pub.FederatingActor {
|
2021-03-09 16:03:40 +00:00
|
|
|
fa := &API{}
|
|
|
|
return pub.NewFederatingActor(fa, fa, db, fa)
|
2021-03-07 12:05:33 +00:00
|
|
|
}
|
|
|
|
|
2021-03-09 16:03:40 +00:00
|
|
|
type API struct {
|
2021-03-07 12:05:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// AuthenticateGetInbox determines whether the request is for a GET call to the Actor's Inbox.
|
2021-03-09 16:03:40 +00:00
|
|
|
func (fa *API) AuthenticateGetInbox(ctx context.Context, w http.ResponseWriter, r *http.Request) (context.Context, bool, error) {
|
2021-03-07 12:05:33 +00:00
|
|
|
// TODO
|
|
|
|
return nil, false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// AuthenticateGetOutbox determines whether the request is for a GET call to the Actor's Outbox.
|
2021-03-09 16:03:40 +00:00
|
|
|
func (fa *API) AuthenticateGetOutbox(ctx context.Context, w http.ResponseWriter, r *http.Request) (context.Context, bool, error) {
|
2021-03-07 12:05:33 +00:00
|
|
|
// TODO
|
|
|
|
return nil, false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetOutbox returns a proper paginated view of the Outbox for serving in a response.
|
2021-03-09 16:03:40 +00:00
|
|
|
func (fa *API) GetOutbox(ctx context.Context, r *http.Request) (vocab.ActivityStreamsOrderedCollectionPage, error) {
|
2021-03-07 12:05:33 +00:00
|
|
|
// TODO
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewTransport returns a new pub.Transport for federating with peer software.
|
2021-03-09 16:03:40 +00:00
|
|
|
func (fa *API) NewTransport(ctx context.Context, actorBoxIRI *url.URL, gofedAgent string) (pub.Transport, error) {
|
2021-03-07 12:05:33 +00:00
|
|
|
// TODO
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-03-09 16:03:40 +00:00
|
|
|
func (fa *API) PostInboxRequestBodyHook(ctx context.Context, r *http.Request, activity pub.Activity) (context.Context, error) {
|
2021-03-07 12:05:33 +00:00
|
|
|
// TODO
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-03-09 16:03:40 +00:00
|
|
|
func (fa *API) AuthenticatePostInbox(ctx context.Context, w http.ResponseWriter, r *http.Request) (context.Context, bool, error) {
|
2021-03-07 12:05:33 +00:00
|
|
|
// TODO
|
|
|
|
return nil, false, nil
|
|
|
|
}
|
|
|
|
|
2021-03-09 16:03:40 +00:00
|
|
|
func (fa *API) Blocked(ctx context.Context, actorIRIs []*url.URL) (bool, error) {
|
2021-03-07 12:05:33 +00:00
|
|
|
// TODO
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2021-03-09 16:03:40 +00:00
|
|
|
func (fa *API) FederatingCallbacks(ctx context.Context) (pub.FederatingWrappedCallbacks, []interface{}, error) {
|
2021-03-07 12:05:33 +00:00
|
|
|
// TODO
|
|
|
|
return pub.FederatingWrappedCallbacks{}, nil, nil
|
|
|
|
}
|
|
|
|
|
2021-03-09 16:03:40 +00:00
|
|
|
func (fa *API) DefaultCallback(ctx context.Context, activity pub.Activity) error {
|
2021-03-07 12:05:33 +00:00
|
|
|
// TODO
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-03-09 16:03:40 +00:00
|
|
|
func (fa *API) MaxInboxForwardingRecursionDepth(ctx context.Context) int {
|
2021-03-07 12:05:33 +00:00
|
|
|
// TODO
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2021-03-09 16:03:40 +00:00
|
|
|
func (fa *API) MaxDeliveryRecursionDepth(ctx context.Context) int {
|
2021-03-07 12:05:33 +00:00
|
|
|
// TODO
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2021-03-09 16:03:40 +00:00
|
|
|
func (fa *API) FilterForwarding(ctx context.Context, potentialRecipients []*url.URL, a pub.Activity) ([]*url.URL, error) {
|
2021-03-07 12:05:33 +00:00
|
|
|
// TODO
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-03-09 16:03:40 +00:00
|
|
|
func (fa *API) GetInbox(ctx context.Context, r *http.Request) (vocab.ActivityStreamsOrderedCollectionPage, error) {
|
2021-03-07 12:05:33 +00:00
|
|
|
// TODO
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-03-09 16:03:40 +00:00
|
|
|
func (fa *API) Now() time.Time {
|
2021-03-07 12:05:33 +00:00
|
|
|
return time.Now()
|
|
|
|
}
|