forked from illuspas/Node-Media-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node_rtmp_server.js
86 lines (71 loc) · 2.24 KB
/
node_rtmp_server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//
// Created by Mingliang Chen on 17/8/1.
// illuspas[a]gmail.com
// Copyright (c) 2018 Nodemedia. All rights reserved.
//
const Logger = require('./node_core_logger');
const Tls = require('tls');
const Fs = require('fs');
const Net = require('net');
const NodeRtmpSession = require('./node_rtmp_session');
const NodeCoreUtils = require('./node_core_utils');
const context = require('./node_core_ctx');
const RTMP_PORT = 1935;
const RTMPS_PORT = 443;
class NodeRtmpServer {
constructor(config) {
config.rtmp.port = this.port = config.rtmp.port ? config.rtmp.port : RTMP_PORT;
this.tcpServer = Net.createServer((socket) => {
let session = new NodeRtmpSession(config, socket);
session.run();
})
if (config.rtmp.ssl){
config.rtmp.ssl.port = this.sslPort = config.rtmp.ssl.port ? config.rtmp.ssl.port : RTMPS_PORT;
try {
const options = {
key: Fs.readFileSync(config.rtmp.ssl.key),
cert: Fs.readFileSync(config.rtmp.ssl.cert)
}
this.tlsServer = Tls.createServer(options, (socket) => {
let session = new NodeRtmpSession(config, socket);
session.run();
});
} catch (e) {
Logger.error(`Node Media Rtmps Server error while reading ssl certs: <${e}>`);
}
}
}
run() {
this.tcpServer.listen(this.port, () => {
Logger.log(`Node Media Rtmp Server started on port: ${this.port}`);
});
this.tcpServer.on('error', (e) => {
Logger.error(`Node Media Rtmp Server ${e}`);
});
this.tcpServer.on('close', () => {
Logger.log(`Node Media Rtmp Server Close.`);
});
if (this.tlsServer) {
this.tlsServer.listen(this.sslPort, () => {
Logger.log(`Node Media Rtmps Server started on port: ${this.sslPort}`);
});
this.tlsServer.on('error', (e) => {
Logger.error(`Node Media Rtmps Server ${e}`);
});
this.tlsServer.on('close', () => {
Logger.log(`Node Media Rtmps Server Close.`);
});
}
}
stop() {
this.tcpServer.close();
if (this.tlsServer) {
this.tlsServer.close();
}
context.sessions.forEach((session, id) => {
if (session instanceof NodeRtmpSession)
session.stop();
});
}
}
module.exports = NodeRtmpServer