mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
c0936745c0
Requires https://github.com/tulir/mautrix-telegram/pull/235 Puppeting is scheduled to be handled in https://github.com/turt2live/matrix-dimension/issues/214 The TODO comments about asking for unbridge/permission denied will be handled in a later commit.
80 lines
2.8 KiB
TypeScript
80 lines
2.8 KiB
TypeScript
import { Component, OnInit } from "@angular/core";
|
|
import { ToasterService } from "angular2-toaster";
|
|
import { Modal, overlayConfigFactory } from "ngx-modialog";
|
|
import {
|
|
AdminTelegramBridgeManageSelfhostedComponent,
|
|
ManageSelfhostedTelegramBridgeDialogContext
|
|
} from "./manage-selfhosted/manage-selfhosted.component";
|
|
import { FE_TelegramBridge } from "../../../shared/models/telegram";
|
|
import { AdminTelegramApiService } from "../../../shared/services/admin/admin-telegram-api.service";
|
|
|
|
@Component({
|
|
templateUrl: "./telegram.component.html",
|
|
styleUrls: ["./telegram.component.scss"],
|
|
})
|
|
export class AdminTelegramBridgeComponent implements OnInit {
|
|
|
|
public isLoading = true;
|
|
public isUpdating = false;
|
|
public configurations: FE_TelegramBridge[] = [];
|
|
|
|
constructor(private telegramApi: AdminTelegramApiService,
|
|
private toaster: ToasterService,
|
|
private modal: Modal) {
|
|
}
|
|
|
|
public ngOnInit() {
|
|
this.reload().then(() => this.isLoading = false);
|
|
}
|
|
|
|
private async reload(): Promise<any> {
|
|
try {
|
|
this.configurations = await this.telegramApi.getBridges();
|
|
} catch (err) {
|
|
console.error(err);
|
|
this.toaster.pop("error", "Error loading bridges");
|
|
}
|
|
}
|
|
|
|
public addSelfHostedBridge() {
|
|
this.modal.open(AdminTelegramBridgeManageSelfhostedComponent, overlayConfigFactory({
|
|
isBlocking: true,
|
|
size: 'lg',
|
|
|
|
provisionUrl: '',
|
|
sharedSecret: '',
|
|
allowPuppets: false,
|
|
}, ManageSelfhostedTelegramBridgeDialogContext)).result.then(() => {
|
|
this.reload().catch(err => {
|
|
console.error(err);
|
|
this.toaster.pop("error", "Failed to get an update Telegram bridge list");
|
|
});
|
|
});
|
|
}
|
|
|
|
public getEnabledFeaturesString(bridge: FE_TelegramBridge): string {
|
|
if (!bridge.options) return "";
|
|
if (bridge.options.allowTgPuppets) return "Telegram Puppetting";
|
|
if (bridge.options.allowMxPuppets) return "Matrix Puppetting";
|
|
return "";
|
|
}
|
|
|
|
public editBridge(bridge: FE_TelegramBridge) {
|
|
this.modal.open(AdminTelegramBridgeManageSelfhostedComponent, overlayConfigFactory({
|
|
isBlocking: true,
|
|
size: 'lg',
|
|
|
|
provisionUrl: bridge.provisionUrl,
|
|
sharedSecret: bridge.sharedSecret,
|
|
allowTgPuppets: bridge.options ? bridge.options.allowTgPuppets : false,
|
|
allowMxPuppets: bridge.options ? bridge.options.allowMxPuppets : false,
|
|
bridgeId: bridge.id,
|
|
}, ManageSelfhostedTelegramBridgeDialogContext)).result.then(() => {
|
|
this.reload().catch(err => {
|
|
console.error(err);
|
|
this.toaster.pop("error", "Failed to get an update Telegram bridge list");
|
|
});
|
|
});
|
|
}
|
|
}
|