2018-09-16 04:26:10 -04:00
|
|
|
import { Injectable } from "@angular/core";
|
|
|
|
import { AuthedApi } from "../authed-api";
|
|
|
|
import { FE_Upstream } from "../../models/admin-responses";
|
2018-10-17 23:09:19 -04:00
|
|
|
import { FE_TelegramBridge, FE_TelegramBridgeOptions } from "../../models/telegram";
|
2019-06-29 02:21:56 -04:00
|
|
|
import { HttpClient } from "@angular/common/http";
|
2018-09-16 04:26:10 -04:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class AdminTelegramApiService extends AuthedApi {
|
2019-06-29 02:21:56 -04:00
|
|
|
constructor(http: HttpClient) {
|
2018-09-16 04:26:10 -04:00
|
|
|
super(http);
|
|
|
|
}
|
|
|
|
|
|
|
|
public getBridges(): Promise<FE_TelegramBridge[]> {
|
2019-06-29 02:21:56 -04:00
|
|
|
return this.authedGet<FE_TelegramBridge[]>("/api/v1/dimension/admin/telegram/all").toPromise();
|
2018-09-16 04:26:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public getBridge(bridgeId: number): Promise<FE_TelegramBridge> {
|
2019-06-29 02:21:56 -04:00
|
|
|
return this.authedGet<FE_TelegramBridge>("/api/v1/dimension/admin/telegram/" + bridgeId).toPromise();
|
2018-09-16 04:26:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public newFromUpstream(upstream: FE_Upstream): Promise<FE_TelegramBridge> {
|
2019-06-29 02:21:56 -04:00
|
|
|
return this.authedPost<FE_TelegramBridge>("/api/v1/dimension/admin/telegram/new/upstream", {upstreamId: upstream.id}).toPromise();
|
2018-09-16 04:26:10 -04:00
|
|
|
}
|
|
|
|
|
2018-10-17 23:09:19 -04:00
|
|
|
public newSelfhosted(provisionUrl: string, sharedSecret: string, options: FE_TelegramBridgeOptions): Promise<FE_TelegramBridge> {
|
2019-06-29 02:21:56 -04:00
|
|
|
return this.authedPost<FE_TelegramBridge>("/api/v1/dimension/admin/telegram/new/selfhosted", {
|
2018-09-16 04:26:10 -04:00
|
|
|
provisionUrl: provisionUrl,
|
|
|
|
sharedSecret: sharedSecret,
|
2018-10-17 23:09:19 -04:00
|
|
|
options: options,
|
2019-06-29 02:21:56 -04:00
|
|
|
}).toPromise();
|
2018-09-16 04:26:10 -04:00
|
|
|
}
|
|
|
|
|
2018-10-17 23:09:19 -04:00
|
|
|
public updateSelfhosted(bridgeId: number, provisionUrl: string, sharedSecret: string, options: FE_TelegramBridgeOptions): Promise<FE_TelegramBridge> {
|
2019-06-29 02:21:56 -04:00
|
|
|
return this.authedPost<FE_TelegramBridge>("/api/v1/dimension/admin/telegram/" + bridgeId, {
|
2018-09-16 04:26:10 -04:00
|
|
|
provisionUrl: provisionUrl,
|
|
|
|
sharedSecret: sharedSecret,
|
2018-10-17 23:09:19 -04:00
|
|
|
options: options,
|
2019-06-29 02:21:56 -04:00
|
|
|
}).toPromise();
|
2018-09-16 04:26:10 -04:00
|
|
|
}
|
|
|
|
}
|