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/Role/API/CustomerLocations.pm

143 lines
4.1 KiB

package NGCP::Panel::Role::API::CustomerLocations;
use NGCP::Panel::Utils::Generic qw(:all);
use Sipwise::Base;
use parent 'NGCP::Panel::Role::API';
use boolean qw(true);
use Data::HAL qw();
use Data::HAL::Link qw();
use HTTP::Status qw(:constants);
use JSON::Types;
use NGCP::Panel::Utils::ContractLocations qw();
sub get_form {
my ($self, $c) = @_;
return NGCP::Panel::Form::get("NGCP::Panel::Form::Customer::LocationAPI", $c);
}
sub hal_from_item {
my ($self, $c, $item, $type) = @_;
my $form;
my %resource = $item->get_inflated_columns;
my @blocks;
for my $block ($item->voip_contract_location_blocks->all) {
my %blockelem = $block->get_inflated_columns;
delete $blockelem{id};
delete $blockelem{network_id};
delete $blockelem{_ipv4_net_from};
delete $blockelem{_ipv4_net_to};
delete $blockelem{_ipv6_net_from};
delete $blockelem{_ipv6_net_to};
push @blocks, \%blockelem;
}
$resource{blocks} = \@blocks;
my $hal = Data::HAL->new(
links => [
Data::HAL::Link->new(
relation => 'curies',
href => 'http://purl.org/sipwise/ngcp-api/#rel-{rel}',
name => 'ngcp',
templated => true,
),
Data::HAL::Link->new(relation => 'collection', href => sprintf("%s", $self->dispatch_path)),
Data::HAL::Link->new(relation => 'profile', href => 'http://purl.org/sipwise/ngcp-api/'),
Data::HAL::Link->new(relation => 'self', href => sprintf("%s%d", $self->dispatch_path, $item->id)),
Data::HAL::Link->new(relation => "ngcp:$type", href => sprintf("/api/%s/%d", $type, $item->id)),
$self->get_journal_relation_link($c, $item->id),
],
relation => 'ngcp:'.$self->resource_name,
);
$form //= $self->get_form($c);
return unless $self->validate_form(
c => $c,
form => $form,
resource => \%resource,
run => 0,
);
$self->expand_fields($c, \%resource);
$hal->resource(\%resource);
return $hal;
}
sub _item_rs {
my ($self, $c) = @_;
my $item_rs = $c->model('DB')->resultset('voip_contract_locations');
if ($c->user->roles eq "reseller") {
$item_rs->search({ 'contacts.reseller_id' => $c->user->reseller_id },
{ join => { 'contracts' => 'contacts' } });
}
return $item_rs;
}
sub item_by_id {
my ($self, $c, $id) = @_;
my $item_rs = $self->item_rs($c);
return $item_rs->find($id);
}
sub update_item {
my ($self, $c, $item, $old_resource, $resource, $form) = @_;
delete $resource->{id};
my $schema = $c->model('DB');
$form //= $self->get_form($c);
return unless $self->validate_form(
c => $c,
form => $form,
resource => $resource,
);
return unless NGCP::Panel::Utils::ContractLocations::check_network_update_item($c,$resource,$item,sub {
my ($err) = @_;
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, $err);
});
return unless $self->prepare_blocks_resource($c,$resource);
my $blocks = delete $resource->{blocks};
try {
$item->update($resource);
$item->voip_contract_location_blocks->delete;
for my $block (@$blocks) {
$item->create_related("voip_contract_location_blocks", $block);
}
$item->discard_changes;
} catch($e) {
$self->error($c, HTTP_INTERNAL_SERVER_ERROR, "Failed to create customer location.", $e);
return;
};
return $item;
}
sub prepare_blocks_resource {
my ($self,$c,$resource) = @_;
if (! exists $resource->{blocks} ) {
$resource->{blocks} = [];
}
if (ref $resource->{blocks} ne "ARRAY") {
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, "Invalid field 'blocks'. Must be an array.");
return 0;
}
return NGCP::Panel::Utils::ContractLocations::set_blocks_from_to($resource->{blocks},sub {
my ($err) = @_;
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, $err);
});
}
1;
# vim: set tabstop=4 expandtab: