| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | /* | 
					
						
							|  |  |  |    GoToSocial | 
					
						
							| 
									
										
										
										
											2021-12-20 18:42:19 +01:00
										 |  |  |    Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +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 account | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"errors" | 
					
						
							|  |  |  | 	"net" | 
					
						
							|  |  |  | 	"net/http" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	"github.com/sirupsen/logrus" | 
					
						
							|  |  |  | 	"github.com/spf13/viper" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	"github.com/gin-gonic/gin" | 
					
						
							| 
									
										
										
										
											2021-12-11 17:50:00 +01:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/api" | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/api/model" | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/config" | 
					
						
							|  |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/oauth" | 
					
						
							| 
									
										
										
										
											2021-09-01 18:29:25 +02:00
										 |  |  | 	"github.com/superseriousbusiness/gotosocial/internal/validate" | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-02 19:06:44 +02:00
										 |  |  | // AccountCreatePOSTHandler swagger:operation POST /api/v1/accounts accountCreate | 
					
						
							| 
									
										
										
										
											2021-07-31 17:49:59 +02:00
										 |  |  | // | 
					
						
							|  |  |  | // Create a new account using an application token. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2021-08-02 19:06:44 +02:00
										 |  |  | // The parameters can also be given in the body of the request, as JSON, if the content-type is set to 'application/json'. | 
					
						
							|  |  |  | // The parameters can also be given in the body of the request, as XML, if the content-type is set to 'application/xml'. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2021-07-31 17:49:59 +02:00
										 |  |  | // --- | 
					
						
							|  |  |  | // tags: | 
					
						
							|  |  |  | // - accounts | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // consumes: | 
					
						
							|  |  |  | // - application/json | 
					
						
							|  |  |  | // - application/xml | 
					
						
							|  |  |  | // - application/x-www-form-urlencoded | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // produces: | 
					
						
							|  |  |  | // - application/json | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // security: | 
					
						
							|  |  |  | // - OAuth2 Application: | 
					
						
							|  |  |  | //   - write:accounts | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // responses: | 
					
						
							|  |  |  | //   '200': | 
					
						
							|  |  |  | //     description: "An OAuth2 access token for the newly-created account." | 
					
						
							|  |  |  | //     schema: | 
					
						
							|  |  |  | //       "$ref": "#/definitions/oauthToken" | 
					
						
							|  |  |  | //   '401': | 
					
						
							|  |  |  | //      description: unauthorized | 
					
						
							|  |  |  | //   '400': | 
					
						
							|  |  |  | //      description: bad request | 
					
						
							|  |  |  | //   '404': | 
					
						
							|  |  |  | //      description: not found | 
					
						
							|  |  |  | //   '500': | 
					
						
							|  |  |  | //      description: internal error | 
					
						
							| 
									
										
										
										
											2021-04-20 18:14:23 +02:00
										 |  |  | func (m *Module) AccountCreatePOSTHandler(c *gin.Context) { | 
					
						
							| 
									
										
										
										
											2021-10-11 05:37:33 -07:00
										 |  |  | 	l := logrus.WithField("func", "accountCreatePOSTHandler") | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	authed, err := oauth.Authed(c, true, true, false, false) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		l.Debugf("couldn't auth: %s", err) | 
					
						
							| 
									
										
										
										
											2021-07-31 17:49:59 +02:00
										 |  |  | 		c.JSON(http.StatusUnauthorized, gin.H{"error": err.Error()}) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-11 17:50:00 +01:00
										 |  |  | 	if _, err := api.NegotiateAccept(c, api.JSONAcceptHeaders...); err != nil { | 
					
						
							|  |  |  | 		c.JSON(http.StatusNotAcceptable, gin.H{"error": err.Error()}) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	l.Trace("parsing request form") | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	form := &model.AccountCreateRequest{} | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	if err := c.ShouldBind(form); err != nil || form == nil { | 
					
						
							|  |  |  | 		l.Debugf("could not parse form from request: %s", err) | 
					
						
							|  |  |  | 		c.JSON(http.StatusBadRequest, gin.H{"error": "missing one or more required form values"}) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	l.Tracef("validating form %+v", form) | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	if err := validateCreateAccount(form); err != nil { | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 		l.Debugf("error validating form: %s", err) | 
					
						
							|  |  |  | 		c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()}) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	clientIP := c.ClientIP() | 
					
						
							|  |  |  | 	l.Tracef("attempting to parse client ip address %s", clientIP) | 
					
						
							|  |  |  | 	signUpIP := net.ParseIP(clientIP) | 
					
						
							|  |  |  | 	if signUpIP == nil { | 
					
						
							|  |  |  | 		l.Debugf("error validating sign up ip address %s", clientIP) | 
					
						
							|  |  |  | 		c.JSON(http.StatusBadRequest, gin.H{"error": "ip address could not be parsed from request"}) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-08 14:25:55 +02:00
										 |  |  | 	form.IP = signUpIP | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-25 15:34:33 +02:00
										 |  |  | 	ti, err := m.processor.AccountCreate(c.Request.Context(), authed, form) | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		l.Errorf("internal server error while creating new account: %s", err) | 
					
						
							|  |  |  | 		c.JSON(http.StatusInternalServerError, gin.H{"error": err.Error()}) | 
					
						
							|  |  |  | 		return | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	c.JSON(http.StatusOK, ti) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // validateCreateAccount checks through all the necessary prerequisites for creating a new account, | 
					
						
							|  |  |  | // according to the provided account create request. If the account isn't eligible, an error will be returned. | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | func validateCreateAccount(form *model.AccountCreateRequest) error { | 
					
						
							|  |  |  | 	keys := config.Keys | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if !viper.GetBool(keys.AccountsRegistrationOpen) { | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 		return errors.New("registration is not open for this server") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 18:29:25 +02:00
										 |  |  | 	if err := validate.Username(form.Username); err != nil { | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 18:29:25 +02:00
										 |  |  | 	if err := validate.Email(form.Email); err != nil { | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 18:29:25 +02:00
										 |  |  | 	if err := validate.NewPassword(form.Password); err != nil { | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if !form.Agreement { | 
					
						
							|  |  |  | 		return errors.New("agreement to terms and conditions not given") | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-01 18:29:25 +02:00
										 |  |  | 	if err := validate.Language(form.Locale); err != nil { | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-07 13:31:39 +01:00
										 |  |  | 	if err := validate.SignUpReason(form.Reason, viper.GetBool(keys.AccountsReasonRequired)); err != nil { | 
					
						
							| 
									
										
										
										
											2021-04-01 20:46:45 +02:00
										 |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } |