You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
537 B
27 lines
537 B
5 years ago
|
package middleware
|
||
|
|
||
|
import (
|
||
|
"github.com/HFO4/cloudreve/pkg/hashid"
|
||
|
"github.com/HFO4/cloudreve/pkg/serializer"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
5 years ago
|
// HashID 将给定对象的HashID转换为真实ID
|
||
5 years ago
|
func HashID(IDType int) gin.HandlerFunc {
|
||
|
return func(c *gin.Context) {
|
||
|
if c.Param("id") != "" {
|
||
|
id, err := hashid.DecodeHashID(c.Param("id"), IDType)
|
||
|
if err == nil {
|
||
|
c.Set("object_id", id)
|
||
|
c.Next()
|
||
|
return
|
||
|
}
|
||
|
c.JSON(200, serializer.ParamErr("无法解析对象ID", nil))
|
||
|
c.Abort()
|
||
|
return
|
||
|
|
||
|
}
|
||
|
c.Next()
|
||
|
}
|
||
|
}
|