1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2025-07-12 23:00:55 +02:00
Files
imgproxy/security/source.go
2021-09-07 19:04:33 +06:00

18 lines
308 B
Go

package security
import (
"github.com/imgproxy/imgproxy/v2/config"
)
func VerifySourceURL(imageURL string) bool {
if len(config.AllowedSources) == 0 {
return true
}
for _, allowedSource := range config.AllowedSources {
if allowedSource.MatchString(imageURL) {
return true
}
}
return false
}