| 
									
										
										
										
											2023-03-12 16:00:57 +01: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 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | package federation | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2025-04-25 15:15:36 +02:00
										 |  |  | 	"code.superseriousbusiness.org/activity/pub" | 
					
						
							| 
									
										
										
										
											2025-04-26 15:34:10 +02:00
										 |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/db" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/federation/dereferencing" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/federation/federatingdb" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/filter/interaction" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/filter/visibility" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/media" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/state" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/transport" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/typeutils" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-23 10:58:13 +01:00
										 |  |  | var _ interface { | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	pub.CommonBehavior | 
					
						
							|  |  |  | 	pub.FederatingProtocol | 
					
						
							| 
									
										
										
										
											2025-01-22 12:42:12 +00:00
										 |  |  | } = (*Federator)(nil) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-23 10:58:13 +01:00
										 |  |  | type Federator struct { | 
					
						
							| 
									
										
										
										
											2025-01-28 20:22:23 +00:00
										 |  |  | 	db           db.DB | 
					
						
							|  |  |  | 	federatingDB federatingdb.DB | 
					
						
							|  |  |  | 	clock        pub.Clock | 
					
						
							|  |  |  | 	converter    *typeutils.Converter | 
					
						
							|  |  |  | 	transport    transport.Controller | 
					
						
							|  |  |  | 	mediaManager *media.Manager | 
					
						
							|  |  |  | 	actor        pub.FederatingActor | 
					
						
							| 
									
										
										
										
											2023-02-03 20:03:05 +00:00
										 |  |  | 	dereferencing.Dereferencer | 
					
						
							| 
									
										
										
										
											2025-01-28 20:22:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// store result of FederatingCallbacks() ahead | 
					
						
							|  |  |  | 	// of time since it's called in every PostInbox(). | 
					
						
							|  |  |  | 	wrapped  pub.FederatingWrappedCallbacks | 
					
						
							|  |  |  | 	callback []any | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02: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, | 
					
						
							| 
									
										
										
										
											2024-03-04 12:30:12 +00:00
										 |  |  | 	visFilter *visibility.Filter, | 
					
						
							| 
									
										
										
										
											2024-07-24 13:27:42 +02:00
										 |  |  | 	intFilter *interaction.Filter, | 
					
						
							| 
									
										
										
										
											2023-10-23 10:58:13 +01:00
										 |  |  | 	mediaManager *media.Manager, | 
					
						
							|  |  |  | ) *Federator { | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	clock := &Clock{} | 
					
						
							| 
									
										
										
										
											2023-10-23 10:58:13 +01:00
										 |  |  | 	f := &Federator{ | 
					
						
							| 
									
										
										
										
											2025-01-28 20:22:23 +00:00
										 |  |  | 		db:           state.DB, | 
					
						
							|  |  |  | 		federatingDB: federatingDB, | 
					
						
							|  |  |  | 		clock:        clock, | 
					
						
							|  |  |  | 		converter:    converter, | 
					
						
							|  |  |  | 		transport:    transportController, | 
					
						
							|  |  |  | 		mediaManager: mediaManager, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-07-24 13:27:42 +02:00
										 |  |  | 		Dereferencer: dereferencing.NewDereferencer( | 
					
						
							|  |  |  | 			state, | 
					
						
							|  |  |  | 			converter, | 
					
						
							|  |  |  | 			transportController, | 
					
						
							|  |  |  | 			visFilter, | 
					
						
							|  |  |  | 			intFilter, | 
					
						
							|  |  |  | 			mediaManager, | 
					
						
							|  |  |  | 		), | 
					
						
							| 
									
										
										
										
											2025-01-28 20:22:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// prepared response to FederatingCallbacks() | 
					
						
							|  |  |  | 		wrapped: pub.FederatingWrappedCallbacks{ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// OnFollow determines what action to take for this | 
					
						
							|  |  |  | 			// particular callback if a Follow Activity is handled. | 
					
						
							|  |  |  | 			// | 
					
						
							|  |  |  | 			// For our implementation, we always want to do nothing | 
					
						
							|  |  |  | 			// because we have internal logic for handling follows. | 
					
						
							|  |  |  | 			OnFollow: pub.OnFollowDoNothing, | 
					
						
							|  |  |  | 		}, | 
					
						
							|  |  |  | 		callback: []any{ | 
					
						
							|  |  |  | 			federatingDB.Like, | 
					
						
							|  |  |  | 			federatingDB.Block, | 
					
						
							|  |  |  | 			federatingDB.Follow, | 
					
						
							|  |  |  | 			federatingDB.Undo, | 
					
						
							|  |  |  | 			federatingDB.Accept, | 
					
						
							|  |  |  | 			federatingDB.Reject, | 
					
						
							|  |  |  | 			federatingDB.Announce, | 
					
						
							|  |  |  | 			federatingDB.Move, | 
					
						
							|  |  |  | 			federatingDB.Flag, | 
					
						
							|  |  |  | 		}, | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2021-05-21 15:48:26 +02:00
										 |  |  | 	actor := newFederatingActor(f, f, federatingDB, clock) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02: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 14:25:55 +02:00
										 |  |  | 	return f.actor | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2021-05-21 15:48:26 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-23 10:58:13 +01:00
										 |  |  | // FederatingDB returns the underlying FederatingDB interface. | 
					
						
							|  |  |  | func (f *Federator) FederatingDB() federatingdb.DB { | 
					
						
							| 
									
										
										
										
											2021-05-21 15:48:26 +02:00
										 |  |  | 	return f.federatingDB | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2022-03-07 11:08:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-23 10:58:13 +01:00
										 |  |  | // TransportController returns the underlying transport controller. | 
					
						
							|  |  |  | func (f *Federator) TransportController() transport.Controller { | 
					
						
							| 
									
										
										
										
											2025-01-28 20:22:23 +00:00
										 |  |  | 	return f.transport | 
					
						
							| 
									
										
										
										
											2022-03-07 11:08:26 +01:00
										 |  |  | } |