generated from openshift/console-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathartifactHub.ts
147 lines (139 loc) · 3.86 KB
/
artifactHub.ts
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import {
CatalogItem,
k8sCreate,
K8sResourceKind,
k8sUpdate,
} from '@openshift-console/dynamic-plugin-sdk';
import * as _ from 'lodash';
import * as React from 'react';
import { GITHUB_BASE_URL } from '../../../consts';
import { TaskModel, TaskModelV1Beta1 } from '../../../models';
import { ArtifactHubTask, ArtifactHubTaskDetails } from '../../../types';
import { TektonTaskAnnotation } from '../../task-quicksearch/pipeline-quicksearch-utils';
import { ApiResult } from '../hooks/useApiResponse';
import { getTaskDetails, getTaskYAMLFromGithub, searchTasks } from './utils';
export const ARTIFACTHUB = 'ArtifactHub';
export const getArtifactHubTaskDetails = async (
item: CatalogItem,
v?: string,
): Promise<ArtifactHubTaskDetails> => {
const { name, data } = item;
const {
task: {
version,
repository: { name: repoName },
},
} = data;
return getTaskDetails({
repoName,
name,
version: v || version,
allowAuthHeader: true,
allowInsecure: true,
});
};
export const useGetArtifactHubTasks = (
hasPermission: boolean,
): ApiResult<ArtifactHubTask[]> => {
const [resultData, setResult] = React.useState<ArtifactHubTask[]>([]);
const [loaded, setLoaded] = React.useState(false);
const [loadedError, setLoadedError] = React.useState<string>();
React.useEffect(() => {
let mounted = true;
if (hasPermission) {
searchTasks({ allowAuthHeader: true, allowInsecure: true })
.then((packages) => {
if (mounted) {
setLoaded(true);
setResult(packages);
}
})
.catch((err) => {
if (mounted) {
setLoaded(true);
setLoadedError(err?.message);
}
});
} else {
setLoaded(true);
}
return () => {
mounted = false;
};
}, [hasPermission]);
return [resultData, loaded, loadedError];
};
export const createArtifactHubTask = (
url: string,
namespace: string,
version: string,
) => {
const yamlPath = url.startsWith(GITHUB_BASE_URL)
? url.slice(GITHUB_BASE_URL.length)
: null;
if (!yamlPath) {
throw new Error('Not a valid GitHub URL');
}
return getTaskYAMLFromGithub({
yamlPath,
allowAuthHeader: true,
allowInsecure: true,
})
.then((task: K8sResourceKind) => {
task.metadata.namespace = namespace;
task.metadata.annotations = {
...task.metadata.annotations,
[TektonTaskAnnotation.installedFrom]: ARTIFACTHUB,
[TektonTaskAnnotation.semVersion]: version,
};
return k8sCreate({
model:
task.apiVersion === 'tekton.dev/v1' ? TaskModel : TaskModelV1Beta1,
data: task,
});
})
.catch((err) => {
// eslint-disable-next-line no-console
console.warn('Error while importing ArtifactHub Task:', err);
throw err;
});
};
export const updateArtifactHubTask = async (
url: string,
taskData: CatalogItem,
namespace: string,
name: string,
version: string,
) => {
const yamlPath = url.startsWith(GITHUB_BASE_URL)
? url.slice(GITHUB_BASE_URL.length)
: null;
if (!yamlPath) {
throw new Error('Not a valid GitHub raw URL');
}
return getTaskYAMLFromGithub({
yamlPath,
allowAuthHeader: true,
allowInsecure: true,
})
.then((task: K8sResourceKind) => {
task.metadata.namespace = namespace;
task.metadata.annotations = {
...task.metadata.annotations,
[TektonTaskAnnotation.semVersion]: version,
};
task.metadata = _.merge({}, taskData.data.metadata, task.metadata);
return k8sUpdate({
model:
task.apiVersion === 'tekton.dev/v1' ? TaskModel : TaskModelV1Beta1,
data: task,
ns: namespace,
name,
});
})
.catch((err) => {
// eslint-disable-next-line no-console
console.warn('Error while updating ArtifactHub Task:', err);
throw err;
});
};