Documentation
¶
Index ¶
Constants ¶
const StatusCodeSkip int = -1
StatusCodeSkip is returned by a ReturnHandlerFunc to indicate the ResponseWriter should not be written to
Variables ¶
var ErrInvalidIdentifier = errors.New("invalid identifier")
ErErrInvalidIdentifier is returned by a Transformer if the client identifier is invalid
Functions ¶
This section is empty.
Types ¶
type AttestationService ¶
type AttestationService struct { tokenstore.TokenStore transport.Transport filestore.FileStore *log.Logger }
AttestationService is an HTTP service to allow a macOS client to attest that it has root access on a device with a particular identifier
func New ¶
func New(tokenStore tokenstore.TokenStore, transport transport.Transport, fileStore filestore.FileStore, logger *log.Logger) *AttestationService
New returns a new AttestationService
func (*AttestationService) FileStoreHandler ¶
func (s *AttestationService) FileStoreHandler() http.Handler
FileStoreHandler is a file handler. If the handler is not mounted at "/", then it should be wrapped in http.StripPrefix so the handler sees the request rooted at /
func (*AttestationService) JSONMiddleware ¶
func (s *AttestationService) JSONMiddleware(next http.Handler) http.Handler
JSONMiddleware is a wrapper for Middleware that returns errors encountered back to the client in JSON format. e.g. {"code":401,"description":"Bad Request"}
func (*AttestationService) Middleware ¶
func (s *AttestationService) Middleware(next http.Handler) ReturnHandlerFunc
Middleware is a middleware that checks that a valid attestation token has been sent in the Authorization header, and sets the corresponding identifier in the request's context. Middleware returns a ReturnHandlerFunc and is intended to be wrapped by an http.Handler that will handle the returned status code and error. See ReturnHandlerFunc for more information. JSONMiddleware is a pre-built handler that marshals the code and error as JSON.
func (*AttestationService) PlaceHandler ¶
func (s *AttestationService) PlaceHandler() http.Handler
PlaceHandler is a token placing http.Handler. PlaceHandler should be mounted to a URL that's called by an attestation client
type ContextKey ¶
type ContextKey int
const ContextKeyIdentifier ContextKey = iota
ContextKeyIdentifier is used to retrieve the identifier from an http.Request's context
type ReturnHandlerFunc ¶
type ReturnHandlerFunc func(w http.ResponseWriter, r *http.Request) (int, interface{})
ReturnHandlerFunc returns an HTTP status code and body for the given request. If the returned code is StatusCodeSkip, the ResponseWriter should not be written to by the caller
type Transformer ¶ added in v0.10.0
type Transformer interface { // Transform transforms identifier into another one. If the identifier is invalid, ErrInvalidIdentifier is returned Transform(identifier string) (string, error) }
Transformer is an optional interface that a Transport can implement to transform a client-given identifier to a server-provided one. The mdm Transport uses this to transform serial numbers given by the client to MDM UDIDs