| 
									
										
										
										
											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-07-05 13:23:03 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | package admin | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2025-04-26 15:34:10 +02:00
										 |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/cleaner" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/email" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/federation" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/media" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/processing/common" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/state" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/subscriptions" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/transport" | 
					
						
							|  |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/typeutils" | 
					
						
							| 
									
										
										
										
											2021-07-05 13:23:03 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | type Processor struct { | 
					
						
							| 
									
										
										
										
											2024-06-26 15:01:16 +00:00
										 |  |  | 	// common processor logic | 
					
						
							|  |  |  | 	c *common.Processor | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-01-08 11:29:40 +01:00
										 |  |  | 	state         *state.State | 
					
						
							|  |  |  | 	cleaner       *cleaner.Cleaner | 
					
						
							|  |  |  | 	subscriptions *subscriptions.Subscriptions | 
					
						
							|  |  |  | 	converter     *typeutils.Converter | 
					
						
							|  |  |  | 	federator     *federation.Federator | 
					
						
							|  |  |  | 	media         *media.Manager | 
					
						
							|  |  |  | 	transport     transport.Controller | 
					
						
							|  |  |  | 	email         email.Sender | 
					
						
							| 
									
										
										
										
											2021-07-05 13:23:03 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // New returns a new admin processor. | 
					
						
							| 
									
										
										
										
											2023-10-30 18:35:11 +01:00
										 |  |  | func New( | 
					
						
							| 
									
										
										
										
											2024-06-26 15:01:16 +00:00
										 |  |  | 	common *common.Processor, | 
					
						
							| 
									
										
										
										
											2023-10-30 18:35:11 +01:00
										 |  |  | 	state *state.State, | 
					
						
							|  |  |  | 	cleaner *cleaner.Cleaner, | 
					
						
							| 
									
										
										
										
											2025-01-08 11:29:40 +01:00
										 |  |  | 	subscriptions *subscriptions.Subscriptions, | 
					
						
							| 
									
										
										
										
											2024-06-26 15:01:16 +00:00
										 |  |  | 	federator *federation.Federator, | 
					
						
							| 
									
										
										
										
											2023-10-30 18:35:11 +01:00
										 |  |  | 	converter *typeutils.Converter, | 
					
						
							|  |  |  | 	mediaManager *media.Manager, | 
					
						
							|  |  |  | 	transportController transport.Controller, | 
					
						
							|  |  |  | 	emailSender email.Sender, | 
					
						
							|  |  |  | ) Processor { | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	return Processor{ | 
					
						
							| 
									
										
										
										
											2025-01-08 11:29:40 +01:00
										 |  |  | 		c:             common, | 
					
						
							|  |  |  | 		state:         state, | 
					
						
							|  |  |  | 		cleaner:       cleaner, | 
					
						
							|  |  |  | 		subscriptions: subscriptions, | 
					
						
							|  |  |  | 		converter:     converter, | 
					
						
							|  |  |  | 		federator:     federator, | 
					
						
							|  |  |  | 		media:         mediaManager, | 
					
						
							|  |  |  | 		transport:     transportController, | 
					
						
							|  |  |  | 		email:         emailSender, | 
					
						
							| 
									
										
										
										
											2021-07-05 13:23:03 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } |