| 
									
										
										
										
											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-04-01 20:46:45 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | package accounts | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/gin-gonic/gin" | 
					
						
							| 
									
										
										
										
											2021-05-30 13:12:00 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/processing" | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const ( | 
					
						
							| 
									
										
										
										
											2021-05-17 19:06:58 +02:00
										 |  |  | 	// LimitKey is for setting the return amount limit for eg., requesting an account's statuses | 
					
						
							|  |  |  | 	LimitKey = "limit" | 
					
						
							|  |  |  | 	// ExcludeRepliesKey is for specifying whether to exclude replies in a list of returned statuses by an account. | 
					
						
							|  |  |  | 	ExcludeRepliesKey = "exclude_replies" | 
					
						
							| 
									
										
										
										
											2022-04-15 14:33:01 +02:00
										 |  |  | 	// ExcludeReblogsKey is for specifying whether to exclude reblogs in a list of returned statuses by an account. | 
					
						
							|  |  |  | 	ExcludeReblogsKey = "exclude_reblogs" | 
					
						
							| 
									
										
										
										
											2021-05-17 19:06:58 +02:00
										 |  |  | 	// PinnedKey is for specifying whether to include pinned statuses in a list of returned statuses by an account. | 
					
						
							|  |  |  | 	PinnedKey = "pinned" | 
					
						
							|  |  |  | 	// MaxIDKey is for specifying the maximum ID of the status to retrieve. | 
					
						
							|  |  |  | 	MaxIDKey = "max_id" | 
					
						
							| 
									
										
										
										
											2021-10-24 11:57:39 +02:00
										 |  |  | 	// MinIDKey is for specifying the minimum ID of the status to retrieve. | 
					
						
							|  |  |  | 	MinIDKey = "min_id" | 
					
						
							|  |  |  | 	// OnlyMediaKey is for specifying that only statuses with media should be returned in a list of returned statuses by an account. | 
					
						
							|  |  |  | 	OnlyMediaKey = "only_media" | 
					
						
							|  |  |  | 	// OnlyPublicKey is for specifying that only statuses with visibility public should be returned in a list of returned statuses by account. | 
					
						
							|  |  |  | 	OnlyPublicKey = "only_public" | 
					
						
							| 
									
										
										
										
											2021-05-17 19:06:58 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | 	// IDKey is the key to use for retrieving account ID in requests | 
					
						
							|  |  |  | 	IDKey = "id" | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	// BasePath is the base API path for this module, excluding the 'api' prefix | 
					
						
							|  |  |  | 	BasePath = "/v1/accounts" | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | 	// BasePathWithID is the base path for this module with the ID key | 
					
						
							|  |  |  | 	BasePathWithID = BasePath + "/:" + IDKey | 
					
						
							|  |  |  | 	// VerifyPath is for verifying account credentials | 
					
						
							|  |  |  | 	VerifyPath = BasePath + "/verify_credentials" | 
					
						
							|  |  |  | 	// UpdateCredentialsPath is for updating account credentials | 
					
						
							|  |  |  | 	UpdateCredentialsPath = BasePath + "/update_credentials" | 
					
						
							| 
									
										
										
										
											2021-05-17 19:06:58 +02:00
										 |  |  | 	// GetStatusesPath is for showing an account's statuses | 
					
						
							|  |  |  | 	GetStatusesPath = BasePathWithID + "/statuses" | 
					
						
							|  |  |  | 	// GetFollowersPath is for showing an account's followers | 
					
						
							|  |  |  | 	GetFollowersPath = BasePathWithID + "/followers" | 
					
						
							| 
									
										
										
										
											2021-05-21 15:48:26 +02:00
										 |  |  | 	// GetFollowingPath is for showing account's that an account follows. | 
					
						
							|  |  |  | 	GetFollowingPath = BasePathWithID + "/following" | 
					
						
							|  |  |  | 	// GetRelationshipsPath is for showing an account's relationship with other accounts | 
					
						
							|  |  |  | 	GetRelationshipsPath = BasePath + "/relationships" | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 	// FollowPath is for POSTing new follows to, and updating existing follows | 
					
						
							|  |  |  | 	FollowPath = BasePathWithID + "/follow" | 
					
						
							|  |  |  | 	// UnfollowPath is for POSTing an unfollow | 
					
						
							|  |  |  | 	UnfollowPath = BasePathWithID + "/unfollow" | 
					
						
							|  |  |  | 	// BlockPath is for creating a block of an account | 
					
						
							|  |  |  | 	BlockPath = BasePathWithID + "/block" | 
					
						
							|  |  |  | 	// UnblockPath is for removing a block of an account | 
					
						
							|  |  |  | 	UnblockPath = BasePathWithID + "/unblock" | 
					
						
							| 
									
										
										
										
											2022-03-15 16:12:35 +01:00
										 |  |  | 	// DeleteAccountPath is for deleting one's account via the API | 
					
						
							|  |  |  | 	DeleteAccountPath = BasePath + "/delete" | 
					
						
							| 
									
										
										
										
											2023-05-25 10:37:38 +02:00
										 |  |  | 	// ListsPath is for seeing which lists an account is. | 
					
						
							|  |  |  | 	ListsPath = BasePathWithID + "/lists" | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | type Module struct { | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | 	processor *processing.Processor | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-02-22 16:05:26 +01:00
										 |  |  | func New(processor *processing.Processor) *Module { | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | 	return &Module{ | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 		processor: processor, | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | func (m *Module) Route(attachHandler func(method string, path string, f ...gin.HandlerFunc) gin.IRoutes) { | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 	// create account | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	attachHandler(http.MethodPost, BasePath, m.AccountCreatePOSTHandler) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// get account | 
					
						
							|  |  |  | 	attachHandler(http.MethodGet, BasePathWithID, m.AccountGETHandler) | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-15 16:12:35 +01:00
										 |  |  | 	// delete account | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	attachHandler(http.MethodPost, DeleteAccountPath, m.AccountDeletePOSTHandler) | 
					
						
							| 
									
										
										
										
											2022-03-15 16:12:35 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	// verify account | 
					
						
							|  |  |  | 	attachHandler(http.MethodGet, VerifyPath, m.AccountVerifyGETHandler) | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// modify account | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	attachHandler(http.MethodPatch, UpdateCredentialsPath, m.AccountUpdateCredentialsPATCHHandler) | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// get account's statuses | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	attachHandler(http.MethodGet, GetStatusesPath, m.AccountStatusesGETHandler) | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// get following or followers | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	attachHandler(http.MethodGet, GetFollowersPath, m.AccountFollowersGETHandler) | 
					
						
							|  |  |  | 	attachHandler(http.MethodGet, GetFollowingPath, m.AccountFollowingGETHandler) | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// get relationship with account | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	attachHandler(http.MethodGet, GetRelationshipsPath, m.AccountRelationshipsGETHandler) | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// follow or unfollow account | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	attachHandler(http.MethodPost, FollowPath, m.AccountFollowPOSTHandler) | 
					
						
							|  |  |  | 	attachHandler(http.MethodPost, UnfollowPath, m.AccountUnfollowPOSTHandler) | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// block or unblock account | 
					
						
							| 
									
										
										
										
											2023-01-02 13:10:50 +01:00
										 |  |  | 	attachHandler(http.MethodPost, BlockPath, m.AccountBlockPOSTHandler) | 
					
						
							|  |  |  | 	attachHandler(http.MethodPost, UnblockPath, m.AccountUnblockPOSTHandler) | 
					
						
							| 
									
										
										
										
											2023-05-25 10:37:38 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// account lists | 
					
						
							|  |  |  | 	attachHandler(http.MethodGet, ListsPath, m.AccountListsGETHandler) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | } |