1
0
mirror of https://github.com/dani/vroom.git synced 2024-06-01 21:11:41 +02:00
vroom/vroom.pl

1578 lines
50 KiB
Perl
Raw Normal View History

2014-04-03 17:42:54 +02:00
#!/usr/bin/env perl
# This file is part of the VROOM project
# released under the MIT licence
# Copyright 2014 Firewall Services
2014-06-12 18:56:54 +02:00
# Daniel Berteaud <daniel@firewall-services.com>
2014-04-03 17:42:54 +02:00
use lib 'lib';
2014-04-03 17:42:54 +02:00
use Mojolicious::Lite;
use Mojolicious::Plugin::Mail;
use Mojolicious::Plugin::Database;
use Vroom::Constants;
use Crypt::SaltedHash;
2014-04-03 17:42:54 +02:00
use MIME::Base64;
use File::stat;
use File::Basename;
use Etherpad::API;
use Session::Token;
use Config::Simple;
2014-04-03 17:42:54 +02:00
app->log->level('info');
# Read conf file, and set default values
my $cfg = new Config::Simple();
$cfg->read('conf/settings.ini');
our $config = $cfg->vars();
$config->{'database.dsn'} ||= 'DBI:mysql:database=vroom;host=localhost';
$config->{'database.user'} ||= 'vroom';
$config->{'database.password'} ||= 'vroom';
$config->{'signaling.uri'} ||= 'https://vroom.example.com/';
$config->{'turn.stun_server'} ||= 'stun.l.google.com:19302';
$config->{'turn.turn_server'} ||= '';
$config->{'turn.realm'} ||= 'vroom';
$config->{'email.from '} ||= 'vroom@example.com';
$config->{'email.contact'} ||= 'admin@example.com';
$config->{'email.sendmail'} ||= '/sbin/sendmail';
$config->{'interface.powered_by'} ||= '<a href="http://www.firewall-services.com" target="_blank">Firewall Services</a>';
$config->{'interface.template'} ||= 'default';
$config->{'interface.chrome_extension_id'} ||= 'ecicdpoejfllflombfanbhfpgcimjddn';
$config->{'cookie.secret'} ||= 'secret';
$config->{'cookie.name'} ||= 'vroom';
$config->{'rooms.inactivity_timeout'} ||= 3600;
$config->{'rooms.reserved_inactivity_timeout'} ||= 5184000;
$config->{'rooms.common_names'} ||= '';
$config->{'log.level'} ||= 'info';
$config->{'etherpad.uri'} ||= '';
$config->{'etherpad.api_key'} ||= '';
$config->{'etherpad.base_domain'} ||= '';
$config->{'daemon.listen_ip'} ||= '127.0.0.1';
$config->{'daemon.listen_port'} ||= '8090';
2014-10-13 20:17:40 +02:00
$config->{'daemon.backend'} ||= 'hypnotoad';
# Set log level
app->log->level($config->{'log.level'});
2014-04-04 11:42:59 +02:00
# Create etherpad api client if required
our $ec = undef;
if ($config->{'etherpad.uri'} =~ m/https?:\/\/.*/ && $config->{'etherpad.api_key'} ne ''){
$ec = Etherpad::API->new({
url => $config->{'etherpad.uri'},
apikey => $config->{'etherpad.api_key'}
});
}
# Load I18N, and declare supported languages
2014-04-03 17:42:54 +02:00
plugin I18N => {
namespace => 'Vroom::I18N',
};
# Connect to the database
plugin database => {
dsn => $config->{'database.dsn'},
username => $config->{'database.user'},
password => $config->{'database.password'},
options => { mysql_enable_utf8 => 1 }
};
# Load mail plugin with its default values
plugin mail => {
from => $config->{'email.from'},
type => 'text/html',
2014-04-03 17:42:54 +02:00
};
# Create a cookie based session
2014-04-03 17:42:54 +02:00
helper login => sub {
my $self = shift;
return if $self->session('name');
my $login = $ENV{'REMOTE_USER'} || lc $self->get_random(256);
2014-07-20 12:10:31 +02:00
$self->session(
name => $login,
ip => $self->tx->remote_address
);
2014-04-03 17:42:54 +02:00
$self->app->log->info($self->session('name') . " logged in from " . $self->tx->remote_address);
};
# Expire the cookie
2014-04-03 17:42:54 +02:00
helper logout => sub {
my $self = shift;
my ($room) = @_;
# Logout from etherpad
2014-06-17 23:08:46 +02:00
if ($ec && $self->session($room) && $self->session($room)->{etherpadSessionId}){
$ec->delete_session($self->session($room)->{etherpadSessionId});
}
2014-05-12 18:53:16 +02:00
$self->session( expires => 1 );
2014-04-03 17:42:54 +02:00
$self->app->log->info($self->session('name') . " logged out");
};
# Create a new room in the DB
# Requires two args: the name of the room and the session name of the creator
2014-04-03 17:42:54 +02:00
helper create_room => sub {
my $self = shift;
my ($name,$owner) = @_;
2014-07-05 14:43:15 +02:00
$name = lc $name unless ($name eq lc $name);
# Exit if the name isn't valid or already taken
2014-10-12 22:45:06 +02:00
return undef if ($self->get_room_by_name($name) || !$self->valid_room_name($name));
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-12 23:16:39 +02:00
$self->db->prepare('INSERT INTO `rooms`
(`name`,`create_date`,`last_activity`,`owner`,`token`,`realm`)
2014-10-13 20:17:40 +02:00
VALUES (?,CONVERT_TZ(NOW(), @@session.time_zone, \'+00:00\'),CONVERT_TZ(NOW(), @@session.time_zone, \'+00:00\'),?,?,?)');
2014-07-20 12:10:31 +02:00
} || return undef;
# Gen a random token. Will be used as a turnPassword
my $tp = $self->get_random(256);
2014-10-12 23:16:39 +02:00
$sth->execute($name,$owner,$tp,$config->{'turn.realm'}) || return undef;
$self->app->log->info("Room $name created by " . $self->session('name'));
2014-10-14 18:43:09 +02:00
# Etherpad integration ? If so, create the corresponding pad
if ($ec){
$self->create_pad($name);
}
2014-04-03 17:42:54 +02:00
return 1;
};
2014-10-12 23:16:39 +02:00
# Read room param in the DB and return a perl hashref
helper get_room_by_name => sub {
2014-04-03 17:42:54 +02:00
my $self = shift;
my ($name) = @_;
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-12 23:16:39 +02:00
$self->db->prepare('SELECT *
FROM `rooms`
2014-10-13 20:17:40 +02:00
WHERE `name`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
2014-04-03 17:42:54 +02:00
$sth->execute($name) || return undef;
return $sth->fetchall_hashref('name')->{$name};
};
# Get room param by ID instead of name
helper get_room_by_id => sub {
my $self = shift;
my ($id) = @_;
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('SELECT *
2014-10-12 23:16:39 +02:00
FROM `rooms`
2014-10-13 20:17:40 +02:00
WHERE `id`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
$sth->execute($id) || return undef;
return $sth->fetchall_hashref('id')->{$id};
};
2014-10-14 19:26:10 +02:00
# Update a room, take a room object as a hashref
helper modify_room => sub {
my $self = shift;
my ($room) = @_;
# TODO: input validation
my $sth = eval {
$self->db->prepare('UPDATE `rooms`
SET `owner`=?,
`last_activity`=CONVERT_TZ(NOW(), @@session.time_zone, \'+00:00\'),
`locked`=?,
`ask_for_name`=?,
`join_password`=?,
`owner_password`=?,
`persistent`=?');
} || return undef;
$sth->execute(
$room->{owner},
$room->{locked},
$room->{ask_for_name},
$room->{join_password},
$room->{owner_password},
$room->{persistent}
) || return undef;
$self->app->log->info("Room " . $room->{name} ." modified by " . $self->session('name'));
return 1;
};
# Lock/unlock a room, to prevent new participants
# Takes two arg: room name and 1 for lock, 0 for unlock
2014-04-03 17:42:54 +02:00
helper lock_room => sub {
my $self = shift;
my ($name,$lock) = @_;
2014-10-12 22:45:06 +02:00
return undef unless ( %{ $self->get_room_by_name($name) });
2014-04-03 17:42:54 +02:00
return undef unless ($lock =~ m/^0|1$/);
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-12 23:16:39 +02:00
$self->db->prepare('UPDATE `rooms`
SET `locked`=?
2014-10-13 20:17:40 +02:00
WHERE `name`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
2014-04-03 17:42:54 +02:00
$sth->execute($lock,$name) || return undef;
my $action = ($lock eq '1') ? 'locked':'unlocked';
$self->app->log->info("room $name $action by " . $self->session('name'));
return 1;
};
# Add a participant in the database. Used by the signaling server to check
# if user is allowed
2014-04-03 17:42:54 +02:00
helper add_participant => sub {
my $self = shift;
my ($name,$participant) = @_;
2014-10-12 22:45:06 +02:00
my $room = $self->get_room_by_name($name) || return undef;
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-14 18:43:09 +02:00
$self->db->prepare('INSERT IGNORE INTO `room_participants`
2014-10-13 20:17:40 +02:00
(`room_id`,`participant`,`last_activity`)
2014-10-13 20:22:35 +02:00
VALUES (?,?,CONVERT_TZ(NOW(), @@session.time_zone, \'+00:00\'))');
2014-07-20 12:10:31 +02:00
} || return undef;
2014-10-13 20:22:35 +02:00
$sth->execute($room->{id},$participant) || return undef;
2014-04-03 17:42:54 +02:00
$self->app->log->info($self->session('name') . " joined the room $name");
return 1;
};
# Remove participant from the DB
2014-10-14 18:25:14 +02:00
# Takes two args: room name and user name
2014-04-03 17:42:54 +02:00
helper remove_participant => sub {
my $self = shift;
my ($name,$participant) = @_;
2014-10-12 22:45:06 +02:00
my $room = $self->get_room_by_name($name) || return undef;
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-14 18:43:09 +02:00
$self->db->prepare('DELETE FROM `room_participants`
2014-10-12 23:16:39 +02:00
WHERE `id`=?
2014-10-13 20:17:40 +02:00
AND `participant`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
2014-04-03 17:42:54 +02:00
$sth->execute($room->{id},$participant) || return undef;
$self->app->log->info($self->session('name') . " leaved the room $name");
return 1;
};
# Get a list of participants of a room
2014-04-03 17:42:54 +02:00
helper get_participants => sub {
my $self = shift;
my ($name) = @_;
2014-10-12 22:45:06 +02:00
my $room = $self->get_room_by_name($name) || return undef;
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-12 23:16:39 +02:00
$self->db->prepare('SELECT `participant`
2014-10-14 18:43:09 +02:00
FROM `room_participants`
2014-10-13 20:17:40 +02:00
WHERE `id`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
2014-04-03 17:42:54 +02:00
$sth->execute($room->{id}) || return undef;
my @res;
while(my @row = $sth->fetchrow_array){
push @res, $row[0];
}
return @res;
};
# Set the role of a peer
helper set_peer_role => sub {
my $self = shift;
my ($room,$name,$id,$role) = @_;
2014-10-12 23:16:39 +02:00
my $data = $self->get_room_by_name($room);
if (!$data){
return undef;
}
# Check if this ID isn't the one from another peer first
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-12 23:16:39 +02:00
$self->db->prepare('SELECT COUNT(`id`)
2014-10-14 18:43:09 +02:00
FROM `room_participants`
2014-10-12 23:16:39 +02:00
WHERE `peer_id`=?
AND `participant`!=?
2014-10-13 20:17:40 +02:00
AND `room_id`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
2014-10-12 23:16:39 +02:00
$sth->execute($id,$name,$data->{id}) || return undef;
return undef if ($sth->rows > 0);
2014-07-20 12:10:31 +02:00
$sth = eval {
2014-10-14 18:43:09 +02:00
$self->db->prepare('UPDATE `room_participants`
2014-10-13 20:17:40 +02:00
SET `peer_id`=?,
`role`=?
2014-10-12 23:16:39 +02:00
WHERE `participant`=?
2014-10-13 20:17:40 +02:00
AND `room_id`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
2014-10-12 23:16:39 +02:00
$sth->execute($id,$role,$name,$data->{id}) || return undef;
$self->app->log->info("User $name (peer id $id) has now the $role role in room $room");
return 1;
};
# Return the role of a peer, from it's signaling ID
helper get_peer_role => sub {
my $self = shift;
my ($room,$id) = @_;
2014-10-12 23:16:39 +02:00
my $data = $self->get_room_by_name($room);
if (!$data){
return undef;
}
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-12 23:16:39 +02:00
$self->db->prepare('SELECT `role`
2014-10-14 18:43:09 +02:00
FROM `room_participants`
2014-10-12 23:16:39 +02:00
WHERE `peer_id`=?
AND `room_id`=?
2014-10-13 20:17:40 +02:00
LIMIT 1');
2014-07-20 12:10:31 +02:00
} || return undef;
2014-10-12 23:16:39 +02:00
# TODO: replace with bind_columns
$sth->execute($id,$data->{id}) || return undef;
if ($sth->rows == 1){
my ($role) = $sth->fetchrow_array();
return $role;
}
else{
return 'participant';
}
};
# Promote a peer to owner
helper promote_peer => sub {
my $self = shift;
my ($room,$id) = @_;
2014-10-12 23:16:39 +02:00
my $data = $self->get_room_by_name($room);
if (!$data){
return undef;
}
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-14 18:43:09 +02:00
$self->db->prepare('UPDATE `room_participants`
2014-10-12 23:16:39 +02:00
SET `role`=\'owner\'
2014-10-13 20:17:40 +02:00
WHERE `peer_id`=?
AND `room_id`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
2014-10-12 23:16:39 +02:00
$sth->execute($id,$data->{id}) || return undef;
return 1;
};
# Check if a participant has joined a room
# Takes two args: the session name, and the room name
2014-04-03 17:42:54 +02:00
helper has_joined => sub {
my $self = shift;
my ($session,$name) = @_;
my $ret = 0;
2014-10-12 23:16:39 +02:00
# TODO: replace with a JOIN, and a SELECT COUNT
# + check result with bind_columns + fetch
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-12 23:16:39 +02:00
$self->db->prepare('SELECT `id`
FROM `rooms`
WHERE `name`=?
AND `id` IN (SELECT `room_id`
2014-10-14 18:43:09 +02:00
FROM `room_participants`
2014-10-13 20:17:40 +02:00
WHERE `participant`=?)');
2014-07-20 12:10:31 +02:00
} || return undef;
2014-04-03 17:42:54 +02:00
$sth->execute($name,$session) || return undef;
$ret = 1 if ($sth->rows > 0);
return $ret;
};
# Purge disconnected participants from the DB
helper delete_participants => sub {
my $self = shift;
$self->app->log->debug('Removing inactive participants from the database');
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-14 18:43:09 +02:00
$self->db->prepare('DELETE FROM `room_participants`
2014-10-13 20:17:40 +02:00
WHERE `last_activity` < DATE_SUB(CONVERT_TZ(NOW(), @@session.time_zone, \'+00:00\'), INTERVAL 10 MINUTE)
2014-10-12 23:16:39 +02:00
OR `last_activity` IS NULL');
2014-07-20 12:10:31 +02:00
} || return undef;
2014-10-12 23:16:39 +02:00
$sth->execute || return undef;
return 1;
};
# Purge unused rooms
2014-04-03 17:42:54 +02:00
helper delete_rooms => sub {
my $self = shift;
$self->app->log->debug('Removing unused rooms');
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('SELECT `name`
FROM `rooms`
WHERE `last_activity` < DATE_SUB(CONVERT_TZ(NOW(), @@session.time_zone, \'+00:00\'), INTERVAL ' . $config->{'rooms.inactivity_timeout'} . ' MINUTE)
AND `persistent`=\'0\' AND `owner_password` IS NULL');
2014-07-20 12:10:31 +02:00
} || return undef;
2014-10-13 20:17:40 +02:00
$sth->execute;
my @toDeleteName = ();
while (my $room = $sth->fetchrow_array){
push @toDeleteName, $room;
}
2014-06-13 11:24:38 +02:00
my @toDeleteId = ();
if ($config->{'rooms.reserved_inactivity_timeout'} > 0){
2014-07-20 12:10:31 +02:00
$sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('SELECT `name`
FROM `rooms`
WHERE `last_activity` < DATE_SUB(CONVERT_TZ(NOW(), @@session.time_zone, \'+00:00\'), INTERVAL ' . $config->{'rooms.reserved_inactivity_timeout'} . ' MINUTE)
AND `persistent`=\'0\' AND `owner_password` IS NOT NULL')
2014-07-20 12:10:31 +02:00
} || return undef;
2014-10-13 20:17:40 +02:00
$sth->execute;
2014-07-19 12:58:46 +02:00
while (my $room = $sth->fetchrow_array){
push @toDeleteName, $room;
}
}
2014-06-13 11:24:38 +02:00
foreach my $room (@toDeleteName){
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
$self->app->log->debug("Room " . $data->{name} . " will be deleted");
# Remove Etherpad group
if ($ec){
2014-06-13 17:30:04 +02:00
$ec->delete_pad($data->{etherpad_group} . '$' . $room);
$ec->delete_group($data->{etherpad_group});
}
2014-06-13 11:24:38 +02:00
push @toDeleteId, $data->{id};
}
# Now remove rooms
2014-06-13 11:24:38 +02:00
if (scalar @toDeleteId > 0){
2014-10-13 20:17:40 +02:00
$sth = eval {
$self->db->prepare("DELETE FROM `rooms`
WHERE `id` IN (" . join( ",", map { "?" } @toDeleteId ) . ")");
} || return undef;
$sth->execute(@toDeleteId) || return undef;
}
else{
$self->app->log->debug('No rooms deleted, as none has expired');
}
2014-04-03 17:42:54 +02:00
return 1;
};
# delete just a specific room
helper delete_room => sub {
my $self = shift;
my ($room) = @_;
$self->app->log->debug("Removing room $room");
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
if (!$data){
$self->app->log->debug("Error: room $room doesn't exist");
return undef;
}
if ($ec && $data->{etherpad_group}){
$ec->delete_pad($data->{etherpad_group} . '$' . $room);
$ec->delete_group($data->{etherpad_group});
}
2014-10-13 20:17:40 +02:00
my $sth = eval {
$self->db->prepare('DELETE FROM `rooms`
WHERE `id`=?');
} || return undef;
$sth->execute($data->{id}) || return undef;
return 1;
};
# Retrieve the list of rooms
helper get_all_rooms => sub {
my $self = shift;
my @rooms;
my $sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('SELECT `name`
FROM `rooms`');
} || return undef;
$sth->execute() || return undef;
while (my $name = $sth->fetchrow_array){
push @rooms, $name;
}
return @rooms;
};
# Just update the activity timestamp
# so we can detect unused rooms
2014-04-03 17:42:54 +02:00
helper ping_room => sub {
my $self = shift;
my ($name) = @_;
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($name);
return undef unless ($data);
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('UPDATE `rooms`
SET `last_activity`=?
WHERE `id`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
$sth->execute(time(),$data->{id}) || return undef;
2014-07-20 12:10:31 +02:00
$sth = eval {
2014-10-14 18:43:09 +02:00
$self->db->prepare('UPDATE `room_participants`
2014-10-13 20:17:40 +02:00
SET `last_activity`=?
WHERE `id`=?
AND `participant`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
$sth->execute(time(),$data->{id},$self->session('name')) || return undef;
2014-04-03 17:42:54 +02:00
$self->app->log->debug($self->session('name') . " pinged the room $name");
return 1;
};
# Check if this name is a valid room name
helper valid_room_name => sub {
my $self = shift;
my ($name) = @_;
my $ret = undef;
2014-05-09 13:37:36 +02:00
# A few names are reserved
2014-06-09 12:59:10 +02:00
my @reserved = qw(about help feedback feedback_thanks goodbye admin create localize action
missing dies password kicked invitation js css img fonts snd);
if ($name =~ m/^[\w\-]{1,49}$/ && !grep { $name eq $_ } @reserved){
2014-04-03 17:42:54 +02:00
$ret = 1;
}
return $ret;
};
# Generate a random token
helper get_random => sub {
my $self = shift;
my ($entropy) = @_;
return Session::Token->new(entropy => $entropy)->get;
};
# Generate a random name
helper get_random_name => sub {
my $self = shift;
my $name = lc $self->get_random(64);
# Get another one if already taken
2014-10-12 22:45:06 +02:00
while ($self->get_room_by_name($name)){
$name = $self->get_random_name();
}
return $name;
};
# Return the mtime of a file
# Used to append the timestamp to JS and CSS files
# So client can get new version immediatly
helper get_mtime => sub {
my $self = shift;
my ($file) = @_;
return stat($file)->mtime;
};
# Wrapper arround url_for which adds a trailing / if needed
helper get_url => sub {
my $self = shift;
my $url = $self->url_for(shift);
$url .= ($url =~ m/\/$/) ? '' : '/';
return $url;
};
# Password protect a room
# Takes two args: room name and password
# If password is undef: remove the password
# Password is hashed and salted before being stored
helper set_join_pass => sub {
my $self = shift;
my ($room,$pass) = @_;
2014-10-12 22:45:06 +02:00
return undef unless ( %{ $self->get_room_by_name($room) });
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('UPDATE `rooms`
SET `join_password`=?
WHERE `name`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
$pass = ($pass) ? Crypt::SaltedHash->new(algorithm => 'SHA-256')->add($pass)->generate : undef;
$sth->execute($pass,$room) || return undef;
if ($pass){
$self->app->log->debug($self->session('name') . " has set a password on room $room");
}
else{
$self->app->log->debug($self->session('name') . " has removed password on room $room");
}
return 1;
};
# Set owner password. Not needed to join a room
# but needed to prove you're the owner, and access the configuration menu
helper set_owner_pass => sub {
my $self = shift;
my ($room,$pass) = @_;
2014-10-12 22:45:06 +02:00
return undef unless ( %{ $self->get_room_by_name($room) });
if ($pass){
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('UPDATE `rooms`
SET `owner_password`=?
WHERE `name`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
my $pass = Crypt::SaltedHash->new(algorithm => 'SHA-256')->add($pass)->generate;
$sth->execute($pass,$room) || return undef;
$self->app->log->debug($self->session('name') . " has set an owner password on room $room");
}
else{
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('UPDATE `rooms`
SET `owner_password`=?
WHERE `name`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
$sth->execute(undef,$room) || return undef;
$self->app->log->debug($self->session('name') . " has removed the owner password on room $room");
}
};
# Make the room persistent
helper set_persistent => sub {
my $self = shift;
my ($room,$set) = @_;
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
return undef unless ($data);
my $sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('UPDATE `rooms`
SET `persistent`=?
WHERE `name`=?');
} || return undef;
$sth->execute($set,$room) || return undef;
if ($set eq '1'){
$self->app->log->debug("Room $room is now persistent");
}
else{
$self->app->log->debug("Room $room isn't persistent anymore");
}
return 1;
};
# Add an email address to the list of notifications
helper add_notification => sub {
my $self = shift;
my ($room,$email) = @_;
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
return undef unless ($data);
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-14 18:43:09 +02:00
$self->db->prepare('INSERT INTO `email_notifications`
2014-10-13 20:17:40 +02:00
(`id`,`email`)
VALUES (?,?)');
2014-07-20 12:10:31 +02:00
} || return undef;
$sth->execute($data->{id},$email) || return undef;
2014-06-18 14:22:12 +02:00
$self->app->log->debug($self->session('name') . " has added $email to the list of email which will be notified when someone joins room $room");
return 1;
};
# Return the list of email addresses
helper get_notification => sub {
my $self = shift;
my ($room) = @_;
2014-10-12 22:45:06 +02:00
$room = $self->get_room_by_name($room) || return undef;
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('SELECT `email`
2014-10-14 18:43:09 +02:00
FROM `email_notifications`
2014-10-13 20:17:40 +02:00
WHERE `id`=?');
2014-07-20 12:10:31 +02:00
} || 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) = @_;
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
return undef unless ($data);
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-14 18:43:09 +02:00
$self->db->prepare('DELETE FROM `email_notifications`
2014-10-13 20:17:40 +02:00
WHERE `id`=?
AND `email`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
$sth->execute($data->{id},$email) || return undef;
2014-06-18 14:22:12 +02:00
$self->app->log->debug($self->session('name') . " has removed $email from the list of email which are notified when someone joins room $room");
return 1;
};
# Set/unset ask for name
helper ask_for_name => sub {
my $self = shift;
my ($room,$set) = @_;
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
return undef unless ($data);
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('UPDATE `rooms`
SET `ask_for_name`=?
WHERE `name`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
$sth->execute($set,$room) || return undef;
2014-06-18 14:22:12 +02:00
$self->app->log->debug($self->session('name') . " has configured room $room to ask for a name before joining it");
return 1;
};
# Randomly choose a music on hold
helper choose_moh => sub {
my $self = shift;
my @files = (<public/snd/moh/*.*>);
return basename($files[rand @files]);
};
# Add a invitation
helper add_invitation => sub {
my $self = shift;
my ($room,$email) = @_;
my $from = $self->session('name') || return undef;
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
my $id = $self->get_random(256);
return undef unless ($data);
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-14 18:43:09 +02:00
$self->db->prepare('INSERT INTO `email_invitations`
2014-10-13 20:17:40 +02:00
(`room_id`,`from`,`token`,`email`,`date`)
VALUES (?,?,?,?,CONVERT_TZ(NOW(), @@session.time_zone, \'+00:00\'))');
2014-07-20 12:10:31 +02:00
} || return undef;
2014-10-14 18:25:14 +02:00
$sth->execute($data->{id},$from,$id,$email) || return undef;
2014-06-18 14:22:12 +02:00
$self->app->log->debug($self->session('name') . " has invited $email to join room $room");
return $id;
};
# return a hash with all the invitation param
# just like get_room
helper get_invitation => sub {
my $self = shift;
my ($id) = @_;
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('SELECT *
2014-10-14 18:43:09 +02:00
FROM `email_invitations`
2014-10-13 20:17:40 +02:00
WHERE `token`=?
AND `processed`=\'0\'');
2014-07-20 12:10:31 +02:00
} || return undef;
$sth->execute($id) || return undef;
return $sth->fetchall_hashref('token')->{$id};
};
# Find invitations which have a unprocessed repsponse
helper find_invitations => sub {
my $self = shift;
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('SELECT `token`
2014-10-14 18:43:09 +02:00
FROM `email_invitations`
2014-10-13 20:17:40 +02:00
WHERE `from`=?
AND `response` IS NOT NULL
AND `processed`=\'0\'');
2014-07-20 12:10:31 +02:00
} || return undef;
$sth->execute($self->session('name')) || return undef;
my @res;
2014-07-20 12:10:31 +02:00
while(my $invit = $sth->fetchrow_array){
push @res, $invit;
}
return @res;
};
helper respond_invitation => sub {
my $self = shift;
my ($id,$response,$message) = @_;
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-14 18:43:09 +02:00
$self->db->prepare('UPDATE `email_invitations`
2014-10-13 20:17:40 +02:00
SET `response`=?,
`message`=?
WHERE `token`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
$sth->execute($response,$message,$id) || return undef;
return 1;
};
# Mark a invitation response as processed
helper processed_invitation => sub {
my $self = shift;
my ($id) = @_;
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-14 18:43:09 +02:00
$self->db->prepare('UPDATE `email_invitations`
2014-10-13 20:17:40 +02:00
SET `processed`=\'1\'
WHERE `token`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
$sth->execute($id) || return undef;
return 1;
};
# Purge expired invitation links
helper delete_invitations => sub {
my $self = shift;
$self->app->log->debug('Removing expired invitations');
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-14 18:43:09 +02:00
$self->db->prepare('DELETE FROM `email_invitations`
2014-10-13 20:17:40 +02:00
WHERE `date` < DATE_SUB(CONVERT_TZ(NOW(), @@session.time_zone, \'+00:00\'), INTERVAL 2 HOUR)');
2014-07-20 12:10:31 +02:00
} || return undef;
2014-10-13 20:17:40 +02:00
$sth->execute || return undef;
return 1;
};
# Check an invitation token is valid
helper check_invite_token => sub {
my $self = shift;
my ($room,$token) = @_;
# Expire invitations before checking if it's valid
$self->delete_invitations;
2014-06-18 14:22:12 +02:00
$self->app->log->debug("Checking if invitation with token $token is valid for room $room");
my $ret = 0;
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
if (!$data || !$token){
return undef;
}
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('SELECT *
2014-10-14 18:43:09 +02:00
FROM `email_invitations`
2014-10-13 20:17:40 +02:00
WHERE `room_id`=?
AND `token`=?
AND (`response` IS NULL
OR `response`=\'later\')');
2014-07-20 12:10:31 +02:00
} || return undef;
$sth->execute($data->{id},$token) || return undef;
2014-06-18 14:22:12 +02:00
if ($sth->rows == 1){
$ret = 1;
$self->app->log->debug("Invitation is valid");
}
else{
$self->app->log->debug("Invitation is invalid");
}
return $ret;
};
# Create a pad (and the group if needed)
helper create_pad => sub {
my $self = shift;
my ($room) = @_;
return undef unless ($ec);
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
return undef unless ($data);
if (!$data->{etherpad_group}){
my $group = $ec->create_group() || undef;
return undef unless ($group);
2014-07-20 12:10:31 +02:00
my $sth = eval {
2014-10-13 20:17:40 +02:00
$self->db->prepare('UPDATE `rooms`
SET `etherpad_group`=?
WHERE `name`=?');
2014-07-20 12:10:31 +02:00
} || return undef;
$sth->execute($group,$room) || return undef;
2014-10-12 22:45:06 +02:00
$data = $self->get_room_by_name($room);
}
$ec->create_group_pad($data->{etherpad_group},$room) || return undef;
$self->app->log->debug("Pad for room $room created (group " . $data->{etherpad_group} . ")");
return 1;
};
# Create an etherpad session for a user
helper create_etherpad_session => sub {
my $self = shift;
my ($room) = @_;
return undef unless ($ec);
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
return undef unless ($data && $data->{etherpad_group});
my $id = $ec->create_author_if_not_exists_for($self->session('name'));
$self->session($room)->{etherpadAuthorId} = $id;
my $etherpadSession = $ec->create_session($data->{etherpad_group}, $id, time + 86400);
$self->session($room)->{etherpadSessionId} = $etherpadSession;
my $etherpadCookieParam = {};
if ($config->{'etherpad.base_domain'} && $config->{'etherpad.base_domain'} ne ''){
$etherpadCookieParam->{domain} = $config->{'etherpad.base_domain'};
}
$self->cookie(sessionID => $etherpadSession, $etherpadCookieParam);
};
# Route / to the index page
any '/' => sub {
my $self = shift;
$self->stash(
etherpad => ($ec) ? 'true' : 'false'
);
} => 'index';
2014-04-03 17:42:54 +02:00
# Route for the about page
2014-04-03 17:42:54 +02:00
get '/about' => sub {
my $self = shift;
2014-07-20 12:48:57 +02:00
$self->stash(
components => COMPONENTS,
musics => MOH
);
2014-04-03 17:42:54 +02:00
} => 'about';
# Route for the help page
2014-04-03 17:42:54 +02:00
get '/help' => 'help';
2014-07-18 17:55:53 +02:00
# Route for the admin page
2014-07-20 12:10:31 +02:00
# This one displas the details of a room
2014-07-18 19:27:21 +02:00
get '/admin/(:room)' => sub {
my $self = shift;
my $room = $self->stash('room');
$self->delete_participants;
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
2014-07-18 19:27:21 +02:00
unless ($data){
return $self->render('error',
err => 'ERROR_ROOM_s_DOESNT_EXIST',
msg => sprintf ($self->l("ERROR_ROOM_s_DOESNT_EXIST"), $room),
room => $room
);
}
my $num = scalar $self->get_participants($room);
$self->stash(
room => $room,
participants => $num
);
2014-07-18 19:27:21 +02:00
} => 'manage_room';
2014-07-20 12:10:31 +02:00
# And this one displays the list of existing rooms
get '/admin' => sub {
my $self = shift;
$self->delete_rooms;
} => 'admin';
2014-07-18 17:55:53 +02:00
# Routes for feedback. One get to display the form
# and one post to get data from it
get '/feedback' => 'feedback';
post '/feedback' => sub {
my $self = shift;
my $email = $self->param('email') || '';
my $comment = $self->param('comment');
my $sent = $self->mail(
to => $config->{'email.contact'},
subject => $self->l("FEEDBACK_FROM_VROOM"),
data => $self->render_mail('feedback',
email => $email,
comment => $comment
)
);
return $self->render('feedback_thanks');
};
# Route for the goodbye page, displayed when someone leaves a room
2014-06-18 12:49:20 +02:00
get '/goodbye/(:room)' => sub {
2014-04-03 17:42:54 +02:00
my $self = shift;
my $room = $self->stash('room');
2014-10-12 22:45:06 +02:00
if ($self->get_room_by_name($room) && $self->session('name')){
$self->remove_participant($room,$self->session('name'));
}
$self->logout($room);
2014-06-18 12:49:20 +02:00
} => 'goodbye';
2014-04-03 17:42:54 +02:00
# Route for the kicked page
# Should be merged with the goodby route
get '/kicked/(:room)' => sub {
my $self = shift;
my $room = $self->stash('room');
2014-10-12 22:45:06 +02:00
if (!$self->get_room_by_name($room)){
return $self->render('error',
err => 'ERROR_ROOM_s_DOESNT_EXIST',
msg => sprintf ($self->l("ERROR_ROOM_s_DOESNT_EXIST"), $room),
room => $room
);
}
$self->remove_participant($room,$self->session('name'));
$self->logout($room);
} => 'kicked';
# Route for invitition response
get '/invitation' => sub {
my $self = shift;
my $inviteId = $self->param('token') || '';
2014-10-14 18:30:24 +02:00
# Delete expired invitation now
$self->delete_invitations;
my $invite = $self->get_invitation($inviteId);
2014-10-14 18:30:24 +02:00
my $room = $self->get_room_by_id($invite->{room_id});
if (!$invite || !$room){
return $self->render('error',
err => 'ERROR_INVITATION_INVALID',
msg => $self->l('ERROR_INVITATION_INVALID'),
room => $room
);
}
$self->render('invitation',
inviteId => $inviteId,
room => $room->{name},
);
};
post '/invitation' => sub {
my $self = shift;
my $id = $self->param('token') || '';
my $response = $self->param('response') || 'decline';
my $message = $self->param('message') || '';
if ($response !~ m/^(later|decline)$/ || !$self->respond_invitation($id,$response,$message)){
return $self->render('error');
}
$self->render('invitation_thanks');
};
2014-04-03 17:42:54 +02:00
# This handler creates a new room
post '/create' => sub {
my $self = shift;
# No name provided ? Lets generate one
my $name = $self->param('roomName') || $self->get_random_name();
# Create a session for this user, but don't set a role for now
2014-04-03 17:42:54 +02:00
$self->login;
my $status = 'error';
my $err = '';
my $msg = $self->l('ERROR_OCCURRED');
# Cleanup unused rooms before trying to create it
$self->delete_rooms;
if (!$self->valid_room_name($name)){
$err = 'ERROR_NAME_INVALID';
$msg = $self->l('ERROR_NAME_INVALID');
2014-04-03 17:42:54 +02:00
}
2014-10-12 22:45:06 +02:00
elsif ($self->get_room_by_name($name)){
$err = 'ERROR_NAME_CONFLICT';
$msg = $self->l('ERROR_NAME_CONFLICT');
}
elsif ($self->create_room($name,$self->session('name'))){
$status = 'success';
$self->session($name => {role => 'owner'});
2014-04-03 17:42:54 +02:00
}
$self->render(json => {
status => $status,
err => $err,
msg => $msg,
room => $name
});
2014-04-03 17:42:54 +02:00
};
# Translation for JS resources
# As there's no way to list all the available translated strings
# we just maintain a list of strings needed
get '/localize/:lang' => { lang => 'en' } => sub {
2014-04-03 17:42:54 +02:00
my $self = shift;
my $strings = {};
foreach my $string (JS_STRINGS){
2014-04-03 17:42:54 +02:00
$strings->{$string} = $self->l($string);
}
# Cache the translation
$self->res->headers->cache_control('private,max-age=3600');
2014-04-03 17:42:54 +02:00
return $self->render(json => $strings);
};
# Route for the password page
2014-05-12 18:53:16 +02:00
get '/password/(:room)' => sub {
my $self = shift;
my $room = $self->stash('room') || '';
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
2014-05-12 18:53:16 +02:00
unless ($data){
return $self->render('error',
err => 'ERROR_ROOM_s_DOESNT_EXIST',
msg => sprintf ($self->l("ERROR_ROOM_s_DOESNT_EXIST"), $room),
room => $room
);
}
$self->render('password', room => $room);
};
# Route for password submiting
2014-05-12 18:53:16 +02:00
post '/password/(:room)' => sub {
my $self = shift;
my $room = $self->stash('room') || '';
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
2014-05-12 18:53:16 +02:00
unless ($data){
return $self->render('error',
err => 'ERROR_ROOM_s_DOESNT_EXIST',
msg => sprintf ($self->l("ERROR_ROOM_s_DOESNT_EXIST"), $room),
room => $room
);
}
my $pass = $self->param('password');
# First check if we got the owner password, and if so, mark this user as owner
if ($data->{owner_password} && Crypt::SaltedHash->validate($data->{owner_password}, $pass)){
$self->session($room => {role => 'owner'});
$self->redirect_to($self->get_url('/') . $room);
}
# Then, check if it's the join password
elsif ($data->{join_password} && Crypt::SaltedHash->validate($data->{join_password}, $pass)){
2014-05-12 18:53:16 +02:00
$self->session($room => {role => 'participant'});
$self->redirect_to($self->get_url('/') . $room);
2014-05-12 18:53:16 +02:00
}
# Else, it's a wrong password, display an error page
2014-05-12 18:53:16 +02:00
else{
$self->render('error',
err => 'WRONG_PASSWORD',
msg => sprintf ($self->l("WRONG_PASSWORD"), $room),
room => $room
);
}
};
# Catch all route: if nothing else match, it's the name of a room
2014-04-03 17:42:54 +02:00
get '/(*room)' => sub {
my $self = shift;
my $room = $self->stash('room');
2014-05-30 18:01:44 +02:00
my $video = $self->param('video') || '1';
my $token = $self->param('token') || undef;
2014-05-07 17:17:22 +02:00
# Redirect to lower case
if ($room ne lc $room){
$self->redirect_to($self->get_url('/') . lc $room);
2014-05-07 17:17:22 +02:00
}
2014-04-03 17:42:54 +02:00
$self->delete_rooms;
$self->delete_invitations;
2014-04-03 17:42:54 +02:00
unless ($self->valid_room_name($room)){
return $self->render('error',
msg => $self->l('ERROR_NAME_INVALID'),
err => 'ERROR_NAME_INVALID',
room => $room
);
2014-04-03 17:42:54 +02:00
}
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
2014-04-03 17:42:54 +02:00
unless ($data){
return $self->render('error',
err => 'ERROR_ROOM_s_DOESNT_EXIST',
msg => sprintf ($self->l("ERROR_ROOM_s_DOESNT_EXIST"), $room),
room => $room
);
2014-04-03 17:42:54 +02:00
}
# Create a session if not already done
$self->login;
# If the room is locked and we're not the owner, we cannot join it !
2014-05-19 11:04:44 +02:00
if ($data->{'locked'} && (!$self->session($room) || !$self->session($room)->{role} || $self->session($room)->{role} ne 'owner')){
return $self->render('error',
msg => sprintf($self->l("ERROR_ROOM_s_LOCKED"), $room),
err => 'ERROR_ROOM_s_LOCKED',
room => $room,
ownerPass => ($data->{owner_password}) ? '1':'0'
);
2014-04-03 17:42:54 +02:00
}
# Now, if the room is password protected and we're not a participant, nor the owner, lets prompt for the password
# Email invitation have a token which can be used instead of password
if ($data->{join_password} &&
(!$self->session($room) || $self->session($room)->{role} !~ m/^participant|owner$/) &&
!$self->check_invite_token($room,$token)){
return $self->redirect_to($self->get_url('/password') . $room);
2014-05-12 18:53:16 +02:00
}
# Set this peer as a simple participant if he has no role yet (shouldn't happen)
$self->session($room => {role => 'participant'}) if (!$self->session($room) || !$self->session($room)->{role});
# Create etherpad session if needed
if ($ec && !$self->session($room)->{etherpadSession}){
# pad doesn't exist yet ?
if (!$data->{etherpad_group}){
$self->create_pad($room);
}
$self->create_etherpad_session($room);
}
# Short life cookie to negociate a session with the signaling server
$self->cookie(vroomsession => encode_base64($self->session('name') . ':' . $data->{name} . ':' . $data->{token}, ''), {expires => time + 60, path => '/'});
2014-04-03 17:42:54 +02:00
# Add this user to the participants table
unless($self->add_participant($room,$self->session('name'))){
return $self->render('error',
2014-06-02 10:40:51 +02:00
msg => $self->l('ERROR_OCCURRED'),
err => 'ERROR_OCCURRED',
room => $room
);
2014-04-03 17:42:54 +02:00
}
# Now display the room page
$self->render('join',
moh => $self->choose_moh(),
turnPassword => $data->{token},
video => $video,
etherpad => ($ec) ? 'true' : 'false',
etherpadGroup => $data->{etherpad_group},
ua => $self->req->headers->user_agent
);
2014-04-03 17:42:54 +02:00
};
# Route for various room actions
post '/*action' => [action => [qw/action admin\/action/]] => sub {
2014-04-03 17:42:54 +02:00
my $self = shift;
my $action = $self->param('action');
my $prefix = ($self->stash('action') eq 'admin/action') ? 'admin':'room';
2014-04-03 17:42:54 +02:00
my $room = $self->param('room') || "";
2014-10-09 21:33:21 +02:00
if ($action eq 'langSwitch'){
my $new_lang = $self->param('lang') || 'en';
$self->app->log->debug("switching to lang $new_lang");
$self->session(language => $new_lang);
return $self->render(
json => {
status => 'success',
}
);
}
# Refuse any action from non members of the room
if ($prefix ne 'admin' && (!$self->session('name') || !$self->has_joined($self->session('name'), $room) || !$self->session($room) || !$self->session($room)->{role})){
2014-04-03 17:42:54 +02:00
return $self->render(
json => {
msg => $self->l('ERROR_NOT_LOGGED_IN'),
status => 'error'
2014-04-03 17:42:54 +02:00
},
);
}
# Sanity check on the room name
return $self->render(
json => {
msg => sprintf ($self->l("ERROR_NAME_INVALID"), $room),
status => 'error'
},
) unless ($self->valid_room_name($room));
# Push the room name to the stash, just in case
2014-04-03 17:42:54 +02:00
$self->stash(room => $room);
# Gather room info from the DB
2014-10-12 22:45:06 +02:00
my $data = $self->get_room_by_name($room);
# Stop here if the room doesn't exist
2014-04-03 17:42:54 +02:00
return $self->render(
json => {
msg => sprintf ($self->l("ERROR_ROOM_s_DOESNT_EXIST"), $room),
err => 'ERROR_ROOM_s_DOESNT_EXIST',
status => 'error'
2014-04-03 17:42:54 +02:00
},
) unless ($data);
2014-04-03 17:42:54 +02:00
# Handle email invitation
2014-04-03 17:42:54 +02:00
if ($action eq 'invite'){
my $rcpt = $self->param('recipient');
my $message = $self->param('message');
my $status = 'error';
2014-06-02 10:40:51 +02:00
my $msg = $self->l('ERROR_OCCURRED');
if ($prefix ne 'admin' && $self->session($room)->{role} ne 'owner'){
$msg = 'NOT_ALLOWED';
}
elsif ($rcpt !~ m/\S+@\S+\.\S+$/){
$msg = $self->l('ERROR_MAIL_INVALID');
}
else{
my $inviteId = $self->add_invitation($room,$rcpt);
my $sent = $self->mail(
to => $rcpt,
subject => $self->l("EMAIL_INVITATION"),
data => $self->render_mail('invite',
room => $room,
message => $message,
inviteId => $inviteId,
joinPass => ($data->{join_password}) ? 'yes' : 'no'
)
);
if ($inviteId && $sent){
$self->app->log->info($self->session('name') . " sent an invitation for room $room to $rcpt");
$status = 'success';
$msg = sprintf($self->l('INVITE_SENT_TO_s'), $rcpt);
}
}
2014-04-03 17:42:54 +02:00
$self->render(
json => {
msg => $msg,
status => $status
2014-04-03 17:42:54 +02:00
}
);
}
# Handle room lock/unlock
if ($action =~ m/(un)?lock/){
my ($lock,$success);
2014-06-02 10:40:51 +02:00
my $msg = 'ERROR_OCCURRED';
my $status = 'error';
# Only the owner can lock or unlock a room
if ($prefix ne 'admin' && $self->session($room)->{role} ne 'owner'){
$msg = $self->l('NOT_ALLOWED');
}
elsif ($self->lock_room($room,($action eq 'lock') ? '1':'0')){
$status = 'success';
$msg = ($action eq 'lock') ? $self->l('ROOM_LOCKED') : $self->l('ROOM_UNLOCKED');
}
return $self->render(
json => {
msg => $msg,
status => $status
}
);
}
# Handle activity pings sent every minute by each participant
2014-04-03 17:42:54 +02:00
elsif ($action eq 'ping'){
2014-05-15 10:40:40 +02:00
my $status = 'error';
2014-06-02 10:40:51 +02:00
my $msg = $self->l('ERROR_OCCURRED');
2014-04-03 17:42:54 +02:00
my $res = $self->ping_room($room);
# Cleanup expired rooms every ~10 pings
if ((int (rand 100)) <= 10){
$self->delete_rooms;
}
# And same for expired invitation links
if ((int (rand 100)) <= 10){
$self->delete_invitations;
}
# And also remove inactive participants
if ((int (rand 100)) <= 10){
$self->delete_participants;
}
2014-05-15 10:40:40 +02:00
if ($res){
$status = 'success';
$msg = '';
2014-04-03 17:42:54 +02:00
}
my @invitations = $self->find_invitations();
if (scalar @invitations > 0){
$msg = '';
foreach my $id (@invitations){
my $invit = $self->get_invitation($id);
$msg .= sprintf($self->l('INVITE_REPONSE_FROM_s'), $invit->{email}) . "\n" ;
if ($invit->{response} && $invit->{response} eq 'later'){
$msg .= $self->l('HE_WILL_TRY_TO_JOIN_LATER');
}
else{
$msg .= $self->l('HE_WONT_JOIN');
}
if ($invit->{message} && $invit->{message} ne ''){
2014-05-28 15:16:49 +02:00
$msg .= "\n" . $self->l('MESSAGE') . ":\n" . $invit->{message} . "\n";
}
2014-05-28 15:16:49 +02:00
$msg .= "\n";
$self->processed_invitation($id);
}
}
2014-05-15 10:40:40 +02:00
return $self->render(
json => {
msg => $msg,
2014-05-15 10:40:40 +02:00
status => $status
}
);
2014-04-03 17:42:54 +02:00
}
# Handle password (join and owner)
elsif ($action eq 'setPassword'){
my $pass = $self->param('password');
my $type = $self->param('type') || 'join';
# Empty password is equivalent to no password at all
$pass = undef if ($pass && $pass eq '');
my $res = undef;
2014-06-02 10:40:51 +02:00
my $msg = $self->l('ERROR_OCCURRED');
2014-05-15 10:58:35 +02:00
my $status = 'error';
# Once again, only the owner can do this
if ($prefix eq 'admin' || $self->session($room)->{role} eq 'owner'){
if ($type eq 'owner'){
# Forbid a few common room names to be reserved
if (grep { $room eq $_ } (split /[,;]/, $config->{'rooms.common_names'})){
$msg = $self->l('ERROR_COMMON_ROOM_NAME');
}
elsif ($self->set_owner_pass($room,$pass)){
$msg = ($pass) ? $self->l('ROOM_NOW_RESERVED') : $self->l('ROOM_NO_MORE_RESERVED');
$status = 'success';
}
}
elsif ($type eq 'join' && $self->set_join_pass($room,$pass)){
$msg = ($pass) ? $self->l('PASSWORD_PROTECT_SET') : $self->l('PASSWORD_PROTECT_UNSET');
2014-05-15 10:58:35 +02:00
$status = 'success';
}
}
# Simple participants will get an error
else{
$msg = $self->l('NOT_ALLOWED');
}
2014-05-15 10:58:35 +02:00
return $self->render(
json => {
msg => $msg,
status => $status
}
);
}
# Handle persistence
elsif ($action eq 'setPersistent'){
my $type = $self->param('type');
my $status = 'error';
my $msg = $self->l('ERROR_OCCURRED');
# Only possible through /admin/action
if ($prefix ne 'admin'){
$msg = $self->l('NOT_ALLOWED');
}
elsif($type eq 'set' && $self->set_persistent($room,'1')){
$status = 'success';
$msg = $self->l('ROOM_NOW_PERSISTENT');
}
elsif($type eq 'unset' && $self->set_persistent($room,'0')){
$status = 'success';
$msg = $self->l('ROOM_NO_MORE_PERSISTENT');
}
return $self->render(
json => {
msg => $msg,
status => $status
}
);
}
# A participant is trying to auth as an owner, lets check that
elsif ($action eq 'authenticate'){
my $pass = $self->param('password');
my $res = undef;
2014-06-02 10:40:51 +02:00
my $msg = $self->l('ERROR_OCCURRED');
my $status = 'error';
# Auth succeed ? lets promote him to owner of the room
if ($data->{owner_password} && Crypt::SaltedHash->validate($data->{owner_password}, $pass)){
$self->session($room, {role => 'owner'});
$msg = $self->l('AUTH_SUCCESS');
$status = 'success';
}
elsif ($data->{owner_password}){
$msg = $self->l('WRONG_PASSWORD');
}
# There's no owner password, so you cannot auth
else{
$msg = $self->l('NOT_ALLOWED');
}
return $self->render(
json => {
msg => $msg,
status => $status
},
);
}
# Return your role and various info about the room
elsif ($action eq 'getRoomInfo'){
my $id = $self->param('id');
my $res = 'error';
my %emailNotif;
if ($self->session($room) && $self->session($room)->{role}){
if ($self->session($room)->{role} ne 'owner' && $self->get_peer_role($room,$id) eq 'owner'){
$self->session($room)->{role} = 'owner';
}
$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',
ask_for_name => ($data->{ask_for_name}) ? 'yes' : 'no',
notif => Mojo::JSON->new->encode({email => { %emailNotif }}),
status => $res
},
);
}
# Return the role of a peer
elsif ($action eq 'getPeerRole'){
my $id = $self->param('id');
my $role = $self->get_peer_role($room,$id);
return $self->render(
json => {
role => $role,
status => 'success'
}
);
}
# 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';
2014-06-02 10:40:51 +02:00
my $msg = $self->l('ERROR_OCCURRED');
if ($prefix ne 'admin' && $self->session($room)->{role} ne 'owner'){
$msg = $self->l('NOT_ALLOWED');
}
elsif ($email !~ m/^\S+@\S+\.\S+$/){
$msg = $self->l('ERROR_MAIL_INVALID');
}
elsif ($type eq 'add' && $self->add_notification($room,$email)){
$status = 'success';
$msg = sprintf($self->l('s_WILL_BE_NOTIFIED'), $email);
}
elsif ($type eq 'remove' && $self->remove_notification($room,$email)){
$status = 'success';
$msg = sprintf($self->l('s_WONT_BE_NOTIFIED_ANYMORE'), $email);
}
return $self->render(
json => {
msg => $msg,
status => $status
}
);
}
# Set/unset askForName
elsif ($action eq 'askForName'){
my $type = $self->param('type');
my $status = 'error';
2014-06-02 10:40:51 +02:00
my $msg = $self->l('ERROR_OCCURRED');
if ($prefix ne 'admin' && $self->session($room)->{role} ne 'owner'){
$msg = $self->l('NOT_ALLOWED');
}
elsif($type eq 'set' && $self->ask_for_name($room,'1')){
$status = 'success';
$msg = $self->l('FORCE_DISPLAY_NAME');
}
elsif($type eq 'unset' && $self->ask_for_name($room,'0')){
$status = 'success';
$msg = $self->l('NAME_WONT_BE_ASKED');
}
return $self->render(
json => {
msg => $msg,
status => $status
}
);
}
# New participant joined the room
elsif ($action eq 'join'){
my $name = $self->param('name') || '';
my $subj = ($name eq '') ? sprintf($self->l('s_JOINED_ROOM_s'), $self->l('SOMEONE'), $room) : sprintf($self->l('s_JOINED_ROOM_s'), $name, $room);
# Send notifications
foreach my $rcpt ($self->get_notification($room)){
my $sent = $self->mail(
to => $rcpt,
subject => $subj,
data => $self->render_mail('notification',
room => $room,
name => $name
)
);
}
return $self->render(
json => {
status => 'success'
}
);
}
# A participant is being promoted to the owner status
elsif ($action eq 'promote'){
my $peer = $self->param('peer');
my $status = 'error';
my $msg = $self->l('ERROR_OCCURRED');
if (!$peer){
$msg = $self->l('ERROR_OCCURRED');
}
elsif ($self->session($room)->{role} ne 'owner'){
$msg = $self->l('NOT_ALLOWED');
}
elsif ($self->promote_peer($room,$peer)){
$status = 'success';
$msg = $self->l('PEER_PROMOTED');
}
return $self->render(
json => {
msg => $msg,
status => $status
}
);
}
# Wipe etherpad data
elsif ($action eq 'wipeData'){
my $status = 'error';
my $msg = $self->l('ERROR_OCCURRED');
if ($self->session($room)->{role} ne 'owner'){
$msg = $self->l('NOT_ALLOWED');
}
elsif (!$ec){
$msg = 'NOT_ENABLED';
}
elsif ($ec->delete_pad($data->{etherpad_group} . '$' . $room) && $self->create_pad($room) && $self->create_etherpad_session($room)){
$status = 'success';
2014-06-16 19:33:22 +02:00
$msg = '';
}
return $self->render(
json => {
msg => $msg,
status => $status
}
);
}
elsif ($action eq 'padSession'){
my $status = 'error';
my $msg = $self->l('ERROR_OCCURRED');
if ($self->session($room)->{role} !~ m/^owner|participant$/){
$msg = $self->l('NOT_ALLOWED');
}
elsif (!$ec){
$msg = 'NOT_ENABLED';
}
elsif ($self->create_etherpad_session($room)){
$status = 'success';
$msg = '';
}
return $self->render(
json => {
msg => $msg,
status => $status
}
);
}
# delete the room
elsif ($action eq 'deleteRoom'){
my $status = 'error';
my $msg = $self->l('ERROR_OCCURRED');
if ($prefix ne 'admin' && $self->session($room)->{role} ne 'owner'){
$msg = $self->l('NOT_ALLOWED');
}
elsif ($self->delete_room($room)){
$msg = $self->l('ROOM_DELETED');
$status = 'success';
}
return $self->render(
json => {
msg => $msg,
status => $status
}
);
}
2014-04-03 17:42:54 +02:00
};
# use the templates defined in the config
push @{app->renderer->paths}, 'templates/'.$config->{'interface.template'};
# Set the secret used to sign cookies
app->secret($config->{'cookie.secret'});
2014-04-03 17:42:54 +02:00
app->sessions->secure(1);
app->sessions->cookie_name($config->{'cookie.name'});
2014-10-09 21:33:21 +02:00
app->hook(before_dispatch => sub {
my $self = shift;
# Switch to the desired language
if ($self->session('language')){
$self->languages($self->session('language'));
}
# Stash the configuration hashref
$self->stash(config => $config);
2014-10-09 21:33:21 +02:00
});
# Are we running in hypnotoad ?
app->config(
hypnotoad => {
listen => ['http://' . $config->{'daemon.listen_ip'} . ':' . $config->{'daemon.listen_port'}],
pid_file => '/tmp/vroom.pid',
proxy => 1
}
);
# And start, lets VROOM !!
2014-04-03 17:42:54 +02:00
app->start;