First cut of unifying the registries, just puts the scaffolding in place

pull/172/head
vaikas-google 10 years ago
parent 93f74d0c8a
commit 616a8c3877

@ -166,3 +166,37 @@ type KubernetesObject struct {
Metadata map[string]interface{} `json:"metadata"` Metadata map[string]interface{} `json:"metadata"`
Spec map[string]interface{} `json:"spec"` Spec map[string]interface{} `json:"spec"`
} }
// Repository related types
type BasicAuthCredential struct {
Username string `json:"username"`
Password string `json:"password"`
}
// Credentials used to access the repository
type RegistryCredential struct {
BasicAuth BasicAuthCredential `json:"basicauth,omitempty"`
}
type Registry struct {
Name string `json:"name,omitempty"` // Friendly name for the repo
Type RegistryType `json:"type,omitempty"` // Technology implementing the registry
URL string `json:"name,omitempty"` // URL to the root of the repo, for example: github.com/helm/charts
Credential RegistryCredential `json:"credential,omitempty"`
Format RegistryFormat `json:"format,omitempty"`
}
// RegistryType defines the technology that implements the registry
type RegistryType string
const (
Github RegistryType = "github"
)
// RegistryFormat defines the format of the registry
type RegistryFormat string
const (
VersionedRegistry RegistryFormat = "versioned"
UnversionedRegistry RegistryFormat = "unversioned"
)

