2023-03-12 15:00:57 +00: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 19:46:45 +01:00
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
package accounts
|
2021-04-01 19:46:45 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gin-gonic/gin"
|
2023-01-02 12:10:50 +00:00
|
|
|
apimodel "github.com/superseriousbusiness/gotosocial/internal/api/model"
|
|
|
|
apiutil "github.com/superseriousbusiness/gotosocial/internal/api/util"
|
2021-04-01 19:46:45 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/config"
|
2022-06-08 19:38:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2021-04-01 19:46:45 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
2021-09-01 17:29:25 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/validate"
|
2021-04-01 19:46:45 +01:00
|
|
|
)
|
|
|
|
|
2021-08-02 18:06:44 +01:00
|
|
|
// AccountCreatePOSTHandler swagger:operation POST /api/v1/accounts accountCreate
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
|
|
|
// Create a new account using an application token.
|
|
|
|
//
|
2021-08-02 18:06:44 +01: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'.
|
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// ---
|
|
|
|
// tags:
|
|
|
|
// - accounts
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// - application/xml
|
|
|
|
// - application/x-www-form-urlencoded
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// produces:
|
|
|
|
// - application/json
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// security:
|
|
|
|
// - OAuth2 Application:
|
|
|
|
// - write:accounts
|
2021-07-31 16:49:59 +01:00
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// responses:
|
|
|
|
// '200':
|
|
|
|
// description: "An OAuth2 access token for the newly-created account."
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/oauthToken"
|
|
|
|
// '400':
|
|
|
|
// description: bad request
|
|
|
|
// '401':
|
|
|
|
// description: unauthorized
|
|
|
|
// '404':
|
|
|
|
// description: not found
|
|
|
|
// '406':
|
|
|
|
// description: not acceptable
|
|
|
|
// '500':
|
|
|
|
// description: internal server error
|
2021-04-20 17:14:23 +01:00
|
|
|
func (m *Module) AccountCreatePOSTHandler(c *gin.Context) {
|
2021-05-08 13:25:55 +01:00
|
|
|
authed, err := oauth.Authed(c, true, true, false, false)
|
2021-04-01 19:46:45 +01:00
|
|
|
if err != nil {
|
2023-02-02 13:08:13 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorUnauthorized(err, err.Error()), m.processor.InstanceGetV1)
|
2021-04-01 19:46:45 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
if _, err := apiutil.NegotiateAccept(c, apiutil.JSONAcceptHeaders...); err != nil {
|
2023-02-02 13:08:13 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorNotAcceptable(err, err.Error()), m.processor.InstanceGetV1)
|
2021-12-11 16:50:00 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-01-02 12:10:50 +00:00
|
|
|
form := &apimodel.AccountCreateRequest{}
|
2022-06-08 19:38:03 +01:00
|
|
|
if err := c.ShouldBind(form); err != nil {
|
2023-02-02 13:08:13 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorBadRequest(err, err.Error()), m.processor.InstanceGetV1)
|
2021-04-01 19:46:45 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-07 12:31:39 +00:00
|
|
|
if err := validateCreateAccount(form); err != nil {
|
2023-02-02 13:08:13 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorBadRequest(err, err.Error()), m.processor.InstanceGetV1)
|
2021-04-01 19:46:45 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
clientIP := c.ClientIP()
|
|
|
|
signUpIP := net.ParseIP(clientIP)
|
|
|
|
if signUpIP == nil {
|
2022-06-08 19:38:03 +01:00
|
|
|
err := errors.New("ip address could not be parsed from request")
|
2023-02-02 13:08:13 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorBadRequest(err, err.Error()), m.processor.InstanceGetV1)
|
2021-04-01 19:46:45 +01:00
|
|
|
return
|
|
|
|
}
|
2021-05-08 13:25:55 +01:00
|
|
|
form.IP = signUpIP
|
|
|
|
|
2023-02-22 15:05:26 +00:00
|
|
|
ti, errWithCode := m.processor.Account().Create(c.Request.Context(), authed.Token, authed.Application, form)
|
2022-06-08 19:38:03 +01:00
|
|
|
if errWithCode != nil {
|
2023-02-02 13:08:13 +00:00
|
|
|
apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGetV1)
|
2021-04-01 19:46:45 +01:00
|
|
|
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.
|
2023-01-02 12:10:50 +00:00
|
|
|
func validateCreateAccount(form *apimodel.AccountCreateRequest) error {
|
2022-06-08 19:38:03 +01:00
|
|
|
if form == nil {
|
|
|
|
return errors.New("form was nil")
|
|
|
|
}
|
|
|
|
|
2022-05-30 13:41:24 +01:00
|
|
|
if !config.GetAccountsRegistrationOpen() {
|
2021-04-01 19:46:45 +01:00
|
|
|
return errors.New("registration is not open for this server")
|
|
|
|
}
|
|
|
|
|
2021-09-01 17:29:25 +01:00
|
|
|
if err := validate.Username(form.Username); err != nil {
|
2021-04-01 19:46:45 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-09-01 17:29:25 +01:00
|
|
|
if err := validate.Email(form.Email); err != nil {
|
2021-04-01 19:46:45 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-09-01 17:29:25 +01:00
|
|
|
if err := validate.NewPassword(form.Password); err != nil {
|
2021-04-01 19:46:45 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !form.Agreement {
|
|
|
|
return errors.New("agreement to terms and conditions not given")
|
|
|
|
}
|
|
|
|
|
2021-09-01 17:29:25 +01:00
|
|
|
if err := validate.Language(form.Locale); err != nil {
|
2021-04-01 19:46:45 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-05-30 13:41:24 +01:00
|
|
|
if err := validate.SignUpReason(form.Reason, config.GetAccountsReasonRequired()); err != nil {
|
2021-04-01 19:46:45 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|