@backstage/plugin-notifications-backend 0.5.8-next.1 → 0.5.9-next.0
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 +34 -0
- package/config.d.ts +16 -0
- package/dist/service/router.cjs.js +37 -16
- package/dist/service/router.cjs.js.map +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @backstage/plugin-notifications-backend
|
|
2
2
|
|
|
3
|
+
## 0.5.9-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog-node@1.18.0-next.0
|
|
9
|
+
- @backstage/plugin-auth-node@0.6.6-next.0
|
|
10
|
+
- @backstage/plugin-notifications-node@0.2.18-next.0
|
|
11
|
+
- @backstage/backend-plugin-api@1.4.2-next.0
|
|
12
|
+
- @backstage/plugin-events-node@0.4.14-next.0
|
|
13
|
+
- @backstage/catalog-model@1.7.5
|
|
14
|
+
- @backstage/config@1.3.3
|
|
15
|
+
- @backstage/errors@1.2.7
|
|
16
|
+
- @backstage/types@1.2.1
|
|
17
|
+
- @backstage/plugin-notifications-common@0.0.10
|
|
18
|
+
- @backstage/plugin-signals-node@0.1.23-next.0
|
|
19
|
+
|
|
20
|
+
## 0.5.8
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- 4401dfb: Allow defining default notification settings via configuration
|
|
25
|
+
- 9a5a73f: Fix `addTopic` migration when `user_settings` present
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/config@1.3.3
|
|
28
|
+
- @backstage/catalog-model@1.7.5
|
|
29
|
+
- @backstage/backend-plugin-api@1.4.1
|
|
30
|
+
- @backstage/plugin-auth-node@0.6.5
|
|
31
|
+
- @backstage/plugin-catalog-node@1.17.2
|
|
32
|
+
- @backstage/plugin-events-node@0.4.13
|
|
33
|
+
- @backstage/plugin-notifications-common@0.0.10
|
|
34
|
+
- @backstage/plugin-notifications-node@0.2.17
|
|
35
|
+
- @backstage/plugin-signals-node@0.1.22
|
|
36
|
+
|
|
3
37
|
## 0.5.8-next.1
|
|
4
38
|
|
|
5
39
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -29,6 +29,22 @@ export interface Config {
|
|
|
29
29
|
*/
|
|
30
30
|
throttleInterval?: HumanDuration | string;
|
|
31
31
|
/**
|
|
32
|
+
* Default settings for user specific notification settings
|
|
33
|
+
*/
|
|
34
|
+
defaultSettings?: {
|
|
35
|
+
channels?: {
|
|
36
|
+
id: string;
|
|
37
|
+
origins?: {
|
|
38
|
+
id: string;
|
|
39
|
+
enabled: boolean;
|
|
40
|
+
topics?: {
|
|
41
|
+
id: string;
|
|
42
|
+
enabled: boolean;
|
|
43
|
+
}[];
|
|
44
|
+
}[];
|
|
45
|
+
}[];
|
|
46
|
+
};
|
|
47
|
+
/*
|
|
32
48
|
* Time to keep the notifications in the database, defaults to 365 days.
|
|
33
49
|
* Can be disabled by setting to false.
|
|
34
50
|
*/
|
|
@@ -42,43 +42,64 @@ async function createRouter(options) {
|
|
|
42
42
|
limit: concurrencyLimit,
|
|
43
43
|
interval: throttleInterval
|
|
44
44
|
});
|
|
45
|
+
const defaultNotificationSettings = config$1.getOptional("notifications.defaultSettings");
|
|
45
46
|
const getUser = async (req) => {
|
|
46
47
|
const credentials = await httpAuth.credentials(req, { allow: ["user"] });
|
|
47
48
|
const info = await userInfo.getUserInfo(credentials);
|
|
48
49
|
return info.userEntityRef;
|
|
49
50
|
};
|
|
50
|
-
const
|
|
51
|
+
const getNotificationChannels = () => {
|
|
52
|
+
return [WEB_NOTIFICATION_CHANNEL, ...processors.map((p) => p.getName())];
|
|
53
|
+
};
|
|
54
|
+
const getTopicSettings = (topic, existingOrigin, defaultOriginSettings, defaultEnabled) => {
|
|
51
55
|
const existingTopic = existingOrigin?.topics?.find(
|
|
52
|
-
(t) => t.id === topic.topic
|
|
56
|
+
(t) => t.id.toLowerCase() === topic.topic.toLowerCase()
|
|
57
|
+
);
|
|
58
|
+
const defaultTopicSettings = defaultOriginSettings?.topics?.find(
|
|
59
|
+
(t) => t.id.toLowerCase() === topic.topic.toLowerCase()
|
|
53
60
|
);
|
|
54
61
|
return {
|
|
55
62
|
id: topic.topic,
|
|
56
|
-
enabled: existingTopic ? existingTopic.enabled : defaultEnabled
|
|
63
|
+
enabled: existingTopic ? existingTopic.enabled : defaultTopicSettings?.enabled ?? defaultEnabled
|
|
57
64
|
};
|
|
58
65
|
};
|
|
59
|
-
const getOriginSettings = (originId, existingChannel, topics) => {
|
|
60
|
-
const existingOrigin = existingChannel?.origins
|
|
61
|
-
(o) => o.id === originId
|
|
66
|
+
const getOriginSettings = (originId, existingChannel, defaultChannelSettings, topics) => {
|
|
67
|
+
const existingOrigin = existingChannel?.origins?.find(
|
|
68
|
+
(o) => o.id.toLowerCase() === originId.toLowerCase()
|
|
69
|
+
);
|
|
70
|
+
const defaultOriginSettings = defaultChannelSettings?.origins?.find(
|
|
71
|
+
(c) => c.id.toLowerCase() === originId.toLowerCase()
|
|
62
72
|
);
|
|
63
|
-
const defaultEnabled = existingOrigin ? existingOrigin.enabled : true;
|
|
73
|
+
const defaultEnabled = existingOrigin ? existingOrigin.enabled : defaultOriginSettings?.enabled ?? true;
|
|
64
74
|
return {
|
|
65
75
|
id: originId,
|
|
66
76
|
enabled: defaultEnabled,
|
|
67
|
-
topics: topics.filter((t) => t.origin === originId).map(
|
|
77
|
+
topics: topics.filter((t) => t.origin === originId).map(
|
|
78
|
+
(t) => getTopicSettings(
|
|
79
|
+
t,
|
|
80
|
+
existingOrigin,
|
|
81
|
+
defaultOriginSettings,
|
|
82
|
+
defaultEnabled
|
|
83
|
+
)
|
|
84
|
+
)
|
|
68
85
|
};
|
|
69
86
|
};
|
|
70
|
-
const getNotificationChannels = () => {
|
|
71
|
-
return [WEB_NOTIFICATION_CHANNEL, ...processors.map((p) => p.getName())];
|
|
72
|
-
};
|
|
73
87
|
const getChannelSettings = (channelId, settings, origins, topics) => {
|
|
74
|
-
const existingChannel = settings.channels.find(
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
88
|
+
const existingChannel = settings.channels.find(
|
|
89
|
+
(c) => c.id.toLowerCase() === channelId.toLowerCase()
|
|
90
|
+
);
|
|
91
|
+
const defaultChannelSettings = defaultNotificationSettings?.channels?.find(
|
|
92
|
+
(c) => c.id.toLowerCase() === channelId.toLowerCase()
|
|
93
|
+
);
|
|
78
94
|
return {
|
|
79
95
|
id: channelId,
|
|
80
96
|
origins: origins.map(
|
|
81
|
-
(originId) => getOriginSettings(
|
|
97
|
+
(originId) => getOriginSettings(
|
|
98
|
+
originId,
|
|
99
|
+
existingChannel,
|
|
100
|
+
defaultChannelSettings,
|
|
101
|
+
topics
|
|
102
|
+
)
|
|
82
103
|
)
|
|
83
104
|
};
|
|
84
105
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"router.cjs.js","sources":["../../src/service/router.ts"],"sourcesContent":["/*\n * Copyright 2023 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 express, { Request, Response } from 'express';\nimport Router from 'express-promise-router';\nimport {\n normalizeSeverity,\n NotificationGetOptions,\n NotificationsStore,\n TopicGetOptions,\n} from '../database';\nimport { v4 as uuid } from 'uuid';\nimport { CatalogService } from '@backstage/plugin-catalog-node';\nimport {\n NotificationProcessor,\n NotificationSendOptions,\n} from '@backstage/plugin-notifications-node';\nimport { InputError, NotFoundError } from '@backstage/errors';\nimport {\n AuthService,\n HttpAuthService,\n LoggerService,\n UserInfoService,\n} from '@backstage/backend-plugin-api';\nimport { SignalsService } from '@backstage/plugin-signals-node';\nimport {\n ChannelSetting,\n isNotificationsEnabledFor,\n NewNotificationSignal,\n Notification,\n NotificationReadSignal,\n NotificationSettings,\n notificationSeverities,\n NotificationStatus,\n OriginSetting,\n} from '@backstage/plugin-notifications-common';\nimport { parseEntityOrderFieldParams } from './parseEntityOrderFieldParams';\nimport { getUsersForEntityRef } from './getUsersForEntityRef';\nimport { Config, readDurationFromConfig } from '@backstage/config';\nimport { durationToMilliseconds } from '@backstage/types';\nimport pThrottle from 'p-throttle';\n\n/** @internal */\nexport interface RouterOptions {\n logger: LoggerService;\n config: Config;\n store: NotificationsStore;\n auth: AuthService;\n httpAuth: HttpAuthService;\n userInfo: UserInfoService;\n signals?: SignalsService;\n catalog: CatalogService;\n processors?: NotificationProcessor[];\n}\n\n/** @internal */\nexport async function createRouter(\n options: RouterOptions,\n): Promise<express.Router> {\n const {\n config,\n logger,\n store,\n auth,\n httpAuth,\n userInfo,\n catalog,\n processors = [],\n signals,\n } = options;\n\n const WEB_NOTIFICATION_CHANNEL = 'Web';\n const frontendBaseUrl = config.getString('app.baseUrl');\n const concurrencyLimit =\n config.getOptionalNumber('notifications.concurrencyLimit') ?? 10;\n const throttleInterval = config.has('notifications.throttleInterval')\n ? durationToMilliseconds(\n readDurationFromConfig(config, {\n key: 'notifications.throttleInterval',\n }),\n )\n : 50;\n const throttle = pThrottle({\n limit: concurrencyLimit,\n interval: throttleInterval,\n });\n\n const getUser = async (req: Request<unknown>) => {\n const credentials = await httpAuth.credentials(req, { allow: ['user'] });\n const info = await userInfo.getUserInfo(credentials);\n return info.userEntityRef;\n };\n\n const getTopicSettings = (\n topic: any,\n existingOrigin: OriginSetting | undefined,\n defaultEnabled: boolean,\n ) => {\n const existingTopic = existingOrigin?.topics?.find(\n t => t.id === topic.topic,\n );\n return {\n id: topic.topic,\n enabled: existingTopic ? existingTopic.enabled : defaultEnabled,\n };\n };\n\n const getOriginSettings = (\n originId: string,\n existingChannel: ChannelSetting | undefined,\n topics: { origin: string; topic: string }[],\n ) => {\n const existingOrigin = existingChannel?.origins.find(\n o => o.id === originId,\n );\n const defaultEnabled = existingOrigin ? existingOrigin.enabled : true;\n return {\n id: originId,\n enabled: defaultEnabled,\n topics: topics\n .filter(t => t.origin === originId)\n .map(t => getTopicSettings(t, existingOrigin, defaultEnabled)),\n };\n };\n\n const getNotificationChannels = () => {\n return [WEB_NOTIFICATION_CHANNEL, ...processors.map(p => p.getName())];\n };\n\n const getChannelSettings = (\n channelId: string,\n settings: NotificationSettings,\n origins: string[],\n topics: { origin: string; topic: string }[],\n ) => {\n const existingChannel = settings.channels.find(c => c.id === channelId);\n if (existingChannel) {\n return existingChannel;\n }\n return {\n id: channelId,\n origins: origins.map(originId =>\n getOriginSettings(originId, existingChannel, topics),\n ),\n };\n };\n\n const getNotificationSettings = async (user: string) => {\n const { origins } = await store.getUserNotificationOrigins({ user });\n const { topics } = await store.getUserNotificationTopics({ user });\n const settings = await store.getNotificationSettings({ user });\n const channels = getNotificationChannels();\n\n return {\n channels: channels.map(channelId =>\n getChannelSettings(channelId, settings, origins, topics),\n ),\n };\n };\n\n const isNotificationsEnabled = async (opts: {\n user: string;\n channel: string;\n origin: string;\n topic: string | null;\n }) => {\n const settings = await getNotificationSettings(opts.user);\n return isNotificationsEnabledFor(\n settings,\n opts.channel,\n opts.origin,\n opts.topic,\n );\n };\n\n const filterProcessors = async (\n notification:\n | Notification\n | ({ origin: string; user: null } & NotificationSendOptions),\n ) => {\n const result: NotificationProcessor[] = [];\n const { payload, user, origin } = notification;\n\n for (const processor of processors) {\n if (user) {\n const enabled = await isNotificationsEnabled({\n user,\n origin,\n channel: processor.getName(),\n topic: payload.topic ?? null,\n });\n if (!enabled) {\n continue;\n }\n }\n\n if (processor.getNotificationFilters) {\n const filters = processor.getNotificationFilters();\n if (filters.minSeverity) {\n if (\n notificationSeverities.indexOf(payload.severity ?? 'normal') >\n notificationSeverities.indexOf(filters.minSeverity)\n ) {\n continue;\n }\n }\n\n if (filters.maxSeverity) {\n if (\n notificationSeverities.indexOf(payload.severity ?? 'normal') <\n notificationSeverities.indexOf(filters.maxSeverity)\n ) {\n continue;\n }\n }\n\n if (filters.excludedTopics && payload.topic) {\n if (filters.excludedTopics.includes(payload.topic)) {\n continue;\n }\n }\n }\n result.push(processor);\n }\n\n return result;\n };\n\n const processOptions = async (\n opts: NotificationSendOptions,\n origin: string,\n ): Promise<NotificationSendOptions> => {\n const filtered = await filterProcessors({ ...opts, origin, user: null });\n let ret = opts;\n for (const processor of filtered) {\n try {\n ret = processor.processOptions\n ? await processor.processOptions(ret)\n : ret;\n } catch (e) {\n logger.error(\n `Error while processing notification options with ${processor.getName()}: ${e}`,\n );\n }\n }\n return ret;\n };\n\n const preProcessNotification = async (\n notification: Notification,\n opts: NotificationSendOptions,\n ) => {\n const filtered = await filterProcessors(notification);\n let ret = notification;\n for (const processor of filtered) {\n try {\n ret = processor.preProcess\n ? await processor.preProcess(ret, opts)\n : ret;\n } catch (e) {\n logger.error(\n `Error while pre processing notification with ${processor.getName()}: ${e}`,\n );\n }\n }\n return ret;\n };\n\n const postProcessNotification = async (\n notification: Notification,\n opts: NotificationSendOptions,\n ) => {\n const filtered = await filterProcessors(notification);\n for (const processor of filtered) {\n if (processor.postProcess) {\n try {\n await processor.postProcess(notification, opts);\n } catch (e) {\n logger.error(\n `Error while post processing notification with ${processor.getName()}: ${e}`,\n );\n }\n }\n }\n };\n\n const validateLink = (link: string) => {\n const stripLeadingSlash = (s: string) => s.replace(/^\\//, '');\n const ensureTrailingSlash = (s: string) => s.replace(/\\/?$/, '/');\n const url = new URL(\n stripLeadingSlash(link),\n ensureTrailingSlash(frontendBaseUrl),\n );\n if (url.protocol !== 'https:' && url.protocol !== 'http:') {\n throw new Error('Only HTTP/HTTPS links are allowed');\n }\n };\n\n const appendCommonOptions = (\n req: Request,\n opts: NotificationGetOptions | TopicGetOptions,\n ) => {\n if (req.query.search) {\n opts.search = req.query.search.toString();\n }\n if (req.query.read === 'true') {\n opts.read = true;\n } else if (req.query.read === 'false') {\n opts.read = false;\n // or keep undefined\n }\n\n if (req.query.saved === 'true') {\n opts.saved = true;\n } else if (req.query.saved === 'false') {\n opts.saved = false;\n // or keep undefined\n }\n if (req.query.createdAfter) {\n const sinceEpoch = Date.parse(String(req.query.createdAfter));\n if (isNaN(sinceEpoch)) {\n throw new InputError('Unexpected date format');\n }\n opts.createdAfter = new Date(sinceEpoch);\n }\n if (req.query.minimumSeverity) {\n opts.minimumSeverity = normalizeSeverity(\n req.query.minimumSeverity.toString(),\n );\n }\n };\n\n // TODO: Move to use OpenAPI router instead\n const router = Router();\n router.use(express.json());\n\n const listNotificationsHandler = async (req: Request, res: Response) => {\n const user = await getUser(req);\n const opts: NotificationGetOptions = {\n user: user,\n };\n if (req.query.offset) {\n opts.offset = Number.parseInt(req.query.offset.toString(), 10);\n }\n if (req.query.limit) {\n opts.limit = Number.parseInt(req.query.limit.toString(), 10);\n }\n if (req.query.orderField) {\n opts.orderField = parseEntityOrderFieldParams(req.query);\n }\n\n if (req.query.topic) {\n opts.topic = req.query.topic.toString();\n }\n\n appendCommonOptions(req, opts);\n\n const [notifications, totalCount] = await Promise.all([\n store.getNotifications(opts),\n store.getNotificationsCount(opts),\n ]);\n res.json({\n totalCount,\n notifications,\n });\n };\n\n router.get('/', listNotificationsHandler); // Deprecated endpoint\n router.get('/notifications', listNotificationsHandler);\n\n router.get('/status', async (req: Request<any, NotificationStatus>, res) => {\n const user = await getUser(req);\n const status = await store.getStatus({ user });\n res.json(status);\n });\n\n router.get(\n '/settings',\n async (req: Request<any, NotificationSettings>, res) => {\n const user = await getUser(req);\n const response = await getNotificationSettings(user);\n res.json(response);\n },\n );\n\n router.post(\n '/settings',\n async (\n req: Request<any, NotificationSettings, NotificationSettings>,\n res,\n ) => {\n const user = await getUser(req);\n const channels = getNotificationChannels();\n const settings: NotificationSettings = req.body;\n if (settings.channels.some(c => !channels.includes(c.id))) {\n throw new InputError('Invalid channel');\n }\n await store.saveNotificationSettings({ user, settings });\n const response = await getNotificationSettings(user);\n res.json(response);\n },\n );\n\n const getNotificationHandler = async (req: Request, res: Response) => {\n const user = await getUser(req);\n const opts: NotificationGetOptions = {\n user: user,\n limit: 1,\n ids: [req.params.id],\n };\n const notifications = await store.getNotifications(opts);\n if (notifications.length !== 1) {\n throw new NotFoundError('Not found');\n }\n res.json(notifications[0]);\n };\n\n // Get topics\n const listTopicsHandler = async (req: Request, res: Response) => {\n const user = await getUser(req);\n const opts: TopicGetOptions = {\n user: user,\n };\n\n appendCommonOptions(req, opts);\n\n const topics = await store.getTopics(opts);\n res.json(topics);\n };\n\n router.get('/topics', listTopicsHandler);\n\n // Make sure this is the last \"GET\" handler\n router.get('/:id', getNotificationHandler); // Deprecated endpoint\n router.get('/notifications/:id', getNotificationHandler);\n\n const updateNotificationsHandler = async (req: Request, res: Response) => {\n const user = await getUser(req);\n const { ids, read, saved } = req.body;\n if (!ids || !Array.isArray(ids)) {\n throw new InputError();\n }\n\n if (read === true) {\n await store.markRead({ user, ids });\n\n if (signals) {\n await signals.publish<NotificationReadSignal>({\n recipients: { type: 'user', entityRef: [user] },\n message: { action: 'notification_read', notification_ids: ids },\n channel: 'notifications',\n });\n }\n } else if (read === false) {\n await store.markUnread({ user: user, ids });\n\n if (signals) {\n await signals.publish<NotificationReadSignal>({\n recipients: { type: 'user', entityRef: [user] },\n message: { action: 'notification_unread', notification_ids: ids },\n channel: 'notifications',\n });\n }\n }\n\n if (saved === true) {\n await store.markSaved({ user: user, ids });\n } else if (saved === false) {\n await store.markUnsaved({ user: user, ids });\n }\n\n const notifications = await store.getNotifications({ ids, user: user });\n res.json(notifications);\n };\n\n router.post('/update', updateNotificationsHandler); // Deprecated endpoint\n router.post('/notifications/update', updateNotificationsHandler);\n\n const sendBroadcastNotification = async (\n baseNotification: Omit<Notification, 'user' | 'id'>,\n opts: NotificationSendOptions,\n origin: string,\n ) => {\n const { scope } = opts.payload;\n const broadcastNotification = {\n ...baseNotification,\n user: null,\n id: uuid(),\n };\n const notification = await preProcessNotification(\n broadcastNotification,\n opts,\n );\n let existingNotification;\n if (scope) {\n existingNotification = await store.getExistingScopeBroadcast({\n scope,\n origin,\n });\n }\n\n let ret = notification;\n if (existingNotification) {\n const restored = await store.restoreExistingNotification({\n id: existingNotification.id,\n notification: { ...notification, user: '' },\n });\n ret = restored ?? notification;\n } else {\n await store.saveBroadcast(notification);\n }\n\n if (signals) {\n await signals.publish<NewNotificationSignal>({\n recipients: { type: 'broadcast' },\n message: {\n action: 'new_notification',\n notification_id: ret.id,\n },\n channel: 'notifications',\n });\n }\n postProcessNotification(ret, opts);\n return notification;\n };\n\n const sendUserNotification = async (\n baseNotification: Omit<Notification, 'user' | 'id'>,\n user: string,\n opts: NotificationSendOptions,\n origin: string,\n scope?: string,\n ): Promise<Notification | undefined> => {\n const userNotification = {\n ...baseNotification,\n id: uuid(),\n user,\n };\n const notification = await preProcessNotification(userNotification, opts);\n\n const enabled = await isNotificationsEnabled({\n user,\n channel: WEB_NOTIFICATION_CHANNEL,\n origin: userNotification.origin,\n topic: userNotification.payload.topic ?? null,\n });\n\n let ret = notification;\n\n if (!enabled) {\n postProcessNotification(ret, opts);\n return undefined;\n }\n\n let existingNotification;\n if (scope) {\n existingNotification = await store.getExistingScopeNotification({\n user,\n scope,\n origin,\n });\n }\n\n if (existingNotification) {\n const restored = await store.restoreExistingNotification({\n id: existingNotification.id,\n notification,\n });\n ret = restored ?? notification;\n } else {\n await store.saveNotification(notification);\n }\n\n if (signals) {\n await signals.publish<NewNotificationSignal>({\n recipients: { type: 'user', entityRef: [user] },\n message: {\n action: 'new_notification',\n notification_id: ret.id,\n },\n channel: 'notifications',\n });\n }\n postProcessNotification(ret, opts);\n return ret;\n };\n\n const sendUserNotifications = async (\n baseNotification: Omit<Notification, 'user' | 'id'>,\n users: string[],\n opts: NotificationSendOptions,\n origin: string,\n ): Promise<Notification[]> => {\n const { scope } = opts.payload;\n const uniqueUsers = [...new Set(users)];\n const throttled = throttle((user: string) =>\n sendUserNotification(baseNotification, user, opts, origin, scope),\n );\n const sent = await Promise.all(uniqueUsers.map(user => throttled(user)));\n return sent.filter(n => n !== undefined);\n };\n\n const createNotificationHandler = async (\n req: Request<any, Notification[], NotificationSendOptions>,\n res: Response,\n ) => {\n const credentials = await httpAuth.credentials(req, {\n allow: ['service'],\n });\n\n const origin = credentials.principal.subject;\n const opts = await processOptions(req.body, origin);\n const { recipients, payload } = opts;\n const { title, link } = payload;\n const notifications: Notification[] = [];\n let users = [];\n\n if (!recipients || !title) {\n const missing = [\n !title ? 'title' : null,\n !recipients ? 'recipients' : null,\n ].filter(Boolean);\n const err = `Invalid notification request received: missing ${missing.join(\n ', ',\n )}`;\n throw new InputError(err);\n }\n\n if (link) {\n try {\n validateLink(link);\n } catch (e) {\n throw new InputError('Invalid link provided', e);\n }\n }\n\n const baseNotification = {\n payload: {\n ...payload,\n severity: payload.severity ?? 'normal',\n },\n origin,\n created: new Date(),\n };\n\n if (recipients.type === 'broadcast') {\n const broadcast = await sendBroadcastNotification(\n baseNotification,\n opts,\n origin,\n );\n notifications.push(broadcast);\n } else if (recipients.type === 'entity') {\n const entityRef = recipients.entityRef;\n\n try {\n users = await getUsersForEntityRef(\n entityRef,\n recipients.excludeEntityRef ?? [],\n { auth, catalog },\n );\n } catch (e) {\n throw new InputError('Failed to resolve notification receivers', e);\n }\n\n const userNotifications = await sendUserNotifications(\n baseNotification,\n users,\n opts,\n origin,\n );\n notifications.push(...userNotifications);\n } else {\n throw new InputError(\n `Invalid recipients type, please use either 'broadcast' or 'entity'`,\n );\n }\n\n res.json(notifications);\n };\n\n // Add new notification\n router.post('/', createNotificationHandler);\n router.post('/notifications', createNotificationHandler);\n\n return router;\n}\n"],"names":["config","durationToMilliseconds","readDurationFromConfig","pThrottle","isNotificationsEnabledFor","notificationSeverities","InputError","normalizeSeverity","Router","express","parseEntityOrderFieldParams","NotFoundError","uuid","getUsersForEntityRef"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"router.cjs.js","sources":["../../src/service/router.ts"],"sourcesContent":["/*\n * Copyright 2023 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 express, { Request, Response } from 'express';\nimport Router from 'express-promise-router';\nimport {\n normalizeSeverity,\n NotificationGetOptions,\n NotificationsStore,\n TopicGetOptions,\n} from '../database';\nimport { v4 as uuid } from 'uuid';\nimport { CatalogService } from '@backstage/plugin-catalog-node';\nimport {\n NotificationProcessor,\n NotificationSendOptions,\n} from '@backstage/plugin-notifications-node';\nimport { InputError, NotFoundError } from '@backstage/errors';\nimport {\n AuthService,\n HttpAuthService,\n LoggerService,\n UserInfoService,\n} from '@backstage/backend-plugin-api';\nimport { SignalsService } from '@backstage/plugin-signals-node';\nimport {\n ChannelSetting,\n isNotificationsEnabledFor,\n NewNotificationSignal,\n Notification,\n NotificationReadSignal,\n NotificationSettings,\n notificationSeverities,\n NotificationStatus,\n OriginSetting,\n} from '@backstage/plugin-notifications-common';\nimport { parseEntityOrderFieldParams } from './parseEntityOrderFieldParams';\nimport { getUsersForEntityRef } from './getUsersForEntityRef';\nimport { Config, readDurationFromConfig } from '@backstage/config';\nimport { durationToMilliseconds } from '@backstage/types';\nimport pThrottle from 'p-throttle';\n\n/** @internal */\nexport interface RouterOptions {\n logger: LoggerService;\n config: Config;\n store: NotificationsStore;\n auth: AuthService;\n httpAuth: HttpAuthService;\n userInfo: UserInfoService;\n signals?: SignalsService;\n catalog: CatalogService;\n processors?: NotificationProcessor[];\n}\n\n/** @internal */\nexport async function createRouter(\n options: RouterOptions,\n): Promise<express.Router> {\n const {\n config,\n logger,\n store,\n auth,\n httpAuth,\n userInfo,\n catalog,\n processors = [],\n signals,\n } = options;\n\n const WEB_NOTIFICATION_CHANNEL = 'Web';\n const frontendBaseUrl = config.getString('app.baseUrl');\n const concurrencyLimit =\n config.getOptionalNumber('notifications.concurrencyLimit') ?? 10;\n const throttleInterval = config.has('notifications.throttleInterval')\n ? durationToMilliseconds(\n readDurationFromConfig(config, {\n key: 'notifications.throttleInterval',\n }),\n )\n : 50;\n const throttle = pThrottle({\n limit: concurrencyLimit,\n interval: throttleInterval,\n });\n const defaultNotificationSettings: NotificationSettings | undefined =\n config.getOptional<NotificationSettings>('notifications.defaultSettings');\n\n const getUser = async (req: Request<unknown>) => {\n const credentials = await httpAuth.credentials(req, { allow: ['user'] });\n const info = await userInfo.getUserInfo(credentials);\n return info.userEntityRef;\n };\n\n const getNotificationChannels = () => {\n return [WEB_NOTIFICATION_CHANNEL, ...processors.map(p => p.getName())];\n };\n\n const getTopicSettings = (\n topic: any,\n existingOrigin: OriginSetting | undefined,\n defaultOriginSettings: OriginSetting | undefined,\n defaultEnabled: boolean,\n ) => {\n const existingTopic = existingOrigin?.topics?.find(\n t => t.id.toLowerCase() === topic.topic.toLowerCase(),\n );\n const defaultTopicSettings = defaultOriginSettings?.topics?.find(\n t => t.id.toLowerCase() === topic.topic.toLowerCase(),\n );\n\n return {\n id: topic.topic,\n enabled: existingTopic\n ? existingTopic.enabled\n : defaultTopicSettings?.enabled ?? defaultEnabled,\n };\n };\n\n const getOriginSettings = (\n originId: string,\n existingChannel: ChannelSetting | undefined,\n defaultChannelSettings: ChannelSetting | undefined,\n topics: { origin: string; topic: string }[],\n ) => {\n const existingOrigin = existingChannel?.origins?.find(\n o => o.id.toLowerCase() === originId.toLowerCase(),\n );\n\n const defaultOriginSettings = defaultChannelSettings?.origins?.find(\n c => c.id.toLowerCase() === originId.toLowerCase(),\n );\n\n const defaultEnabled = existingOrigin\n ? existingOrigin.enabled\n : defaultOriginSettings?.enabled ?? true;\n\n return {\n id: originId,\n enabled: defaultEnabled,\n topics: topics\n .filter(t => t.origin === originId)\n .map(t =>\n getTopicSettings(\n t,\n existingOrigin,\n defaultOriginSettings,\n defaultEnabled,\n ),\n ),\n };\n };\n\n const getChannelSettings = (\n channelId: string,\n settings: NotificationSettings,\n origins: string[],\n topics: { origin: string; topic: string }[],\n ) => {\n const existingChannel = settings.channels.find(\n c => c.id.toLowerCase() === channelId.toLowerCase(),\n );\n const defaultChannelSettings = defaultNotificationSettings?.channels?.find(\n c => c.id.toLowerCase() === channelId.toLowerCase(),\n );\n\n return {\n id: channelId,\n origins: origins.map(originId =>\n getOriginSettings(\n originId,\n existingChannel,\n defaultChannelSettings,\n topics,\n ),\n ),\n };\n };\n\n const getNotificationSettings = async (\n user: string,\n ): Promise<NotificationSettings> => {\n const { origins } = await store.getUserNotificationOrigins({ user });\n const { topics } = await store.getUserNotificationTopics({ user });\n const settings = await store.getNotificationSettings({ user });\n const channels = getNotificationChannels();\n\n return {\n channels: channels.map(channelId =>\n getChannelSettings(channelId, settings, origins, topics),\n ),\n };\n };\n\n const isNotificationsEnabled = async (opts: {\n user: string;\n channel: string;\n origin: string;\n topic: string | null;\n }) => {\n const settings = await getNotificationSettings(opts.user);\n return isNotificationsEnabledFor(\n settings,\n opts.channel,\n opts.origin,\n opts.topic,\n );\n };\n\n const filterProcessors = async (\n notification:\n | Notification\n | ({ origin: string; user: null } & NotificationSendOptions),\n ) => {\n const result: NotificationProcessor[] = [];\n const { payload, user, origin } = notification;\n\n for (const processor of processors) {\n if (user) {\n const enabled = await isNotificationsEnabled({\n user,\n origin,\n channel: processor.getName(),\n topic: payload.topic ?? null,\n });\n if (!enabled) {\n continue;\n }\n }\n\n if (processor.getNotificationFilters) {\n const filters = processor.getNotificationFilters();\n if (filters.minSeverity) {\n if (\n notificationSeverities.indexOf(payload.severity ?? 'normal') >\n notificationSeverities.indexOf(filters.minSeverity)\n ) {\n continue;\n }\n }\n\n if (filters.maxSeverity) {\n if (\n notificationSeverities.indexOf(payload.severity ?? 'normal') <\n notificationSeverities.indexOf(filters.maxSeverity)\n ) {\n continue;\n }\n }\n\n if (filters.excludedTopics && payload.topic) {\n if (filters.excludedTopics.includes(payload.topic)) {\n continue;\n }\n }\n }\n result.push(processor);\n }\n\n return result;\n };\n\n const processOptions = async (\n opts: NotificationSendOptions,\n origin: string,\n ): Promise<NotificationSendOptions> => {\n const filtered = await filterProcessors({ ...opts, origin, user: null });\n let ret = opts;\n for (const processor of filtered) {\n try {\n ret = processor.processOptions\n ? await processor.processOptions(ret)\n : ret;\n } catch (e) {\n logger.error(\n `Error while processing notification options with ${processor.getName()}: ${e}`,\n );\n }\n }\n return ret;\n };\n\n const preProcessNotification = async (\n notification: Notification,\n opts: NotificationSendOptions,\n ) => {\n const filtered = await filterProcessors(notification);\n let ret = notification;\n for (const processor of filtered) {\n try {\n ret = processor.preProcess\n ? await processor.preProcess(ret, opts)\n : ret;\n } catch (e) {\n logger.error(\n `Error while pre processing notification with ${processor.getName()}: ${e}`,\n );\n }\n }\n return ret;\n };\n\n const postProcessNotification = async (\n notification: Notification,\n opts: NotificationSendOptions,\n ) => {\n const filtered = await filterProcessors(notification);\n for (const processor of filtered) {\n if (processor.postProcess) {\n try {\n await processor.postProcess(notification, opts);\n } catch (e) {\n logger.error(\n `Error while post processing notification with ${processor.getName()}: ${e}`,\n );\n }\n }\n }\n };\n\n const validateLink = (link: string) => {\n const stripLeadingSlash = (s: string) => s.replace(/^\\//, '');\n const ensureTrailingSlash = (s: string) => s.replace(/\\/?$/, '/');\n const url = new URL(\n stripLeadingSlash(link),\n ensureTrailingSlash(frontendBaseUrl),\n );\n if (url.protocol !== 'https:' && url.protocol !== 'http:') {\n throw new Error('Only HTTP/HTTPS links are allowed');\n }\n };\n\n const appendCommonOptions = (\n req: Request,\n opts: NotificationGetOptions | TopicGetOptions,\n ) => {\n if (req.query.search) {\n opts.search = req.query.search.toString();\n }\n if (req.query.read === 'true') {\n opts.read = true;\n } else if (req.query.read === 'false') {\n opts.read = false;\n // or keep undefined\n }\n\n if (req.query.saved === 'true') {\n opts.saved = true;\n } else if (req.query.saved === 'false') {\n opts.saved = false;\n // or keep undefined\n }\n if (req.query.createdAfter) {\n const sinceEpoch = Date.parse(String(req.query.createdAfter));\n if (isNaN(sinceEpoch)) {\n throw new InputError('Unexpected date format');\n }\n opts.createdAfter = new Date(sinceEpoch);\n }\n if (req.query.minimumSeverity) {\n opts.minimumSeverity = normalizeSeverity(\n req.query.minimumSeverity.toString(),\n );\n }\n };\n\n // TODO: Move to use OpenAPI router instead\n const router = Router();\n router.use(express.json());\n\n const listNotificationsHandler = async (req: Request, res: Response) => {\n const user = await getUser(req);\n const opts: NotificationGetOptions = {\n user: user,\n };\n if (req.query.offset) {\n opts.offset = Number.parseInt(req.query.offset.toString(), 10);\n }\n if (req.query.limit) {\n opts.limit = Number.parseInt(req.query.limit.toString(), 10);\n }\n if (req.query.orderField) {\n opts.orderField = parseEntityOrderFieldParams(req.query);\n }\n\n if (req.query.topic) {\n opts.topic = req.query.topic.toString();\n }\n\n appendCommonOptions(req, opts);\n\n const [notifications, totalCount] = await Promise.all([\n store.getNotifications(opts),\n store.getNotificationsCount(opts),\n ]);\n res.json({\n totalCount,\n notifications,\n });\n };\n\n router.get('/', listNotificationsHandler); // Deprecated endpoint\n router.get('/notifications', listNotificationsHandler);\n\n router.get('/status', async (req: Request<any, NotificationStatus>, res) => {\n const user = await getUser(req);\n const status = await store.getStatus({ user });\n res.json(status);\n });\n\n router.get(\n '/settings',\n async (req: Request<any, NotificationSettings>, res) => {\n const user = await getUser(req);\n const response = await getNotificationSettings(user);\n res.json(response);\n },\n );\n\n router.post(\n '/settings',\n async (\n req: Request<any, NotificationSettings, NotificationSettings>,\n res,\n ) => {\n const user = await getUser(req);\n const channels = getNotificationChannels();\n const settings: NotificationSettings = req.body;\n if (settings.channels.some(c => !channels.includes(c.id))) {\n throw new InputError('Invalid channel');\n }\n await store.saveNotificationSettings({ user, settings });\n const response = await getNotificationSettings(user);\n res.json(response);\n },\n );\n\n const getNotificationHandler = async (req: Request, res: Response) => {\n const user = await getUser(req);\n const opts: NotificationGetOptions = {\n user: user,\n limit: 1,\n ids: [req.params.id],\n };\n const notifications = await store.getNotifications(opts);\n if (notifications.length !== 1) {\n throw new NotFoundError('Not found');\n }\n res.json(notifications[0]);\n };\n\n // Get topics\n const listTopicsHandler = async (req: Request, res: Response) => {\n const user = await getUser(req);\n const opts: TopicGetOptions = {\n user: user,\n };\n\n appendCommonOptions(req, opts);\n\n const topics = await store.getTopics(opts);\n res.json(topics);\n };\n\n router.get('/topics', listTopicsHandler);\n\n // Make sure this is the last \"GET\" handler\n router.get('/:id', getNotificationHandler); // Deprecated endpoint\n router.get('/notifications/:id', getNotificationHandler);\n\n const updateNotificationsHandler = async (req: Request, res: Response) => {\n const user = await getUser(req);\n const { ids, read, saved } = req.body;\n if (!ids || !Array.isArray(ids)) {\n throw new InputError();\n }\n\n if (read === true) {\n await store.markRead({ user, ids });\n\n if (signals) {\n await signals.publish<NotificationReadSignal>({\n recipients: { type: 'user', entityRef: [user] },\n message: { action: 'notification_read', notification_ids: ids },\n channel: 'notifications',\n });\n }\n } else if (read === false) {\n await store.markUnread({ user: user, ids });\n\n if (signals) {\n await signals.publish<NotificationReadSignal>({\n recipients: { type: 'user', entityRef: [user] },\n message: { action: 'notification_unread', notification_ids: ids },\n channel: 'notifications',\n });\n }\n }\n\n if (saved === true) {\n await store.markSaved({ user: user, ids });\n } else if (saved === false) {\n await store.markUnsaved({ user: user, ids });\n }\n\n const notifications = await store.getNotifications({ ids, user: user });\n res.json(notifications);\n };\n\n router.post('/update', updateNotificationsHandler); // Deprecated endpoint\n router.post('/notifications/update', updateNotificationsHandler);\n\n const sendBroadcastNotification = async (\n baseNotification: Omit<Notification, 'user' | 'id'>,\n opts: NotificationSendOptions,\n origin: string,\n ) => {\n const { scope } = opts.payload;\n const broadcastNotification = {\n ...baseNotification,\n user: null,\n id: uuid(),\n };\n const notification = await preProcessNotification(\n broadcastNotification,\n opts,\n );\n let existingNotification;\n if (scope) {\n existingNotification = await store.getExistingScopeBroadcast({\n scope,\n origin,\n });\n }\n\n let ret = notification;\n if (existingNotification) {\n const restored = await store.restoreExistingNotification({\n id: existingNotification.id,\n notification: { ...notification, user: '' },\n });\n ret = restored ?? notification;\n } else {\n await store.saveBroadcast(notification);\n }\n\n if (signals) {\n await signals.publish<NewNotificationSignal>({\n recipients: { type: 'broadcast' },\n message: {\n action: 'new_notification',\n notification_id: ret.id,\n },\n channel: 'notifications',\n });\n }\n postProcessNotification(ret, opts);\n return notification;\n };\n\n const sendUserNotification = async (\n baseNotification: Omit<Notification, 'user' | 'id'>,\n user: string,\n opts: NotificationSendOptions,\n origin: string,\n scope?: string,\n ): Promise<Notification | undefined> => {\n const userNotification = {\n ...baseNotification,\n id: uuid(),\n user,\n };\n const notification = await preProcessNotification(userNotification, opts);\n\n const enabled = await isNotificationsEnabled({\n user,\n channel: WEB_NOTIFICATION_CHANNEL,\n origin: userNotification.origin,\n topic: userNotification.payload.topic ?? null,\n });\n\n let ret = notification;\n\n if (!enabled) {\n postProcessNotification(ret, opts);\n return undefined;\n }\n\n let existingNotification;\n if (scope) {\n existingNotification = await store.getExistingScopeNotification({\n user,\n scope,\n origin,\n });\n }\n\n if (existingNotification) {\n const restored = await store.restoreExistingNotification({\n id: existingNotification.id,\n notification,\n });\n ret = restored ?? notification;\n } else {\n await store.saveNotification(notification);\n }\n\n if (signals) {\n await signals.publish<NewNotificationSignal>({\n recipients: { type: 'user', entityRef: [user] },\n message: {\n action: 'new_notification',\n notification_id: ret.id,\n },\n channel: 'notifications',\n });\n }\n postProcessNotification(ret, opts);\n return ret;\n };\n\n const sendUserNotifications = async (\n baseNotification: Omit<Notification, 'user' | 'id'>,\n users: string[],\n opts: NotificationSendOptions,\n origin: string,\n ): Promise<Notification[]> => {\n const { scope } = opts.payload;\n const uniqueUsers = [...new Set(users)];\n const throttled = throttle((user: string) =>\n sendUserNotification(baseNotification, user, opts, origin, scope),\n );\n const sent = await Promise.all(uniqueUsers.map(user => throttled(user)));\n return sent.filter(n => n !== undefined);\n };\n\n const createNotificationHandler = async (\n req: Request<any, Notification[], NotificationSendOptions>,\n res: Response,\n ) => {\n const credentials = await httpAuth.credentials(req, {\n allow: ['service'],\n });\n\n const origin = credentials.principal.subject;\n const opts = await processOptions(req.body, origin);\n const { recipients, payload } = opts;\n const { title, link } = payload;\n const notifications: Notification[] = [];\n let users = [];\n\n if (!recipients || !title) {\n const missing = [\n !title ? 'title' : null,\n !recipients ? 'recipients' : null,\n ].filter(Boolean);\n const err = `Invalid notification request received: missing ${missing.join(\n ', ',\n )}`;\n throw new InputError(err);\n }\n\n if (link) {\n try {\n validateLink(link);\n } catch (e) {\n throw new InputError('Invalid link provided', e);\n }\n }\n\n const baseNotification = {\n payload: {\n ...payload,\n severity: payload.severity ?? 'normal',\n },\n origin,\n created: new Date(),\n };\n\n if (recipients.type === 'broadcast') {\n const broadcast = await sendBroadcastNotification(\n baseNotification,\n opts,\n origin,\n );\n notifications.push(broadcast);\n } else if (recipients.type === 'entity') {\n const entityRef = recipients.entityRef;\n\n try {\n users = await getUsersForEntityRef(\n entityRef,\n recipients.excludeEntityRef ?? [],\n { auth, catalog },\n );\n } catch (e) {\n throw new InputError('Failed to resolve notification receivers', e);\n }\n\n const userNotifications = await sendUserNotifications(\n baseNotification,\n users,\n opts,\n origin,\n );\n notifications.push(...userNotifications);\n } else {\n throw new InputError(\n `Invalid recipients type, please use either 'broadcast' or 'entity'`,\n );\n }\n\n res.json(notifications);\n };\n\n // Add new notification\n router.post('/', createNotificationHandler);\n router.post('/notifications', createNotificationHandler);\n\n return router;\n}\n"],"names":["config","durationToMilliseconds","readDurationFromConfig","pThrottle","isNotificationsEnabledFor","notificationSeverities","InputError","normalizeSeverity","Router","express","parseEntityOrderFieldParams","NotFoundError","uuid","getUsersForEntityRef"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-notifications-backend",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.9-next.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "backend-plugin",
|
|
6
6
|
"pluginId": "notifications",
|
|
@@ -42,16 +42,16 @@
|
|
|
42
42
|
"test": "backstage-cli package test"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@backstage/backend-plugin-api": "1.4.
|
|
46
|
-
"@backstage/catalog-model": "1.7.5
|
|
47
|
-
"@backstage/config": "1.3.3
|
|
45
|
+
"@backstage/backend-plugin-api": "1.4.2-next.0",
|
|
46
|
+
"@backstage/catalog-model": "1.7.5",
|
|
47
|
+
"@backstage/config": "1.3.3",
|
|
48
48
|
"@backstage/errors": "1.2.7",
|
|
49
|
-
"@backstage/plugin-auth-node": "0.6.
|
|
50
|
-
"@backstage/plugin-catalog-node": "1.
|
|
51
|
-
"@backstage/plugin-events-node": "0.4.
|
|
52
|
-
"@backstage/plugin-notifications-common": "0.0.10
|
|
53
|
-
"@backstage/plugin-notifications-node": "0.2.
|
|
54
|
-
"@backstage/plugin-signals-node": "0.1.
|
|
49
|
+
"@backstage/plugin-auth-node": "0.6.6-next.0",
|
|
50
|
+
"@backstage/plugin-catalog-node": "1.18.0-next.0",
|
|
51
|
+
"@backstage/plugin-events-node": "0.4.14-next.0",
|
|
52
|
+
"@backstage/plugin-notifications-common": "0.0.10",
|
|
53
|
+
"@backstage/plugin-notifications-node": "0.2.18-next.0",
|
|
54
|
+
"@backstage/plugin-signals-node": "0.1.23-next.0",
|
|
55
55
|
"@backstage/types": "1.2.1",
|
|
56
56
|
"express": "^4.17.1",
|
|
57
57
|
"express-promise-router": "^4.1.0",
|
|
@@ -62,13 +62,13 @@
|
|
|
62
62
|
"yn": "^4.0.0"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@backstage/backend-defaults": "0.11.
|
|
66
|
-
"@backstage/backend-test-utils": "1.7.
|
|
67
|
-
"@backstage/cli": "0.33.
|
|
68
|
-
"@backstage/plugin-auth-backend": "0.25.
|
|
69
|
-
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.
|
|
70
|
-
"@backstage/plugin-events-backend": "0.5.
|
|
71
|
-
"@backstage/plugin-signals-backend": "0.3.
|
|
65
|
+
"@backstage/backend-defaults": "0.11.2-next.0",
|
|
66
|
+
"@backstage/backend-test-utils": "1.7.1-next.0",
|
|
67
|
+
"@backstage/cli": "0.33.2-next.0",
|
|
68
|
+
"@backstage/plugin-auth-backend": "0.25.3-next.0",
|
|
69
|
+
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.11-next.0",
|
|
70
|
+
"@backstage/plugin-events-backend": "0.5.5-next.0",
|
|
71
|
+
"@backstage/plugin-signals-backend": "0.3.7-next.0",
|
|
72
72
|
"@types/express": "^4.17.6",
|
|
73
73
|
"@types/supertest": "^2.0.8",
|
|
74
74
|
"msw": "^1.0.0",
|