api/routes/routes.go

132 lines
3.7 KiB
Go
Raw Normal View History

2018-07-10 12:02:23 +00:00
package routes
2018-06-13 11:45:22 +00:00
// Package v1 List API.
//
// This documentation describes the List API.
//
// Schemes: http, https
// BasePath: /api/v1
// Version: 0.1
// License: GPLv3
//
// Consumes:
// - application/json
//
// Produces:
// - application/json
//
// Security:
// - AuthorizationHeaderToken :
//
// SecurityDefinitions:
// AuthorizationHeaderToken:
// type: apiKey
// name: Authorization
// in: header
//
// swagger:meta
2018-06-10 09:11:41 +00:00
import (
"github.com/labstack/echo"
"github.com/labstack/echo/middleware"
"git.kolaente.de/konrad/list/models"
apiv1 "git.kolaente.de/konrad/list/routes/api/v1"
2018-06-13 11:45:22 +00:00
_ "git.kolaente.de/konrad/list/routes/api/v1/swagger" // for docs generation
2018-07-10 22:28:53 +00:00
"git.kolaente.de/konrad/list/routes/crud"
2018-06-10 09:11:41 +00:00
)
// NewEcho registers a new Echo instance
func NewEcho() *echo.Echo {
e := echo.New()
// Logger
e.Use(middleware.LoggerWithConfig(middleware.LoggerConfig{
2018-07-09 17:49:27 +00:00
Format: "${time_rfc3339_nano}: ${remote_ip} ${method} ${status} ${uri} ${latency_human} - ${user_agent}\n",
2018-06-10 09:11:41 +00:00
}))
return e
}
// RegisterRoutes registers all routes for the application
func RegisterRoutes(e *echo.Echo) {
2018-07-09 17:49:27 +00:00
// TODO: Use proper cors middleware by echo
2018-06-13 11:45:22 +00:00
// Middleware for cors
2018-06-10 09:11:41 +00:00
e.Use(func(next echo.HandlerFunc) echo.HandlerFunc {
return func(c echo.Context) error {
res := c.Response()
res.Header().Set("Access-Control-Allow-Origin", "*")
res.Header().Set("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE")
res.Header().Set("Access-Control-Allow-Headers", "authorization,content-type")
res.Header().Set("Access-Control-Expose-Headers", "authorization,content-type")
return next(c)
}
})
2018-06-14 12:19:19 +00:00
// Swagger UI
e.Static("/swagger", "public/swagger")
2018-06-10 09:11:41 +00:00
// API Routes
a := e.Group("/api/v1")
// CORS_SHIT
a.OPTIONS("/login", SetCORSHeader)
2018-06-10 09:34:59 +00:00
a.OPTIONS("/register", SetCORSHeader)
2018-06-10 09:11:41 +00:00
a.OPTIONS("/users", SetCORSHeader)
a.OPTIONS("/users/:id", SetCORSHeader)
2018-06-10 12:41:42 +00:00
a.OPTIONS("/lists", SetCORSHeader)
a.OPTIONS("/lists/:id", SetCORSHeader)
2018-06-10 09:11:41 +00:00
2018-06-10 09:34:59 +00:00
a.POST("/login", apiv1.Login)
2018-06-13 11:45:22 +00:00
a.POST("/register", apiv1.RegisterUser)
2018-06-10 09:11:41 +00:00
// ===== Routes with Authetification =====
// Authetification
a.Use(middleware.JWT(models.Config.JWTLoginSecret))
a.POST("/tokenTest", apiv1.CheckToken)
2018-06-10 12:14:10 +00:00
2018-07-10 12:02:23 +00:00
listHandler := &crud.WebHandler{
CObject: &models.List{},
2018-07-07 12:19:34 +00:00
}
a.GET("/lists", listHandler.ReadAllWeb)
2018-07-07 12:19:34 +00:00
a.GET("/lists/:id", listHandler.ReadOneWeb)
a.POST("/lists/:id", listHandler.UpdateWeb)
a.DELETE("/lists/:listid", listHandler.DeleteWeb)
a.PUT("/namespaces/:nid/lists", listHandler.CreateWeb)
itemHandler := &crud.WebHandler{
CObject: &models.ListItem{},
}
a.PUT("/lists/:listid", itemHandler.CreateWeb)
a.DELETE("/items/:listitemid", itemHandler.DeleteWeb)
2018-07-11 09:44:17 +00:00
a.POST("/items/:id", itemHandler.UpdateWeb)
namespaceHandler := &crud.WebHandler{
CObject: &models.Namespace{},
}
a.GET("/namespaces", namespaceHandler.ReadAllWeb)
a.PUT("/namespaces", namespaceHandler.CreateWeb)
a.GET("/namespaces/:id", namespaceHandler.ReadOneWeb)
a.POST("/namespaces/:id", namespaceHandler.UpdateWeb)
a.DELETE("/namespaces/:nid", namespaceHandler.DeleteWeb)
a.GET("/namespaces/:id/lists", apiv1.GetListsByNamespaceID)
2018-07-14 15:34:59 +00:00
namespaceTeamHandler := &crud.WebHandler{
CObject: &models.TeamNamespace{},
}
a.GET("/namespaces/:id/teams", namespaceTeamHandler.ReadAllWeb)
a.PUT("/namespaces/:namespaceid/teams", namespaceTeamHandler.CreateWeb)
a.DELETE("/namespaces/:namespaceid/teams/:teamid", namespaceTeamHandler.DeleteWeb)
2018-07-14 15:34:59 +00:00
teamHandler := &crud.WebHandler{
CObject: &models.Team{},
}
a.GET("/teams", teamHandler.ReadAllWeb)
a.GET("/teams/:id", teamHandler.ReadOneWeb)
a.PUT("/teams", teamHandler.CreateWeb)
a.POST("/teams/:id", teamHandler.UpdateWeb)
a.DELETE("/teams/:teamid", teamHandler.DeleteWeb)
2018-06-10 09:11:41 +00:00
}