|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var server = null; |
|
if(window.location.protocol === 'http:') |
|
server = "http://" + window.location.hostname + ":8088/janus"; |
|
else |
|
server = "https://" + window.location.hostname + ":8089/janus"; |
|
|
|
var janus = null; |
|
var textroom = null; |
|
var opaqueId = "textroomtest-"+Janus.randomString(12); |
|
|
|
var myroom = 1234; |
|
if(getQueryStringValue("room") !== "") |
|
myroom = parseInt(getQueryStringValue("room")); |
|
var myusername = null; |
|
var myid = null; |
|
var participants = {} |
|
var transactions = {} |
|
|
|
$(document).ready(function() { |
|
|
|
Janus.init({debug: "all", callback: function() { |
|
|
|
$('#start').one('click', function() { |
|
$(this).attr('disabled', true).unbind('click'); |
|
|
|
if(!Janus.isWebrtcSupported()) { |
|
bootbox.alert("No WebRTC support... "); |
|
return; |
|
} |
|
|
|
janus = new Janus( |
|
{ |
|
server: server, |
|
success: function() { |
|
|
|
janus.attach( |
|
{ |
|
plugin: "janus.plugin.textroom", |
|
opaqueId: opaqueId, |
|
success: function(pluginHandle) { |
|
$('#details').remove(); |
|
textroom = pluginHandle; |
|
Janus.log("Plugin attached! (" + textroom.getPlugin() + ", id=" + textroom.getId() + ")"); |
|
|
|
var body = { request: "setup" }; |
|
Janus.debug("Sending message:", body); |
|
textroom.send({ message: body }); |
|
$('#start').removeAttr('disabled').html("Stop") |
|
.click(function() { |
|
$(this).attr('disabled', true); |
|
janus.destroy(); |
|
}); |
|
}, |
|
error: function(error) { |
|
console.error(" -- Error attaching plugin...", error); |
|
bootbox.alert("Error attaching plugin... " + error); |
|
}, |
|
iceState: function(state) { |
|
Janus.log("ICE state changed to " + state); |
|
}, |
|
mediaState: function(medium, on) { |
|
Janus.log("Janus " + (on ? "started" : "stopped") + " receiving our " + medium); |
|
}, |
|
webrtcState: function(on) { |
|
Janus.log("Janus says our WebRTC PeerConnection is " + (on ? "up" : "down") + " now"); |
|
}, |
|
onmessage: function(msg, jsep) { |
|
Janus.debug(" ::: Got a message :::", msg); |
|
if(msg["error"]) { |
|
bootbox.alert(msg["error"]); |
|
} |
|
if(jsep) { |
|
|
|
textroom.createAnswer( |
|
{ |
|
jsep: jsep, |
|
media: { audio: false, video: false, data: true }, |
|
success: function(jsep) { |
|
Janus.debug("Got SDP!", jsep); |
|
var body = { request: "ack" }; |
|
textroom.send({ message: body, jsep: jsep }); |
|
}, |
|
error: function(error) { |
|
Janus.error("WebRTC error:", error); |
|
bootbox.alert("WebRTC error... " + error.message); |
|
} |
|
}); |
|
} |
|
}, |
|
ondataopen: function(data) { |
|
Janus.log("The DataChannel is available!"); |
|
|
|
$('#roomjoin').removeClass('hide').show(); |
|
$('#registernow').removeClass('hide').show(); |
|
$('#register').click(registerUsername); |
|
$('#username').focus(); |
|
}, |
|
ondata: function(data) { |
|
Janus.debug("We got data from the DataChannel!", data); |
|
|
|
var json = JSON.parse(data); |
|
var transaction = json["transaction"]; |
|
if(transactions[transaction]) { |
|
|
|
transactions[transaction](json); |
|
delete transactions[transaction]; |
|
return; |
|
} |
|
var what = json["textroom"]; |
|
if(what === "message") { |
|
|
|
var msg = escapeXmlTags(json["text"]); |
|
var from = json["from"]; |
|
var dateString = getDateString(json["date"]); |
|
var whisper = json["whisper"]; |
|
var sender = participants[from] ? participants[from] : escapeXmlTags(json["display"]); |
|
if(whisper === true) { |
|
|
|
$('#chatroom').append('<p style="color: purple;">[' + dateString + '] <b>[whisper from ' + sender + ']</b> ' + msg); |
|
$('#chatroom').get(0).scrollTop = $('#chatroom').get(0).scrollHeight; |
|
} else { |
|
|
|
$('#chatroom').append('<p>[' + dateString + '] <b>' + sender + ':</b> ' + msg); |
|
$('#chatroom').get(0).scrollTop = $('#chatroom').get(0).scrollHeight; |
|
} |
|
} else if(what === "announcement") { |
|
|
|
var msg = escapeXmlTags(json["text"]); |
|
var dateString = getDateString(json["date"]); |
|
$('#chatroom').append('<p style="color: purple;">[' + dateString + '] <i>' + msg + '</i>'); |
|
$('#chatroom').get(0).scrollTop = $('#chatroom').get(0).scrollHeight; |
|
} else if(what === "join") { |
|
|
|
var username = json["username"]; |
|
var display = json["display"]; |
|
participants[username] = escapeXmlTags(display ? display : username); |
|
if(username !== myid && $('#rp' + username).length === 0) { |
|
|
|
$('#list').append('<li id="rp' + username + '" class="list-group-item">' + participants[username] + '</li>'); |
|
$('#rp' + username).css('cursor', 'pointer').click(function() { |
|
var username = $(this).attr('id').split("rp")[1]; |
|
sendPrivateMsg(username); |
|
}); |
|
} |
|
$('#chatroom').append('<p style="color: green;">[' + getDateString() + '] <i>' + participants[username] + ' joined</i></p>'); |
|
$('#chatroom').get(0).scrollTop = $('#chatroom').get(0).scrollHeight; |
|
} else if(what === "leave") { |
|
|
|
var username = json["username"]; |
|
var when = new Date(); |
|
$('#rp' + username).remove(); |
|
$('#chatroom').append('<p style="color: green;">[' + getDateString() + '] <i>' + participants[username] + ' left</i></p>'); |
|
$('#chatroom').get(0).scrollTop = $('#chatroom').get(0).scrollHeight; |
|
delete participants[username]; |
|
} else if(what === "kicked") { |
|
|
|
var username = json["username"]; |
|
var when = new Date(); |
|
$('#rp' + username).remove(); |
|
$('#chatroom').append('<p style="color: green;">[' + getDateString() + '] <i>' + participants[username] + ' was kicked from the room</i></p>'); |
|
$('#chatroom').get(0).scrollTop = $('#chatroom').get(0).scrollHeight; |
|
delete participants[username]; |
|
if(username === myid) { |
|
bootbox.alert("You have been kicked from the room", function() { |
|
window.location.reload(); |
|
}); |
|
} |
|
} else if(what === "destroyed") { |
|
if(json["room"] !== myroom) |
|
return; |
|
|
|
Janus.warn("The room has been destroyed!"); |
|
bootbox.alert("The room has been destroyed", function() { |
|
window.location.reload(); |
|
}); |
|
} |
|
}, |
|
oncleanup: function() { |
|
Janus.log(" ::: Got a cleanup notification :::"); |
|
$('#datasend').attr('disabled', true); |
|
} |
|
}); |
|
}, |
|
error: function(error) { |
|
Janus.error(error); |
|
bootbox.alert(error, function() { |
|
window.location.reload(); |
|
}); |
|
}, |
|
destroyed: function() { |
|
window.location.reload(); |
|
} |
|
}); |
|
}); |
|
}}); |
|
}); |
|
|
|
function checkEnter(field, event) { |
|
var theCode = event.keyCode ? event.keyCode : event.which ? event.which : event.charCode; |
|
if(theCode == 13) { |
|
if(field.id == 'username') |
|
registerUsername(); |
|
else if(field.id == 'datasend') |
|
sendData(); |
|
return false; |
|
} else { |
|
return true; |
|
} |
|
} |
|
|
|
function registerUsername() { |
|
if($('#username').length === 0) { |
|
|
|
$('#register').click(registerUsername); |
|
$('#username').focus(); |
|
} else { |
|
|
|
$('#username').attr('disabled', true); |
|
$('#register').attr('disabled', true).unbind('click'); |
|
var username = $('#username').val(); |
|
if(username === "") { |
|
$('#you') |
|
.removeClass().addClass('label label-warning') |
|
.html("Insert your display name (e.g., pippo)"); |
|
$('#username').removeAttr('disabled'); |
|
$('#register').removeAttr('disabled').click(registerUsername); |
|
return; |
|
} |
|
myid = randomString(12); |
|
var transaction = randomString(12); |
|
var register = { |
|
textroom: "join", |
|
transaction: transaction, |
|
room: myroom, |
|
username: myid, |
|
display: username |
|
}; |
|
myusername = escapeXmlTags(username); |
|
transactions[transaction] = function(response) { |
|
if(response["textroom"] === "error") { |
|
|
|
if(response["error_code"] === 417) { |
|
|
|
bootbox.alert( |
|
"<p>Apparently room <code>" + myroom + "</code> (the one this demo uses as a test room) " + |
|
"does not exist...</p><p>Do you have an updated <code>janus.plugin.textroom.jcfg</code> " + |
|
"configuration file? If not, make sure you copy the details of room <code>" + myroom + "</code> " + |
|
"from that sample in your current configuration file, then restart Janus and try again." |
|
); |
|
} else { |
|
bootbox.alert(response["error"]); |
|
} |
|
$('#username').removeAttr('disabled').val(""); |
|
$('#register').removeAttr('disabled').click(registerUsername); |
|
return; |
|
} |
|
|
|
$('#roomjoin').hide(); |
|
$('#room').removeClass('hide').show(); |
|
$('#participant').removeClass('hide').html(myusername).show(); |
|
$('#chatroom').css('height', ($(window).height()-420)+"px"); |
|
$('#datasend').removeAttr('disabled'); |
|
|
|
console.log("Participants:", response.participants); |
|
if(response.participants && response.participants.length > 0) { |
|
for(var i in response.participants) { |
|
var p = response.participants[i]; |
|
participants[p.username] = escapeXmlTags(p.display ? p.display : p.username); |
|
if(p.username !== myid && $('#rp' + p.username).length === 0) { |
|
|
|
$('#list').append('<li id="rp' + p.username + '" class="list-group-item">' + participants[p.username] + '</li>'); |
|
$('#rp' + p.username).css('cursor', 'pointer').click(function() { |
|
var username = $(this).attr('id').split("rp")[1]; |
|
sendPrivateMsg(username); |
|
}); |
|
} |
|
$('#chatroom').append('<p style="color: green;">[' + getDateString() + '] <i>' + participants[p.username] + ' joined</i></p>'); |
|
$('#chatroom').get(0).scrollTop = $('#chatroom').get(0).scrollHeight; |
|
} |
|
} |
|
}; |
|
textroom.data({ |
|
text: JSON.stringify(register), |
|
error: function(reason) { |
|
bootbox.alert(reason); |
|
$('#username').removeAttr('disabled').val(""); |
|
$('#register').removeAttr('disabled').click(registerUsername); |
|
} |
|
}); |
|
} |
|
} |
|
|
|
function sendPrivateMsg(username) { |
|
var display = participants[username]; |
|
if(!display) |
|
return; |
|
bootbox.prompt("Private message to " + display, function(result) { |
|
if(result && result !== "") { |
|
var message = { |
|
textroom: "message", |
|
transaction: randomString(12), |
|
room: myroom, |
|
to: username, |
|
text: result |
|
}; |
|
textroom.data({ |
|
text: JSON.stringify(message), |
|
error: function(reason) { bootbox.alert(reason); }, |
|
success: function() { |
|
|
|
|
|
|
|
$('#chatroom').append('<p style="color: purple;">[' + getDateString() + '] <b>[whisper to ' + display + ']</b> ' + escapeXmlTags(result)); |
|
$('#chatroom').get(0).scrollTop = $('#chatroom').get(0).scrollHeight; |
|
} |
|
}); |
|
} |
|
}); |
|
return; |
|
} |
|
|
|
function sendData() { |
|
var data = $('#datasend').val(); |
|
if(data === "") { |
|
bootbox.alert('Insert a message to send on the DataChannel'); |
|
return; |
|
} |
|
var message = { |
|
textroom: "message", |
|
transaction: randomString(12), |
|
room: myroom, |
|
text: data, |
|
}; |
|
|
|
|
|
|
|
|
|
|
|
textroom.data({ |
|
text: JSON.stringify(message), |
|
error: function(reason) { bootbox.alert(reason); }, |
|
success: function() { $('#datasend').val(''); } |
|
}); |
|
} |
|
|
|
|
|
function getDateString(jsonDate) { |
|
var when = new Date(); |
|
if(jsonDate) { |
|
when = new Date(Date.parse(jsonDate)); |
|
} |
|
var dateString = |
|
("0" + when.getUTCHours()).slice(-2) + ":" + |
|
("0" + when.getUTCMinutes()).slice(-2) + ":" + |
|
("0" + when.getUTCSeconds()).slice(-2); |
|
return dateString; |
|
} |
|
|
|
|
|
function randomString(len, charSet) { |
|
charSet = charSet || 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; |
|
var randomString = ''; |
|
for (var i = 0; i < len; i++) { |
|
var randomPoz = Math.floor(Math.random() * charSet.length); |
|
randomString += charSet.substring(randomPoz,randomPoz+1); |
|
} |
|
return randomString; |
|
} |
|
|
|
|
|
function getQueryStringValue(name) { |
|
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]"); |
|
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"), |
|
results = regex.exec(location.search); |
|
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " ")); |
|
} |
|
|
|
|
|
function escapeXmlTags(value) { |
|
if(value) { |
|
var escapedValue = value.replace(new RegExp('<', 'g'), '<'); |
|
escapedValue = escapedValue.replace(new RegExp('>', 'g'), '>'); |
|
return escapedValue; |
|
} |
|
} |
|
|