mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
25 lines
1.2 KiB
TypeScript
25 lines
1.2 KiB
TypeScript
import { Injectable } from "@angular/core";
|
|
import { AuthedApi } from "../authed-api";
|
|
import { FE_BigBlueButtonCreateAndJoinMeeting, FE_BigBlueButtonJoin } from "../../models/integration"
|
|
import { HttpClient } from "@angular/common/http";
|
|
import { ApiError } from "../../../../../src/api/ApiError";
|
|
|
|
@Injectable()
|
|
export class BigBlueButtonApiService extends AuthedApi {
|
|
constructor(http: HttpClient) {
|
|
super(http);
|
|
}
|
|
|
|
public joinMeetingWithGreenlightUrl(url: string, name: string): Promise<FE_BigBlueButtonJoin|ApiError> {
|
|
return this.authedGet<FE_BigBlueButtonJoin|ApiError>("/api/v1/dimension/bigbluebutton/join", {greenlightUrl: url, fullName: name}).toPromise();
|
|
}
|
|
|
|
public getJoinUrl(displayName: string, userId: string, avatarUrl: string, meetingId: string, meetingPassword: string): Promise<FE_BigBlueButtonCreateAndJoinMeeting|ApiError> {
|
|
return this.authedPost<FE_BigBlueButtonCreateAndJoinMeeting|ApiError>(
|
|
"/api/v1/dimension/bigbluebutton/getJoinUrl",
|
|
{displayName: displayName, userId: userId, avatarUrl: avatarUrl, meetingId: meetingId, meetingPassword: meetingPassword},
|
|
).toPromise();
|
|
}
|
|
|
|
}
|