api/pkg/routes/api/v1/user_show.go

50 lines
1.6 KiB
Go
Raw Normal View History

// Vikunja is a todo-list application to facilitate your life.
2020-01-09 17:33:22 +00:00
// Copyright 2018-2020 Vikunja and contributors. All rights reserved.
2018-11-26 20:17:33 +00:00
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
2018-11-26 20:17:33 +00: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
// GNU General Public License for more details.
2018-11-26 20:17:33 +00:00
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2018-11-26 20:17:33 +00:00
2018-06-10 09:11:41 +00:00
package v1
import (
user2 "code.vikunja.io/api/pkg/user"
2018-11-30 23:26:56 +00:00
"code.vikunja.io/web/handler"
2019-05-07 19:42:24 +00:00
"github.com/labstack/echo/v4"
2018-06-10 09:11:41 +00:00
"net/http"
)
2018-10-03 17:00:09 +00:00
// UserShow gets all informations about the current user
// @Summary Get user information
// @Description Returns the current user object.
// @tags user
// @Accept json
// @Produce json
2019-01-03 22:22:06 +00:00
// @Security JWTKeyAuth
// @Success 200 {object} models.User
2018-12-01 01:59:17 +00:00
// @Failure 404 {object} code.vikunja.io/web.HTTPError "User does not exist."
// @Failure 500 {object} models.Message "Internal server error."
// @Router /user [get]
2018-06-10 09:11:41 +00:00
func UserShow(c echo.Context) error {
userInfos, err := user2.GetCurrentUser(c)
2018-06-10 09:11:41 +00:00
if err != nil {
2018-10-06 13:04:14 +00:00
return echo.NewHTTPError(http.StatusInternalServerError, "Error getting current user.")
2018-06-10 09:11:41 +00:00
}
user, err := user2.GetUserByID(userInfos.ID)
2018-06-10 09:11:41 +00:00
if err != nil {
2018-11-30 23:26:56 +00:00
return handler.HandleHTTPError(err, c)
2018-06-10 09:11:41 +00:00
}
2018-09-17 16:25:05 +00:00
return c.JSON(http.StatusOK, user)
2018-06-10 09:11:41 +00:00
}