29 lignes
565 o
Go
29 lignes
565 o
Go
|
package controllers
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/NyaaPantsu/nyaa/service/user/permission"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
func errorMiddleware() gin.HandlerFunc {
|
||
|
return func(c *gin.Context) {
|
||
|
c.Next()
|
||
|
if c.Writer.Status() == http.StatusNotFound && c.Writer.Size() == 0 {
|
||
|
NotFoundHandler(c)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Make sure the user is a moderator, otherwise return forbidden
|
||
|
func modMiddleware() gin.HandlerFunc {
|
||
|
return func(c *gin.Context) {
|
||
|
currentUser := getUser(c)
|
||
|
if !userPermission.HasAdmin(currentUser) {
|
||
|
NotFoundHandler(c)
|
||
|
}
|
||
|
c.Next()
|
||
|
}
|
||
|
}
|