2018-04-18 14:29:07 +02:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2017-2018 OpenVidu (http://openvidu.io/)
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-04-23 11:06:16 +02:00
|
|
|
import { MediaMode } from './MediaMode';
|
2017-06-19 10:16:14 +02:00
|
|
|
import { OpenViduRole } from './OpenViduRole';
|
2018-04-23 11:06:16 +02:00
|
|
|
import { RecordingLayout } from './RecordingLayout';
|
|
|
|
import { RecordingMode } from './RecordingMode';
|
2018-01-27 19:39:49 +01:00
|
|
|
import { SessionProperties } from './SessionProperties';
|
2018-04-23 11:06:16 +02:00
|
|
|
import { TokenOptions } from './TokenOptions';
|
2017-06-10 01:44:31 +02:00
|
|
|
|
|
|
|
declare const Buffer;
|
|
|
|
declare const require;
|
|
|
|
|
2018-04-23 11:06:16 +02:00
|
|
|
const https = require('https');
|
2017-06-10 01:44:31 +02:00
|
|
|
|
|
|
|
export class Session {
|
|
|
|
|
2018-04-23 11:06:16 +02:00
|
|
|
private static readonly API_SESSIONS = '/api/sessions';
|
|
|
|
private static readonly API_TOKENS = '/api/tokens';
|
2018-03-14 18:48:29 +01:00
|
|
|
|
2018-04-24 15:42:23 +02:00
|
|
|
sessionId: string;
|
|
|
|
properties: SessionProperties;
|
2017-06-10 01:44:31 +02:00
|
|
|
|
2018-03-14 18:48:29 +01:00
|
|
|
constructor(private hostname: string, private port: number, private basicAuth: string, properties?: SessionProperties) {
|
2018-04-24 15:42:23 +02:00
|
|
|
if (!properties) {
|
2018-04-23 11:06:16 +02:00
|
|
|
this.properties = {};
|
2018-01-27 19:39:49 +01:00
|
|
|
} else {
|
|
|
|
this.properties = properties;
|
|
|
|
}
|
2017-06-10 01:44:31 +02:00
|
|
|
}
|
|
|
|
|
2018-04-24 15:42:23 +02:00
|
|
|
/**
|
|
|
|
* Gets the unique identifier of the Session. This translates into a new request to OpenVidu Server if this Session has no `sessionId` yet
|
|
|
|
* or simply returns the existing value if it has already been retrieved
|
|
|
|
*
|
|
|
|
* @returns A Promise that is resolved to the _sessionId_ if success and rejected with an Error object if not (due to a `400 (Bad Request)` error in OpenVidu Server)
|
|
|
|
*/
|
2018-04-18 10:56:28 +02:00
|
|
|
public getSessionId(): Promise<string> {
|
|
|
|
return new Promise<string>((resolve, reject) => {
|
2017-06-10 01:44:31 +02:00
|
|
|
|
2018-04-24 15:42:23 +02:00
|
|
|
if (!!this.sessionId) {
|
2018-04-18 10:56:28 +02:00
|
|
|
resolve(this.sessionId);
|
2017-06-10 01:44:31 +02:00
|
|
|
}
|
2018-04-18 10:56:28 +02:00
|
|
|
|
2018-04-23 11:06:16 +02:00
|
|
|
const requestBody = JSON.stringify({
|
|
|
|
mediaMode: !!this.properties.mediaMode ? this.properties.mediaMode : MediaMode.ROUTED,
|
|
|
|
recordingMode: !!this.properties.recordingMode ? this.properties.recordingMode : RecordingMode.MANUAL,
|
|
|
|
defaultRecordingLayout: !!this.properties.defaultRecordingLayout ? this.properties.defaultRecordingLayout : RecordingLayout.BEST_FIT,
|
|
|
|
defaultCustomLayout: !!this.properties.defaultCustomLayout ? this.properties.defaultCustomLayout : ''
|
2017-06-10 01:44:31 +02:00
|
|
|
});
|
2018-04-18 10:56:28 +02:00
|
|
|
|
2018-04-23 11:06:16 +02:00
|
|
|
const options = {
|
2018-04-18 10:56:28 +02:00
|
|
|
hostname: this.hostname,
|
|
|
|
port: this.port,
|
|
|
|
path: Session.API_SESSIONS,
|
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'Authorization': this.basicAuth,
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
'Content-Length': Buffer.byteLength(requestBody)
|
2018-03-14 18:48:29 +01:00
|
|
|
}
|
2018-04-23 11:06:16 +02:00
|
|
|
};
|
|
|
|
|
2018-04-18 10:56:28 +02:00
|
|
|
const req = https.request(options, (res) => {
|
|
|
|
let body = '';
|
|
|
|
res.on('data', (d) => {
|
|
|
|
// Continuously update stream with data
|
|
|
|
body += d;
|
|
|
|
});
|
|
|
|
res.on('end', () => {
|
|
|
|
if (res.statusCode === 200) {
|
|
|
|
// SUCCESS response from openvidu-server. Resolve sessionId
|
2018-04-23 11:06:16 +02:00
|
|
|
const parsed = JSON.parse(body);
|
2018-04-18 10:56:28 +02:00
|
|
|
this.sessionId = parsed.id;
|
|
|
|
resolve(parsed.id);
|
|
|
|
} else {
|
|
|
|
// ERROR response from openvidu-server. Resolve HTTP status
|
|
|
|
reject(new Error(res.statusCode));
|
|
|
|
}
|
|
|
|
});
|
2017-06-10 01:44:31 +02:00
|
|
|
});
|
|
|
|
|
2018-04-18 10:56:28 +02:00
|
|
|
req.on('error', (e) => {
|
|
|
|
reject(e);
|
|
|
|
});
|
|
|
|
req.write(requestBody);
|
|
|
|
req.end();
|
2017-06-10 01:44:31 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-24 15:42:23 +02:00
|
|
|
/**
|
|
|
|
* Gets a new token associated to Session object. This translates into a new request to OpenVidu Server
|
|
|
|
*
|
|
|
|
* @returns A Promise that is resolved to the _token_ if success and rejected with an Error object if not (due to a `400 (Bad Request)` error in OpenVidu Server)
|
|
|
|
*/
|
2018-04-18 10:56:28 +02:00
|
|
|
public generateToken(tokenOptions?: TokenOptions): Promise<string> {
|
|
|
|
return new Promise<string>((resolve, reject) => {
|
|
|
|
|
2018-04-23 11:06:16 +02:00
|
|
|
const requestBody = JSON.stringify({
|
|
|
|
session: this.sessionId,
|
|
|
|
role: !!tokenOptions.role ? tokenOptions.role : OpenViduRole.PUBLISHER,
|
|
|
|
data: !!tokenOptions.data ? tokenOptions.data : ''
|
|
|
|
});
|
2018-04-18 10:56:28 +02:00
|
|
|
|
2018-04-23 11:06:16 +02:00
|
|
|
const options = {
|
2018-04-18 10:56:28 +02:00
|
|
|
hostname: this.hostname,
|
|
|
|
port: this.port,
|
|
|
|
path: Session.API_TOKENS,
|
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
|
|
|
'Authorization': this.basicAuth,
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
'Content-Length': Buffer.byteLength(requestBody)
|
2018-03-14 18:48:29 +01:00
|
|
|
}
|
2018-04-18 10:56:28 +02:00
|
|
|
};
|
2018-04-23 11:06:16 +02:00
|
|
|
|
2018-04-18 10:56:28 +02:00
|
|
|
const req = https.request(options, (res) => {
|
|
|
|
let body = '';
|
|
|
|
res.on('data', (d) => {
|
|
|
|
// Continuously update stream with data
|
|
|
|
body += d;
|
|
|
|
});
|
|
|
|
res.on('end', () => {
|
|
|
|
if (res.statusCode === 200) {
|
|
|
|
// SUCCESS response from openvidu-server. Resolve token
|
2018-04-23 11:06:16 +02:00
|
|
|
const parsed = JSON.parse(body);
|
2018-04-18 10:56:28 +02:00
|
|
|
resolve(parsed.id);
|
|
|
|
} else {
|
|
|
|
// ERROR response from openvidu-server. Resolve HTTP status
|
|
|
|
reject(new Error(res.statusCode));
|
|
|
|
}
|
|
|
|
});
|
2017-06-10 01:44:31 +02:00
|
|
|
});
|
|
|
|
|
2018-04-18 10:56:28 +02:00
|
|
|
req.on('error', (e) => {
|
|
|
|
reject(e);
|
|
|
|
});
|
|
|
|
req.write(requestBody);
|
|
|
|
req.end();
|
2017-06-10 01:44:31 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|