mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
153 lines
4.3 KiB
153 lines
4.3 KiB
/*
|
|
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 (
|
|
"github.com/google/go-github/github"
|
|
|
|
"fmt"
|
|
"log"
|
|
"strings"
|
|
)
|
|
|
|
// GithubRegistry implements the Registry interface that talks to github.
|
|
type GithubRegistry struct {
|
|
owner string
|
|
repository string
|
|
path string
|
|
client *github.Client
|
|
}
|
|
|
|
// NewGithubRegistry creates a Registry that can be used to talk to github.
|
|
func NewGithubRegistry(owner, repository, path string) *GithubRegistry {
|
|
return &GithubRegistry{
|
|
owner: owner,
|
|
repository: repository,
|
|
path: path,
|
|
client: github.NewClient(nil),
|
|
}
|
|
}
|
|
|
|
// List the types from the Registry.
|
|
func (g *GithubRegistry) List() ([]Type, error) {
|
|
// First list all the types at the top level.
|
|
types, err := g.getDirs("")
|
|
if err != nil {
|
|
log.Printf("Failed to list templates: %v", err)
|
|
return nil, err
|
|
}
|
|
|
|
var retTypes []Type
|
|
for _, t := range types {
|
|
// Then we need to fetch the versions (directories for this type)
|
|
versions, err := g.getDirs(t)
|
|
if err != nil {
|
|
log.Printf("Failed to fetch versions for template: %s", t)
|
|
return nil, err
|
|
}
|
|
|
|
for _, v := range versions {
|
|
retTypes = append(retTypes, Type{Name: t, Version: v})
|
|
}
|
|
}
|
|
|
|
return retTypes, nil
|
|
}
|
|
|
|
// GetURL fetches the download URL for a given Type and checks for existence of a schema file.
|
|
func (g *GithubRegistry) GetURL(t Type) (string, error) {
|
|
path,err := g.MakeRepositoryPath(t)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
log.Printf("Got repository path: %s", path)
|
|
_, dc, _, err := g.client.Repositories.GetContents(g.owner, g.repository, path, nil)
|
|
if err != nil {
|
|
log.Printf("Failed to list versions at path: %s: %v", path, err)
|
|
return "", err
|
|
}
|
|
var downloadURL, typeName, schemaName string
|
|
for _, f := range dc {
|
|
if *f.Type == "file" {
|
|
if *f.Name == t.Name+".jinja" || *f.Name == t.Name+".py" {
|
|
typeName = *f.Name
|
|
downloadURL = *f.DownloadURL
|
|
}
|
|
if *f.Name == t.Name+".jinja.schema" || *f.Name == t.Name+".py.schema" {
|
|
schemaName = *f.Name
|
|
}
|
|
}
|
|
}
|
|
if downloadURL == "" {
|
|
return "", fmt.Errorf("Can not find template %s:%s", t.Name, t.Version)
|
|
}
|
|
if schemaName == typeName+".schema" {
|
|
return downloadURL, nil
|
|
}
|
|
return "", fmt.Errorf("Can not find schema for %s:%s, expected to find %s", t.Name, t.Version, typeName+".schema")
|
|
}
|
|
|
|
func (g *GithubRegistry) getDirs(dir string) ([]string, error) {
|
|
var path = g.path
|
|
if dir != "" {
|
|
path = g.path + "/" + dir
|
|
}
|
|
|
|
_, dc, _, err := g.client.Repositories.GetContents(g.owner, g.repository, path, nil)
|
|
if err != nil {
|
|
log.Printf("Failed to get contents at path: %s: %v", path, err)
|
|
return nil, err
|
|
}
|
|
|
|
var dirs []string
|
|
for _, entry := range dc {
|
|
if *entry.Type == "dir" {
|
|
dirs = append(dirs, *entry.Name)
|
|
}
|
|
}
|
|
|
|
return dirs, nil
|
|
}
|
|
|
|
func (g *GithubRegistry) mapCollection(collection string) (string, error) {
|
|
if strings.ContainsAny(collection, "/") {
|
|
return "", fmt.Errorf("collection must not contain slashes, got %s", collection)
|
|
}
|
|
// TODO(vaikas): Implement lookup from the root metadata file to map collection to a path
|
|
return collection, nil
|
|
}
|
|
|
|
// MakeRepositoryPath constructs a github path to a given type based on a repository, and type name and version.
|
|
// The returned repository path will be of the form:
|
|
// [GithubRegistry.path/][Type.Collection]/Type.Name/Type.Version
|
|
// Type.Collection will be mapped using mapCollection in the future, for now it's a straight
|
|
// 1:1 mapping (if given)
|
|
func (g *GithubRegistry) MakeRepositoryPath(t Type) (string, error) {
|
|
log.Printf("Making repository path: %v", t)
|
|
// First map the collection
|
|
collection, err := g.mapCollection(t.Collection)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
// Construct the return path
|
|
p := ""
|
|
if len(g.path) > 0 {
|
|
p += g.path + "/"
|
|
}
|
|
if len(collection) > 0 {
|
|
p += collection + "/"
|
|
}
|
|
return p + t.Name + "/" + t.Version, nil
|
|
}
|