mirror of
https://github.com/gogs/gogs.git
synced 2026-01-13 19:02:21 +01:00
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
31 lines
599 B
Go
31 lines
599 B
Go
package app
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/microcosm-cc/bluemonday"
|
|
"gopkg.in/macaron.v1"
|
|
)
|
|
|
|
func ipynbSanitizer() *bluemonday.Policy {
|
|
p := bluemonday.UGCPolicy()
|
|
p.AllowAttrs("class", "data-prompt-number").OnElements("div")
|
|
p.AllowAttrs("class").OnElements("img")
|
|
p.AllowURLSchemes("data")
|
|
return p
|
|
}
|
|
|
|
func SanitizeIpynb() macaron.Handler {
|
|
p := ipynbSanitizer()
|
|
|
|
return func(c *macaron.Context) {
|
|
html, err := c.Req.Body().String()
|
|
if err != nil {
|
|
c.Error(http.StatusInternalServerError, "read body")
|
|
return
|
|
}
|
|
|
|
c.PlainText(http.StatusOK, []byte(p.Sanitize(html)))
|
|
}
|
|
}
|