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.
41 lines
1.7 KiB
TypeScript
41 lines
1.7 KiB
TypeScript
import { Injectable } from "@angular/core";
|
|
import { Http } from "@angular/http";
|
|
import { AuthedApi } from "../authed-api";
|
|
import { FE_Upstream } from "../../models/admin-responses";
|
|
import { FE_TelegramBridge, FE_TelegramBridgeOptions } from "../../models/telegram";
|
|
|
|
@Injectable()
|
|
export class AdminTelegramApiService extends AuthedApi {
|
|
constructor(http: Http) {
|
|
super(http);
|
|
}
|
|
|
|
public getBridges(): Promise<FE_TelegramBridge[]> {
|
|
return this.authedGet("/api/v1/dimension/admin/telegram/all").map(r => r.json()).toPromise();
|
|
}
|
|
|
|
public getBridge(bridgeId: number): Promise<FE_TelegramBridge> {
|
|
return this.authedGet("/api/v1/dimension/admin/telegram/" + bridgeId).map(r => r.json()).toPromise();
|
|
}
|
|
|
|
public newFromUpstream(upstream: FE_Upstream): Promise<FE_TelegramBridge> {
|
|
return this.authedPost("/api/v1/dimension/admin/telegram/new/upstream", {upstreamId: upstream.id}).map(r => r.json()).toPromise();
|
|
}
|
|
|
|
public newSelfhosted(provisionUrl: string, sharedSecret: string, options: FE_TelegramBridgeOptions): Promise<FE_TelegramBridge> {
|
|
return this.authedPost("/api/v1/dimension/admin/telegram/new/selfhosted", {
|
|
provisionUrl: provisionUrl,
|
|
sharedSecret: sharedSecret,
|
|
options: options,
|
|
}).map(r => r.json()).toPromise();
|
|
}
|
|
|
|
public updateSelfhosted(bridgeId: number, provisionUrl: string, sharedSecret: string, options: FE_TelegramBridgeOptions): Promise<FE_TelegramBridge> {
|
|
return this.authedPost("/api/v1/dimension/admin/telegram/" + bridgeId, {
|
|
provisionUrl: provisionUrl,
|
|
sharedSecret: sharedSecret,
|
|
options: options,
|
|
}).map(r => r.json()).toPromise();
|
|
}
|
|
}
|