Add basic interface and frontend support for email notifications

Not used yet, but you can add and remove emails
master
Daniel Berteaud 11 years ago
parent 23e4c677e8
commit f6ddfd119c
  1. 4
      public/css/vroom.css
  2. 73
      public/js/vroom.js
  3. 74
      public/vroom.pl
  4. 20
      templates/default/join.html.ep

@ -123,6 +123,10 @@
color: red;
content: "\e083";
}
#emailNotificationList {
padding-right: 12px;
padding-left: 12px;
}
#chatBox {
max-height:300px;
resize:none;

@ -77,6 +77,31 @@ function inviteUrlPopup(){
return false;
}
// Remove the address from the list
function removeNotifiedEmail(email){
var id = email.replace('@', '_AT_').replace('.', '_DOT_');
$.ajax({
data: {
action: 'emailNotification',
type: 'remove',
email: email,
room: roomName
},
error: function() {
$.notify(locale.ERROR_OCCURED, 'error');
},
success: function(data) {
if (data.status == 'success'){
$.notify(data.msg, 'success');
$('#emailNotification_' + id).remove();
}
else{
$.notify(data.msg, 'error');
}
}
});
}
// set the height of the thumbnails so they are always equals
function setPanelHeight() {
$('.panelIndex').height(Math.max.apply(null, $('.panelIndex').map(function() { return $(this).height(); })));
@ -155,6 +180,10 @@ function initVroom(room) {
if (data.role == 'owner'){
$('.unauthEl').hide(500);
$('.ownerEl').show(500);
var notif = JSON.parse(data.notif);
$.each(notif.email, function(index, val){
addNotifiedEmail(val);
});
}
else{
$('.ownerEl').hide(500);
@ -515,6 +544,13 @@ function initVroom(room) {
peers.local.videoPaused = false;
}
// Add a new email address in the list of the ones notified when someone joins
function addNotifiedEmail(email){
var id = email.replace('@', '_AT_').replace('.', '_DOT_');
$('<li></li>').html(email + ' <a href="javascript:void(0);" onclick="removeNotifiedEmail(\'' + email + '\');"><span class="glyphicon glyphicon-remove-circle"></span></a>').attr('id', 'emailNotification_' + id)
.appendTo('#emailNotificationList');
}
// An owner is muting/unmuting ourself
webrtc.on('owner_toggle_mute', function(data){
if (peers[data.id].role != 'owner'){
@ -1108,6 +1144,43 @@ function initVroom(room) {
});
});
// Add an email to be notified when someone joins
// First, enable the add button when you start typing
// TODO: should be enabled only when the input looks like an email address
$('#newEmailNotification').on('input', function() {
if ($('#newEmailNotification').val() == ''){
$('#newEmailNotificationButton').addClass('disabled');
}
else{
$('#newEmailNotificationButton').removeClass('disabled');
}
});
// Then send this new address to the frontend
$('#newEmailNotificationForm').submit(function(event){
event.preventDefault();
$.ajax({
data: {
action: 'emailNotification',
type: 'add',
email: $('#newEmailNotification').val(),
room: roomName
},
error: function() {
$.notify(locale.ERROR_OCCURED, 'error');
},
success: function(data) {
if (data.status == 'success'){
$.notify(data.msg, 'success');
addNotifiedEmail($('#newEmailNotification').val());
$('#newEmailNotification').val('');
}
else{
$.notify(data.msg, 'error');
}
}
});
});
// Choose another color. Useful if two peers have the same
$('#changeColorButton').click(function(){
peers.local.color = chooseColor();

@ -240,12 +240,14 @@ helper delete_rooms => sub {
eval {
my $timeout = time()-$config->{inactivityTimeout};
$self->db->do("DELETE FROM participants WHERE id IN (SELECT id FROM rooms WHERE activity_timestamp < $timeout AND persistent='0');");
$self->db->do("DELETE FROM notifications WHERE id IN (SELECT id FROM rooms WHERE activity_timestamp < $timeout AND persistent='0');");
$self->db->do("DELETE FROM rooms WHERE activity_timestamp < $timeout AND persistent='0';");
} || return undef;
if ($config->{persistentInactivityTimeout} && $config->{persistentInactivityTimeout} > 0){
eval {
my $timeout = time()-$config->{persistentInactivityTimeout};
$self->db->do("DELETE FROM participants WHERE id IN (SELECT id FROM rooms WHERE activity_timestamp < $timeout AND persistent='1');");
$self->db->do("DELETE FROM notifications WHERE id IN (SELECT id FROM rooms WHERE activity_timestamp < $timeout AND persistent='1');");
$self->db->do("DELETE FROM rooms WHERE activity_timestamp < $timeout AND persistent='1';");
} || return undef;
}
@ -346,6 +348,42 @@ helper set_owner_pass => sub {
}
};
# Add an email address to the list of notifications
helper add_notification => sub {
my $self = shift;
my ($room,$email) = @_;
my $data = $self->get_room($room);
return undef unless ($data);
my $sth = eval { $self->db->prepare("INSERT IGNORE INTO notifications (id,email) VALUES (?,?)") } || return undef;
$sth->execute($data->{id},$email) || return undef;
return 1;
};
# Return the list of email addresses
helper get_notification => sub {
my $self = shift;
my ($room) = @_;
$room = $self->get_room($room) || return undef;
my $sth = eval { $self->db->prepare("SELECT email FROM notifications WHERE id=?;") } || return undef;
$sth->execute($room->{id}) || return undef;
my @res;
while(my @row = $sth->fetchrow_array){
push @res, $row[0];
}
return @res;
};
# Remove an email from notification list
helper remove_notification => sub {
my $self = shift;
my ($room,$email) = @_;
my $data = $self->get_room($room);
return undef unless ($data);
my $sth = eval { $self->db->prepare("DELETE FROM notifications where id=? and email=?") } || return undef;
$sth->execute($data->{id},$email) || return undef;
return 1;
};
# Route / to the index page
any '/' => 'index';
@ -731,15 +769,22 @@ post '/action' => sub {
elsif ($action eq 'getRoomInfo'){
my $id = $self->param('id');
my $res = 'error';
my %emailNotif;
if ($self->session($room) && $self->session($room)->{role}){
$res = ($self->set_peer_role($room,$self->session('name'),$id, $self->session($room)->{role})) ? 'success':$res;
}
if ($self->session($room)->{role} eq 'owner'){
my $i = 0;
my @email = $self->get_notification($room);
%emailNotif = map { $i => $email[$i++] } @email;
}
return $self->render(
json => {
role => $self->session($room)->{role},
owner_auth => ($data->{owner_password}) ? 'yes' : 'no',
join_auth => ($data->{join_password}) ? 'yes' : 'no',
locked => ($data->{locked}) ? 'yes' : 'no' ,
locked => ($data->{locked}) ? 'yes' : 'no',
notif => Mojo::JSON->new->encode({email => { %emailNotif }}),
status => $res
},
);
@ -755,6 +800,33 @@ post '/action' => sub {
}
);
}
# Add a new email for notifications when someone joins
elsif ($action eq 'emailNotification'){
my $email = $self->param('email');
my $type = $self->param('type');
my $status = 'error';
my $msg = 'ERROR_OCCURED';
if ($self->session($room)->{role} ne 'owner'){
$msg = 'NOT_ALLOWED';
}
elsif ($email !~ m/^\S+@\S+\.\S+$/){
$msg = 'ERROR_MAIL_INVALID';
}
elsif ($type eq 'add' && $self->add_notification($room,$email)){
$status = 'success';
$msg = 's_WILL_BE_NOTIFIED';
}
elsif ($type eq 'remove' && $self->remove_notification($room,$email)){
$status = 'success';
$msg = 's_WONT_BE_NOTIFIED_ANYMORE';
}
return $self->render(
json => {
msg => $self->l($msg),
status => $status
}
);
}
};
# use the templates defined in the config

@ -149,6 +149,26 @@
</div>
</form>
</li>
<li class="divider">
</li>
<li>
<center>
<p><%=l 'NOTIFICATION_ON_JOIN' %></p>
</center>
<ul class="list-inline" id="emailNotificationList">
</ul>
<form class="navbar-form" id="newEmailNotificationForm">
<div class="input-group">
<input type="email" id="newEmailNotification" class="form-control help" placeholder="<%=l 'EMAIL_PLACEHOLDER' %>" data-toggle="tooltip" data-placement="bottom" title="<%=l 'ADD_NOTIFICATION' %>"/>
<span class="input-group-btn">
<button id="newEmailNotificationButton" type="submit" class="btn btn-default help disabled" data-toggle="tooltip" data-placement="bottom" title="<%=l 'ADD_THIS_ADDRESS' %>">
<span class="glyphicon glyphicon-ok">
</span>
</button>
</span>
</div>
</form>
</li>
</ul>
</div>
<div class="btn-group navbar-form navbar-left">

Loading…
Cancel
Save