@backstage/plugin-scaffolder-backend-module-sentry 0.2.1-next.1 → 0.2.1-next.2
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 +10 -0
- package/dist/actions/createProject.cjs.js +84 -0
- package/dist/actions/createProject.cjs.js.map +1 -0
- package/dist/index.cjs.js +4 -98
- package/dist/index.cjs.js.map +1 -1
- package/dist/module.cjs.js +25 -0
- package/dist/module.cjs.js.map +1 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-sentry
|
|
2
2
|
|
|
3
|
+
## 0.2.1-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-scaffolder-node@0.5.0-next.2
|
|
9
|
+
- @backstage/backend-plugin-api@1.0.1-next.1
|
|
10
|
+
- @backstage/config@1.2.0
|
|
11
|
+
- @backstage/errors@1.2.4
|
|
12
|
+
|
|
3
13
|
## 0.2.1-next.1
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var pluginScaffolderNode = require('@backstage/plugin-scaffolder-node');
|
|
4
|
+
var errors = require('@backstage/errors');
|
|
5
|
+
var fetch = require('node-fetch');
|
|
6
|
+
|
|
7
|
+
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
8
|
+
|
|
9
|
+
var fetch__default = /*#__PURE__*/_interopDefaultCompat(fetch);
|
|
10
|
+
|
|
11
|
+
function createSentryCreateProjectAction(options) {
|
|
12
|
+
const { config } = options;
|
|
13
|
+
return pluginScaffolderNode.createTemplateAction({
|
|
14
|
+
id: "sentry:project:create",
|
|
15
|
+
schema: {
|
|
16
|
+
input: {
|
|
17
|
+
required: ["organizationSlug", "teamSlug", "name"],
|
|
18
|
+
type: "object",
|
|
19
|
+
properties: {
|
|
20
|
+
organizationSlug: {
|
|
21
|
+
title: "The slug of the organization the team belongs to",
|
|
22
|
+
type: "string"
|
|
23
|
+
},
|
|
24
|
+
teamSlug: {
|
|
25
|
+
title: "The slug of the team to create a new project for",
|
|
26
|
+
type: "string"
|
|
27
|
+
},
|
|
28
|
+
name: {
|
|
29
|
+
title: "The name for the new project",
|
|
30
|
+
type: "string"
|
|
31
|
+
},
|
|
32
|
+
slug: {
|
|
33
|
+
title: "Optional slug for the new project. If not provided a slug is generated from the name",
|
|
34
|
+
type: "string"
|
|
35
|
+
},
|
|
36
|
+
authToken: {
|
|
37
|
+
title: "authenticate via bearer auth token. Requires scope: project:write",
|
|
38
|
+
type: "string"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
},
|
|
43
|
+
async handler(ctx) {
|
|
44
|
+
const { organizationSlug, teamSlug, name, slug, authToken } = ctx.input;
|
|
45
|
+
const body = {
|
|
46
|
+
name
|
|
47
|
+
};
|
|
48
|
+
if (slug) {
|
|
49
|
+
body.slug = slug;
|
|
50
|
+
}
|
|
51
|
+
const token = authToken ? authToken : config.getOptionalString("scaffolder.sentry.token");
|
|
52
|
+
if (!token) {
|
|
53
|
+
throw new errors.InputError(`No valid sentry token given`);
|
|
54
|
+
}
|
|
55
|
+
const response = await fetch__default.default(
|
|
56
|
+
`https://sentry.io/api/0/teams/${organizationSlug}/${teamSlug}/projects/`,
|
|
57
|
+
{
|
|
58
|
+
method: "POST",
|
|
59
|
+
headers: {
|
|
60
|
+
Authorization: `Bearer ${token}`,
|
|
61
|
+
"Content-Type": "application/json"
|
|
62
|
+
},
|
|
63
|
+
body: JSON.stringify(body)
|
|
64
|
+
}
|
|
65
|
+
);
|
|
66
|
+
const contentType = response.headers.get("content-type");
|
|
67
|
+
if (contentType !== "application/json") {
|
|
68
|
+
throw new errors.InputError(
|
|
69
|
+
`Unexpected Sentry Response Type: ${await response.text()}`
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
const code = response.status;
|
|
73
|
+
const result = await response.json();
|
|
74
|
+
if (code !== 201) {
|
|
75
|
+
throw new errors.InputError(`Sentry Response was: ${await result.detail}`);
|
|
76
|
+
}
|
|
77
|
+
ctx.output("id", result.id);
|
|
78
|
+
ctx.output("result", result);
|
|
79
|
+
}
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
exports.createSentryCreateProjectAction = createSentryCreateProjectAction;
|
|
84
|
+
//# sourceMappingURL=createProject.cjs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createProject.cjs.js","sources":["../../src/actions/createProject.ts"],"sourcesContent":["/*\n * Copyright 2021 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\nimport { createTemplateAction } from '@backstage/plugin-scaffolder-node';\nimport { InputError } from '@backstage/errors';\nimport { Config } from '@backstage/config';\nimport fetch from 'node-fetch';\n\n/**\n * Creates the `sentry:project:create` Scaffolder action.\n *\n * @remarks\n *\n * See {@link https://backstage.io/docs/features/software-templates/writing-custom-actions}.\n *\n * @param options - Configuration of the Sentry API.\n * @public\n */\nexport function createSentryCreateProjectAction(options: { config: Config }) {\n const { config } = options;\n\n return createTemplateAction<{\n organizationSlug: string;\n teamSlug: string;\n name: string;\n slug?: string;\n authToken?: string;\n }>({\n id: 'sentry:project:create',\n schema: {\n input: {\n required: ['organizationSlug', 'teamSlug', 'name'],\n type: 'object',\n properties: {\n organizationSlug: {\n title: 'The slug of the organization the team belongs to',\n type: 'string',\n },\n teamSlug: {\n title: 'The slug of the team to create a new project for',\n type: 'string',\n },\n name: {\n title: 'The name for the new project',\n type: 'string',\n },\n slug: {\n title:\n 'Optional slug for the new project. If not provided a slug is generated from the name',\n type: 'string',\n },\n authToken: {\n title:\n 'authenticate via bearer auth token. Requires scope: project:write',\n type: 'string',\n },\n },\n },\n },\n async handler(ctx) {\n const { organizationSlug, teamSlug, name, slug, authToken } = ctx.input;\n\n const body: any = {\n name: name,\n };\n\n if (slug) {\n body.slug = slug;\n }\n\n const token = authToken\n ? authToken\n : config.getOptionalString('scaffolder.sentry.token');\n\n if (!token) {\n throw new InputError(`No valid sentry token given`);\n }\n\n const response = await fetch(\n `https://sentry.io/api/0/teams/${organizationSlug}/${teamSlug}/projects/`,\n {\n method: 'POST',\n headers: {\n Authorization: `Bearer ${token}`,\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify(body),\n },\n );\n\n const contentType = response.headers.get('content-type');\n\n if (contentType !== 'application/json') {\n throw new InputError(\n `Unexpected Sentry Response Type: ${await response.text()}`,\n );\n }\n\n const code = response.status;\n const result = await response.json();\n\n if (code !== 201) {\n throw new InputError(`Sentry Response was: ${await result.detail}`);\n }\n\n ctx.output('id', result.id);\n ctx.output('result', result);\n },\n });\n}\n"],"names":["createTemplateAction","InputError","fetch"],"mappings":"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"}
|
package/dist/index.cjs.js
CHANGED
|
@@ -2,105 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var
|
|
6
|
-
var
|
|
7
|
-
var fetch = require('node-fetch');
|
|
8
|
-
var backendPluginApi = require('@backstage/backend-plugin-api');
|
|
9
|
-
var alpha = require('@backstage/plugin-scaffolder-node/alpha');
|
|
5
|
+
var createProject = require('./actions/createProject.cjs.js');
|
|
6
|
+
var module$1 = require('./module.cjs.js');
|
|
10
7
|
|
|
11
|
-
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e : { default: e }; }
|
|
12
8
|
|
|
13
|
-
var fetch__default = /*#__PURE__*/_interopDefaultCompat(fetch);
|
|
14
9
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
return pluginScaffolderNode.createTemplateAction({
|
|
18
|
-
id: "sentry:project:create",
|
|
19
|
-
schema: {
|
|
20
|
-
input: {
|
|
21
|
-
required: ["organizationSlug", "teamSlug", "name"],
|
|
22
|
-
type: "object",
|
|
23
|
-
properties: {
|
|
24
|
-
organizationSlug: {
|
|
25
|
-
title: "The slug of the organization the team belongs to",
|
|
26
|
-
type: "string"
|
|
27
|
-
},
|
|
28
|
-
teamSlug: {
|
|
29
|
-
title: "The slug of the team to create a new project for",
|
|
30
|
-
type: "string"
|
|
31
|
-
},
|
|
32
|
-
name: {
|
|
33
|
-
title: "The name for the new project",
|
|
34
|
-
type: "string"
|
|
35
|
-
},
|
|
36
|
-
slug: {
|
|
37
|
-
title: "Optional slug for the new project. If not provided a slug is generated from the name",
|
|
38
|
-
type: "string"
|
|
39
|
-
},
|
|
40
|
-
authToken: {
|
|
41
|
-
title: "authenticate via bearer auth token. Requires scope: project:write",
|
|
42
|
-
type: "string"
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
async handler(ctx) {
|
|
48
|
-
const { organizationSlug, teamSlug, name, slug, authToken } = ctx.input;
|
|
49
|
-
const body = {
|
|
50
|
-
name
|
|
51
|
-
};
|
|
52
|
-
if (slug) {
|
|
53
|
-
body.slug = slug;
|
|
54
|
-
}
|
|
55
|
-
const token = authToken ? authToken : config.getOptionalString("scaffolder.sentry.token");
|
|
56
|
-
if (!token) {
|
|
57
|
-
throw new errors.InputError(`No valid sentry token given`);
|
|
58
|
-
}
|
|
59
|
-
const response = await fetch__default.default(
|
|
60
|
-
`https://sentry.io/api/0/teams/${organizationSlug}/${teamSlug}/projects/`,
|
|
61
|
-
{
|
|
62
|
-
method: "POST",
|
|
63
|
-
headers: {
|
|
64
|
-
Authorization: `Bearer ${token}`,
|
|
65
|
-
"Content-Type": "application/json"
|
|
66
|
-
},
|
|
67
|
-
body: JSON.stringify(body)
|
|
68
|
-
}
|
|
69
|
-
);
|
|
70
|
-
const contentType = response.headers.get("content-type");
|
|
71
|
-
if (contentType !== "application/json") {
|
|
72
|
-
throw new errors.InputError(
|
|
73
|
-
`Unexpected Sentry Response Type: ${await response.text()}`
|
|
74
|
-
);
|
|
75
|
-
}
|
|
76
|
-
const code = response.status;
|
|
77
|
-
const result = await response.json();
|
|
78
|
-
if (code !== 201) {
|
|
79
|
-
throw new errors.InputError(`Sentry Response was: ${await result.detail}`);
|
|
80
|
-
}
|
|
81
|
-
ctx.output("id", result.id);
|
|
82
|
-
ctx.output("result", result);
|
|
83
|
-
}
|
|
84
|
-
});
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
const sentryModule = backendPluginApi.createBackendModule({
|
|
88
|
-
pluginId: "scaffolder",
|
|
89
|
-
moduleId: "sentry",
|
|
90
|
-
register({ registerInit }) {
|
|
91
|
-
registerInit({
|
|
92
|
-
deps: {
|
|
93
|
-
scaffolder: alpha.scaffolderActionsExtensionPoint,
|
|
94
|
-
config: backendPluginApi.coreServices.rootConfig,
|
|
95
|
-
reade: backendPluginApi.coreServices.urlReader
|
|
96
|
-
},
|
|
97
|
-
async init({ scaffolder, config }) {
|
|
98
|
-
scaffolder.addActions(createSentryCreateProjectAction({ config }));
|
|
99
|
-
}
|
|
100
|
-
});
|
|
101
|
-
}
|
|
102
|
-
});
|
|
103
|
-
|
|
104
|
-
exports.createSentryCreateProjectAction = createSentryCreateProjectAction;
|
|
105
|
-
exports.default = sentryModule;
|
|
10
|
+
exports.createSentryCreateProjectAction = createProject.createSentryCreateProjectAction;
|
|
11
|
+
exports.default = module$1.sentryModule;
|
|
106
12
|
//# sourceMappingURL=index.cjs.js.map
|
package/dist/index.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs.js","sources":[
|
|
1
|
+
{"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var backendPluginApi = require('@backstage/backend-plugin-api');
|
|
4
|
+
var alpha = require('@backstage/plugin-scaffolder-node/alpha');
|
|
5
|
+
var createProject = require('./actions/createProject.cjs.js');
|
|
6
|
+
|
|
7
|
+
const sentryModule = backendPluginApi.createBackendModule({
|
|
8
|
+
pluginId: "scaffolder",
|
|
9
|
+
moduleId: "sentry",
|
|
10
|
+
register({ registerInit }) {
|
|
11
|
+
registerInit({
|
|
12
|
+
deps: {
|
|
13
|
+
scaffolder: alpha.scaffolderActionsExtensionPoint,
|
|
14
|
+
config: backendPluginApi.coreServices.rootConfig,
|
|
15
|
+
reade: backendPluginApi.coreServices.urlReader
|
|
16
|
+
},
|
|
17
|
+
async init({ scaffolder, config }) {
|
|
18
|
+
scaffolder.addActions(createProject.createSentryCreateProjectAction({ config }));
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
exports.sentryModule = sentryModule;
|
|
25
|
+
//# sourceMappingURL=module.cjs.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"module.cjs.js","sources":["../src/module.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 {\n coreServices,\n createBackendModule,\n} from '@backstage/backend-plugin-api';\nimport { scaffolderActionsExtensionPoint } from '@backstage/plugin-scaffolder-node/alpha';\nimport { createSentryCreateProjectAction } from './actions/createProject';\n\n/**\n * @public\n * The Sentry Module for the Scaffolder Backend\n */\nexport const sentryModule = createBackendModule({\n pluginId: 'scaffolder',\n moduleId: 'sentry',\n register({ registerInit }) {\n registerInit({\n deps: {\n scaffolder: scaffolderActionsExtensionPoint,\n config: coreServices.rootConfig,\n reade: coreServices.urlReader,\n },\n async init({ scaffolder, config }) {\n scaffolder.addActions(createSentryCreateProjectAction({ config }));\n },\n });\n },\n});\n"],"names":["createBackendModule","scaffolderActionsExtensionPoint","coreServices","createSentryCreateProjectAction"],"mappings":";;;;;;AA0BO,MAAM,eAAeA,oCAAoB,CAAA;AAAA,EAC9C,QAAU,EAAA,YAAA;AAAA,EACV,QAAU,EAAA,QAAA;AAAA,EACV,QAAA,CAAS,EAAE,YAAA,EAAgB,EAAA;AACzB,IAAa,YAAA,CAAA;AAAA,MACX,IAAM,EAAA;AAAA,QACJ,UAAY,EAAAC,qCAAA;AAAA,QACZ,QAAQC,6BAAa,CAAA,UAAA;AAAA,QACrB,OAAOA,6BAAa,CAAA,SAAA;AAAA,OACtB;AAAA,MACA,MAAM,IAAA,CAAK,EAAE,UAAA,EAAY,QAAU,EAAA;AACjC,QAAA,UAAA,CAAW,UAAW,CAAAC,6CAAA,CAAgC,EAAE,MAAA,EAAQ,CAAC,CAAA,CAAA;AAAA,OACnE;AAAA,KACD,CAAA,CAAA;AAAA,GACH;AACF,CAAC;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-sentry",
|
|
3
|
-
"version": "0.2.1-next.
|
|
3
|
+
"version": "0.2.1-next.2",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "backend-plugin-module",
|
|
6
6
|
"pluginId": "scaffolder",
|
|
@@ -40,17 +40,17 @@
|
|
|
40
40
|
"test": "backstage-cli package test"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@backstage/backend-plugin-api": "1.0.1-next.
|
|
43
|
+
"@backstage/backend-plugin-api": "1.0.1-next.1",
|
|
44
44
|
"@backstage/config": "1.2.0",
|
|
45
45
|
"@backstage/errors": "1.2.4",
|
|
46
|
-
"@backstage/plugin-scaffolder-node": "0.5.0-next.
|
|
46
|
+
"@backstage/plugin-scaffolder-node": "0.5.0-next.2",
|
|
47
47
|
"node-fetch": "^2.7.0",
|
|
48
48
|
"yaml": "^2.3.3"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@backstage/backend-test-utils": "1.0.1-next.
|
|
52
|
-
"@backstage/cli": "0.28.0-next.
|
|
53
|
-
"@backstage/plugin-scaffolder-node-test-utils": "0.1.13-next.
|
|
51
|
+
"@backstage/backend-test-utils": "1.0.1-next.2",
|
|
52
|
+
"@backstage/cli": "0.28.0-next.2",
|
|
53
|
+
"@backstage/plugin-scaffolder-node-test-utils": "0.1.13-next.2",
|
|
54
54
|
"@backstage/types": "1.1.1",
|
|
55
55
|
"msw": "^2.0.0"
|
|
56
56
|
}
|