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.
ngcp-panel/lib/NGCP/Panel/Controller/API/NumbersItem.pm

167 lines
5.6 KiB

package NGCP::Panel::Controller::API::NumbersItem;
use Sipwise::Base;
use NGCP::Panel::Utils::Generic qw(:all);
use parent qw/NGCP::Panel::Role::EntitiesItem NGCP::Panel::Role::API::Numbers/;
use HTTP::Status qw(:constants);
use JSON::Types;
__PACKAGE__->set_config({
allowed_roles => {
Default => [qw/admin reseller subscriberadmin/],
Journal => [qw/admin reseller/],
}
});
sub allowed_methods{
return [qw/GET PUT PATCH OPTIONS HEAD/];
}
sub journal_query_params {
my($self,$query_params) = @_;
return $self->get_journal_query_params($query_params);
}
sub get_journal_methods{
return [qw/handle_item_base_journal handle_journals_get handle_journalsitem_get handle_journals_options handle_journalsitem_options handle_journals_head handle_journalsitem_head handle_journalsitem_put handle_journalsitem_patch/];
}
sub update_item_model {
my ($self, $c, $item, $old_resource, $resource, $form) = @_;
my $schema = $c->model('DB');
# we maybe want to remove such checks to compare readonly fields:
foreach my $field(qw/cc ac sn is_primary/) {
unless(($old_resource->{$field} // '') eq ($resource->{$field} // '')
or ('JSON::false' eq ref $resource->{$field} and $old_resource->{$field} == 0)
or ('JSON::true' eq ref $resource->{$field} and $old_resource->{$field} == 1)) {
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, "Field '$field' is not allowed to be updated via this API endpoint, use /api/subscriber/\$id instead.");
return;
}
}
$form //= $self->get_form($c);
return unless $self->validate_form(
c => $c,
form => $form,
resource => $resource,
);
my $sub = $schema->resultset('voip_subscribers')
->find($resource->{subscriber_id});
unless($sub) {
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, "Invalid 'subscriber_id', does not exist.");
return;
}
if($c->user->roles eq "subscriberadmin" && $sub->contract_id != $c->user->account_id) {
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, "Invalid 'subscriber_id', does not exist.");
return;
}
my $old_sub = $schema->resultset('voip_subscribers')->find($old_resource->{subscriber_id});
if($old_sub->primary_number_id == $old_resource->{id}) {
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, "Cannot reassign primary number, already at subscriber ".$old_sub->id);
return;
}
try {
# capture old subscriber's aliases
my $old_aliases_before = NGCP::Panel::Utils::Events::get_aliases_snapshot(
c => $c,
schema => $schema,
subscriber => $old_sub,
);
# capture new subscriber's aliases
my $aliases_before = NGCP::Panel::Utils::Events::get_aliases_snapshot(
c => $c,
schema => $schema,
subscriber => $sub,
);
my $oldalias = [$old_sub->voip_numbers->all];
$oldalias = [ map {
if($_->id == $old_sub->primary_number_id) {
# filter primary number
();
} else {
if($_->id == $item->id) {
# filter number we're about to remove
();
} else {
# otherwise keep number
{ e164 => { cc => $_->cc, ac => $_->ac, sn => $_->sn } };
}
}
} @{ $oldalias } ];
NGCP::Panel::Utils::Subscriber::update_subscriber_numbers(
c => $c,
schema => $schema,
alias_numbers => $oldalias,
reseller_id => $old_sub->contract->contact->reseller_id,
subscriber_id => $old_sub->id,
);
my $newalias = [ $sub->voip_numbers->all ];
$newalias = [ map {
if($_->id == $sub->primary_number_id) {
# filter primary number
();
} else {
if($_->id == $item->id) {
# filter number we're about to remove
();
} else {
# otherwise keep number
{ e164 => { cc => $_->cc, ac => $_->ac, sn => $_->sn } };
}
}
} @{ $newalias } ];
push @{ $newalias }, { e164 => { cc => $item->cc, ac => $item->ac, sn => $item->sn } };
NGCP::Panel::Utils::Subscriber::update_subscriber_numbers(
c => $c,
schema => $schema,
alias_numbers => $newalias,
reseller_id => $sub->contract->contact->reseller_id,
subscriber_id => $sub->id,
);
# edr events for old sub
my $old_sub_profile = $old_sub->provisioning_voip_subscriber->profile_id;
NGCP::Panel::Utils::Events::insert_profile_events(
c => $c, schema => $schema, subscriber_id => $old_sub->id,
old => $old_sub_profile, new => $old_sub_profile,
%$old_aliases_before,
);
# edr events for new sub
my $new_sub_profile = $sub->provisioning_voip_subscriber->profile_id;
NGCP::Panel::Utils::Events::insert_profile_events(
c => $c, schema => $schema, subscriber_id => $sub->id,
old => $new_sub_profile, new => $new_sub_profile,
%$aliases_before,
);
} catch($e) {
$c->log->error("failed to update number: $e");
$self->error($c, HTTP_INTERNAL_SERVER_ERROR, "Failed to update number.");
return;
}
# reload item, in case the id changed (which shouldn't happen)
$item = $self->_item_rs($c)->find({
cc => $item->cc, ac => $item->ac, sn => $item->sn
});
return $item;
}
1;
# vim: set tabstop=4 expandtab: