You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
524 lines
17 KiB
524 lines
17 KiB
package NGCP::Panel::Controller::Sound;
|
|
use Sipwise::Base;
|
|
|
|
|
|
BEGIN { extends 'Catalyst::Controller'; }
|
|
|
|
use NGCP::Panel::Form::Sound::AdminSet;
|
|
use NGCP::Panel::Form::Sound::ResellerSet;
|
|
use NGCP::Panel::Form::Sound::File;
|
|
use File::Type;
|
|
use NGCP::Panel::Utils::XMLDispatcher;
|
|
use NGCP::Panel::Utils::Sounds;
|
|
use NGCP::Panel::Utils::Navigation;
|
|
|
|
sub auto :Does(ACL) :ACLDetachTo('/denied_page') :AllowedRole(admin) :AllowedRole(reseller) {
|
|
my ($self, $c) = @_;
|
|
$c->log->debug(__PACKAGE__ . '::auto');
|
|
NGCP::Panel::Utils::Navigation::check_redirect_chain(c => $c);
|
|
return 1;
|
|
}
|
|
|
|
sub sets_list :Chained('/') :PathPart('sound') :CaptureArgs(0) {
|
|
my ( $self, $c ) = @_;
|
|
|
|
my $sets_rs = $c->model('DB')->resultset('voip_sound_sets');
|
|
unless($c->user->is_superuser) {
|
|
$sets_rs = $sets_rs->search({ reseller_id => $c->user->reseller_id });
|
|
}
|
|
|
|
$c->stash->{soundset_dt_columns} = NGCP::Panel::Utils::Datatables::set_columns($c, [
|
|
{ name => 'id', search => 1, title => '#' },
|
|
{ name => 'reseller.name', search => 1, title => 'Reseller' },
|
|
{ name => 'name', search => 1, title => 'Name' },
|
|
{ name => 'description', search => 1, title => 'Description' },
|
|
]);
|
|
|
|
$c->stash(sets_rs => $sets_rs);
|
|
$c->stash(template => 'sound/list.tt');
|
|
}
|
|
|
|
sub root :Chained('sets_list') :PathPart('') :Args(0) {
|
|
my ($self, $c) = @_;
|
|
}
|
|
|
|
sub ajax :Chained('sets_list') :PathPart('ajax') :Args(0) {
|
|
my ($self, $c) = @_;
|
|
|
|
my $resultset = $c->stash->{sets_rs};
|
|
NGCP::Panel::Utils::Datatables::process($c, $resultset, $c->stash->{soundset_dt_columns});
|
|
$c->detach( $c->view("JSON") );
|
|
}
|
|
|
|
sub base :Chained('sets_list') :PathPart('') :CaptureArgs(1) {
|
|
my ($self, $c, $set_id) = @_;
|
|
|
|
unless($set_id && $set_id->is_integer) {
|
|
$c->flash(messages => [{type => 'error', text => 'Invalid sound set id detected'}]);
|
|
NGCP::Panel::Utils::Navigation::back_or($c, $c->uri_for('/sound'));
|
|
}
|
|
|
|
my $res = $c->stash->{sets_rs}->find($set_id);
|
|
unless(defined($res)) {
|
|
$c->flash(messages => [{type => 'error', text => 'Sound set does not exist'}]);
|
|
NGCP::Panel::Utils::Navigation::back_or($c, $c->uri_for('/sound'));
|
|
}
|
|
$c->stash(set_result => $res);
|
|
}
|
|
|
|
sub edit :Chained('base') :PathPart('edit') {
|
|
my ($self, $c) = @_;
|
|
|
|
my $posted = ($c->request->method eq 'POST');
|
|
my $form;
|
|
my $params = { $c->stash->{set_result}->get_inflated_columns };
|
|
$params->{reseller}{id} = delete $params->{reseller_id};
|
|
$params = $params->merge($c->session->{created_objects});
|
|
if($c->user->is_superuser) {
|
|
$form = NGCP::Panel::Form::Sound::AdminSet->new;
|
|
} else {
|
|
$form = NGCP::Panel::Form::Sound::ResellerSet->new;
|
|
}
|
|
$form->process(
|
|
posted => $posted,
|
|
params => $c->request->params,
|
|
item => $params,
|
|
);
|
|
NGCP::Panel::Utils::Navigation::check_form_buttons(
|
|
c => $c,
|
|
form => $form,
|
|
fields => {
|
|
'reseller.create' => $c->uri_for('/reseller/create'),
|
|
},
|
|
back_uri => $c->req->uri,
|
|
);
|
|
if($posted && $form->validated) {
|
|
try {
|
|
if($c->user->is_superuser) {
|
|
$form->values->{reseller_id} = $form->values->{reseller}{id};
|
|
}
|
|
delete $form->values->{reseller};
|
|
$c->stash->{set_result}->update($form->values);
|
|
delete $c->session->{created_objects}->{reseller};
|
|
$c->flash(messages => [{type => 'success', text => 'Sound set successfully updated'}]);
|
|
} catch($e) {
|
|
$c->log->error("failed to update sound set: $e");
|
|
$c->flash(messages => [{type => 'error', text => 'Sound set successfully updated'}]);
|
|
}
|
|
NGCP::Panel::Utils::Navigation::back_or($c, $c->uri_for('/sound'));
|
|
}
|
|
|
|
$c->stash(
|
|
form => $form,
|
|
edit_flag => 1,
|
|
);
|
|
}
|
|
|
|
sub delete :Chained('base') :PathPart('delete') {
|
|
my ($self, $c) = @_;
|
|
|
|
try {
|
|
$c->stash->{set_result}->delete;
|
|
$c->flash(messages => [{type => 'success', text => 'Sound set successfully deleted'}]);
|
|
} catch($e) {
|
|
$c->log->error("failed to delete sound set: $e");
|
|
$c->flash(messages => [{type => 'error', text => 'Delete failed.'}]);
|
|
};
|
|
NGCP::Panel::Utils::Navigation::back_or($c, $c->uri_for('/sound'));
|
|
}
|
|
|
|
sub create :Chained('sets_list') :PathPart('create') :Args(0) {
|
|
my ($self, $c) = @_;
|
|
|
|
my $posted = ($c->request->method eq 'POST');
|
|
my $form;
|
|
my $params = {};
|
|
$params = $params->merge($c->session->{created_objects});
|
|
if($c->user->is_superuser) {
|
|
$form = NGCP::Panel::Form::Sound::AdminSet->new;
|
|
} else {
|
|
$form = NGCP::Panel::Form::Sound::ResellerSet->new;
|
|
}
|
|
$form->process(
|
|
posted => $posted,
|
|
params => $c->request->params,
|
|
item => $params,
|
|
);
|
|
NGCP::Panel::Utils::Navigation::check_form_buttons(
|
|
c => $c,
|
|
form => $form,
|
|
fields => {
|
|
'reseller.create' => $c->uri_for('/reseller/create'),
|
|
},
|
|
back_uri => $c->req->uri,
|
|
);
|
|
if($posted && $form->validated) {
|
|
try {
|
|
if($c->user->is_superuser) {
|
|
$form->values->{reseller_id} = $form->values->{reseller}{id};
|
|
delete $form->values->{reseller};
|
|
} else {
|
|
$form->values->{reseller_id} = $c->user->reseller_id;
|
|
}
|
|
$c->stash->{sets_rs}->create($form->values);
|
|
delete $c->session->{created_objects}->{reseller};
|
|
$c->flash(messages => [{type => 'success', text => 'Sound set successfully created'}]);
|
|
} catch($e) {
|
|
$c->log->error("failed to create sound set: $e");
|
|
$c->flash(messages => [{type => 'error', text => 'Failed to create sound set'}]);
|
|
}
|
|
NGCP::Panel::Utils::Navigation::back_or($c, $c->uri_for('/sound'));
|
|
}
|
|
|
|
$c->stash(
|
|
form => $form,
|
|
create_flag => 1,
|
|
);
|
|
}
|
|
|
|
sub handles_list :Chained('base') :PathPart('handles') :CaptureArgs(0) {
|
|
my ( $self, $c ) = @_;
|
|
|
|
my $files_rs = $c->stash->{set_result}->voip_sound_files;
|
|
$c->stash(files_rs => $files_rs);
|
|
$c->stash(handles_base_uri =>
|
|
$c->uri_for_action("/sound/handles_root", [$c->req->captures->[0]]));
|
|
|
|
my $handles_rs = $c->model('DB')->resultset('voip_sound_groups')
|
|
->search({
|
|
},{
|
|
select => ['groups.name', \'handles.name', \'handles.id', 'files.filename', 'files.loopplay', 'files.codec'],
|
|
as => [ 'groupname', 'handlename', 'handleid', 'filename', 'loopplay', 'codec'],
|
|
alias => 'groups',
|
|
from => [
|
|
{ groups => 'provisioning.voip_sound_groups' },
|
|
[
|
|
{ handles => 'provisioning.voip_sound_handles', -join_type=>'left'},
|
|
{ 'groups.id' => 'handles.group_id'},
|
|
],
|
|
[
|
|
{ files => 'provisioning.voip_sound_files', -join_type => 'left'},
|
|
{ 'handles.id' => { '=' => \'files.handle_id'}, 'files.set_id' => $c->stash->{set_result}->id},
|
|
],
|
|
],
|
|
});
|
|
unless($c->config->{features}->{cloudpbx}) {
|
|
$handles_rs = $handles_rs->search({ 'groups.name' => { '!=' => 'pbx' } });
|
|
}
|
|
unless($c->config->{features}->{musiconhold}) {
|
|
$handles_rs = $handles_rs->search({ 'groups.name' => { '!=' => 'music_on_hold' } });
|
|
}
|
|
unless($c->config->{features}->{callingcard}) {
|
|
$handles_rs = $handles_rs->search({ 'groups.name' => { '!=' => 'calling_card' } });
|
|
}
|
|
unless($c->config->{features}->{mobilepush}) {
|
|
$handles_rs = $handles_rs->search({ 'groups.name' => { '!=' => 'mobile_push' } });
|
|
}
|
|
|
|
|
|
my @rows = $handles_rs->all;
|
|
|
|
my %groups;
|
|
for my $handle (@rows) {
|
|
$groups{ $handle->get_column('groupname') } = []
|
|
unless exists $groups{ $handle->get_column('groupname') };
|
|
push $groups{ $handle->get_column('groupname') }, $handle;
|
|
}
|
|
$c->stash(sound_groups => \%groups);
|
|
|
|
$c->stash(has_edit => 1);
|
|
$c->stash(has_delete => 1);
|
|
$c->stash(template => 'sound/handles_list.tt');
|
|
}
|
|
|
|
sub handles_root :Chained('handles_list') :PathPart('') :Args(0) {
|
|
my ($self, $c) = @_;
|
|
}
|
|
|
|
sub handles_base :Chained('handles_list') :PathPart('') :CaptureArgs(1) {
|
|
my ($self, $c, $handle_id) = @_;
|
|
|
|
unless($handle_id && $handle_id->is_integer) {
|
|
$c->flash(messages => [{type => 'error', text => 'Invalid sound handle id detected'}]);
|
|
NGCP::Panel::Utils::Navigation::back_or($c, $c->stash->{handles_base_uri});
|
|
}
|
|
|
|
my $res = $c->stash->{files_rs}->find_or_create(handle_id => $handle_id);
|
|
unless(defined $res ) {
|
|
$c->flash(messages => [{type => 'error', text => 'Sound handle not found'}]);
|
|
NGCP::Panel::Utils::Navigation::back_or($c, $c->stash->{handles_base_uri});
|
|
}
|
|
$c->stash(file_result => $res);
|
|
}
|
|
|
|
sub handles_edit :Chained('handles_base') :PathPart('edit') {
|
|
my ($self, $c) = @_;
|
|
|
|
my $posted = ($c->request->method eq 'POST');
|
|
my $upload = $c->req->upload('soundfile');
|
|
my %params = (
|
|
%{ $c->request->params },
|
|
soundfile => $posted ? $upload : undef,
|
|
);
|
|
my $file_result = $c->stash->{file_result};
|
|
my $form = NGCP::Panel::Form::Sound::File->new;
|
|
$form->process(
|
|
posted => $posted,
|
|
params => \%params,
|
|
item => $file_result,
|
|
);
|
|
NGCP::Panel::Utils::Navigation::check_form_buttons(
|
|
c => $c,
|
|
form => $form,
|
|
fields => {},
|
|
back_uri => $c->req->uri,
|
|
);
|
|
|
|
if($posted && $form->validated) {
|
|
if (defined $upload) {
|
|
my $soundfile = eval { $upload->slurp };
|
|
my $filename = eval { $upload->filename };
|
|
|
|
my $ft = File::Type->new();
|
|
unless ($ft->checktype_contents($soundfile) eq 'audio/x-wav') {
|
|
$c->flash(messages => [{type => 'error', text => 'Invalid file type detected, only WAV supported'}]);
|
|
NGCP::Panel::Utils::Navigation::back_or($c, $c->stash->{handles_base_uri});
|
|
}
|
|
|
|
my $target_codec = 'WAV';
|
|
|
|
if($file_result->handle->group->name eq 'calling_card') {
|
|
try {
|
|
$self->_clear_audio_cache($file_result->set_id, $file_result->handle->name);
|
|
} catch ($e) {
|
|
$c->flash(messages => [{type => 'error', text => 'Failed to clear audio cache'}]);
|
|
NGCP::Panel::Utils::Navigation::back_or($c, $c->stash->{handles_base_uri});
|
|
}
|
|
}
|
|
|
|
if ($file_result->handle->name eq 'music_on_hold') {
|
|
$target_codec = 'PCMA';
|
|
$filename =~ s/\.[^.]+$/.pcma/;
|
|
}
|
|
|
|
try {
|
|
$soundfile = NGCP::Panel::Utils::Sounds::transcode_file(
|
|
$upload->tempname, 'WAV', $target_codec);
|
|
} catch ($e) {
|
|
$c->flash(messages => [{type => 'error', text => 'Transcoding audio file failed'}]);
|
|
$c->log->error("failed to transcode audio file: $e");
|
|
NGCP::Panel::Utils::Navigation::back_or($c, $c->stash->{handles_base_uri});
|
|
}
|
|
|
|
try {
|
|
$file_result->update({
|
|
loopplay => $form->values->{loopplay},
|
|
filename => $filename,
|
|
data => $soundfile,
|
|
codec => $target_codec,
|
|
});
|
|
$c->flash(messages => [{type => 'success', text => 'Sound handle successfully uploaded'}]);
|
|
} catch($e) {
|
|
$c->log->error("failed to update sound handle with data: $e");
|
|
$c->flash(messages => [{type => 'error', text => 'Failed to update sound handle upload'}]);
|
|
}
|
|
} else {
|
|
try {
|
|
$file_result->update({
|
|
loopplay => $form->values->{loopplay},
|
|
});
|
|
$c->flash(messages => [{type => 'success', text => 'Sound handle successfully updated'}]);
|
|
} catch($e) {
|
|
$c->log->error("failed to update sound handle: $e");
|
|
$c->flash(messages => [{type => 'error', text => 'Failed to update sound handle'}]);
|
|
}
|
|
}
|
|
NGCP::Panel::Utils::Navigation::back_or($c, $c->stash->{handles_base_uri});
|
|
}
|
|
|
|
$c->stash(form => $form);
|
|
$c->stash(edit_flag => 1);
|
|
}
|
|
|
|
sub handles_delete :Chained('handles_base') :PathPart('delete') {
|
|
my ($self, $c) = @_;
|
|
|
|
try {
|
|
$c->stash->{file_result}->delete;
|
|
$c->flash(messages => [{type => 'success', text => 'Sound handle successfully deleted'}]);
|
|
} catch($e) {
|
|
$c->log->error("failed to delete sound handle: $e");
|
|
$c->flash(messages => [{type => 'error', text => 'Failed to delete sound handle'}]);
|
|
};
|
|
NGCP::Panel::Utils::Navigation::back_or($c, $c->stash->{handles_base_uri});
|
|
}
|
|
|
|
sub handles_download :Chained('handles_base') :PathPart('download') :Args(0) {
|
|
my ($self, $c) = @_;
|
|
|
|
my $file = $c->stash->{file_result};
|
|
my $filename = $file->filename;
|
|
$filename =~ s/\.\w+$/.wav/;
|
|
my $data;
|
|
|
|
if($file->codec ne 'WAV') {
|
|
try {
|
|
$data = NGCP::Panel::Utils::Sounds::transcode_data(
|
|
$file->data, $file->codec, 'WAV');
|
|
} catch($e) {
|
|
$c->log->error("failed to transcode audio file: $e");
|
|
$c->flash(messages => [{type => 'error', text => 'Failed to transcode audio file'}]);
|
|
NGCP::Panel::Utils::Navigation::back_or($c, $c->stash->{handles_base_uri});
|
|
}
|
|
} else {
|
|
$data = $file->data;
|
|
}
|
|
|
|
$c->response->header ('Content-Disposition' => 'attachment; filename="' . $filename . '"');
|
|
$c->response->content_type('audio/x-wav');
|
|
$c->response->body($data);
|
|
}
|
|
|
|
sub _clear_audio_cache {
|
|
my ($self, $sound_set_id, $handle_name) = @_;
|
|
|
|
my $dispatcher = NGCP::Panel::Utils::XMLDispatcher->new;
|
|
|
|
my @ret = $dispatcher->dispatch("appserver", 1, 1, <<EOF );
|
|
<?xml version="1.0"?>
|
|
<methodCall>
|
|
<methodName>postDSMEvent</methodName>
|
|
<params>
|
|
<param>
|
|
<value><string>sw_audio</string></value>
|
|
</param>
|
|
<param>
|
|
<value><array><data>
|
|
<value><array><data>
|
|
<value><string>cmd</string></value>
|
|
<value><string>clearFile</string></value>
|
|
</data></array></value>
|
|
<value><array><data>
|
|
<value><string>audio_id</string></value>
|
|
<value><string>$handle_name</string></value>
|
|
</data></array></value>
|
|
<value><array><data>
|
|
<value><string>sound_set_id</string></value>
|
|
<value><string>$sound_set_id</string></value>
|
|
</data></array></value>
|
|
</data></array></value>
|
|
</param>
|
|
</params>
|
|
</methodCall>
|
|
EOF
|
|
|
|
if(grep { $$_[1] != 1 or $$_[2] !~ m#<value>OK</value># } @ret) { # error
|
|
die "failed to clear SEMS audio cache";
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
__PACKAGE__->meta->make_immutable;
|
|
|
|
1;
|
|
|
|
=head1 NAME
|
|
|
|
NGCP::Panel::Controller::Sound - Manage Sounds
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Show/Edit/Create/Delete Sound Sets.
|
|
|
|
Show/Upload Sound Files in Sound Sets.
|
|
|
|
=head1 METHODS
|
|
|
|
=head2 auto
|
|
|
|
Grants access to admin and reseller role.
|
|
|
|
=head2 sets_list
|
|
|
|
Basis for provisioning.voip_sound_sets.
|
|
Provides sets_rs in stash.
|
|
|
|
=head2 root
|
|
|
|
Display Sound Sets through F<sound/list.tt> template.
|
|
|
|
=head2 ajax
|
|
|
|
Get provisioning.voip_sound_sets from db and output them as JSON.
|
|
The format is meant for parsing with datatables.
|
|
|
|
=head2 base
|
|
|
|
Fetch a provisioning.voip_sound_sets row from the database by its id.
|
|
The resultset is exported to stash as "set_result".
|
|
|
|
=head2 edit
|
|
|
|
Show a modal to edit the Sound Set determined by L</base> using the form
|
|
L<NGCP::Panel::Form::SoundSet>.
|
|
|
|
=head2 delete
|
|
|
|
Delete the Sound Set determined by L</base>.
|
|
|
|
=head2 create
|
|
|
|
Show modal to create a new Sound Set using the form
|
|
L<NGCP::Panel::Form::SoundSet>.
|
|
|
|
=head2 handles_list
|
|
|
|
Basis for provisioning.voip_sound_handles grouped by voip_sound_groups with
|
|
the actual data in voip_sound_files.
|
|
Stashes:
|
|
* handles_base_uri: To show L</pattern_root>
|
|
* files_rs: Resultset of voip_sound_files in the current voip_sound_group
|
|
* sound_groups: Hashref of sound_goups with handles JOIN files inside
|
|
(used in the template F<sound/handles_list.tt>)
|
|
|
|
=head2 handles_root
|
|
|
|
Display Sound Files through F<sound/handles_list.tt> template accordion
|
|
grouped by sound_groups.
|
|
|
|
=head2 handles_base
|
|
|
|
Fetch a provisioning.voip_sound_files row from the database by the id
|
|
of the according voip_sound_handle. Create a new one if it doesn't exist but
|
|
do not immediately update the db.
|
|
The ResultClass is exported to stash as "file_result".
|
|
|
|
=head2 handles_edit
|
|
|
|
Show a modal to upload a file or set/unset loopplay using the form
|
|
L<NGCP::Panel::Form::SoundFile>.
|
|
|
|
=head2 handles_delete
|
|
|
|
Delete the Sound File determined by L</base>.
|
|
|
|
=head2 _clear_audio_cache
|
|
|
|
Ported from ossbss.
|
|
|
|
tells our application server to clear a specific audio file
|
|
|
|
=head1 AUTHOR
|
|
|
|
Gerhard Jungwirth C<< <gjungwirth@sipwise.com> >>
|
|
|
|
=head1 LICENSE
|
|
|
|
This library is free software. You can redistribute it and/or modify
|
|
it under the same terms as Perl itself.
|
|
|
|
=cut
|
|
|
|
# vim: set tabstop=4 expandtab:
|