mirror of https://github.com/go-gitea/gitea.git
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.
51 lines
1.4 KiB
51 lines
1.4 KiB
// Copyright 2017 The Gitea Authors. All rights reserved. |
|
// Copyright 2017 The Gogs Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package markup |
|
|
|
import ( |
|
"regexp" |
|
"sync" |
|
|
|
"github.com/microcosm-cc/bluemonday" |
|
) |
|
|
|
// Sanitizer is a protection wrapper of *bluemonday.Policy which does not allow |
|
// any modification to the underlying policies once it's been created. |
|
type Sanitizer struct { |
|
defaultPolicy *bluemonday.Policy |
|
descriptionPolicy *bluemonday.Policy |
|
rendererPolicies map[string]*bluemonday.Policy |
|
allowAllRegex *regexp.Regexp |
|
} |
|
|
|
var ( |
|
defaultSanitizer *Sanitizer |
|
defaultSanitizerOnce sync.Once |
|
) |
|
|
|
func GetDefaultSanitizer() *Sanitizer { |
|
defaultSanitizerOnce.Do(func() { |
|
defaultSanitizer = &Sanitizer{ |
|
rendererPolicies: map[string]*bluemonday.Policy{}, |
|
allowAllRegex: regexp.MustCompile(".+"), |
|
} |
|
for name, renderer := range renderers { |
|
sanitizerRules := renderer.SanitizerRules() |
|
if len(sanitizerRules) > 0 { |
|
policy := defaultSanitizer.createDefaultPolicy() |
|
defaultSanitizer.addSanitizerRules(policy, sanitizerRules) |
|
defaultSanitizer.rendererPolicies[name] = policy |
|
} |
|
} |
|
defaultSanitizer.defaultPolicy = defaultSanitizer.createDefaultPolicy() |
|
defaultSanitizer.descriptionPolicy = defaultSanitizer.createRepoDescriptionPolicy() |
|
}) |
|
return defaultSanitizer |
|
} |
|
|
|
func ResetDefaultSanitizerForTesting() { |
|
defaultSanitizer = nil |
|
defaultSanitizerOnce = sync.Once{} |
|
}
|
|
|