1
0
mirror of https://github.com/imgproxy/imgproxy.git synced 2024-11-24 08:12:38 +02:00
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
}