router

package
v0.2.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 29, 2022 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

View Source
const (
	//V2 endpoint suggests that we support Distribution spec's HTTP2 API
	V2 = "/v2"

	// Namespace endpoint refers to a single repository under a particular user
	Namespace = "/:username/:imagename"

	// Internal endpoint refers to the internal APIs not supposed to be exposed
	Internal = "/internal"

	// Auth endpoint Authenticates user through basic auth or any supported
	// authentication mechanisms
	Auth = "/auth"

	//Beta endpoint refers to the experimental code and features under observation
	// not to be released or exposed to public
	Beta = "/beta"

	//Root is the root path for entire application
	Root = "/"

	//BlobsDigest endpoint exposes the binary form of content stored by registry, addressed by digest
	//Digests are unique identifiers created from a cryptographic hash of a Blob's content
	//used by methods: LayerExists, PullLayer, DeleteLayer
	BlobsDigest = "/blobs/:digest"

	//ManifestsReference endpoint is a reference to the json document which defines an artifact
	//used by methods: ManifestExists, PushManifest, PullManifest, DeleteTagOrManifest
	ManifestsReference = "/manifests/:reference"

	//BlobsUploads endpoint is used to start and complete blob uploads to the registry
	//by the methods : StartUpload and CompleteUpload
	BlobsUploads = "/blobs/uploads/"

	//BlobsUploadsUUID serves similar functionality within an upload
	// i.e. layered and chunked uploads by methods: PushLayer, ChunkedUpload, CompleteUpload
	// UploadProgress
	BlobsUploadsUUID = BlobsUploads + ":uuid"

	// TagsList endpoint is used to list the tags attached to images, e.g. latest, alpine , etc
	// this is also a part of catalog api
	TagsList = "/tags/list"

	// Catalog is used to list the available repositories
	Catalog = "/_catalog"

	// Prefix for Extensions
	Ext = "/ext"

	// Catalog Extensions API Prefix
	C = Ext + "/catalog"

	// JWT based auth endpoint
	TokenAuth = "/token"
	Search    = C + "/search"

	// API to get detailed catalog information
	CatalogDetail = C + "/detail"

	RepositoryDetail = C + "/repository"
)

Variables

This section is empty.

Functions

func Extensions

func Extensions(group *echo.Group, reg registry.Registry, ext extensions.Extenion, middlewares ...echo.MiddlewareFunc)

Extensions for teh OCI dist spec

func Register

func Register(
	cfg *config.OpenRegistryConfig,
	e *echo.Echo,
	reg registry.Registry,
	authSvc auth.Authentication,
	ext extensions.Extenion,
)

Register is the entry point that registers all the endpoints nolint

func RegisterAuthRoutes

func RegisterAuthRoutes(authRouter *echo.Group, authSvc auth.Authentication)

RegisterAuthRoutes includes all the auth related endpoints

func RegisterNSRoutes

func RegisterNSRoutes(nsRouter *echo.Group, reg registry.Registry)

RegisterNSRoutes is one of the helper functions to Register it works directly with registry endpoints

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL