94 lines
2.7 KiB
94 lines
2.7 KiB
package NGCP::Panel::Controller::API::RewriteRules;
|
|
|
|
use parent qw/NGCP::Panel::Role::Entities NGCP::Panel::Role::API::RewriteRules/;
|
|
|
|
use Sipwise::Base;
|
|
use NGCP::Panel::Utils::Generic qw(:all);
|
|
|
|
use HTTP::Status qw(:constants);
|
|
|
|
__PACKAGE__->set_config({
|
|
own_transaction_control => { POST => 1 },
|
|
});
|
|
|
|
sub allowed_methods{
|
|
return [qw/GET POST OPTIONS HEAD/];
|
|
}
|
|
|
|
sub api_description {
|
|
return 'Defines a set of Rewrite Rules which are grouped in <a href="#rewriterulesets">Rewrite Rule Sets</a>. They can be used to alter incoming and outgoing numbers.';
|
|
};
|
|
|
|
sub query_params {
|
|
return [
|
|
{
|
|
param => 'description',
|
|
description => 'Filter rules for a certain description',
|
|
query_type => 'wildcard',
|
|
},
|
|
{
|
|
param => 'set_id',
|
|
description => 'Filter for rules belonging to a specific rewriteruleset.',
|
|
query_type => 'string_eq',
|
|
},
|
|
{
|
|
param => 'reseller_id',
|
|
description => 'Filter for rules belonging to a specific reseller.',
|
|
query => {
|
|
first => sub {
|
|
my $q = shift;
|
|
return { 'ruleset.reseller_id' => $q };
|
|
},
|
|
second => sub { join => 'ruleset' },
|
|
},
|
|
},
|
|
{
|
|
param => 'direction',
|
|
description => 'Filter for rules belonging to a specific direction.',
|
|
query_type => 'string_eq',
|
|
},
|
|
{
|
|
param => 'field',
|
|
description => 'Filter for rules belonging to a specific field (caller or callee).',
|
|
query_type => 'string_eq',
|
|
},
|
|
];
|
|
}
|
|
|
|
sub create_item {
|
|
my ($self, $c, $resource, $form, $process_extras) = @_;
|
|
my $schema = $c->model('DB');
|
|
my $guard = $schema->txn_scope_guard;
|
|
|
|
my $item;
|
|
|
|
try {
|
|
unless ($form->values->{priority}) {
|
|
my $res = $c->model('DB')->resultset('voip_rewrite_rules')->search({
|
|
set_id => $form->values->{set_id},
|
|
},{
|
|
columns => [
|
|
{ max_priority => \'MAX(priority)' },
|
|
]
|
|
})->first;
|
|
if ($res) {
|
|
my %cols = $res->get_inflated_columns;
|
|
if ($cols{max_priority}) {
|
|
$resource->{priority} = $cols{max_priority} + 1;
|
|
}
|
|
}
|
|
}
|
|
$item = $schema->resultset('voip_rewrite_rules')->create($resource);
|
|
} catch($e) {
|
|
$self->error($c, HTTP_INTERNAL_SERVER_ERROR, "Failed to create rewriterule.", $e);
|
|
return;
|
|
}
|
|
$guard->commit;
|
|
NGCP::Panel::Utils::Rewrite::sip_dialplan_reload($c);
|
|
|
|
return $item;
|
|
}
|
|
1;
|
|
|
|
# vim: set tabstop=4 expandtab:
|