2017-06-10 01:44:31 +02:00
|
|
|
import { TokenOptions } from './TokenOptions';
|
2017-06-19 10:16:14 +02:00
|
|
|
import { OpenViduRole } from './OpenViduRole';
|
2018-01-27 19:39:49 +01:00
|
|
|
import { SessionProperties } from './SessionProperties';
|
2017-06-10 01:44:31 +02:00
|
|
|
|
|
|
|
declare const Buffer;
|
|
|
|
declare const require;
|
|
|
|
|
2018-01-27 19:39:49 +01:00
|
|
|
let https = require('https');
|
2017-06-10 01:44:31 +02:00
|
|
|
|
|
|
|
export class Session {
|
|
|
|
|
2018-03-14 18:48:29 +01:00
|
|
|
private static readonly API_SESSIONS: string = '/api/sessions';
|
|
|
|
private static readonly API_TOKENS: string = '/api/tokens';
|
|
|
|
|
2017-06-10 01:44:31 +02:00
|
|
|
private sessionId: string = "";
|
2018-01-27 19:39:49 +01:00
|
|
|
private 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-01-27 19:39:49 +01:00
|
|
|
if (properties == null) {
|
|
|
|
this.properties = new SessionProperties.Builder().build();
|
|
|
|
} else {
|
|
|
|
this.properties = properties;
|
|
|
|
}
|
2017-06-10 01:44:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public getSessionId(callback: Function) {
|
|
|
|
|
|
|
|
if (this.sessionId) {
|
2017-08-29 17:31:34 +02:00
|
|
|
callback(this.sessionId);
|
2017-09-19 17:07:53 +02:00
|
|
|
return;
|
2017-06-10 01:44:31 +02:00
|
|
|
}
|
|
|
|
|
2018-01-27 19:39:49 +01:00
|
|
|
let requestBody = JSON.stringify({
|
|
|
|
'archiveLayout': this.properties.archiveLayout(),
|
|
|
|
'archiveMode': this.properties.archiveMode(),
|
|
|
|
'mediaMode': this.properties.mediaMode()
|
|
|
|
});
|
|
|
|
|
2017-06-10 01:44:31 +02:00
|
|
|
let options = {
|
|
|
|
hostname: this.hostname,
|
|
|
|
port: this.port,
|
2018-03-14 18:48:29 +01:00
|
|
|
path: Session.API_SESSIONS,
|
2017-06-10 01:44:31 +02:00
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
2018-03-14 18:48:29 +01:00
|
|
|
'Authorization': this.basicAuth,
|
2018-01-27 19:39:49 +01:00
|
|
|
'Content-Type': 'application/json',
|
|
|
|
'Content-Length': Buffer.byteLength(requestBody)
|
2017-06-10 01:44:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
const req = https.request(options, (res) => {
|
2018-01-27 19:39:49 +01:00
|
|
|
let body = '';
|
2017-06-10 01:44:31 +02:00
|
|
|
res.on('data', (d) => {
|
|
|
|
// Continuously update stream with data
|
|
|
|
body += d;
|
|
|
|
});
|
|
|
|
res.on('end', () => {
|
2018-03-14 18:48:29 +01:00
|
|
|
if (res.statusCode === 200) {
|
|
|
|
// SUCCESS response from openvidu-server. Resolve sessionId
|
|
|
|
let parsed = JSON.parse(body);
|
|
|
|
this.sessionId = parsed.id;
|
|
|
|
callback(parsed.id);
|
|
|
|
} else {
|
|
|
|
// ERROR response from openvidu-server. Resolve HTTP status
|
|
|
|
console.error(res.statusCode);
|
|
|
|
}
|
2017-06-10 01:44:31 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
req.on('error', (e) => {
|
|
|
|
console.error(e);
|
|
|
|
});
|
2018-01-27 19:39:49 +01:00
|
|
|
req.write(requestBody);
|
2017-06-10 01:44:31 +02:00
|
|
|
req.end();
|
|
|
|
}
|
|
|
|
|
2017-06-19 10:16:14 +02:00
|
|
|
public generateToken(callback: Function);
|
|
|
|
public generateToken(tokenOptions: TokenOptions, callback: Function);
|
|
|
|
|
|
|
|
public generateToken(tokenOptions: any, callback?: any) {
|
2018-01-27 19:39:49 +01:00
|
|
|
let requestBody;
|
2017-06-19 10:16:14 +02:00
|
|
|
|
|
|
|
if (callback) {
|
|
|
|
requestBody = JSON.stringify({
|
|
|
|
'session': this.sessionId,
|
|
|
|
'role': tokenOptions.getRole(),
|
|
|
|
'data': tokenOptions.getData()
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
requestBody = JSON.stringify({
|
|
|
|
'session': this.sessionId,
|
|
|
|
'role': OpenViduRole.PUBLISHER,
|
|
|
|
'data': ''
|
|
|
|
});
|
|
|
|
callback = tokenOptions;
|
|
|
|
}
|
|
|
|
|
2018-01-27 19:39:49 +01:00
|
|
|
let options = {
|
2017-06-10 01:44:31 +02:00
|
|
|
hostname: this.hostname,
|
|
|
|
port: this.port,
|
2018-03-14 18:48:29 +01:00
|
|
|
path: Session.API_TOKENS,
|
2017-06-10 01:44:31 +02:00
|
|
|
method: 'POST',
|
|
|
|
headers: {
|
2018-03-14 18:48:29 +01:00
|
|
|
'Authorization': this.basicAuth,
|
2017-06-10 01:44:31 +02:00
|
|
|
'Content-Type': 'application/json',
|
|
|
|
'Content-Length': Buffer.byteLength(requestBody)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const req = https.request(options, (res) => {
|
2018-01-27 19:39:49 +01:00
|
|
|
let body = '';
|
2017-06-10 01:44:31 +02:00
|
|
|
res.on('data', (d) => {
|
|
|
|
// Continuously update stream with data
|
|
|
|
body += d;
|
|
|
|
});
|
|
|
|
res.on('end', () => {
|
2018-03-14 18:48:29 +01:00
|
|
|
if (res.statusCode === 200) {
|
|
|
|
// SUCCESS response from openvidu-server. Resolve token
|
|
|
|
let parsed = JSON.parse(body);
|
|
|
|
callback(parsed.id);
|
|
|
|
} else {
|
|
|
|
// ERROR response from openvidu-server. Resolve HTTP status
|
|
|
|
console.error(res.statusCode);
|
|
|
|
}
|
2017-06-10 01:44:31 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
req.on('error', (e) => {
|
|
|
|
console.error(e);
|
|
|
|
});
|
|
|
|
req.write(requestBody);
|
|
|
|
req.end();
|
|
|
|
}
|
|
|
|
|
2018-01-27 19:39:49 +01:00
|
|
|
public getProperties(): SessionProperties {
|
2018-03-14 18:48:29 +01:00
|
|
|
return this.properties;
|
2017-06-10 01:44:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|