-
Notifications
You must be signed in to change notification settings - Fork 0
/
provider.go
76 lines (64 loc) · 3.15 KB
/
provider.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package bitbucketserver
import (
"fmt"
"github.com/mitchellh/mapstructure"
"github.com/rancher/norman/store/subtype"
"github.com/rancher/norman/types"
"github.com/rancher/rancher/pkg/pipeline/providers/common"
"github.com/rancher/rancher/pkg/pipeline/remote/model"
"github.com/rancher/types/apis/project.cattle.io/v3"
"github.com/rancher/types/apis/project.cattle.io/v3/schema"
"github.com/rancher/types/client/project/v3"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
)
type BsProvider struct {
common.BaseProvider
}
func (b *BsProvider) CustomizeSchemas(schemas *types.Schemas) {
scpConfigBaseSchema := schemas.Schema(&schema.Version, client.SourceCodeProviderConfigType)
configSchema := schemas.Schema(&schema.Version, client.BitbucketServerPipelineConfigType)
configSchema.ActionHandler = b.ActionHandler
configSchema.Formatter = b.Formatter
configSchema.Store = subtype.NewSubTypeStore(client.BitbucketServerPipelineConfigType, scpConfigBaseSchema.Store)
providerBaseSchema := schemas.Schema(&schema.Version, client.SourceCodeProviderType)
providerSchema := schemas.Schema(&schema.Version, client.BitbucketServerProviderType)
providerSchema.Formatter = b.providerFormatter
providerSchema.ActionHandler = b.providerActionHandler
providerSchema.Store = subtype.NewSubTypeStore(client.BitbucketServerProviderType, providerBaseSchema.Store)
}
func (b *BsProvider) GetName() string {
return model.BitbucketServerType
}
func (b *BsProvider) TransformToSourceCodeProvider(config map[string]interface{}) map[string]interface{} {
return b.BaseProvider.TransformToSourceCodeProvider(config, client.BitbucketServerProviderType)
}
func (b *BsProvider) GetProviderConfig(projectID string) (interface{}, error) {
scpConfigObj, err := b.SourceCodeProviderConfigs.ObjectClient().UnstructuredClient().GetNamespaced(projectID, model.BitbucketServerType, metav1.GetOptions{})
if err != nil {
return nil, fmt.Errorf("failed to retrieve BitbucketConfig, error: %v", err)
}
u, ok := scpConfigObj.(runtime.Unstructured)
if !ok {
return nil, fmt.Errorf("failed to retrieve BitbucketConfig, cannot read k8s Unstructured data")
}
storedBitbucketPipelineConfigMap := u.UnstructuredContent()
storedBitbucketPipelineConfig := &v3.BitbucketServerPipelineConfig{}
if err := mapstructure.Decode(storedBitbucketPipelineConfigMap, storedBitbucketPipelineConfig); err != nil {
return nil, fmt.Errorf("failed to decode the config, error: %v", err)
}
metadataMap, ok := storedBitbucketPipelineConfigMap["metadata"].(map[string]interface{})
if !ok {
return nil, fmt.Errorf("failed to retrieve BitbucketConfig metadata, cannot read k8s Unstructured data")
}
typemeta := &metav1.ObjectMeta{}
//time.Time cannot decode directly
delete(metadataMap, "creationTimestamp")
if err := mapstructure.Decode(metadataMap, typemeta); err != nil {
return nil, fmt.Errorf("failed to decode the config, error: %v", err)
}
storedBitbucketPipelineConfig.ObjectMeta = *typemeta
storedBitbucketPipelineConfig.APIVersion = "project.cattle.io/v3"
storedBitbucketPipelineConfig.Kind = v3.SourceCodeProviderConfigGroupVersionKind.Kind
return storedBitbucketPipelineConfig, nil
}