api/routes/api/v1/user_update_password.go

64 lines
1.7 KiB
Go
Raw Normal View History

2018-06-10 09:11:41 +00:00
package v1
import (
2018-07-25 14:24:46 +00:00
"code.vikunja.io/api/models"
2018-10-06 13:04:14 +00:00
"code.vikunja.io/api/routes/crud"
2018-06-10 09:11:41 +00:00
"github.com/labstack/echo"
"net/http"
2018-06-10 09:11:41 +00:00
)
2018-10-03 17:32:05 +00:00
// UserPassword holds a user password. Used to update it.
type UserPassword struct {
OldPassword string `json:"old_password"`
NewPassword string `json:"new_password"`
2018-06-10 09:11:41 +00:00
}
// UserChangePassword is the handler to change a users password
2018-06-10 09:11:41 +00:00
func UserChangePassword(c echo.Context) error {
// swagger:operation POST /user/password user updatePassword
// ---
// summary: Shows the current user
// consumes:
// - application/json
// produces:
// - application/json
// parameters:
// - name: body
// in: body
// schema:
// "$ref": "#/definitions/Password"
// responses:
// "200":
// "$ref": "#/responses/Message"
// "400":
// "$ref": "#/responses/Message"
// "404":
// "$ref": "#/responses/Message"
// "500":
// "$ref": "#/responses/Message"
2018-06-10 09:11:41 +00:00
// Check if the user is itself
doer, err := models.GetCurrentUser(c)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Error getting current user.")
2018-06-10 09:11:41 +00:00
}
// Check for Request Content
var newPW UserPassword
if err := c.Bind(&newPW); err != nil {
return echo.NewHTTPError(http.StatusBadRequest, "No password provided.")
2018-06-10 09:11:41 +00:00
}
// Check the current password
2018-10-05 16:46:05 +00:00
if _, err = models.CheckUserCredentials(&models.UserLogin{Username: doer.Username, Password: newPW.OldPassword}); err != nil {
2018-10-06 13:04:14 +00:00
return crud.HandleHTTPError(err)
}
// Update the password
if err = models.UpdateUserPassword(&doer, newPW.NewPassword); err != nil {
2018-10-06 13:04:14 +00:00
return crud.HandleHTTPError(err)
2018-06-10 09:11:41 +00:00
}
return c.JSON(http.StatusOK, models.Message{"The password was updated successfully."})
2018-06-10 09:11:41 +00:00
}