| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    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 account | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							|  |  |  | 	"strings" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/gin-gonic/gin" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/api" | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/config" | 
					
						
							| 
									
										
										
										
											2021-05-30 13:12:00 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/processing" | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/router" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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" | 
					
						
							|  |  |  | 	// 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" | 
					
						
							|  |  |  | 	// MediaOnlyKey is for specifying that only statuses with media should be returned in a list of returned statuses by an account. | 
					
						
							|  |  |  | 	MediaOnlyKey = "only_media" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | 	// IDKey is the key to use for retrieving account ID in requests | 
					
						
							|  |  |  | 	IDKey = "id" | 
					
						
							|  |  |  | 	// BasePath is the base API path for this module | 
					
						
							|  |  |  | 	BasePath = "/api/v1/accounts" | 
					
						
							|  |  |  | 	// 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" | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | // Module implements the ClientAPIModule interface for account-related actions | 
					
						
							|  |  |  | type Module struct { | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	config    *config.Config | 
					
						
							| 
									
										
										
										
											2021-05-30 13:12:00 +02:00
										 |  |  | 	processor processing.Processor | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // New returns a new account module | 
					
						
							| 
									
										
										
										
											2021-10-11 05:37:33 -07:00
										 |  |  | func New(config *config.Config, processor processing.Processor) api.ClientModule { | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | 	return &Module{ | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 		config:    config, | 
					
						
							|  |  |  | 		processor: processor, | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Route attaches all routes from this module to the given router | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | func (m *Module) Route(r router.Router) error { | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 	// create account | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | 	r.AttachHandler(http.MethodPost, BasePath, m.AccountCreatePOSTHandler) | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// get account | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | 	r.AttachHandler(http.MethodGet, BasePathWithID, m.muxHandler) | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// modify account | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | 	r.AttachHandler(http.MethodPatch, BasePathWithID, m.muxHandler) | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// get account's statuses | 
					
						
							| 
									
										
										
										
											2021-05-17 19:06:58 +02:00
										 |  |  | 	r.AttachHandler(http.MethodGet, GetStatusesPath, m.AccountStatusesGETHandler) | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// get following or followers | 
					
						
							| 
									
										
										
										
											2021-05-17 19:06:58 +02:00
										 |  |  | 	r.AttachHandler(http.MethodGet, GetFollowersPath, m.AccountFollowersGETHandler) | 
					
						
							| 
									
										
										
										
											2021-05-21 15:48:26 +02:00
										 |  |  | 	r.AttachHandler(http.MethodGet, GetFollowingPath, m.AccountFollowingGETHandler) | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// get relationship with account | 
					
						
							| 
									
										
										
										
											2021-05-21 15:48:26 +02:00
										 |  |  | 	r.AttachHandler(http.MethodGet, GetRelationshipsPath, m.AccountRelationshipsGETHandler) | 
					
						
							| 
									
										
										
										
											2021-07-11 16:22:21 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// follow or unfollow account | 
					
						
							|  |  |  | 	r.AttachHandler(http.MethodPost, FollowPath, m.AccountFollowPOSTHandler) | 
					
						
							|  |  |  | 	r.AttachHandler(http.MethodPost, UnfollowPath, m.AccountUnfollowPOSTHandler) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// block or unblock account | 
					
						
							|  |  |  | 	r.AttachHandler(http.MethodPost, BlockPath, m.AccountBlockPOSTHandler) | 
					
						
							|  |  |  | 	r.AttachHandler(http.MethodPost, UnblockPath, m.AccountUnblockPOSTHandler) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | func (m *Module) muxHandler(c *gin.Context) { | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	ru := c.Request.RequestURI | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 	switch c.Request.Method { | 
					
						
							|  |  |  | 	case http.MethodGet: | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | 		if strings.HasPrefix(ru, VerifyPath) { | 
					
						
							|  |  |  | 			m.AccountVerifyGETHandler(c) | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | 			m.AccountGETHandler(c) | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	case http.MethodPatch: | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | 		if strings.HasPrefix(ru, UpdateCredentialsPath) { | 
					
						
							|  |  |  | 			m.AccountUpdateCredentialsPATCHHandler(c) | 
					
						
							| 
									
										
										
										
											2021-04-19 19:42:19 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } |