1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00
unleash.unleash/src/lib/addons/teams.ts
Christopher Kolstad 186fda1657
task: Add customHeaders as possible parameter. (#4139)
###What
Adds an optional sensitive parameter for customHeaders to all current
addons. It is sensitive because the user might be including api key headers.
2023-07-05 09:42:17 +02:00

88 lines
2.7 KiB
TypeScript

import Addon from './addon';
import teamsDefinition from './teams-definition';
import { IAddonConfig } from '../types/model';
import {
FeatureEventFormatter,
FeatureEventFormatterMd,
} from './feature-event-formatter-md';
import { IEvent } from '../types/events';
interface ITeamsParameters {
url: string;
customHeaders?: string;
}
export default class TeamsAddon extends Addon {
private msgFormatter: FeatureEventFormatter;
constructor(args: IAddonConfig) {
super(teamsDefinition, args);
this.msgFormatter = new FeatureEventFormatterMd(args.unleashUrl);
}
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
async handleEvent(
event: IEvent,
parameters: ITeamsParameters,
): Promise<void> {
const { url, customHeaders } = parameters;
const { createdBy } = event;
const text = this.msgFormatter.format(event);
const featureLink = this.msgFormatter.featureLink(event);
const body = {
themeColor: '0076D7',
summary: 'Message',
sections: [
{
activityTitle: text,
activitySubtitle: 'Unleash notification update',
facts: [
{
name: 'User',
value: createdBy,
},
{
name: 'Action',
value: event.type,
},
],
},
],
potentialAction: [
{
'@type': 'OpenUri',
name: 'Go to feature',
targets: [
{
os: 'default',
uri: featureLink,
},
],
},
],
};
let extraHeaders = {};
if (typeof customHeaders === 'string' && customHeaders.length > 1) {
try {
extraHeaders = JSON.parse(customHeaders);
} catch (e) {
this.logger.warn(
`Could not parse the json in the customHeaders parameter. [${customHeaders}]`,
);
}
}
const requestOpts = {
method: 'POST',
headers: { 'Content-Type': 'application/json', ...extraHeaders },
body: JSON.stringify(body),
};
const res = await this.fetchRetry(url, requestOpts);
this.logger.info(
`Handled event ${event.type}. Status codes=${res.status}`,
);
}
}