mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
c200020e55
Adds #89
59 lines
1.9 KiB
TypeScript
59 lines
1.9 KiB
TypeScript
import { Injectable } from "@angular/core";
|
|
import { Integration } from "./models/integration";
|
|
import { RssConfigComponent } from "../configs/rss/rss-config.component";
|
|
import { ContainerContent } from "ngx-modialog";
|
|
import { IrcConfigComponent } from "../configs/irc/irc-config.component";
|
|
import { TravisCiConfigComponent } from "../configs/travisci/travisci-config.component";
|
|
import { CustomWidgetConfigComponent } from "../configs/widget/custom_widget/custom_widget-config.component";
|
|
import { YoutubeWidgetConfigComponent } from "../configs/widget/youtube/youtube-config.component";
|
|
|
|
@Injectable()
|
|
export class IntegrationService {
|
|
|
|
private static supportedTypeMap = {
|
|
"bot": true,
|
|
"complex-bot": {
|
|
"rss": true,
|
|
"travisci": true,
|
|
},
|
|
"bridge": {
|
|
"irc": true,
|
|
},
|
|
"widget": {
|
|
"customwidget": true,
|
|
"youtube": true,
|
|
},
|
|
};
|
|
|
|
private static components = {
|
|
"complex-bot": {
|
|
"rss": RssConfigComponent,
|
|
"travisci": TravisCiConfigComponent,
|
|
},
|
|
"bridge": {
|
|
"irc": IrcConfigComponent,
|
|
},
|
|
"widget": {
|
|
"customwidget": CustomWidgetConfigComponent,
|
|
"youtube": YoutubeWidgetConfigComponent,
|
|
},
|
|
};
|
|
|
|
static isSupported(integration: Integration): boolean {
|
|
if (IntegrationService.supportedTypeMap[integration.type] === true) return true;
|
|
if (!IntegrationService.supportedTypeMap[integration.type]) return false;
|
|
return IntegrationService.supportedTypeMap[integration.type][integration.integrationType] === true;
|
|
}
|
|
|
|
static hasConfig(integration: Integration): boolean {
|
|
return integration.type !== "bot";
|
|
}
|
|
|
|
static getConfigComponent(integration: Integration): ContainerContent {
|
|
return IntegrationService.components[integration.type][integration.integrationType];
|
|
}
|
|
|
|
constructor() {
|
|
}
|
|
}
|