forked from illuspas/Node-Media-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnode_http_server.js
163 lines (139 loc) · 4.68 KB
/
node_http_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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
//
// Created by Mingliang Chen on 17/8/1.
// illuspas[a]gmail.com
// Copyright (c) 2017 Nodemedia. All rights reserved.
//
const Fs = require('fs');
const Http = require('http');
const Https = require('https');
const WebSocket = require('ws');
const Express = require('express');
const NodeCoreUtils = require('./node_core_utils');
const NodeFlvSession = require('./node_flv_session');
const HTTP_PORT = 80;
const HTTPS_PORT = 443;
class NodeHttpServer {
constructor(config, sessions, publishers, idlePlayers) {
this.config = config;
this.sessions = sessions;
this.publishers = publishers;
this.idlePlayers = idlePlayers;
if (config.http) {
this.port = config.http.port ? config.http.port : HTTP_PORT;
}
this.expressApp = Express();
this.expressApp.all('*.flv', (req, res, next) => {
if (req.method === 'OPTIONS') {
res.setHeader('Access-Control-Allow-Origin', this.config.http.allow_origin || this.config.https.allow_origin);
res.setHeader('Access-Control-Allow-Methods', 'GET, OPTIONS');
res.setHeader('Access-Control-Allow-Headers', 'range');
res.end();
} else {
if (Fs.existsSync(__dirname + '/public' + req.url)) {
res.setHeader('Content-Type', 'video/x-flv');
res.setHeader('Access-Control-Allow-Origin', this.config.http.allow_origin || this.config.https.allow_origin);
next();
} else {
req.nmsConnectionType = 'http';
this.onConnect(req, res);
}
}
});
if (this.config.filesystem) {
this.expressApp.use(Express.static(__dirname + '/public'));
}
if (this.config.http) {
this.httpServer = Http.createServer(this.expressApp);
}
/**
* ~ openssl genrsa -out privatekey.pem 1024
* ~ openssl req -new -key privatekey.pem -out certrequest.csr
* ~ openssl x509 -req -in certrequest.csr -signkey privatekey.pem -out certificate.pem
*/
if (this.config.https) {
let options = {
key: Fs.readFileSync(this.config.https.key),
cert: Fs.readFileSync(this.config.https.cert)
};
this.sport = config.https.port ? config.https.port : HTTPS_PORT;
this.httpsServer = Https.createServer(options, this.expressApp);
}
}
run() {
if (this.httpServer) {
this.httpServer.listen(this.port, () => {
console.log(`Node Media Http Server started on port: ${this.port}`);
});
this.httpServer.on('error', (e) => {
console.error(`Node Media Http Server ${e}`);
});
this.httpServer.on('close', () => {
console.log('Node Media Http Server Close.');
});
}
if (this.httpsServer) {
this.httpsServer.listen(this.sport, () => {
console.log(`Node Media Https Server started on port: ${this.sport}`);
});
this.httpsServer.on('error', (e) => {
console.error(`Node Media Https Server ${e}`);
});
this.httpsServer.on('close', () => {
console.log('Node Media Https Server Close.');
});
}
}
runSocket() {
if (this.httpServer) {
this.wsServer = new WebSocket.Server({ server: this.httpServer });
this.wsServer.on('listening', () => {
console.log(`Node Media WebSocket Server started on port: ${this.port}`);
});
this.wsServer.on('connection', (ws, req) => {
req.nmsConnectionType = 'ws';
this.onConnect(req, ws);
});
this.wsServer.on('error', (e) => {
console.error(`Node Media WebSocket Server ${e}`);
});
}
if (this.httpsServer) {
this.wssServer = new WebSocket.Server({ server: this.httpsServer });
this.wssServer.on('listening', () => {
console.log(`Node Media WebSocketSecure Server started on port: ${this.sport}`);
});
this.wssServer.on('connection', (ws, req) => {
req.nmsConnectionType = 'ws';
this.onConnect(req, ws);
});
this.wssServer.on('error', (e) => {
console.error(`Node Media WebSocket Server ${e}`);
});
}
}
stop() {
if (this.httpServer) {
this.httpServer.close();
}
if (this.httpsServer) {
this.httpsServer.close();
}
this.sessions.forEach((session, id) => {
if (session instanceof NodeFlvSession) {
session.req.destroy();
this.sessions.delete(id);
}
});
}
onConnect(req, res) {
let id = NodeCoreUtils.generateNewSessionID(this.sessions);
let session = new NodeFlvSession(this.config, req, res);
this.sessions.set(id, session);
session.id = id;
session.sessions = this.sessions;
session.publishers = this.publishers;
session.idlePlayers = this.idlePlayers;
session.run();
}
}
module.exports = NodeHttpServer