mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 18:12:24 -05:00 
			
		
		
		
	* start work on accounts module * plodding away on the accounts endpoint * groundwork for other account routes * add password validator * validation utils * require account approval flags * comments * comments * go fmt * comments * add distributor stub * rename api to federator * tidy a bit * validate new account requests * rename r router * comments * add domain blocks * add some more shortcuts * add some more shortcuts * check email + username availability * email block checking for signups * chunking away at it * tick off a few more things * some fiddling with tests * add mock package * relocate repo * move mocks around * set app id on new signups * initialize oauth server properly * rename oauth server * proper mocking tests * go fmt ./... * add required fields * change name of func * move validation to account.go * more tests! * add some file utility tools * add mediaconfig * new shortcut * add some more fields * add followrequest model * add notify * update mastotypes * mock out storage interface * start building media interface * start on update credentials * mess about with media a bit more * test image manipulation * media more or less working * account update nearly working * rearranging my package ;) ;) ;) * phew big stuff!!!! * fix type checking * *fiddles* * Add CreateTables func * account registration flow working * tidy * script to step through auth flow * add a lil helper for generating user uris * fiddling with federation a bit * update progress * Tidying and linting
		
			
				
	
	
		
			119 lines
		
	
	
	
		
			3.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			119 lines
		
	
	
	
		
			3.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
|    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/sirupsen/logrus"
 | |
| 	"github.com/superseriousbusiness/gotosocial/internal/db"
 | |
| )
 | |
| 
 | |
| // New returns a go-fed compatible federating actor
 | |
| func New(db db.DB, log *logrus.Logger) pub.FederatingActor {
 | |
| 	f := &Federator{
 | |
| 		db: db,
 | |
| 	}
 | |
| 	return pub.NewFederatingActor(f, f, db.Federation(), f)
 | |
| }
 | |
| 
 | |
| // Federator implements several go-fed interfaces in one convenient location
 | |
| type Federator struct {
 | |
| 	db db.DB
 | |
| }
 | |
| 
 | |
| // AuthenticateGetInbox determines whether the request is for a GET call to the Actor's Inbox.
 | |
| func (f *Federator) AuthenticateGetInbox(ctx context.Context, w http.ResponseWriter, r *http.Request) (context.Context, bool, error) {
 | |
| 	// TODO
 | |
| 	// use context.WithValue() and context.Value() to set and get values through here
 | |
| 	return nil, false, nil
 | |
| }
 | |
| 
 | |
| // AuthenticateGetOutbox determines whether the request is for a GET call to the Actor's Outbox.
 | |
| func (f *Federator) AuthenticateGetOutbox(ctx context.Context, w http.ResponseWriter, r *http.Request) (context.Context, bool, error) {
 | |
| 	// TODO
 | |
| 	return nil, false, nil
 | |
| }
 | |
| 
 | |
| // GetOutbox returns a proper paginated view of the Outbox for serving in a response.
 | |
| func (f *Federator) GetOutbox(ctx context.Context, r *http.Request) (vocab.ActivityStreamsOrderedCollectionPage, error) {
 | |
| 	// TODO
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| // NewTransport returns a new pub.Transport for federating with peer software.
 | |
| func (f *Federator) NewTransport(ctx context.Context, actorBoxIRI *url.URL, gofedAgent string) (pub.Transport, error) {
 | |
| 	// TODO
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| func (f *Federator) PostInboxRequestBodyHook(ctx context.Context, r *http.Request, activity pub.Activity) (context.Context, error) {
 | |
| 	// TODO
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| func (f *Federator) AuthenticatePostInbox(ctx context.Context, w http.ResponseWriter, r *http.Request) (context.Context, bool, error) {
 | |
| 	// TODO
 | |
| 	return nil, false, nil
 | |
| }
 | |
| 
 | |
| func (f *Federator) Blocked(ctx context.Context, actorIRIs []*url.URL) (bool, error) {
 | |
| 	// TODO
 | |
| 	return false, nil
 | |
| }
 | |
| 
 | |
| func (f *Federator) FederatingCallbacks(ctx context.Context) (pub.FederatingWrappedCallbacks, []interface{}, error) {
 | |
| 	// TODO
 | |
| 	return pub.FederatingWrappedCallbacks{}, nil, nil
 | |
| }
 | |
| 
 | |
| func (f *Federator) DefaultCallback(ctx context.Context, activity pub.Activity) error {
 | |
| 	// TODO
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (f *Federator) MaxInboxForwardingRecursionDepth(ctx context.Context) int {
 | |
| 	// TODO
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (f *Federator) MaxDeliveryRecursionDepth(ctx context.Context) int {
 | |
| 	// TODO
 | |
| 	return 0
 | |
| }
 | |
| 
 | |
| func (f *Federator) FilterForwarding(ctx context.Context, potentialRecipients []*url.URL, a pub.Activity) ([]*url.URL, error) {
 | |
| 	// TODO
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| func (f *Federator) GetInbox(ctx context.Context, r *http.Request) (vocab.ActivityStreamsOrderedCollectionPage, error) {
 | |
| 	// TODO
 | |
| 	return nil, nil
 | |
| }
 | |
| 
 | |
| func (f *Federator) Now() time.Time {
 | |
| 	return time.Now()
 | |
| }
 |