import { Injectable } from "@angular/core"; import { WIDGET_CUSTOM, WIDGET_ETHERPAD, WIDGET_GOOGLE_CALENDAR, WIDGET_GOOGLE_DOCS, WIDGET_JITSI, WIDGET_TWITCH, WIDGET_YOUTUBE } from "../models/widget"; import { Integration } from "../models/integration"; @Injectable() export class IntegrationService { private static supportedIntegrationsMap = { "bot": {}, // empty == supported "complex-bot": { "rss": {}, "travisci": {}, "circleci": {}, }, "bridge": { "irc": {}, }, "widget": { "custom": { types: WIDGET_CUSTOM, }, "youtube": { types: WIDGET_YOUTUBE }, "etherpad": { types: WIDGET_ETHERPAD, }, "twitch": { types: WIDGET_TWITCH, }, "jitsi": { types: WIDGET_JITSI, }, "googledocs": { types: WIDGET_GOOGLE_DOCS, }, "googlecalendar": { types: WIDGET_GOOGLE_CALENDAR, }, }, }; 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 category of Object.keys(IntegrationService.supportedIntegrationsMap)) { for (const type of Object.keys(IntegrationService.supportedIntegrationsMap[category])) { const integrationTypes = IntegrationService.supportedIntegrationsMap[category][type].types; if (!integrationTypes) continue; const integrationScreens = integrationTypes.map(t => "type_" + t); if (integrationScreens.includes(screen)) return {category: category, type: type}; } } return null; } private constructor() { } }