matrix-dimension/web/app/shared/services/integration.service.ts

70 lines
2.1 KiB
TypeScript
Raw Normal View History

2017-12-23 04:08:10 +00:00
import { Injectable } from "@angular/core";
import {
WIDGET_CUSTOM, WIDGET_ETHERPAD, WIDGET_GOOGLE_CALENDAR, WIDGET_GOOGLE_DOCS, WIDGET_JITSI, WIDGET_TWITCH,
WIDGET_YOUTUBE
2017-12-15 06:46:17 +00:00
} from "../models/widget";
import { Integration } from "../models/integration";
@Injectable()
export class IntegrationService {
private static supportedIntegrationsMap = {
"bot": {}, // empty == supported
"complex-bot": {
2017-12-23 04:08:10 +00:00
"rss": {},
"travisci": {},
"circleci": {},
},
"bridge": {
2017-12-23 04:08:10 +00:00
"irc": {},
},
"widget": {
2017-12-21 04:47:35 +00:00
"custom": {
types: WIDGET_CUSTOM,
},
"youtube": {
types: WIDGET_YOUTUBE
},
"etherpad": {
types: WIDGET_ETHERPAD,
},
"twitch": {
types: WIDGET_TWITCH,
},
"jitsi": {
types: WIDGET_JITSI,
},
2017-12-11 23:43:50 +00:00
"googledocs": {
types: WIDGET_GOOGLE_DOCS,
},
"googlecalendar": {
types: WIDGET_GOOGLE_CALENDAR,
2017-12-11 23:43:50 +00:00
},
},
};
static isSupported(integration: Integration): boolean {
const forType = IntegrationService.supportedIntegrationsMap[integration.category];
if (!forType) return false;
if (Object.keys(forType).length === 0) return true;
return forType[integration.type]; // has sub type
}
static getIntegrationForScreen(screen: string): { category: string, type: string } {
for (const iType of Object.keys(IntegrationService.supportedIntegrationsMap)) {
for (const iiType of Object.keys(IntegrationService.supportedIntegrationsMap[iType])) {
const integrationTypes = IntegrationService.supportedIntegrationsMap[iType][iiType].types;
const integrationScreens = integrationTypes.map(t => "type_" + t);
if (integrationScreens.includes(screen)) return {category: iType, type: iiType};
}
}
return null;
}
private constructor() {
}
}