mirror of
https://github.com/kubevela/kubevela.git
synced 2026-02-14 18:10:21 +00:00
* chore: updates vuln dependencies versions Signed-off-by: Amit Singh <singhamitch@outlook.com> * fix check-diff tests Signed-off-by: Shivin Gopalani <gopalanishivin@gmail.com> * updated import for deprecated package Signed-off-by: Shivin Gopalani <gopalanishivin@gmail.com> --------- Signed-off-by: Amit Singh <singhamitch@outlook.com> Signed-off-by: Shivin Gopalani <gopalanishivin@gmail.com> Co-authored-by: Gowtham <gowthams316@gmail.com> Co-authored-by: Pushparaj Shetty K S <kspushparajshetty@gmail.com> Co-authored-by: PushparajShetty <116911361+PushparajShetty@users.noreply.github.com>
166 lines
3.9 KiB
Go
166 lines
3.9 KiB
Go
/*
|
|
Copyright 2021 The KubeVela Authors.
|
|
|
|
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 addon
|
|
|
|
import (
|
|
"encoding/base64"
|
|
|
|
gitlab "gitlab.com/gitlab-org/api/client-go"
|
|
|
|
"github.com/oam-dev/kubevela/pkg/utils"
|
|
)
|
|
|
|
var _ AsyncReader = &gitlabReader{}
|
|
|
|
// gitlabReader helps get addon's file by git
|
|
type gitlabReader struct {
|
|
h *gitlabHelper
|
|
}
|
|
|
|
// gitlabHelper helps get addon's file by git
|
|
type gitlabHelper struct {
|
|
Client *gitlab.Client
|
|
Meta *utils.Content
|
|
}
|
|
|
|
// GitLabItem addon's sub item
|
|
type GitLabItem struct {
|
|
basePath string
|
|
tp string
|
|
path string
|
|
name string
|
|
}
|
|
|
|
// GetType get addon's sub item type
|
|
func (g GitLabItem) GetType() string {
|
|
return g.tp
|
|
}
|
|
|
|
// GetPath get addon's sub item path
|
|
func (g GitLabItem) GetPath() string {
|
|
return g.path[len(g.basePath)+1:]
|
|
}
|
|
|
|
// GetName get addon's sub item name
|
|
func (g GitLabItem) GetName() string {
|
|
return g.name
|
|
}
|
|
|
|
// GetRef ref is empty , use default branch master
|
|
func (g *gitlabReader) GetRef() string {
|
|
var ref = "master"
|
|
if g.h.Meta.GitlabContent.Ref != "" {
|
|
return g.h.Meta.GitlabContent.Ref
|
|
}
|
|
return ref
|
|
}
|
|
|
|
// GetProjectID get gitlab project id
|
|
func (g *gitlabReader) GetProjectID() int {
|
|
return g.h.Meta.GitlabContent.PId
|
|
}
|
|
|
|
// GetProjectPath get gitlab project path
|
|
func (g *gitlabReader) GetProjectPath() string {
|
|
return g.h.Meta.GitlabContent.Path
|
|
}
|
|
|
|
// ListAddonMeta relative path to repoURL/basePath
|
|
func (g *gitlabReader) ListAddonMeta() (addonCandidates map[string]SourceMeta, err error) {
|
|
addonCandidates = make(map[string]SourceMeta)
|
|
path := g.GetProjectPath()
|
|
ref := g.GetRef()
|
|
page := 1
|
|
perPage := 100
|
|
tree := []*gitlab.TreeNode{}
|
|
|
|
// This ListTree changed to keyset-based pagination in GitLab 15.0, so we need to get all the pagination lists
|
|
for {
|
|
t, resp, err := g.h.Client.Repositories.ListTree(g.GetProjectID(), &gitlab.ListTreeOptions{
|
|
ListOptions: gitlab.ListOptions{Page: page, PerPage: perPage},
|
|
Path: &path,
|
|
Ref: &ref,
|
|
})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
tree = append(tree, t...)
|
|
if page == resp.TotalPages {
|
|
break
|
|
}
|
|
page++
|
|
}
|
|
|
|
for _, node := range tree {
|
|
if node.Type == TreeType {
|
|
items, err := g.listAddonItem(make([]Item, 0), node.Path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
addonCandidates[node.Name] = SourceMeta{
|
|
Name: node.Name,
|
|
Items: items,
|
|
}
|
|
}
|
|
}
|
|
|
|
return addonCandidates, nil
|
|
}
|
|
|
|
func (g *gitlabReader) listAddonItem(item []Item, path string) ([]Item, error) {
|
|
ref := g.GetRef()
|
|
tree, _, err := g.h.Client.Repositories.ListTree(g.GetProjectID(), &gitlab.ListTreeOptions{Path: &path, Ref: &ref})
|
|
if err != nil {
|
|
return item, err
|
|
}
|
|
for _, node := range tree {
|
|
switch node.Type {
|
|
case TreeType:
|
|
item, err = g.listAddonItem(item, node.Path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
case BlobType:
|
|
item = append(item, &GitLabItem{
|
|
basePath: g.GetProjectPath(),
|
|
tp: FileType,
|
|
path: node.Path,
|
|
name: node.Name,
|
|
})
|
|
}
|
|
}
|
|
return item, nil
|
|
}
|
|
|
|
// ReadFile read file content from gitlab
|
|
func (g *gitlabReader) ReadFile(path string) (content string, err error) {
|
|
ref := g.GetRef()
|
|
getFile, _, err := g.h.Client.RepositoryFiles.GetFile(g.GetProjectID(), g.GetProjectPath()+"/"+path, &gitlab.GetFileOptions{Ref: &ref})
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
decodeString, err := base64.StdEncoding.DecodeString(getFile.Content)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return string(decodeString), nil
|
|
}
|
|
|
|
func (g *gitlabReader) RelativePath(item Item) string {
|
|
return item.GetPath()
|
|
}
|