Files
imaginary_mirror/source.go
2016-09-05 22:53:54 +02:00

51 lines
1.1 KiB
Go

package main
import (
"net/http"
"net/url"
)
type ImageSourceType string
type ImageSourceFactoryFunction func(*SourceConfig) ImageSource
type SourceConfig struct {
AuthForwarding bool
Authorization string
MountPath string
Type ImageSourceType
AllowedOrigings []*url.URL
}
var imageSourceMap = make(map[ImageSourceType]ImageSource)
var imageSourceFactoryMap = make(map[ImageSourceType]ImageSourceFactoryFunction)
type ImageSource interface {
Matches(*http.Request) bool
GetImage(*http.Request) ([]byte, error)
}
func RegisterSource(sourceType ImageSourceType, factory ImageSourceFactoryFunction) {
imageSourceFactoryMap[sourceType] = factory
}
func LoadSources(o ServerOptions) {
for name, factory := range imageSourceFactoryMap {
imageSourceMap[name] = factory(&SourceConfig{
Type: name,
MountPath: o.Mount,
AuthForwarding: o.AuthForwarding,
Authorization: o.Authorization,
AllowedOrigings: o.AlloweOrigins,
})
}
}
func MatchSource(req *http.Request) ImageSource {
for _, source := range imageSourceMap {
if source.Matches(req) {
return source
}
}
return nil
}