[mirotalksfu] - improve whoAreYou logic

هذا الالتزام موجود في:
Miroslav Pejic
2024-10-21 02:00:28 +02:00
الأصل 114943715d
التزام 7a6dca51a3
7 ملفات معدلة مع 74 إضافات و11 حذوفات

عرض الملف

@@ -55,7 +55,7 @@ dev dependencies: {
* @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon * @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 * @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com * @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.5.93 * @version 1.5.94
* *
*/ */
@@ -468,6 +468,14 @@ function startServer() {
} }
}); });
// Check if room active (exists)
app.post(['/isRoomActive'], (req, res) => {
const { roomId } = checkXSS(req.body);
const roomActive = roomList.has(roomId);
if (roomActive) log.debug('isRoomActive', { roomId, roomActive });
res.status(200).json({ message: roomActive });
});
// Handle Direct join room with params // Handle Direct join room with params
app.get('/join/', async (req, res) => { app.get('/join/', async (req, res) => {
if (Object.keys(req.query).length > 0) { if (Object.keys(req.query).length > 0) {
@@ -2937,6 +2945,10 @@ function startServer() {
return payload; return payload;
} }
function isRoomActive(roomId) {
return roomList.has(roomId);
}
function getActiveRooms() { function getActiveRooms() {
const roomIds = Array.from(roomList.keys()); const roomIds = Array.from(roomList.keys());
const roomPeersArray = roomIds.map((roomId) => { const roomPeersArray = roomIds.map((roomId) => {

عرض الملف

@@ -1,6 +1,6 @@
{ {
"name": "mirotalksfu", "name": "mirotalksfu",
"version": "1.5.93", "version": "1.5.94",
"description": "WebRTC SFU browser-based video calls", "description": "WebRTC SFU browser-based video calls",
"main": "Server.js", "main": "Server.js",
"scripts": { "scripts": {

عرض الملف

@@ -2114,3 +2114,19 @@ main {
#joinRoomForm { #joinRoomForm {
display: none; display: none;
} }
/*--------------------------------------------------------------
# Who are you
--------------------------------------------------------------*/
#whoAreYouDiv {
display: inline-flex;
}
#roomActiveDiv {
display: none;
}
.disabled {
pointer-events: none;
opacity: 0.5;
}

عرض الملف

@@ -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 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 * @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com * @author Miroslav Pejic - miroslav.pejic.85@gmail.com
* @version 1.5.93 * @version 1.5.94
* *
*/ */
@@ -4500,7 +4500,7 @@ function showAbout() {
imageUrl: image.about, imageUrl: image.about,
customClass: { image: 'img-about' }, customClass: { image: 'img-about' },
position: 'center', position: 'center',
title: 'WebRTC SFU v1.5.93', title: 'WebRTC SFU v1.5.94',
html: ` html: `
<br /> <br />
<div id="about"> <div id="about">

عرض الملف

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

عرض الملف

@@ -2,16 +2,46 @@
console.log(window.location); console.log(window.location);
const autoJoinRoom = false; // automatically join the guest to the meeting
const presenterLoginBtn = document.getElementById('presenterLoginButton'); const presenterLoginBtn = document.getElementById('presenterLoginButton');
const guestJoinRoomBtn = document.getElementById('guestJoinRoomButton'); const guestJoinRoomBtn = document.getElementById('guestJoinRoomButton');
const pathParts = window.location.pathname.split('/'); guestJoinRoomBtn.classList.add('disabled');
const roomPath = filterXSS(pathParts[pathParts.length - 1]);
presenterLoginBtn.onclick = (e) => { const pathParts = window.location.pathname.split('/');
const roomId = filterXSS(pathParts[pathParts.length - 1]);
presenterLoginBtn.onclick = () => {
window.location.href = '/login'; window.location.href = '/login';
}; };
guestJoinRoomBtn.onclick = (e) => { guestJoinRoomBtn.onclick = () => {
window.location.href = '/join/' + roomPath; window.location.href = '/join/' + roomId;
}; };
function checkRoomStatus(roomId) {
if (!roomId) {
console.warn('Room ID empty!');
return;
}
axios
.post('/isRoomActive', { roomId })
.then((response) => {
console.log('isRoomActive', response.data);
const roomActive = response.data.message;
if (roomActive) {
guestJoinRoomBtn.classList.remove('disabled');
presenterLoginBtn.style.display = 'none';
if (autoJoinRoom) guestJoinRoomBtn.click();
} else {
guestJoinRoomBtn.classList.add('disabled');
presenterLoginBtn.style.display = 'inline-flex';
}
})
.catch((error) => {
console.error('Error checking room status', error);
});
}
setInterval(() => checkRoomStatus(roomId), 5000); // Start checking room status every 5 seconds

عرض الملف

@@ -51,6 +51,10 @@
<script src="https://cdn.jsdelivr.net/npm/xss/dist/xss.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/xss/dist/xss.min.js"></script>
<!-- axios -->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="https://unpkg.com/animejs@3.0.1/lib/anime.min.js"></script> <script src="https://unpkg.com/animejs@3.0.1/lib/anime.min.js"></script>
<script src="https://unpkg.com/scrollreveal@4.0.0/dist/scrollreveal.min.js"></script> <script src="https://unpkg.com/scrollreveal@4.0.0/dist/scrollreveal.min.js"></script>
</head> </head>
@@ -74,7 +78,8 @@
<h1 class="hero-title mt-0 mb-16">Who are you?</h1> <h1 class="hero-title mt-0 mb-16">Who are you?</h1>
<p class="hero-paragraph"> <p class="hero-paragraph">
If you're the presenter, please log in now.<br /> If you're the presenter, please log in now.<br />
Otherwise, kindly wait for the presenter to join. Otherwise, kindly wait for the presenter to join.<br />
<!-- You'll be redirected to the room when they arrive. -->
</p> </p>
<div class="hero-cta"> <div class="hero-cta">
<a id="presenterLoginButton" class="button button-primary pulse">LOGIN</a> <a id="presenterLoginButton" class="button button-primary pulse">LOGIN</a>