@ -81,22 +81,13 @@ var usage = func() {
panic("\n") panic("\n")
} }
func getGitRegistry() registry.Registry { func getGitRegistry() (registry.Registry, error) {
rs := registry.NewDefaultRegistryProvider()
s := strings.Split(*template_registry, "/") s := strings.Split(*template_registry, "/")
if len(s) < 2 { if len(s) < 2 {
panic(fmt.Errorf("invalid template registry: %s", *template_registry)) panic(fmt.Errorf("invalid template registry: %s", *template_registry))
} }
return rs.GetRegistry("github.com/" + s[0] + "/" + s[1])
var path = ""
if len(s) > 2 {
path = strings.Join(s[2:], "/")
}
if s[0] == "helm" {
return registry.NewGithubPackageRegistry(s[0], s[1])
} else {
return registry.NewGithubRegistry(s[0], s[1], path)
}
} }
func main() { func main() {
@ -121,7 +112,10 @@ func execute() {
switch args[0] { switch args[0] {
case "templates": case "templates":
git := getGitRegistry() git, err := getGitRegistry()
if err != nil {
panic(fmt.Errorf("Cannot get registry %v", err))
}
templates, err := git.List() templates, err := git.List()
if err != nil { if err != nil {
panic(fmt.Errorf("Cannot list %v", err)) panic(fmt.Errorf("Cannot list %v", err))
@ -305,7 +299,10 @@ func getTypeURLs(tName string) []string {
} }
func getDownloadURLs(t registry.Type) []string { func getDownloadURLs(t registry.Type) []string {
git := getGitRegistry() git, err := getGitRegistry()
if err != nil {
panic(fmt.Errorf("Failed to get registry"))
}
urls, err := git.GetURLs(t) urls, err := git.GetURLs(t)
if err != nil { if err != nil {
panic(fmt.Errorf("Failed to fetch type information for \"%s:%s\": %s", t.Name, t.Version, err)) panic(fmt.Errorf("Failed to fetch type information for \"%s:%s\": %s", t.Name, t.Version, err))

@ -58,7 +58,7 @@ func NewTypeResolver() TypeResolver {
client.Timeout = timeout client.Timeout = timeout
ret.getter = util.NewHTTPClient(3, client, util.NewSleeper()) ret.getter = util.NewHTTPClient(3, client, util.NewSleeper())
ret.maxUrls = maxURLImports ret.maxUrls = maxURLImports
ret.rp = &registry.DefaultRegistryProvider{} ret.rp = registry.NewDefaultRegistryProvider()
return ret return ret
} }
@ -244,7 +244,10 @@ func (tr *typeResolver) ShortTypeToDownloadURLs(template string) ([]string, erro
if len(m) != 6 { if len(m) != 6 {
return []string{}, fmt.Errorf("Failed to parse short github url: %s", template) return []string{}, fmt.Errorf("Failed to parse short github url: %s", template)
} }
r := tr.rp.GetGithubRegistry(m[1], m[2]) r, err := tr.rp.GetRegistry("github.com/" + m[1] + "/" + m[2])
if err != nil {
return []string{}, err
}
t := registry.Type{m[3], m[4], m[5]} t := registry.Type{m[3], m[4], m[5]}
return r.GetURLs(t) return r.GetURLs(t)
} }
@ -259,7 +262,10 @@ func (tr *typeResolver) ShortTypeToPackageDownloadURLs(template string) ([]strin
if len(m) != 4 { if len(m) != 4 {
return []string{}, fmt.Errorf("Failed to parse short github url: %s", template) return []string{}, fmt.Errorf("Failed to parse short github url: %s", template)
} }
r := tr.rp.GetGithubPackageRegistry(m[1], m[2]) r, err := tr.rp.GetRegistry("github.com/" + m[1] + "/" + m[2])
if err != nil {
return []string{}, err
}
t := registry.Type{Name: m[3]} t := registry.Type{Name: m[3]}
return r.GetURLs(t) return r.GetURLs(t)
} }

@ -71,16 +71,12 @@ type testRegistryProvider struct {
func newTestRegistryProvider(owner string, repository string, tests map[registry.Type]urlAndError, count int) registry.RegistryProvider { func newTestRegistryProvider(owner string, repository string, tests map[registry.Type]urlAndError, count int) registry.RegistryProvider {
r := make(map[string]registry.Registry) r := make(map[string]registry.Registry)
r[owner+repository] = &testGithubRegistry{tests, count} r["github.com/"+owner+"/"+repository] = &testGithubRegistry{tests, count}
return &testRegistryProvider{owner, repository, r} return &testRegistryProvider{owner, repository, r}
} }
func (trp *testRegistryProvider) GetGithubRegistry(owner string, repository string) registry.Registry { func (trp *testRegistryProvider) GetRegistry(URL string) (registry.Registry, error) {
return trp.r[owner+repository] return trp.r[URL], nil
}
func (trp *testRegistryProvider) GetGithubPackageRegistry(owner string, repository string) registry.Registry {
return trp.r[owner+repository]
} }
type testGithubRegistry struct { type testGithubRegistry struct {

@ -39,11 +39,11 @@ type GithubPackageRegistry struct {
} }
// NewGithubRegistry creates a Registry that can be used to talk to github. // NewGithubRegistry creates a Registry that can be used to talk to github.
func NewGithubPackageRegistry(owner, repository string) *GithubPackageRegistry { func NewGithubPackageRegistry(owner, repository string, client *github.Client) *GithubPackageRegistry {
return &GithubPackageRegistry{ return &GithubPackageRegistry{
owner: owner, owner: owner,
repository: repository, repository: repository,
client: github.NewClient(nil), client: client,
} }
} }

@ -55,12 +55,12 @@ type GithubRegistry struct {
} }
// NewGithubRegistry creates a Registry that can be used to talk to github. // NewGithubRegistry creates a Registry that can be used to talk to github.
func NewGithubRegistry(owner, repository, path string) *GithubRegistry { func NewGithubRegistry(owner, repository, path string, client *github.Client) *GithubRegistry {
return &GithubRegistry{ return &GithubRegistry{
owner: owner, owner: owner,
repository: repository, repository: repository,
path: path, path: path,
client: github.NewClient(nil), client: client,
} }
} }

@ -0,0 +1,70 @@
/*
Copyright 2015 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package registry
import (
"fmt"
"strings"
"github.com/kubernetes/deployment-manager/common"
)
type inmemRepositoryService struct {
repositories map[string]*common.Registry
}
func NewInmemRepositoryService() RegistryService {
return &inmemRepositoryService{
repositories: make(map[string]*common.Registry),
}
}
func (rs *inmemRepositoryService) List() ([]*common.Registry, error) {
return nil, nil
}
func (rs *inmemRepositoryService) Create(repository *common.Registry) error {
rs.repositories[repository.URL] = repository
return nil
}
func (rs *inmemRepositoryService) Get(name string) (*common.Registry, error) {
return &common.Registry{}, nil
}
func (rs *inmemRepositoryService) Delete(name string) error {
return nil
}
func (rs *inmemRepositoryService) GetByURL(URL string) (*common.Registry, error) {
if !strings.HasPrefix(URL, "github.com/") {
return nil, fmt.Errorf("Failed to parse short github url: %s", URL)
}
s := strings.Split(URL, "/")
if len(s) < 3 {
panic(fmt.Errorf("invalid template registry: %s", URL))
}
toFind := "github.com/" + s[1] + "/" + s[2]
fmt.Printf("toFind: %s", toFind)
for _, r := range rs.repositories {
fmt.Printf("Checking: %s", r.URL)
if r.URL == toFind {
return r, nil
}
}
return nil, fmt.Errorf("Failed to find registry for github url: %s", URL)
}

@ -16,6 +16,23 @@ limitations under the License.
package registry package registry
import (
"github.com/kubernetes/deployment-manager/common"
)
type RegistryService interface {
// List all the registries
List() ([]*common.Registry, error)
// Create a new registry
Create(repository *common.Registry) error
// Get a registry
Get(name string) (*common.Registry, error)
// Delete a registry
Delete(name string) error
// Find a registry that backs the given URL
GetByURL(URL string) (*common.Registry, error)
}
// Registry abstracts a registry that holds templates, which can be // Registry abstracts a registry that holds templates, which can be
// used in a Deployment Manager configurations. There can be multiple // used in a Deployment Manager configurations. There can be multiple
// implementations of a registry. Currently we support Deployment Manager // implementations of a registry. Currently we support Deployment Manager

@ -16,19 +16,52 @@ limitations under the License.
package registry package registry
import (
"fmt"
"github.com/google/go-github/github"
"github.com/kubernetes/deployment-manager/common"
)
// RegistryProvider returns factories for creating registries for a given RegistryType. // RegistryProvider returns factories for creating registries for a given RegistryType.
type RegistryProvider interface { type RegistryProvider interface {
GetGithubRegistry(owner string, repository string) Registry GetRegistry(prefix string) (Registry, error)
GetGithubPackageRegistry(owner string, repository string) Registry
} }
type DefaultRegistryProvider struct { func NewDefaultRegistryProvider() RegistryProvider {
rs := NewInmemRepositoryService()
rs.Create(&common.Registry{
Name: "charts",
Type: common.Github,
URL: "github.com/helm/charts",
Format: common.UnversionedRegistry,
})
rs.Create(&common.Registry{
Name: "application-dm-templates",
Type: common.Github,
URL: "github.com/kubernetes/application-dm-templates",
Format: common.VersionedRegistry,
})
return &DefaultRegistryProvider{rs: rs}
} }
func (drp *DefaultRegistryProvider) GetGithubRegistry(owner string, repository string) Registry { type DefaultRegistryProvider struct {
return NewGithubRegistry(owner, repository, "") rs RegistryService
} }
func (drp *DefaultRegistryProvider) GetGithubPackageRegistry(owner string, repository string) Registry { func (drp *DefaultRegistryProvider) GetRegistry(URL string) (Registry, error) {
return NewGithubPackageRegistry(owner, repository) r, err := drp.rs.GetByURL(URL)
if err != nil {
return nil, err
}
if r.Type == common.Github {
if r.Format == common.UnversionedRegistry {
return NewGithubPackageRegistry("helm", "charts", github.NewClient(nil)), nil
}
if r.Format == common.VersionedRegistry {
return NewGithubRegistry("kubernetes", "application-dm-templates", "", github.NewClient(nil)), nil
}
}
return nil, fmt.Errorf("cannot find registry backing url %s", URL)
} }

Loading…
Cancel
Save