matrix-dimension/web/app/shared/services/integrations/telegram-api.service.ts

23 lines
979 B
TypeScript
Raw Normal View History

import { Injectable } from "@angular/core";
import { AuthedApi } from "../authed-api";
import { FE_PortalInfo } from "../../models/telegram";
2019-06-29 06:21:56 +00:00
import { HttpClient } from "@angular/common/http";
@Injectable()
export class TelegramApiService extends AuthedApi {
2019-06-29 06:21:56 +00:00
constructor(http: HttpClient) {
super(http);
}
public getPortalInfo(chatId: number, roomId: string): Promise<FE_PortalInfo> {
2019-06-29 06:21:56 +00:00
return this.authedGet<FE_PortalInfo>("/api/v1/dimension/telegram/chat/" + chatId, {roomId: roomId}).toPromise();
}
2018-10-18 03:51:18 +00:00
public bridgeRoom(roomId: string, chatId: number, unbridgeOtherPortals = false): Promise<FE_PortalInfo> {
2019-06-29 06:21:56 +00:00
return this.authedPost<FE_PortalInfo>("/api/v1/dimension/telegram/chat/" + chatId + "/room/" + roomId, {unbridgeOtherPortals}).toPromise();
}
public unbridgeRoom(roomId: string): Promise<FE_PortalInfo> {
2019-06-29 06:21:56 +00:00
return this.authedDelete<FE_PortalInfo>("/api/v1/dimension/telegram/room/" + roomId).toPromise();
}
}