2018-09-16 04:26:10 -04:00
|
|
|
import { Injectable } from "@angular/core";
|
|
|
|
import { Http } from "@angular/http";
|
|
|
|
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";
|
2018-09-16 04:26:10 -04:00
|
|
|
|
|
|
|
@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();
|
|
|
|
}
|
|
|
|
|
2018-10-17 23:09:19 -04:00
|
|
|
public newSelfhosted(provisionUrl: string, sharedSecret: string, options: FE_TelegramBridgeOptions): Promise<FE_TelegramBridge> {
|
2018-09-16 04:26:10 -04:00
|
|
|
return this.authedPost("/api/v1/dimension/admin/telegram/new/selfhosted", {
|
|
|
|
provisionUrl: provisionUrl,
|
|
|
|
sharedSecret: sharedSecret,
|
2018-10-17 23:09:19 -04:00
|
|
|
options: options,
|
2018-09-16 04:26:10 -04:00
|
|
|
}).map(r => r.json()).toPromise();
|
|
|
|
}
|
|
|
|
|
2018-10-17 23:09:19 -04:00
|
|
|
public updateSelfhosted(bridgeId: number, provisionUrl: string, sharedSecret: string, options: FE_TelegramBridgeOptions): Promise<FE_TelegramBridge> {
|
2018-09-16 04:26:10 -04:00
|
|
|
return this.authedPost("/api/v1/dimension/admin/telegram/" + bridgeId, {
|
|
|
|
provisionUrl: provisionUrl,
|
|
|
|
sharedSecret: sharedSecret,
|
2018-10-17 23:09:19 -04:00
|
|
|
options: options,
|
2018-09-16 04:26:10 -04:00
|
|
|
}).map(r => r.json()).toPromise();
|
|
|
|
}
|
|
|
|
}
|