Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/controllers/middlewares.go
akuma06 105bbbd181 API Documentation (#1131)
* API documentation

Using apiDocjs to generate it.
When updating API, you should back up all old comments of the api in _apidoc.json under the History comment

* Update rss handler

* API documentation done
2017-07-09 22:53:52 +10:00

46 lignes
992 o
Go

package controllers
import (
"net/http"
"github.com/NyaaPantsu/nyaa/utils/messages"
"github.com/gin-gonic/gin"
)
func errorMiddleware() gin.HandlerFunc {
return func(c *gin.Context) {
c.Next()
if c.Writer.Status() != http.StatusOK && c.Writer.Size() <= 0 {
if c.ContentType() == "application/json" {
msg := messages.GetMessages(c)
msg.AddErrorT("errors", "404_not_found")
c.JSON(c.Writer.Status(), msg.GetAllErrors())
return
}
httpError(c, c.Writer.Status())
}
}
}
// Make sure the user is a moderator, otherwise return forbidden
func modMiddleware() gin.HandlerFunc {
return func(c *gin.Context) {
currentUser := getUser(c)
if !currentUser.HasAdmin() {
NotFoundHandler(c)
}
c.Next()
}
}
func pprofHandler(handler http.HandlerFunc) gin.HandlerFunc {
return func(c *gin.Context) {
currentUser := getUser(c)
if currentUser.HasAdmin() {
handler.ServeHTTP(c.Writer, c.Request)
} else {
httpError(c, http.StatusNotFound)
}
}
}