2014-12-12 14:27:22 -05:00
package v2
2014-12-15 15:42:52 -05:00
import "github.com/gorilla/mux"
2014-12-12 14:27:22 -05:00
// The following are definitions of the name under which all V2 routes are
// registered. These symbols can be used to look up a route based on the name.
const (
RouteNameBase = "base"
RouteNameManifest = "manifest"
RouteNameTags = "tags"
RouteNameBlob = "blob"
RouteNameBlobUpload = "blob-upload"
RouteNameBlobUploadChunk = "blob-upload-chunk"
)
var allEndpoints = [ ] string {
RouteNameManifest ,
RouteNameTags ,
RouteNameBlob ,
RouteNameBlobUpload ,
RouteNameBlobUploadChunk ,
}
// Router builds a gorilla router with named routes for the various API
// methods. This can be used directly by both server implementations and
// clients.
func Router ( ) * mux . Router {
router := mux . NewRouter ( ) .
StrictSlash ( true )
// GET /v2/ Check Check that the registry implements API version 2(.1)
router .
Path ( "/v2/" ) .
Name ( RouteNameBase )
2015-02-26 21:23:50 -05:00
// GET /v2/<name>/manifest/<reference> Image Manifest Fetch the image manifest identified by name and reference where reference can be a tag or digest.
// PUT /v2/<name>/manifest/<reference> Image Manifest Upload the image manifest identified by name and reference where reference can be a tag or digest.
// DELETE /v2/<name>/manifest/<reference> Image Manifest Delete the image identified by name and reference where reference can be a tag or digest.
2014-12-12 14:27:22 -05:00
router .
2015-02-26 21:23:50 -05:00
Path ( "/v2/{name:" + RepositoryNameRegexp . String ( ) + "}/manifests/{reference:" + TagNameRegexp . String ( ) + "|" + DigestRegexp . String ( ) + "}" ) .
2014-12-12 14:27:22 -05:00
Name ( RouteNameManifest )
// GET /v2/<name>/tags/list Tags Fetch the tags under the repository identified by name.
router .
2014-12-15 15:42:52 -05:00
Path ( "/v2/{name:" + RepositoryNameRegexp . String ( ) + "}/tags/list" ) .
2014-12-12 14:27:22 -05:00
Name ( RouteNameTags )
// GET /v2/<name>/blob/<digest> Layer Fetch the blob identified by digest.
router .
2014-12-15 15:42:52 -05:00
Path ( "/v2/{name:" + RepositoryNameRegexp . String ( ) + "}/blobs/{digest:[a-zA-Z0-9-_+.]+:[a-zA-Z0-9-_+.=]+}" ) .
2014-12-12 14:27:22 -05:00
Name ( RouteNameBlob )
// POST /v2/<name>/blob/upload/ Layer Upload Initiate an upload of the layer identified by tarsum.
router .
2014-12-15 15:42:52 -05:00
Path ( "/v2/{name:" + RepositoryNameRegexp . String ( ) + "}/blobs/uploads/" ) .
2014-12-12 14:27:22 -05:00
Name ( RouteNameBlobUpload )
// GET /v2/<name>/blob/upload/<uuid> Layer Upload Get the status of the upload identified by tarsum and uuid.
// PUT /v2/<name>/blob/upload/<uuid> Layer Upload Upload all or a chunk of the upload identified by tarsum and uuid.
// DELETE /v2/<name>/blob/upload/<uuid> Layer Upload Cancel the upload identified by layer and uuid
router .
2014-12-15 15:42:52 -05:00
Path ( "/v2/{name:" + RepositoryNameRegexp . String ( ) + "}/blobs/uploads/{uuid}" ) .
2014-12-12 14:27:22 -05:00
Name ( RouteNameBlobUploadChunk )
return router
}