2021-10-14 13:26:04 +01:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2023-01-05 11:43:00 +00:00
|
|
|
Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
|
2021-10-14 13:26:04 +01: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 (
|
2022-06-08 19:38:03 +01:00
|
|
|
"errors"
|
2021-10-14 13:26:04 +01:00
|
|
|
"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"
|
2022-06-08 19:38:03 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
|
2021-10-14 13:26:04 +01:00
|
|
|
"github.com/superseriousbusiness/gotosocial/internal/oauth"
|
|
|
|
)
|
|
|
|
|
|
|
|
// PasswordChangePOSTHandler swagger:operation POST /api/v1/user/password_change userPasswordChange
|
|
|
|
//
|
|
|
|
// Change the password of authenticated user.
|
|
|
|
//
|
|
|
|
// 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:
|
|
|
|
// - user
|
2021-10-14 13:26:04 +01:00
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// - application/xml
|
|
|
|
// - application/x-www-form-urlencoded
|
2021-10-14 13:26:04 +01:00
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// produces:
|
|
|
|
// - application/json
|
2021-10-14 13:26:04 +01:00
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// security:
|
|
|
|
// - OAuth2 Bearer:
|
|
|
|
// - write:user
|
2021-10-14 13:26:04 +01:00
|
|
|
//
|
2022-09-28 18:30:40 +01:00
|
|
|
// responses:
|
|
|
|
// '200':
|
|
|
|
// description: Change successful
|
|
|
|
// '400':
|
|
|
|
// description: bad request
|
|
|
|
// '401':
|
|
|
|
// description: unauthorized
|
|
|
|
// '403':
|
|
|
|
// description: forbidden
|
|
|
|
// '406':
|
|
|
|
// description: not acceptable
|
|
|
|
// '500':
|
|
|
|
// description: internal error
|
2021-10-14 13:26:04 +01:00
|
|
|
func (m *Module) PasswordChangePOSTHandler(c *gin.Context) {
|
|
|
|
authed, err := oauth.Authed(c, true, true, true, true)
|
|
|
|
if err != nil {
|
2023-02-02 13:08:13 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorUnauthorized(err, err.Error()), m.processor.InstanceGetV1)
|
2021-10-14 13:26:04 +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.PasswordChangeRequest{}
|
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-10-14 13:26:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-06-08 19:38:03 +01:00
|
|
|
if form.OldPassword == "" {
|
|
|
|
err := errors.New("password change request missing field old_password")
|
2023-02-02 13:08:13 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorBadRequest(err, err.Error()), m.processor.InstanceGetV1)
|
2022-06-08 19:38:03 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if form.NewPassword == "" {
|
|
|
|
err := errors.New("password change request missing field new_password")
|
2023-02-02 13:08:13 +00:00
|
|
|
apiutil.ErrorHandler(c, gtserror.NewErrorBadRequest(err, err.Error()), m.processor.InstanceGetV1)
|
2021-10-14 13:26:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if errWithCode := m.processor.UserChangePassword(c.Request.Context(), authed, form); errWithCode != nil {
|
2023-02-02 13:08:13 +00:00
|
|
|
apiutil.ErrorHandler(c, errWithCode, m.processor.InstanceGetV1)
|
2021-10-14 13:26:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-08-08 09:40:51 +01:00
|
|
|
c.JSON(http.StatusOK, gin.H{"status": "OK"})
|
2021-10-14 13:26:04 +01:00
|
|
|
}
|