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.
148 lines
4.3 KiB
148 lines
4.3 KiB
package NGCP::Panel::Role::API::CFTimeSets;
|
|
use Moose::Role;
|
|
use Sipwise::Base;
|
|
with 'NGCP::Panel::Role::API' => {
|
|
-alias =>{ item_rs => '_item_rs', },
|
|
-excludes => [ 'item_rs' ],
|
|
};
|
|
|
|
use boolean qw(true);
|
|
use TryCatch;
|
|
use Data::HAL qw();
|
|
use Data::HAL::Link qw();
|
|
use HTTP::Status qw(:constants);
|
|
use JSON::Types;
|
|
use NGCP::Panel::Utils::Subscriber;
|
|
use NGCP::Panel::Form::CFTimeSetAPI;
|
|
|
|
sub get_form {
|
|
my ($self, $c) = @_;
|
|
return NGCP::Panel::Form::CFTimeSetAPI->new;
|
|
}
|
|
|
|
sub hal_from_item {
|
|
my ($self, $c, $item, $type) = @_;
|
|
my $form;
|
|
|
|
my %resource = $item->get_inflated_columns;
|
|
my @times;
|
|
for my $time ($item->voip_cf_periods->all) {
|
|
my $timeelem = {$time->get_inflated_columns};
|
|
delete $timeelem->{'id'};
|
|
push @times, $timeelem;
|
|
}
|
|
$resource{times} = \@times;
|
|
|
|
my $b_subs_id = $item->subscriber->voip_subscriber->id;
|
|
$resource{subscriber_id} = $b_subs_id;
|
|
|
|
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)),
|
|
Data::HAL::Link->new(relation => "ngcp:subscribers", href => sprintf("/api/subscribers/%d", $b_subs_id)),
|
|
$self->get_journal_relation_link($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,
|
|
exceptions => [ "subscriber_id" ],
|
|
);
|
|
$hal->resource(\%resource);
|
|
return $hal;
|
|
}
|
|
|
|
sub item_rs {
|
|
my ($self, $c) = @_;
|
|
my $item_rs;
|
|
|
|
if($c->user->roles eq "admin") {
|
|
$item_rs = $c->model('DB')->resultset('voip_cf_time_sets');
|
|
} elsif ($c->user->roles eq "reseller") {
|
|
my $reseller_id = $c->user->reseller_id;
|
|
$item_rs = $c->model('DB')->resultset('voip_cf_time_sets')
|
|
->search_rs({
|
|
'reseller_id' => $reseller_id,
|
|
} , {
|
|
join => {'subscriber' => {'contract' => 'contact'} },
|
|
});
|
|
}
|
|
|
|
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');
|
|
|
|
return unless $self->validate_form(
|
|
c => $c,
|
|
form => $form,
|
|
resource => $resource,
|
|
exceptions => [ "subscriber_id" ],
|
|
);
|
|
|
|
if (! exists $resource->{times} ) {
|
|
$resource->{times} = [];
|
|
}
|
|
if (ref $resource->{times} ne "ARRAY") {
|
|
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, "Invalid field 'times'. Must be an array.");
|
|
return;
|
|
}
|
|
|
|
my $b_subscriber = $schema->resultset('voip_subscribers')->find($resource->{subscriber_id});
|
|
unless ($b_subscriber) {
|
|
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, "Invalid 'subscriber_id'.");
|
|
return;
|
|
}
|
|
my $subscriber = $b_subscriber->provisioning_voip_subscriber;
|
|
unless($subscriber) {
|
|
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, "Invalid subscriber.");
|
|
last;
|
|
}
|
|
|
|
try {
|
|
$item->update({
|
|
name => $resource->{name},
|
|
subscriber_id => $subscriber->id,
|
|
})->discard_changes;
|
|
$item->voip_cf_periods->delete;
|
|
for my $t ( @{$resource->{times}} ) {
|
|
delete $t->{time_set_id};
|
|
$item->create_related("voip_cf_periods", $t);
|
|
}
|
|
} catch($e) {
|
|
$c->log->error("failed to create cftimeset: $e");
|
|
$self->error($c, HTTP_INTERNAL_SERVER_ERROR, "Failed to create cftimeset.");
|
|
return;
|
|
};
|
|
|
|
return $item;
|
|
}
|
|
|
|
1;
|
|
# vim: set tabstop=4 expandtab:
|