mirror of
https://github.com/harness/drone.git
synced 2025-05-04 08:49:52 +08:00

* [AH-993]: Review comments fixed * [AH-993]: Merge commit * [AH-993]: Updated upstream creation * [AH-993]: Cleanup * [AH-993]: Updated messages * [AH-993]: Merge commit * [AH-993]: Upstream flows support for Python Packages * [AH-993]: Updated local file * [AH-993]: Added support for local and created arch to support different package types * Merge branch 'main' of https://git0.harness.io/l7B_kbSEQD2wjrM7PShm5w/PROD/Harness_Commons/gitness into AH-993-upstream-implementation * [AH-993]: temp commit * [AH-993]: Merge commit: * [AH-993]: temp update
122 lines
3.9 KiB
Go
122 lines
3.9 KiB
Go
// Copyright 2023 Harness, Inc.
|
|
//
|
|
// 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 python
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
|
|
"github.com/harness/gitness/app/services/refcache"
|
|
"github.com/harness/gitness/registry/app/api/openapi/contracts/artifact"
|
|
"github.com/harness/gitness/registry/app/metadata/python"
|
|
"github.com/harness/gitness/registry/app/remote/adapter"
|
|
pypi2 "github.com/harness/gitness/registry/app/remote/adapter/commons/pypi"
|
|
"github.com/harness/gitness/registry/app/remote/adapter/pypi"
|
|
"github.com/harness/gitness/registry/app/remote/registry"
|
|
"github.com/harness/gitness/registry/types"
|
|
"github.com/harness/gitness/secret"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
type RemoteRegistryHelper interface {
|
|
// GetFile Downloads the file for the given package and filename
|
|
GetFile(ctx context.Context, pkg string, filename string) (io.ReadCloser, error)
|
|
|
|
// GetMetadata Fetches the metadata for the given package for all versions
|
|
GetMetadata(ctx context.Context, pkg string) (*pypi2.SimpleMetadata, error)
|
|
|
|
// GetJSON Fetches the metadata for the given package and specific version
|
|
GetJSON(ctx context.Context, pkg string, version string) (*python.Metadata, error)
|
|
}
|
|
|
|
type remoteRegistryHelper struct {
|
|
adapter registry.PythonRegistry
|
|
registry types.UpstreamProxy
|
|
}
|
|
|
|
func NewRemoteRegistryHelper(
|
|
ctx context.Context,
|
|
spaceFinder refcache.SpaceFinder,
|
|
registry types.UpstreamProxy,
|
|
service secret.Service,
|
|
) (RemoteRegistryHelper, error) {
|
|
r := &remoteRegistryHelper{
|
|
registry: registry,
|
|
}
|
|
if err := r.init(ctx, spaceFinder, service); err != nil {
|
|
log.Ctx(ctx).Error().Err(err).Msgf("failed to init remote registry for remote: %s", registry.RepoKey)
|
|
return nil, err
|
|
}
|
|
return r, nil
|
|
}
|
|
|
|
func (r *remoteRegistryHelper) init(
|
|
ctx context.Context,
|
|
spaceFinder refcache.SpaceFinder,
|
|
service secret.Service,
|
|
) error {
|
|
key := string(artifact.UpstreamConfigSourcePyPi)
|
|
if r.registry.Source == string(artifact.UpstreamConfigSourcePyPi) {
|
|
r.registry.RepoURL = pypi.PyPiURL
|
|
}
|
|
|
|
factory, err := adapter.GetFactory(key)
|
|
if err != nil {
|
|
log.Ctx(ctx).Error().Err(err).Msg("failed to get factory " + key)
|
|
return err
|
|
}
|
|
|
|
adpt, err := factory.Create(ctx, spaceFinder, r.registry, service)
|
|
if err != nil {
|
|
log.Ctx(ctx).Error().Err(err).Msg("failed to create factory " + key)
|
|
return err
|
|
}
|
|
|
|
pythonReg, ok := adpt.(registry.PythonRegistry)
|
|
if !ok {
|
|
log.Ctx(ctx).Error().Msg("failed to cast factory to python registry")
|
|
return err
|
|
}
|
|
r.adapter = pythonReg
|
|
return nil
|
|
}
|
|
|
|
func (r *remoteRegistryHelper) GetFile(ctx context.Context, pkg string, filename string) (io.ReadCloser, error) {
|
|
v2, err := r.adapter.GetPackage(ctx, pkg, filename)
|
|
if err != nil {
|
|
log.Ctx(ctx).Error().Err(err).Msgf("failed to get pkg: %s, file: %s", pkg, filename)
|
|
}
|
|
return v2, err
|
|
}
|
|
|
|
func (r *remoteRegistryHelper) GetMetadata(ctx context.Context, pkg string) (*pypi2.SimpleMetadata, error) {
|
|
packages, err := r.adapter.GetMetadata(ctx, pkg)
|
|
if err != nil {
|
|
log.Ctx(ctx).Error().Err(err).Msgf("failed to get metadata for pkg: %s", pkg)
|
|
return nil, err
|
|
}
|
|
return packages, nil
|
|
}
|
|
|
|
func (r *remoteRegistryHelper) GetJSON(ctx context.Context, pkg string, version string) (*python.Metadata, error) {
|
|
metadata, err := r.adapter.GetJSON(ctx, pkg, version)
|
|
if err != nil {
|
|
log.Ctx(ctx).Error().Err(err).Msgf("failed to get JSON for pkg: %s, version: %s", pkg, version)
|
|
return nil, err
|
|
}
|
|
return metadata, nil
|
|
}
|