mirror of https://github.com/fluxcd/flux2.git
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			232 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Go
		
	
			
		
		
	
	
			232 lines
		
	
	
		
			5.0 KiB
		
	
	
	
		
			Go
		
	
| /*
 | |
| Copyright 2021 The Flux 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 main
 | |
| 
 | |
| import (
 | |
| 	"sigs.k8s.io/controller-runtime/pkg/client"
 | |
| 
 | |
| 	sourcev1 "github.com/fluxcd/source-controller/api/v1"
 | |
| )
 | |
| 
 | |
| // These are general-purpose adapters for attaching methods to, for
 | |
| // the various commands. The *List adapters implement len(), since
 | |
| // it's used in at least a couple of commands.
 | |
| 
 | |
| // sourcev1.ociRepository
 | |
| 
 | |
| var ociRepositoryType = apiType{
 | |
| 	kind:         sourcev1.OCIRepositoryKind,
 | |
| 	humanKind:    "source oci",
 | |
| 	groupVersion: sourcev1.GroupVersion,
 | |
| }
 | |
| 
 | |
| type ociRepositoryAdapter struct {
 | |
| 	*sourcev1.OCIRepository
 | |
| }
 | |
| 
 | |
| func (a ociRepositoryAdapter) asClientObject() client.Object {
 | |
| 	return a.OCIRepository
 | |
| }
 | |
| 
 | |
| func (a ociRepositoryAdapter) deepCopyClientObject() client.Object {
 | |
| 	return a.OCIRepository.DeepCopy()
 | |
| }
 | |
| 
 | |
| // sourcev1b2.OCIRepositoryList
 | |
| 
 | |
| type ociRepositoryListAdapter struct {
 | |
| 	*sourcev1.OCIRepositoryList
 | |
| }
 | |
| 
 | |
| func (a ociRepositoryListAdapter) asClientList() client.ObjectList {
 | |
| 	return a.OCIRepositoryList
 | |
| }
 | |
| 
 | |
| func (a ociRepositoryListAdapter) len() int {
 | |
| 	return len(a.OCIRepositoryList.Items)
 | |
| }
 | |
| 
 | |
| // sourcev1.Bucket
 | |
| 
 | |
| var bucketType = apiType{
 | |
| 	kind:         sourcev1.BucketKind,
 | |
| 	humanKind:    "source bucket",
 | |
| 	groupVersion: sourcev1.GroupVersion,
 | |
| }
 | |
| 
 | |
| type bucketAdapter struct {
 | |
| 	*sourcev1.Bucket
 | |
| }
 | |
| 
 | |
| func (a bucketAdapter) asClientObject() client.Object {
 | |
| 	return a.Bucket
 | |
| }
 | |
| 
 | |
| func (a bucketAdapter) deepCopyClientObject() client.Object {
 | |
| 	return a.Bucket.DeepCopy()
 | |
| }
 | |
| 
 | |
| // sourcev1.BucketList
 | |
| 
 | |
| type bucketListAdapter struct {
 | |
| 	*sourcev1.BucketList
 | |
| }
 | |
| 
 | |
| func (a bucketListAdapter) asClientList() client.ObjectList {
 | |
| 	return a.BucketList
 | |
| }
 | |
| 
 | |
| func (a bucketListAdapter) len() int {
 | |
| 	return len(a.BucketList.Items)
 | |
| }
 | |
| 
 | |
| // sourcev1.HelmChart
 | |
| 
 | |
| var helmChartType = apiType{
 | |
| 	kind:         sourcev1.HelmChartKind,
 | |
| 	humanKind:    "source chart",
 | |
| 	groupVersion: sourcev1.GroupVersion,
 | |
| }
 | |
| 
 | |
| type helmChartAdapter struct {
 | |
| 	*sourcev1.HelmChart
 | |
| }
 | |
| 
 | |
| func (a helmChartAdapter) asClientObject() client.Object {
 | |
| 	return a.HelmChart
 | |
| }
 | |
| 
 | |
| func (a helmChartAdapter) deepCopyClientObject() client.Object {
 | |
| 	return a.HelmChart.DeepCopy()
 | |
| }
 | |
| 
 | |
| // sourcev1.HelmChartList
 | |
| 
 | |
| type helmChartListAdapter struct {
 | |
| 	*sourcev1.HelmChartList
 | |
| }
 | |
| 
 | |
| func (a helmChartListAdapter) asClientList() client.ObjectList {
 | |
| 	return a.HelmChartList
 | |
| }
 | |
| 
 | |
| func (a helmChartListAdapter) len() int {
 | |
| 	return len(a.HelmChartList.Items)
 | |
| }
 | |
| 
 | |
| // sourcev1.GitRepository
 | |
| 
 | |
| var gitRepositoryType = apiType{
 | |
| 	kind:         sourcev1.GitRepositoryKind,
 | |
| 	humanKind:    "source git",
 | |
| 	groupVersion: sourcev1.GroupVersion,
 | |
| }
 | |
| 
 | |
| type gitRepositoryAdapter struct {
 | |
| 	*sourcev1.GitRepository
 | |
| }
 | |
| 
 | |
| func (a gitRepositoryAdapter) asClientObject() client.Object {
 | |
| 	return a.GitRepository
 | |
| }
 | |
| 
 | |
| func (a gitRepositoryAdapter) deepCopyClientObject() client.Object {
 | |
| 	return a.GitRepository.DeepCopy()
 | |
| }
 | |
| 
 | |
| // sourcev1.GitRepositoryList
 | |
| 
 | |
| type gitRepositoryListAdapter struct {
 | |
| 	*sourcev1.GitRepositoryList
 | |
| }
 | |
| 
 | |
| func (a gitRepositoryListAdapter) asClientList() client.ObjectList {
 | |
| 	return a.GitRepositoryList
 | |
| }
 | |
| 
 | |
| func (a gitRepositoryListAdapter) len() int {
 | |
| 	return len(a.GitRepositoryList.Items)
 | |
| }
 | |
| 
 | |
| // sourcev1.HelmRepository
 | |
| 
 | |
| var helmRepositoryType = apiType{
 | |
| 	kind:         sourcev1.HelmRepositoryKind,
 | |
| 	humanKind:    "source helm",
 | |
| 	groupVersion: sourcev1.GroupVersion,
 | |
| }
 | |
| 
 | |
| type helmRepositoryAdapter struct {
 | |
| 	*sourcev1.HelmRepository
 | |
| }
 | |
| 
 | |
| func (a helmRepositoryAdapter) asClientObject() client.Object {
 | |
| 	return a.HelmRepository
 | |
| }
 | |
| 
 | |
| func (a helmRepositoryAdapter) deepCopyClientObject() client.Object {
 | |
| 	return a.HelmRepository.DeepCopy()
 | |
| }
 | |
| 
 | |
| // sourcev1.HelmRepositoryList
 | |
| 
 | |
| type helmRepositoryListAdapter struct {
 | |
| 	*sourcev1.HelmRepositoryList
 | |
| }
 | |
| 
 | |
| func (a helmRepositoryListAdapter) asClientList() client.ObjectList {
 | |
| 	return a.HelmRepositoryList
 | |
| }
 | |
| 
 | |
| func (a helmRepositoryListAdapter) len() int {
 | |
| 	return len(a.HelmRepositoryList.Items)
 | |
| }
 | |
| 
 | |
| // sourcev1.ExternalArtifact
 | |
| 
 | |
| var externalArtifactType = apiType{
 | |
| 	kind:         sourcev1.ExternalArtifactKind,
 | |
| 	humanKind:    "source external-artifact",
 | |
| 	groupVersion: sourcev1.GroupVersion,
 | |
| }
 | |
| 
 | |
| type externalArtifactAdapter struct {
 | |
| 	*sourcev1.ExternalArtifact
 | |
| }
 | |
| 
 | |
| func (a externalArtifactAdapter) asClientObject() client.Object {
 | |
| 	return a.ExternalArtifact
 | |
| }
 | |
| 
 | |
| func (a externalArtifactAdapter) deepCopyClientObject() client.Object {
 | |
| 	return a.ExternalArtifact.DeepCopy()
 | |
| }
 | |
| 
 | |
| // sourcev1.ExternalArtifactList
 | |
| 
 | |
| type externalArtifactListAdapter struct {
 | |
| 	*sourcev1.ExternalArtifactList
 | |
| }
 | |
| 
 | |
| func (a externalArtifactListAdapter) asClientList() client.ObjectList {
 | |
| 	return a.ExternalArtifactList
 | |
| }
 | |
| 
 | |
| func (a externalArtifactListAdapter) len() int {
 | |
| 	return len(a.ExternalArtifactList.Items)
 | |
| }
 |