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