2020-02-07 17:27:45 +01:00
|
|
|
// Vikunja is a to-do list application to facilitate your life.
|
2021-02-02 20:19:13 +01:00
|
|
|
// Copyright 2018-2021 Vikunja and contributors. All rights reserved.
|
2018-11-26 21:17:33 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
2020-12-23 16:41:52 +01:00
|
|
|
// it under the terms of the GNU Affero General Public Licensee as published by
|
2019-12-04 20:39:56 +01:00
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
2018-11-26 21:17:33 +01:00
|
|
|
//
|
2019-12-04 20:39:56 +01:00
|
|
|
// 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
|
2020-12-23 16:41:52 +01:00
|
|
|
// GNU Affero General Public Licensee for more details.
|
2018-11-26 21:17:33 +01:00
|
|
|
//
|
2020-12-23 16:41:52 +01:00
|
|
|
// You should have received a copy of the GNU Affero General Public Licensee
|
2019-12-04 20:39:56 +01:00
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-11-26 21:17:33 +01:00
|
|
|
|
2018-10-27 11:33:28 +02:00
|
|
|
package v1
|
|
|
|
|
|
|
|
import (
|
2020-10-11 22:10:03 +02:00
|
|
|
"net/http"
|
|
|
|
|
2020-12-23 16:32:28 +01:00
|
|
|
"code.vikunja.io/api/pkg/db"
|
|
|
|
|
2018-10-31 13:42:38 +01:00
|
|
|
"code.vikunja.io/api/pkg/models"
|
2020-01-26 18:08:06 +01:00
|
|
|
"code.vikunja.io/api/pkg/user"
|
2018-12-01 00:26:56 +01:00
|
|
|
"code.vikunja.io/web/handler"
|
2019-05-07 21:42:24 +02:00
|
|
|
"github.com/labstack/echo/v4"
|
2018-10-27 11:33:28 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// UserResetPassword is the handler to change a users password
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Summary Resets a password
|
|
|
|
// @Description Resets a user email with a previously reset token.
|
|
|
|
// @tags user
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
2020-06-28 16:25:46 +02:00
|
|
|
// @Param credentials body user.PasswordReset true "The token with the new password."
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Success 200 {object} models.Message
|
2020-06-28 16:25:46 +02:00
|
|
|
// @Failure 400 {object} web.HTTPError "Bad token provided."
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /user/password/reset [post]
|
2018-10-27 11:33:28 +02:00
|
|
|
func UserResetPassword(c echo.Context) error {
|
|
|
|
// Check for Request Content
|
2020-01-26 18:08:06 +01:00
|
|
|
var pwReset user.PasswordReset
|
2018-10-27 11:33:28 +02:00
|
|
|
if err := c.Bind(&pwReset); err != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "No password provided.")
|
|
|
|
}
|
|
|
|
|
2020-12-23 16:32:28 +01:00
|
|
|
s := db.NewSession()
|
|
|
|
defer s.Close()
|
|
|
|
|
|
|
|
err := user.ResetPassword(s, &pwReset)
|
2018-10-27 11:33:28 +02:00
|
|
|
if err != nil {
|
2020-12-23 16:32:28 +01:00
|
|
|
_ = s.Rollback()
|
|
|
|
return handler.HandleHTTPError(err, c)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := s.Commit(); err != nil {
|
|
|
|
_ = s.Rollback()
|
2018-12-01 00:26:56 +01:00
|
|
|
return handler.HandleHTTPError(err, c)
|
2018-10-27 11:33:28 +02:00
|
|
|
}
|
|
|
|
|
2020-10-11 22:10:03 +02:00
|
|
|
return c.JSON(http.StatusOK, models.Message{Message: "The password was updated successfully."})
|
2018-10-27 11:33:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// UserRequestResetPasswordToken is the handler to change a users password
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Summary Request password reset token
|
|
|
|
// @Description Requests a token to reset a users password. The token is sent via email.
|
|
|
|
// @tags user
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
2020-06-28 16:25:46 +02:00
|
|
|
// @Param credentials body user.PasswordTokenRequest true "The username of the user to request a token for."
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Success 200 {object} models.Message
|
2020-06-28 16:25:46 +02:00
|
|
|
// @Failure 404 {object} web.HTTPError "The user does not exist."
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /user/password/token [post]
|
2018-10-27 11:33:28 +02:00
|
|
|
func UserRequestResetPasswordToken(c echo.Context) error {
|
|
|
|
// Check for Request Content
|
2020-01-26 18:08:06 +01:00
|
|
|
var pwTokenReset user.PasswordTokenRequest
|
2018-10-27 11:33:28 +02:00
|
|
|
if err := c.Bind(&pwTokenReset); err != nil {
|
2018-11-12 16:46:35 +01:00
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "No username provided.")
|
2018-10-27 11:33:28 +02:00
|
|
|
}
|
|
|
|
|
2018-12-19 22:05:25 +01:00
|
|
|
if err := c.Validate(pwTokenReset); err != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, err)
|
|
|
|
}
|
|
|
|
|
2020-12-23 16:32:28 +01:00
|
|
|
s := db.NewSession()
|
|
|
|
defer s.Close()
|
|
|
|
|
|
|
|
err := user.RequestUserPasswordResetTokenByEmail(s, &pwTokenReset)
|
2018-10-27 11:33:28 +02:00
|
|
|
if err != nil {
|
2020-12-23 16:32:28 +01:00
|
|
|
_ = s.Rollback()
|
|
|
|
return handler.HandleHTTPError(err, c)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := s.Commit(); err != nil {
|
|
|
|
_ = s.Rollback()
|
2018-12-01 00:26:56 +01:00
|
|
|
return handler.HandleHTTPError(err, c)
|
2018-10-27 11:33:28 +02:00
|
|
|
}
|
|
|
|
|
2020-10-11 22:10:03 +02:00
|
|
|
return c.JSON(http.StatusOK, models.Message{Message: "Token was sent."})
|
2018-10-27 11:33:28 +02:00
|
|
|
}
|