| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  |    Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02: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 user | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/api" | 
					
						
							| 
									
										
										
										
											2021-05-30 13:12:00 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/processing" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/router" | 
					
						
							| 
									
										
										
										
											2021-12-20 15:19:53 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/uris" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							|  |  |  | 	// UsernameKey is for account usernames. | 
					
						
							|  |  |  | 	UsernameKey = "username" | 
					
						
							| 
									
										
										
										
											2021-05-21 15:48:26 +02:00
										 |  |  | 	// StatusIDKey is for status IDs | 
					
						
							|  |  |  | 	StatusIDKey = "status" | 
					
						
							| 
									
										
										
										
											2021-08-10 13:32:39 +02:00
										 |  |  | 	// OnlyOtherAccountsKey is for filtering status responses. | 
					
						
							|  |  |  | 	OnlyOtherAccountsKey = "only_other_accounts" | 
					
						
							|  |  |  | 	// MinIDKey is for filtering status responses. | 
					
						
							|  |  |  | 	MinIDKey = "min_id" | 
					
						
							| 
									
										
										
										
											2021-10-24 11:57:39 +02:00
										 |  |  | 	// MaxIDKey is for filtering status responses. | 
					
						
							|  |  |  | 	MaxIDKey = "max_id" | 
					
						
							| 
									
										
										
										
											2021-08-10 13:32:39 +02:00
										 |  |  | 	// PageKey is for filtering status responses. | 
					
						
							|  |  |  | 	PageKey = "page" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	// UsersBasePath is the base path for serving information about Users eg https://example.org/users | 
					
						
							| 
									
										
										
										
											2021-12-20 15:19:53 +01:00
										 |  |  | 	UsersBasePath = "/" + uris.UsersPath | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	// UsersBasePathWithUsername is just the users base path with the Username key in it. | 
					
						
							|  |  |  | 	// Use this anywhere you need to know the username of the user being queried. | 
					
						
							|  |  |  | 	// Eg https://example.org/users/:username | 
					
						
							|  |  |  | 	UsersBasePathWithUsername = UsersBasePath + "/:" + UsernameKey | 
					
						
							| 
									
										
										
										
											2021-06-26 16:21:40 +02:00
										 |  |  | 	// UsersPublicKeyPath is a path to a user's public key, for serving bare minimum AP representations. | 
					
						
							| 
									
										
										
										
											2021-12-20 15:19:53 +01:00
										 |  |  | 	UsersPublicKeyPath = UsersBasePathWithUsername + "/" + uris.PublicKeyPath | 
					
						
							| 
									
										
										
										
											2021-05-15 11:58:11 +02:00
										 |  |  | 	// UsersInboxPath is for serving POST requests to a user's inbox with the given username key. | 
					
						
							| 
									
										
										
										
											2021-12-20 15:19:53 +01:00
										 |  |  | 	UsersInboxPath = UsersBasePathWithUsername + "/" + uris.InboxPath | 
					
						
							| 
									
										
										
										
											2021-10-24 11:57:39 +02:00
										 |  |  | 	// UsersOutboxPath is for serving GET requests to a user's outbox with the given username key. | 
					
						
							| 
									
										
										
										
											2021-12-20 15:19:53 +01:00
										 |  |  | 	UsersOutboxPath = UsersBasePathWithUsername + "/" + uris.OutboxPath | 
					
						
							| 
									
										
										
										
											2021-05-21 15:48:26 +02:00
										 |  |  | 	// UsersFollowersPath is for serving GET request's to a user's followers list, with the given username key. | 
					
						
							| 
									
										
										
										
											2021-12-20 15:19:53 +01:00
										 |  |  | 	UsersFollowersPath = UsersBasePathWithUsername + "/" + uris.FollowersPath | 
					
						
							| 
									
										
										
										
											2021-05-23 18:07:04 +02:00
										 |  |  | 	// UsersFollowingPath is for serving GET request's to a user's following list, with the given username key. | 
					
						
							| 
									
										
										
										
											2021-12-20 15:19:53 +01:00
										 |  |  | 	UsersFollowingPath = UsersBasePathWithUsername + "/" + uris.FollowingPath | 
					
						
							| 
									
										
										
										
											2021-05-21 15:48:26 +02:00
										 |  |  | 	// UsersStatusPath is for serving GET requests to a particular status by a user, with the given username key and status ID | 
					
						
							| 
									
										
										
										
											2021-12-20 15:19:53 +01:00
										 |  |  | 	UsersStatusPath = UsersBasePathWithUsername + "/" + uris.StatusesPath + "/:" + StatusIDKey | 
					
						
							| 
									
										
										
										
											2021-08-10 13:32:39 +02:00
										 |  |  | 	// UsersStatusRepliesPath is for serving the replies collection of a status. | 
					
						
							|  |  |  | 	UsersStatusRepliesPath = UsersStatusPath + "/replies" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Module implements the FederationAPIModule interface | 
					
						
							|  |  |  | type Module struct { | 
					
						
							| 
									
										
										
										
											2021-05-30 13:12:00 +02:00
										 |  |  | 	processor processing.Processor | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // New returns a new auth module | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | func New(processor processing.Processor) api.FederationModule { | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	return &Module{ | 
					
						
							|  |  |  | 		processor: processor, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Route satisfies the RESTAPIModule interface | 
					
						
							|  |  |  | func (m *Module) Route(s router.Router) error { | 
					
						
							|  |  |  | 	s.AttachHandler(http.MethodGet, UsersBasePathWithUsername, m.UsersGETHandler) | 
					
						
							| 
									
										
										
										
											2021-05-15 11:58:11 +02:00
										 |  |  | 	s.AttachHandler(http.MethodPost, UsersInboxPath, m.InboxPOSTHandler) | 
					
						
							| 
									
										
										
										
											2021-05-21 15:48:26 +02:00
										 |  |  | 	s.AttachHandler(http.MethodGet, UsersFollowersPath, m.FollowersGETHandler) | 
					
						
							| 
									
										
										
										
											2021-05-23 18:07:04 +02:00
										 |  |  | 	s.AttachHandler(http.MethodGet, UsersFollowingPath, m.FollowingGETHandler) | 
					
						
							| 
									
										
										
										
											2021-05-21 15:48:26 +02:00
										 |  |  | 	s.AttachHandler(http.MethodGet, UsersStatusPath, m.StatusGETHandler) | 
					
						
							| 
									
										
										
										
											2021-06-26 16:21:40 +02:00
										 |  |  | 	s.AttachHandler(http.MethodGet, UsersPublicKeyPath, m.PublicKeyGETHandler) | 
					
						
							| 
									
										
										
										
											2021-08-10 13:32:39 +02:00
										 |  |  | 	s.AttachHandler(http.MethodGet, UsersStatusRepliesPath, m.StatusRepliesGETHandler) | 
					
						
							| 
									
										
										
										
											2021-10-24 11:57:39 +02:00
										 |  |  | 	s.AttachHandler(http.MethodGet, UsersOutboxPath, m.OutboxGETHandler) | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	return nil | 
					
						
							|  |  |  | } |