[mirotalksfu] - Fix host.protected mode, update dep

هذا الالتزام موجود في:
Miroslav Pejic
2024-04-13 19:42:33 +02:00
الأصل 813862d602
التزام 51895cdba4
4 ملفات معدلة مع 14 إضافات و12 حذوفات

عرض الملف

@@ -41,7 +41,7 @@ dependencies: {
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.4.17
* @version 1.4.18
*
*/
@@ -307,7 +307,8 @@ function startServer() {
// main page
app.get(['/'], (req, res) => {
if (hostCfg.protected) {
log.debug('/ - hostCfg ----->', hostCfg);
if (hostCfg.protected && !hostCfg.authenticated) {
const ip = getIP(req);
if (allowedIP(ip)) {
res.sendFile(views.landing);
@@ -323,6 +324,8 @@ function startServer() {
// set new room name and join
app.get(['/newroom'], (req, res) => {
log.info('/newroom - hostCfg ----->', hostCfg);
if (hostCfg.protected) {
const ip = getIP(req);
if (allowedIP(ip)) {
@@ -337,9 +340,11 @@ function startServer() {
}
});
// no room name specified to join || direct join
// Handle Direct join room with params
app.get('/join/', async (req, res) => {
if (Object.keys(req.query).length > 0) {
log.debug('/join/params - hostCfg ----->', hostCfg);
log.debug('Direct Join', req.query);
// http://localhost:3010/join?room=test&roomPassword=0&name=mirotalksfu&audio=1&video=1&screen=0&hide=0&notify=1
@@ -386,14 +391,11 @@ function startServer() {
return res.sendFile(views.login);
}
}
if (hostCfg.protected) {
return res.sendFile(views.login);
}
res.redirect('/');
});
// join room by id
app.get('/join/:roomId', (req, res) => {
log.debug('/join/room - hostCfg ----->', hostCfg);
if (hostCfg.authenticated) {
res.sendFile(views.room);
} else {

عرض الملف

@@ -1,6 +1,6 @@
{
"name": "mirotalksfu",
"version": "1.4.17",
"version": "1.4.18",
"description": "WebRTC SFU browser-based video calls",
"main": "Server.js",
"scripts": {
@@ -55,8 +55,8 @@
"mediasoup": "3.14.1",
"mediasoup-client": "3.7.6",
"ngrok": "^5.0.0-beta.2",
"openai": "^4.33.0",
"qs": "6.12.0",
"openai": "^4.33.1",
"qs": "6.12.1",
"socket.io": "4.7.5",
"swagger-ui-express": "5.0.0",
"uuid": "9.0.1",

عرض الملف

@@ -11,7 +11,7 @@ if (location.href.substr(0, 5) !== 'https') location.href = 'https' + location.h
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.4.17
* @version 1.4.18
*
*/

عرض الملف

@@ -9,7 +9,7 @@
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon
* @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.4.17
* @version 1.4.18
*
*/