@backstage-community/plugin-multi-source-security-viewer 0.4.3 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/dist/api/azure.esm.js +1 -2
- package/dist/api/azure.esm.js.map +1 -1
- package/dist/components/PipelineRunLogs/PipelineRunLogsDownloader.esm.js +1 -1
- package/dist/components/PipelineRunLogs/PipelineRunLogsDownloader.esm.js.map +1 -1
- package/dist/utils/downloadLogFile.esm.js +12 -0
- package/dist/utils/downloadLogFile.esm.js.map +1 -0
- package/package.json +15 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage-community/plugin-multi-source-security-viewer
|
|
2
2
|
|
|
3
|
+
## 0.5.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c8e1803: Use getAnnotationValuesFromEntity from azure-devops-common
|
|
8
|
+
- 5ac4c60: Replaced `downloadLogFile` from `@janus-idp/shared-react` with a local version based on PatternFly’s `CodeEditor`, so the plugin no longer depends on `shared-react` for this utility.
|
|
9
|
+
|
|
10
|
+
## 0.5.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 2284286: Bump version to 1.39.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [2284286]
|
|
19
|
+
- @backstage-community/plugin-multi-source-security-viewer-common@0.3.0
|
|
20
|
+
|
|
3
21
|
## 0.4.3
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/dist/api/azure.esm.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { createApiRef } from '@backstage/core-plugin-api';
|
|
2
|
-
import { getAnnotationValuesFromEntity } from '@backstage-community/plugin-azure-devops';
|
|
3
|
-
import { BuildStatus, BuildResult } from '@backstage-community/plugin-azure-devops-common';
|
|
2
|
+
import { getAnnotationValuesFromEntity, BuildStatus, BuildResult } from '@backstage-community/plugin-azure-devops-common';
|
|
4
3
|
import { stringifyEntityRef } from '@backstage/catalog-model';
|
|
5
4
|
import { PipelineRunResult } from '../models/pipelineRunResult.esm.js';
|
|
6
5
|
import { RunStatus } from '../types/pipelinerun.esm.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"azure.esm.js","sources":["../../src/api/azure.ts"],"sourcesContent":["/*\n * Copyright 2025 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { createApiRef } from '@backstage/core-plugin-api';\nimport {
|
|
1
|
+
{"version":3,"file":"azure.esm.js","sources":["../../src/api/azure.ts"],"sourcesContent":["/*\n * Copyright 2025 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport { createApiRef } from '@backstage/core-plugin-api';\nimport { AzureDevOpsApi } from '@backstage-community/plugin-azure-devops';\nimport { getAnnotationValuesFromEntity } from '@backstage-community/plugin-azure-devops-common';\nimport {\n BuildResult,\n BuildStatus,\n} from '@backstage-community/plugin-azure-devops-common';\nimport { MssvApi, MssvApiResponse } from './mssv';\nimport { Entity, stringifyEntityRef } from '@backstage/catalog-model';\nimport { PipelineRunResult } from '../models/pipelineRunResult';\nimport { RunStatus } from '../types/pipelinerun';\n\n// Apiref to map with client\nexport const mssvAzureDevopsApiRef = createApiRef<MssvApi>({\n id: 'plugin.mssv-api-azuredevops.service',\n});\n\nconst mapStatus = (status: string | BuildResult | BuildStatus): RunStatus => {\n const AzureDevopsRunStatus = { ...BuildStatus, ...BuildResult };\n const runStatus =\n AzureDevopsRunStatus[status as keyof typeof AzureDevopsRunStatus];\n switch (runStatus) {\n case BuildResult.Succeeded:\n return RunStatus.Succeeded;\n case BuildResult.Failed:\n return RunStatus.Failed;\n case BuildResult.Canceled:\n return RunStatus.Cancelled;\n case BuildStatus.InProgress:\n return RunStatus.Running;\n default:\n return RunStatus.Unknown;\n }\n};\n\nexport class MssvAzureDevopsClient implements MssvApi {\n private readonly azureDevopsApi: AzureDevOpsApi;\n\n constructor(options: { azureDevopsApi: AzureDevOpsApi }) {\n this.azureDevopsApi = options.azureDevopsApi;\n }\n\n async getPipelineSummary(options: {\n entity: Entity;\n page: number;\n pageSize: number;\n }): Promise<MssvApiResponse> {\n const { entity, page, pageSize } = options;\n const { project, repo, definition, host, org } =\n getAnnotationValuesFromEntity(entity);\n\n const [sliceStart, sliceEnd] = [\n page * pageSize,\n page * pageSize + pageSize,\n ];\n\n const buildRuns = (await this.azureDevopsApi.getBuildRuns(\n project,\n stringifyEntityRef(entity),\n repo,\n definition,\n host,\n org,\n )) ?? { items: [] };\n\n const buildRunsSlice = buildRuns.items.slice(sliceStart, sliceEnd);\n const buildRunsWithLogs = await Promise.all(\n buildRunsSlice\n .map(async run => {\n if (!run?.id) {\n return undefined;\n }\n\n const logs = await this.azureDevopsApi\n .getBuildRunLog(\n project,\n stringifyEntityRef(entity),\n run.id,\n host,\n org,\n )\n .then(res => res?.log.join(' \\n'))\n .catch(() => ''); // fallback on empty string. It disables logs button and updates tooltip\n\n const status = mapStatus(run?.result ?? run?.status ?? 'Unknown');\n\n return {\n run,\n logs,\n status,\n };\n })\n .filter(Boolean), // remove undefined values\n );\n\n const results =\n buildRunsWithLogs.map(\n pr =>\n new PipelineRunResult({\n id: pr?.run?.id?.toString(),\n displayName: pr?.run?.title,\n status: pr?.status,\n logs: pr?.logs,\n }),\n ) || [];\n\n return {\n results,\n totalCount: buildRuns.items.length,\n };\n }\n\n async getPipelineDetail(): Promise<MssvApiResponse> {\n return { results: [], totalCount: 0 };\n }\n}\n"],"names":[],"mappings":"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"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
2
2
|
import { Fragment } from 'react';
|
|
3
|
-
import { downloadLogFile } from '@janus-idp/shared-react';
|
|
4
3
|
import { makeStyles, createStyles, Box, Link } from '@material-ui/core';
|
|
5
4
|
import DownloadIcon from '@mui/icons-material/FileDownloadOutlined';
|
|
5
|
+
import { downloadLogFile } from '../../utils/downloadLogFile.esm.js';
|
|
6
6
|
|
|
7
7
|
const useStyles = makeStyles(
|
|
8
8
|
(theme) => createStyles({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PipelineRunLogsDownloader.esm.js","sources":["../../../src/components/PipelineRunLogs/PipelineRunLogsDownloader.tsx"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport type { FC } from 'react';\n\nimport { Fragment } from 'react';\nimport {
|
|
1
|
+
{"version":3,"file":"PipelineRunLogsDownloader.esm.js","sources":["../../../src/components/PipelineRunLogs/PipelineRunLogsDownloader.tsx"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport type { FC } from 'react';\n\nimport { Fragment } from 'react';\nimport { Box, createStyles, makeStyles, Link, Theme } from '@material-ui/core';\nimport DownloadIcon from '@mui/icons-material/FileDownloadOutlined';\nimport { PipelineRunResult } from '../../models/pipelineRunResult';\nimport { downloadLogFile } from '../../utils/downloadLogFile';\n\ninterface PipelineRunLogsDowloaderProps {\n pr: PipelineRunResult;\n activeStep: number;\n}\n\nconst useStyles = makeStyles((theme: Theme) =>\n createStyles({\n downloadLink: {\n verticalAlign: '-0.180em',\n marginLeft: theme.spacing(2),\n },\n }),\n);\n\nexport const PipelineRunLogsDownloader: FC<PipelineRunLogsDowloaderProps> = ({\n pr,\n activeStep,\n}) => {\n const classes = useStyles();\n const fullLogsFilename = `${pr.id || 'pipelinerun'}-logs.txt`;\n const stepLogsFilename = `${pr.id || 'pipelinerun'}-step-${\n pr?.steps[activeStep]?.name || activeStep\n }-logs.txt`;\n\n return (\n <Fragment>\n <Box display=\"flex\" justifyContent=\"flex-end\" alignItems=\"center\">\n <Link\n component=\"button\"\n variant=\"body2\"\n disabled={!pr.logs}\n data-testid=\"download-logfile\"\n download\n onClick={() => downloadLogFile(pr.logs, fullLogsFilename)}\n >\n <DownloadIcon className={classes.downloadLink} /> Download\n </Link>\n <Link\n component=\"button\"\n variant=\"body2\"\n download\n data-testid=\"download-logstep\"\n disabled={!pr?.steps[activeStep]?.logs}\n onClick={() =>\n downloadLogFile(pr.steps[activeStep].logs, stepLogsFilename)\n }\n >\n <DownloadIcon className={classes.downloadLink} /> Download all tasks\n logs\n </Link>\n </Box>\n </Fragment>\n );\n};\n"],"names":[],"mappings":";;;;;;AA4BA,MAAM,SAAY,GAAA,UAAA;AAAA,EAAW,CAAC,UAC5B,YAAa,CAAA;AAAA,IACX,YAAc,EAAA;AAAA,MACZ,aAAe,EAAA,UAAA;AAAA,MACf,UAAA,EAAY,KAAM,CAAA,OAAA,CAAQ,CAAC;AAAA;AAC7B,GACD;AACH,CAAA;AAEO,MAAM,4BAA+D,CAAC;AAAA,EAC3E,EAAA;AAAA,EACA;AACF,CAAM,KAAA;AACJ,EAAA,MAAM,UAAU,SAAU,EAAA;AAC1B,EAAA,MAAM,gBAAmB,GAAA,CAAA,EAAG,EAAG,CAAA,EAAA,IAAM,aAAa,CAAA,SAAA,CAAA;AAClD,EAAM,MAAA,gBAAA,GAAmB,CAAG,EAAA,EAAA,CAAG,EAAM,IAAA,aAAa,CAChD,MAAA,EAAA,EAAA,EAAI,KAAM,CAAA,UAAU,CAAG,EAAA,IAAA,IAAQ,UACjC,CAAA,SAAA,CAAA;AAEA,EACE,uBAAA,GAAA,CAAC,YACC,QAAC,kBAAA,IAAA,CAAA,GAAA,EAAA,EAAI,SAAQ,MAAO,EAAA,cAAA,EAAe,UAAW,EAAA,UAAA,EAAW,QACvD,EAAA,QAAA,EAAA;AAAA,oBAAA,IAAA;AAAA,MAAC,IAAA;AAAA,MAAA;AAAA,QACC,SAAU,EAAA,QAAA;AAAA,QACV,OAAQ,EAAA,OAAA;AAAA,QACR,QAAA,EAAU,CAAC,EAAG,CAAA,IAAA;AAAA,QACd,aAAY,EAAA,kBAAA;AAAA,QACZ,QAAQ,EAAA,IAAA;AAAA,QACR,OAAS,EAAA,MAAM,eAAgB,CAAA,EAAA,CAAG,MAAM,gBAAgB,CAAA;AAAA,QAExD,QAAA,EAAA;AAAA,0BAAC,GAAA,CAAA,YAAA,EAAA,EAAa,SAAW,EAAA,OAAA,CAAQ,YAAc,EAAA,CAAA;AAAA,UAAE;AAAA;AAAA;AAAA,KACnD;AAAA,oBACA,IAAA;AAAA,MAAC,IAAA;AAAA,MAAA;AAAA,QACC,SAAU,EAAA,QAAA;AAAA,QACV,OAAQ,EAAA,OAAA;AAAA,QACR,QAAQ,EAAA,IAAA;AAAA,QACR,aAAY,EAAA,kBAAA;AAAA,QACZ,QAAU,EAAA,CAAC,EAAI,EAAA,KAAA,CAAM,UAAU,CAAG,EAAA,IAAA;AAAA,QAClC,OAAA,EAAS,MACP,eAAgB,CAAA,EAAA,CAAG,MAAM,UAAU,CAAA,CAAE,MAAM,gBAAgB,CAAA;AAAA,QAG7D,QAAA,EAAA;AAAA,0BAAC,GAAA,CAAA,YAAA,EAAA,EAAa,SAAW,EAAA,OAAA,CAAQ,YAAc,EAAA,CAAA;AAAA,UAAE;AAAA;AAAA;AAAA;AAEnD,GAAA,EACF,CACF,EAAA,CAAA;AAEJ;;;;"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
const downloadLogFile = (data, filename) => {
|
|
2
|
+
const blob = new Blob([data], { type: "text/plain;charset=utf-8" });
|
|
3
|
+
const url = URL.createObjectURL(blob);
|
|
4
|
+
const link = document.createElement("a");
|
|
5
|
+
link.href = url;
|
|
6
|
+
link.download = filename;
|
|
7
|
+
link.click();
|
|
8
|
+
URL.revokeObjectURL(url);
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export { downloadLogFile };
|
|
12
|
+
//# sourceMappingURL=downloadLogFile.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"downloadLogFile.esm.js","sources":["../../src/utils/downloadLogFile.ts"],"sourcesContent":["/*\n * Copyright 2024 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n * Triggers a download of the given string data as a file with the specified filename.\n *\n * @param data - The content to download\n * @param filename - The name of the file to save as\n */\nexport const downloadLogFile = (data: string, filename: string) => {\n const blob = new Blob([data], { type: 'text/plain;charset=utf-8' });\n const url = URL.createObjectURL(blob);\n const link = document.createElement('a');\n link.href = url;\n link.download = filename;\n link.click();\n URL.revokeObjectURL(url);\n};\n"],"names":[],"mappings":"AAsBa,MAAA,eAAA,GAAkB,CAAC,IAAA,EAAc,QAAqB,KAAA;AACjE,EAAM,MAAA,IAAA,GAAO,IAAI,IAAK,CAAA,CAAC,IAAI,CAAG,EAAA,EAAE,IAAM,EAAA,0BAAA,EAA4B,CAAA;AAClE,EAAM,MAAA,GAAA,GAAM,GAAI,CAAA,eAAA,CAAgB,IAAI,CAAA;AACpC,EAAM,MAAA,IAAA,GAAO,QAAS,CAAA,aAAA,CAAc,GAAG,CAAA;AACvC,EAAA,IAAA,CAAK,IAAO,GAAA,GAAA;AACZ,EAAA,IAAA,CAAK,QAAW,GAAA,QAAA;AAChB,EAAA,IAAA,CAAK,KAAM,EAAA;AACX,EAAA,GAAA,CAAI,gBAAgB,GAAG,CAAA;AACzB;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-multi-source-security-viewer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -40,20 +40,19 @@
|
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@aonic-ui/pipelines": "^3.1.1",
|
|
43
|
-
"@backstage-community/plugin-azure-devops": "^0.
|
|
44
|
-
"@backstage-community/plugin-azure-devops-common": "^0.
|
|
43
|
+
"@backstage-community/plugin-azure-devops": "^0.16.1",
|
|
44
|
+
"@backstage-community/plugin-azure-devops-common": "^0.11.1",
|
|
45
45
|
"@backstage-community/plugin-github-actions": "^0.10.0",
|
|
46
46
|
"@backstage-community/plugin-jenkins": "^0.19.0",
|
|
47
|
-
"@backstage-community/plugin-multi-source-security-viewer-common": "^0.
|
|
48
|
-
"@backstage/catalog-model": "^1.7.
|
|
49
|
-
"@backstage/core-components": "^0.17.
|
|
50
|
-
"@backstage/core-plugin-api": "^1.10.
|
|
51
|
-
"@backstage/integration-react": "^1.2.
|
|
52
|
-
"@backstage/plugin-catalog-react": "^1.
|
|
53
|
-
"@backstage/plugin-permission-react": "^0.4.
|
|
54
|
-
"@backstage/theme": "^0.6.
|
|
47
|
+
"@backstage-community/plugin-multi-source-security-viewer-common": "^0.3.0",
|
|
48
|
+
"@backstage/catalog-model": "^1.7.4",
|
|
49
|
+
"@backstage/core-components": "^0.17.2",
|
|
50
|
+
"@backstage/core-plugin-api": "^1.10.7",
|
|
51
|
+
"@backstage/integration-react": "^1.2.7",
|
|
52
|
+
"@backstage/plugin-catalog-react": "^1.18.0",
|
|
53
|
+
"@backstage/plugin-permission-react": "^0.4.34",
|
|
54
|
+
"@backstage/theme": "^0.6.6",
|
|
55
55
|
"@immobiliarelabs/backstage-plugin-gitlab": "^6.8.0",
|
|
56
|
-
"@janus-idp/shared-react": "^2.14.0",
|
|
57
56
|
"@material-ui/core": "^4.9.13",
|
|
58
57
|
"@material-ui/icons": "^4.9.1",
|
|
59
58
|
"@material-ui/lab": "^4.0.0-alpha.61",
|
|
@@ -71,10 +70,10 @@
|
|
|
71
70
|
"react-router-dom": "^6.0.0"
|
|
72
71
|
},
|
|
73
72
|
"devDependencies": {
|
|
74
|
-
"@backstage/cli": "^0.32.
|
|
75
|
-
"@backstage/core-app-api": "^1.
|
|
76
|
-
"@backstage/dev-utils": "^1.1.
|
|
77
|
-
"@backstage/test-utils": "^1.7.
|
|
73
|
+
"@backstage/cli": "^0.32.1",
|
|
74
|
+
"@backstage/core-app-api": "^1.17.0",
|
|
75
|
+
"@backstage/dev-utils": "^1.1.10",
|
|
76
|
+
"@backstage/test-utils": "^1.7.8",
|
|
78
77
|
"@redhat-developer/red-hat-developer-hub-theme": "^0.4.0",
|
|
79
78
|
"@testing-library/jest-dom": "^6.0.0",
|
|
80
79
|
"@testing-library/react": "^14.0.0",
|