golang-lib/web/auth/api_my_status.go

31 lines
648 B
Go
Raw Normal View History

2021-06-01 10:51:35 +02:00
package auth
import (
"net/http"
"github.com/gin-gonic/gin"
"dev.sum7.eu/genofire/golang-lib/web"
)
// @Summary Login status
// @Description show user_id and username if logged in
2021-06-30 15:47:24 +02:00
// @Tags auth
2021-06-01 10:51:35 +02:00
// @Accept json
// @Produce json
// @Success 200 {object} User
// @Failure 401 {object} web.HTTPError
// @Failure 500 {object} web.HTTPError
2021-06-30 15:55:34 +02:00
// @Router /api/v1/my/auth/status [get]
// @Security ApiKeyAuth
2021-06-01 10:51:35 +02:00
func init() {
web.ModuleRegister(func(r *gin.Engine, ws *web.Service) {
2021-06-30 15:55:34 +02:00
r.GET("/api/v1/my/auth/status", MiddlewareLogin(ws), func(c *gin.Context) {
2021-06-01 10:51:35 +02:00
d, ok := GetCurrentUser(c, ws)
if ok {
c.JSON(http.StatusOK, d)
}
})
})
}