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 15:14:55 +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 15:14:55 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// UserConfirmEmail is the handler to confirm a user email
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Summary Confirm the email of a new user
|
|
|
|
// @Description Confirms the email of a newly registered user.
|
|
|
|
// @tags user
|
|
|
|
// @Accept json
|
|
|
|
// @Produce json
|
2020-06-28 16:25:46 +02:00
|
|
|
// @Param credentials body user.EmailConfirm true "The token."
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Success 200 {object} models.Message
|
2020-06-28 16:25:46 +02:00
|
|
|
// @Failure 412 {object} web.HTTPError "Bad token provided."
|
2018-11-12 16:46:35 +01:00
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /user/confirm [post]
|
2018-10-27 15:14:55 +02:00
|
|
|
func UserConfirmEmail(c echo.Context) error {
|
|
|
|
// Check for Request Content
|
2020-01-26 18:08:06 +01:00
|
|
|
var emailConfirm user.EmailConfirm
|
2018-10-27 15:14:55 +02:00
|
|
|
if err := c.Bind(&emailConfirm); err != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, "No token provided.")
|
|
|
|
}
|
|
|
|
|
2020-12-23 16:32:28 +01:00
|
|
|
s := db.NewSession()
|
|
|
|
defer s.Close()
|
|
|
|
|
|
|
|
err := user.ConfirmEmail(s, &emailConfirm)
|
2018-10-27 15:14:55 +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 15:14:55 +02:00
|
|
|
}
|
|
|
|
|
2020-10-11 22:10:03 +02:00
|
|
|
return c.JSON(http.StatusOK, models.Message{Message: "The email was confirmed successfully."})
|
2018-10-27 15:14:55 +02:00
|
|
|
}
|