0
Fork 0
mirror of https://github.com/willnorris/imageproxy.git synced 2025-03-11 02:19:14 -05:00
imageproxy/modules.go

37 lines
981 B
Go
Raw Permalink Normal View History

2020-06-23 16:04:21 -07:00
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
}