2018-06-10 11:11:41 +02:00
|
|
|
package v1
|
|
|
|
|
|
|
|
import (
|
2018-07-25 16:24:46 +02:00
|
|
|
"code.vikunja.io/api/models"
|
2018-10-06 15:04:14 +02:00
|
|
|
"code.vikunja.io/api/routes/crud"
|
2018-06-10 11:11:41 +02:00
|
|
|
"github.com/labstack/echo"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2018-10-03 19:00:09 +02:00
|
|
|
// UserShow gets all informations about the current user
|
2018-06-10 11:11:41 +02:00
|
|
|
func UserShow(c echo.Context) error {
|
2018-10-03 19:00:09 +02:00
|
|
|
// swagger:operation GET /user user showUser
|
|
|
|
// ---
|
|
|
|
// summary: Shows the current user
|
|
|
|
// consumes:
|
|
|
|
// - application/json
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/User"
|
|
|
|
// "400":
|
|
|
|
// "$ref": "#/responses/Message"
|
|
|
|
// "500":
|
|
|
|
// "$ref": "#/responses/Message"
|
|
|
|
|
2018-09-17 18:25:05 +02:00
|
|
|
userInfos, err := models.GetCurrentUser(c)
|
2018-06-10 11:11:41 +02:00
|
|
|
if err != nil {
|
2018-10-06 15:04:14 +02:00
|
|
|
return echo.NewHTTPError(http.StatusInternalServerError, "Error getting current user.")
|
2018-06-10 11:11:41 +02:00
|
|
|
}
|
|
|
|
|
2018-09-17 18:25:05 +02:00
|
|
|
user, err := models.GetUserByID(userInfos.ID)
|
2018-06-10 11:11:41 +02:00
|
|
|
if err != nil {
|
2018-10-06 15:04:14 +02:00
|
|
|
return crud.HandleHTTPError(err)
|
2018-06-10 11:11:41 +02:00
|
|
|
}
|
|
|
|
|
2018-09-17 18:25:05 +02:00
|
|
|
return c.JSON(http.StatusOK, user)
|
2018-06-10 11:11:41 +02:00
|
|
|
}
|