mirror of
https://github.com/pikami/cosmium.git
synced 2025-12-19 08:50:46 +00:00
serve request paths with trailing slashes, as sent by python client
This commit is contained in:
17
api/handlers/middleware/trailing_slash_stripper.go
Normal file
17
api/handlers/middleware/trailing_slash_stripper.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package middleware
|
||||
|
||||
import (
|
||||
"strings"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
func TrailingSlashStripper() gin.HandlerFunc {
|
||||
return func(c *gin.Context) {
|
||||
if (len(c.Request.URL.Path)) > 1 { //dont strip root dir slash, path="/"
|
||||
var stripped_path = strings.TrimSuffix(c.Request.URL.Path, "/")
|
||||
c.Request.URL.Path = stripped_path
|
||||
}
|
||||
c.Next()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user