@backstage-community/plugin-multi-source-security-viewer 0.5.5 → 0.6.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 +20 -0
- package/README.md +32 -0
- package/dist/index.d.ts +10 -2
- package/dist/index.esm.js +1 -1
- package/dist/plugin.esm.js +5 -1
- package/dist/plugin.esm.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage-community/plugin-multi-source-security-viewer
|
|
2
2
|
|
|
3
|
+
## 0.6.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 34aa972: Updated dependency `@mui/icons-material` to `5.18.0`.
|
|
8
|
+
Updated dependency `@mui/material` to `5.18.0`.
|
|
9
|
+
Updated dependency `@mui/styles` to `5.18.0`.
|
|
10
|
+
Updated dependency `@mui/lab` to `5.0.0-alpha.177`.
|
|
11
|
+
|
|
12
|
+
## 0.6.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- 237d0ce: Add isMultiCIAvaibleAndEnabled to display the plugin when the CI provider is defined and set as enabled in the annotation.
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies [237d0ce]
|
|
21
|
+
- @backstage-community/plugin-multi-source-security-viewer-common@0.4.0
|
|
22
|
+
|
|
3
23
|
## 0.5.5
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -50,6 +50,38 @@ To enable the PipelineRun list in the Security tab on the entity view page, add
|
|
|
50
50
|
+);
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
+
The plugin will be displayed when the annotations of the CI provider will be present. This can also be additionally controlled by setting the following annotation on the component.
|
|
54
|
+
|
|
55
|
+
```
|
|
56
|
+
mssv/enabled: 'true'
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
If you choose to display the plugin when the annotation is present along with the CI provider annotations, use `isMultiCIAvailableAndEnabled` instead.
|
|
60
|
+
|
|
61
|
+
```diff
|
|
62
|
+
+import {
|
|
63
|
+
+ isMultiCIAvailableAndEnabled,
|
|
64
|
+
+ EntityMultiCIPipelinesContent,
|
|
65
|
+
+} from '@backstage-community/plugin-multi-source-security-viewer';
|
|
66
|
+
+
|
|
67
|
+
+import { EntityJenkinsContent } from '@backstage-community/plugin-jenkins';
|
|
68
|
+
+import { EntityGithubActionsContent } from '@backstage-community/plugin-github-actions';
|
|
69
|
+
+
|
|
70
|
+
+const securityContent = (
|
|
71
|
+
+ <EntitySwitch>
|
|
72
|
+
+ <EntitySwitch.Case if={isMultiCIAvailableAndEnabled}>
|
|
73
|
+
+ <EntityMultiCIPipelinesContent />
|
|
74
|
+
+ </EntitySwitch.Case>
|
|
75
|
+
+ </EntitySwitch>
|
|
76
|
+
+);
|
|
77
|
+
+
|
|
78
|
+
+const entityServicePage = (
|
|
79
|
+
+ <EntityLayout.Route path="/security" title="Security">
|
|
80
|
+
+ {securityContent}
|
|
81
|
+
+ </EntityLayout.Route>
|
|
82
|
+
+);
|
|
83
|
+
```
|
|
84
|
+
|
|
53
85
|
## For users
|
|
54
86
|
|
|
55
87
|
### Using the plugin in Backstage
|
package/dist/index.d.ts
CHANGED
|
@@ -6,9 +6,17 @@ import { Entity } from '@backstage/catalog-model';
|
|
|
6
6
|
declare const multiSourceSecurityViewerPlugin: _backstage_core_plugin_api.BackstagePlugin<{
|
|
7
7
|
entityContent: _backstage_core_plugin_api.RouteRef<undefined>;
|
|
8
8
|
}, {}, {}>;
|
|
9
|
-
/**
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
* Returns true if the CI provider annotations are set on component.
|
|
12
|
+
*/
|
|
10
13
|
declare const isMultiCIAvailable: (entity: Entity) => boolean;
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
* Returns true if CI provider and mssv annotations are set on component.
|
|
17
|
+
*/
|
|
18
|
+
declare const isMultiCIAvailableAndEnabled: (entity: Entity) => boolean;
|
|
11
19
|
/** @public */
|
|
12
20
|
declare const EntityMultiCIPipelinesContent: () => react_jsx_runtime.JSX.Element;
|
|
13
21
|
|
|
14
|
-
export { EntityMultiCIPipelinesContent, isMultiCIAvailable, multiSourceSecurityViewerPlugin };
|
|
22
|
+
export { EntityMultiCIPipelinesContent, isMultiCIAvailable, isMultiCIAvailableAndEnabled, multiSourceSecurityViewerPlugin };
|
package/dist/index.esm.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { EntityMultiCIPipelinesContent, isMultiCIAvailable, multiSourceSecurityViewerPlugin } from './plugin.esm.js';
|
|
1
|
+
export { EntityMultiCIPipelinesContent, isMultiCIAvailable, isMultiCIAvailableAndEnabled, multiSourceSecurityViewerPlugin } from './plugin.esm.js';
|
|
2
2
|
//# sourceMappingURL=index.esm.js.map
|
package/dist/plugin.esm.js
CHANGED
|
@@ -11,6 +11,7 @@ import { mssvGitlabCIApiRef, MssvGitlabCIClient, CustomGitlabCiClient } from './
|
|
|
11
11
|
import { isGitlabAvailable } from '@immobiliarelabs/backstage-plugin-gitlab';
|
|
12
12
|
import { AzureDevOpsClient, isAzurePipelinesAvailable } from '@backstage-community/plugin-azure-devops';
|
|
13
13
|
import { mssvAzureDevopsApiRef, MssvAzureDevopsClient } from './api/azure.esm.js';
|
|
14
|
+
import { MSSV_ENABLED_ANNOTATION } from '@backstage-community/plugin-multi-source-security-viewer-common';
|
|
14
15
|
|
|
15
16
|
const multiSourceSecurityViewerPlugin = createPlugin({
|
|
16
17
|
id: "multi-source-security-viewer",
|
|
@@ -86,6 +87,9 @@ const multiSourceSecurityViewerPlugin = createPlugin({
|
|
|
86
87
|
}
|
|
87
88
|
});
|
|
88
89
|
const isMultiCIAvailable = (entity) => isJenkinsAvailable(entity) || isGitlabAvailable(entity) || isGithubActionsAvailable(entity) || isAzurePipelinesAvailable(entity);
|
|
90
|
+
const isMultiCIAvailableAndEnabled = (entity) => Boolean(
|
|
91
|
+
entity.metadata.annotations?.[MSSV_ENABLED_ANNOTATION] === "true" && isMultiCIAvailable(entity)
|
|
92
|
+
);
|
|
89
93
|
const EntityMultiCIPipelinesContent = multiSourceSecurityViewerPlugin.provide(
|
|
90
94
|
createRoutableExtension({
|
|
91
95
|
name: "EntityMultiCIPipelinesContent",
|
|
@@ -94,5 +98,5 @@ const EntityMultiCIPipelinesContent = multiSourceSecurityViewerPlugin.provide(
|
|
|
94
98
|
})
|
|
95
99
|
);
|
|
96
100
|
|
|
97
|
-
export { EntityMultiCIPipelinesContent, isMultiCIAvailable, multiSourceSecurityViewerPlugin };
|
|
101
|
+
export { EntityMultiCIPipelinesContent, isMultiCIAvailable, isMultiCIAvailableAndEnabled, multiSourceSecurityViewerPlugin };
|
|
98
102
|
//# sourceMappingURL=plugin.esm.js.map
|
package/dist/plugin.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.esm.js","sources":["../src/plugin.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 */\nimport '@patternfly/patternfly/utilities/Accessibility/accessibility.css';\nimport '@patternfly/react-core/dist/styles/base-no-reset.css';\n\nimport {\n configApiRef,\n createApiFactory,\n createPlugin,\n discoveryApiRef,\n fetchApiRef,\n identityApiRef,\n gitlabAuthApiRef,\n createRoutableExtension,\n} from '@backstage/core-plugin-api';\n\nimport { rootRouteRef } from './routes';\nimport { MssvJenkinsClient, mssvJenkinsApiRef } from './api/jenkins';\nimport {\n JenkinsClient,\n isJenkinsAvailable,\n} from '@backstage-community/plugin-jenkins';\nimport { MssvGithubActionsClient, mssvGithubActionsApiRef } from './api/github';\nimport {\n GithubActionsClient,\n isGithubActionsAvailable,\n} from '@backstage-community/plugin-github-actions';\nimport { scmAuthApiRef } from '@backstage/integration-react';\nimport {\n CustomGitlabCiClient,\n MssvGitlabCIClient,\n mssvGitlabCIApiRef,\n} from './api/gitlab';\nimport { isGitlabAvailable } from '@immobiliarelabs/backstage-plugin-gitlab';\nimport { Entity } from '@backstage/catalog-model';\nimport {\n AzureDevOpsClient,\n isAzurePipelinesAvailable,\n} from '@backstage-community/plugin-azure-devops';\nimport { MssvAzureDevopsClient, mssvAzureDevopsApiRef } from './api/azure';\n\n/** @public */\nexport const multiSourceSecurityViewerPlugin = createPlugin({\n id: 'multi-source-security-viewer',\n apis: [\n createApiFactory({\n api: mssvJenkinsApiRef,\n deps: {\n discoveryApi: discoveryApiRef,\n fetchApi: fetchApiRef,\n },\n factory: ({ discoveryApi, fetchApi }) => {\n return new MssvJenkinsClient({\n jenkinsApi: new JenkinsClient({\n discoveryApi,\n fetchApi,\n }),\n });\n },\n }),\n createApiFactory({\n api: mssvGithubActionsApiRef,\n deps: {\n configApi: configApiRef,\n scmAuthApi: scmAuthApiRef,\n },\n factory: ({ configApi, scmAuthApi }) => {\n return new MssvGithubActionsClient({\n githubActionsApi: new GithubActionsClient({ configApi, scmAuthApi }),\n });\n },\n }),\n createApiFactory({\n api: mssvGitlabCIApiRef,\n deps: {\n configApi: configApiRef,\n discoveryApi: discoveryApiRef,\n gitlabAuthApi: gitlabAuthApiRef,\n identityApi: identityApiRef,\n },\n factory: ({ configApi, identityApi, discoveryApi, gitlabAuthApi }) => {\n return new MssvGitlabCIClient({\n gitlabCiApi: new CustomGitlabCiClient({\n discoveryApi,\n gitlabAuthApi,\n identityApi,\n codeOwnersPath: configApi.getOptionalString(\n 'gitlab.defaultCodeOwnersPath',\n ),\n readmePath: configApi.getOptionalString('gitlab.defaultReadmePath'),\n useOAuth: configApi.getOptionalBoolean('gitlab.useOAuth'),\n }),\n });\n },\n }),\n createApiFactory({\n api: mssvAzureDevopsApiRef,\n deps: {\n discoveryApi: discoveryApiRef,\n fetchApi: fetchApiRef,\n },\n factory: ({ discoveryApi, fetchApi }) => {\n return new MssvAzureDevopsClient({\n azureDevopsApi: new AzureDevOpsClient({\n discoveryApi,\n fetchApi,\n }),\n });\n },\n }),\n ],\n routes: {\n entityContent: rootRouteRef,\n },\n});\n\n
|
|
1
|
+
{"version":3,"file":"plugin.esm.js","sources":["../src/plugin.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 */\nimport '@patternfly/patternfly/utilities/Accessibility/accessibility.css';\nimport '@patternfly/react-core/dist/styles/base-no-reset.css';\n\nimport {\n configApiRef,\n createApiFactory,\n createPlugin,\n discoveryApiRef,\n fetchApiRef,\n identityApiRef,\n gitlabAuthApiRef,\n createRoutableExtension,\n} from '@backstage/core-plugin-api';\n\nimport { rootRouteRef } from './routes';\nimport { MssvJenkinsClient, mssvJenkinsApiRef } from './api/jenkins';\nimport {\n JenkinsClient,\n isJenkinsAvailable,\n} from '@backstage-community/plugin-jenkins';\nimport { MssvGithubActionsClient, mssvGithubActionsApiRef } from './api/github';\nimport {\n GithubActionsClient,\n isGithubActionsAvailable,\n} from '@backstage-community/plugin-github-actions';\nimport { scmAuthApiRef } from '@backstage/integration-react';\nimport {\n CustomGitlabCiClient,\n MssvGitlabCIClient,\n mssvGitlabCIApiRef,\n} from './api/gitlab';\nimport { isGitlabAvailable } from '@immobiliarelabs/backstage-plugin-gitlab';\nimport { Entity } from '@backstage/catalog-model';\nimport {\n AzureDevOpsClient,\n isAzurePipelinesAvailable,\n} from '@backstage-community/plugin-azure-devops';\nimport { MssvAzureDevopsClient, mssvAzureDevopsApiRef } from './api/azure';\nimport { MSSV_ENABLED_ANNOTATION } from '@backstage-community/plugin-multi-source-security-viewer-common';\n\n/** @public */\nexport const multiSourceSecurityViewerPlugin = createPlugin({\n id: 'multi-source-security-viewer',\n apis: [\n createApiFactory({\n api: mssvJenkinsApiRef,\n deps: {\n discoveryApi: discoveryApiRef,\n fetchApi: fetchApiRef,\n },\n factory: ({ discoveryApi, fetchApi }) => {\n return new MssvJenkinsClient({\n jenkinsApi: new JenkinsClient({\n discoveryApi,\n fetchApi,\n }),\n });\n },\n }),\n createApiFactory({\n api: mssvGithubActionsApiRef,\n deps: {\n configApi: configApiRef,\n scmAuthApi: scmAuthApiRef,\n },\n factory: ({ configApi, scmAuthApi }) => {\n return new MssvGithubActionsClient({\n githubActionsApi: new GithubActionsClient({ configApi, scmAuthApi }),\n });\n },\n }),\n createApiFactory({\n api: mssvGitlabCIApiRef,\n deps: {\n configApi: configApiRef,\n discoveryApi: discoveryApiRef,\n gitlabAuthApi: gitlabAuthApiRef,\n identityApi: identityApiRef,\n },\n factory: ({ configApi, identityApi, discoveryApi, gitlabAuthApi }) => {\n return new MssvGitlabCIClient({\n gitlabCiApi: new CustomGitlabCiClient({\n discoveryApi,\n gitlabAuthApi,\n identityApi,\n codeOwnersPath: configApi.getOptionalString(\n 'gitlab.defaultCodeOwnersPath',\n ),\n readmePath: configApi.getOptionalString('gitlab.defaultReadmePath'),\n useOAuth: configApi.getOptionalBoolean('gitlab.useOAuth'),\n }),\n });\n },\n }),\n createApiFactory({\n api: mssvAzureDevopsApiRef,\n deps: {\n discoveryApi: discoveryApiRef,\n fetchApi: fetchApiRef,\n },\n factory: ({ discoveryApi, fetchApi }) => {\n return new MssvAzureDevopsClient({\n azureDevopsApi: new AzureDevOpsClient({\n discoveryApi,\n fetchApi,\n }),\n });\n },\n }),\n ],\n routes: {\n entityContent: rootRouteRef,\n },\n});\n\n/**\n * @public\n * Returns true if the CI provider annotations are set on component.\n */\nexport const isMultiCIAvailable = (entity: Entity): boolean =>\n isJenkinsAvailable(entity) ||\n isGitlabAvailable(entity) ||\n isGithubActionsAvailable(entity) ||\n isAzurePipelinesAvailable(entity);\n\n/**\n * @public\n * Returns true if CI provider and mssv annotations are set on component.\n */\nexport const isMultiCIAvailableAndEnabled = (entity: Entity): boolean =>\n Boolean(\n entity.metadata.annotations?.[MSSV_ENABLED_ANNOTATION] === 'true' &&\n isMultiCIAvailable(entity),\n );\n\n/** @public */\nexport const EntityMultiCIPipelinesContent =\n multiSourceSecurityViewerPlugin.provide(\n createRoutableExtension({\n name: 'EntityMultiCIPipelinesContent',\n component: () => import('./components/Router').then(m => m.Router),\n mountPoint: rootRouteRef,\n }),\n );\n"],"names":[],"mappings":"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"}
|
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.6.1",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@backstage-community/plugin-azure-devops-common": "^0.12.0",
|
|
45
45
|
"@backstage-community/plugin-github-actions": "^0.12.0",
|
|
46
46
|
"@backstage-community/plugin-jenkins": "^0.21.0",
|
|
47
|
-
"@backstage-community/plugin-multi-source-security-viewer-common": "^0.
|
|
47
|
+
"@backstage-community/plugin-multi-source-security-viewer-common": "^0.4.0",
|
|
48
48
|
"@backstage/catalog-model": "^1.7.4",
|
|
49
49
|
"@backstage/core-components": "^0.17.2",
|
|
50
50
|
"@backstage/core-plugin-api": "^1.10.7",
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"@material-ui/core": "^4.9.13",
|
|
57
57
|
"@material-ui/icons": "^4.9.1",
|
|
58
58
|
"@material-ui/lab": "^4.0.0-alpha.61",
|
|
59
|
-
"@mui/icons-material": "5.
|
|
60
|
-
"@mui/material": "5.
|
|
59
|
+
"@mui/icons-material": "5.18.0",
|
|
60
|
+
"@mui/material": "5.18.0",
|
|
61
61
|
"@patternfly/patternfly": "^6.0.0",
|
|
62
62
|
"@patternfly/react-core": "^6.0.0",
|
|
63
63
|
"@patternfly/react-tokens": "^6.0.0",
|