sanitizer.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. // Copyright 2017 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package markup
  5. import (
  6. "regexp"
  7. "sync"
  8. "github.com/microcosm-cc/bluemonday"
  9. "github.com/gogits/gogs/modules/setting"
  10. )
  11. // Sanitizer is a protection wrapper of *bluemonday.Policy which does not allow
  12. // any modification to the underlying policies once it's been created.
  13. type Sanitizer struct {
  14. policy *bluemonday.Policy
  15. init sync.Once
  16. }
  17. var sanitizer = &Sanitizer{}
  18. // NewSanitizer initializes sanitizer with allowed attributes based on settings.
  19. // Multiple calls to this function will only create one instance of Sanitizer during
  20. // entire application lifecycle.
  21. func NewSanitizer() {
  22. sanitizer.init.Do(func() {
  23. sanitizer.policy = bluemonday.UGCPolicy()
  24. // We only want to allow HighlightJS specific classes for code blocks
  25. sanitizer.policy.AllowAttrs("class").Matching(regexp.MustCompile(`^language-\w+$`)).OnElements("code")
  26. // Checkboxes
  27. sanitizer.policy.AllowAttrs("type").Matching(regexp.MustCompile(`^checkbox$`)).OnElements("input")
  28. sanitizer.policy.AllowAttrs("checked", "disabled").OnElements("input")
  29. // Custom URL-Schemes
  30. sanitizer.policy.AllowURLSchemes(setting.Markdown.CustomURLSchemes...)
  31. })
  32. }
  33. // Sanitize takes a string that contains a HTML fragment or document and applies policy whitelist.
  34. func Sanitize(s string) string {
  35. return sanitizer.policy.Sanitize(s)
  36. }
  37. // SanitizeBytes takes a []byte slice that contains a HTML fragment or document and applies policy whitelist.
  38. func SanitizeBytes(b []byte) []byte {
  39. return sanitizer.policy.SanitizeBytes(b)
  40. }