0
Fork 0
mirror of https://github.com/willnorris/imageproxy.git synced 2024-12-16 21:56:43 -05:00
imageproxy/modules.go
Will Norris 6219bf52f0 stash
2021-06-20 15:46:49 -07:00

36 lines
981 B
Go

package imageproxy
import "net/http"
// Module needs docs.
type Module interface {
ImageproxyModule() ModuleInfo
}
// ModuleInfo needs docs.
type ModuleInfo struct {
ID ModuleID
New func() Module
}
// ModuleID needs docs.
type ModuleID string
// A RequestAuthorizer determines if a request is authorized to be processed.
// Requests are processed before the remote resource is retrieved.
type RequestAuthorizer interface {
// Authorize returns an error if the request should not
// be processed further (for example, it doesn't have a
// valid signature, is not for an allowed host, etc).
AuthorizeRequest(req *http.Request) error
}
// A ResponseAuthorizer determines if a response from a remote server
// is authorized to be returned.
type ResponseAuthorizer interface {
// AuthorizeResponse returns an error if a response should not be
// returned to a client (for example, it is not for an image
// resource, etc).
AuthorizeResponse(res http.Response) error
}