2016-02-24 13:17:43 -05:00
package middleware
import (
"fmt"
"net/http"
"runtime"
2016-09-06 14:18:12 -04:00
"github.com/docker/docker/api/types/versions"
2016-02-24 13:17:43 -05:00
"golang.org/x/net/context"
)
2016-04-08 19:22:39 -04:00
// VersionMiddleware is a middleware that
// validates the client and server versions.
type VersionMiddleware struct {
2016-04-19 10:56:54 -04:00
serverVersion string
defaultVersion string
minVersion string
2016-04-08 19:22:39 -04:00
}
// NewVersionMiddleware creates a new VersionMiddleware
// with the default versions.
2016-04-19 10:56:54 -04:00
func NewVersionMiddleware ( s , d , m string ) VersionMiddleware {
2016-04-08 19:22:39 -04:00
return VersionMiddleware {
serverVersion : s ,
defaultVersion : d ,
minVersion : m ,
}
}
2017-07-19 10:20:13 -04:00
type versionUnsupportedError struct {
version , minVersion string
}
func ( e versionUnsupportedError ) Error ( ) string {
return fmt . Sprintf ( "client version %s is too old. Minimum supported API version is %s, please upgrade your client to a newer version" , e . version , e . minVersion )
}
func ( e versionUnsupportedError ) InvalidParameter ( ) { }
2016-04-08 19:22:39 -04:00
// WrapHandler returns a new handler function wrapping the previous one in the request chain.
func ( v VersionMiddleware ) WrapHandler ( handler func ( ctx context . Context , w http . ResponseWriter , r * http . Request , vars map [ string ] string ) error ) func ( ctx context . Context , w http . ResponseWriter , r * http . Request , vars map [ string ] string ) error {
return func ( ctx context . Context , w http . ResponseWriter , r * http . Request , vars map [ string ] string ) error {
2016-04-19 10:56:54 -04:00
apiVersion := vars [ "version" ]
2016-04-08 19:22:39 -04:00
if apiVersion == "" {
apiVersion = v . defaultVersion
2016-02-24 13:17:43 -05:00
}
2016-04-08 19:22:39 -04:00
2016-04-19 10:56:54 -04:00
if versions . LessThan ( apiVersion , v . minVersion ) {
2017-07-19 10:20:13 -04:00
return versionUnsupportedError { apiVersion , v . minVersion }
2016-04-08 19:22:39 -04:00
}
header := fmt . Sprintf ( "Docker/%s (%s)" , v . serverVersion , runtime . GOOS )
w . Header ( ) . Set ( "Server" , header )
2016-11-02 20:43:32 -04:00
w . Header ( ) . Set ( "API-Version" , v . defaultVersion )
2017-02-07 07:52:20 -05:00
w . Header ( ) . Set ( "OSType" , runtime . GOOS )
2017-08-17 15:16:30 -04:00
// nolint: golint
2016-04-08 19:22:39 -04:00
ctx = context . WithValue ( ctx , "api-version" , apiVersion )
return handler ( ctx , w , r , vars )
2016-02-24 13:17:43 -05:00
}
2016-04-08 19:22:39 -04:00
2016-02-24 13:17:43 -05:00
}