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/BalanceIntervalsItem.pm

207 lines
6.3 KiB

package NGCP::Panel::Controller::API::BalanceIntervalsItem;
use NGCP::Panel::Utils::Generic qw(:all);
use Sipwise::Base;
use boolean qw(true);
use HTTP::Headers qw();
use HTTP::Status qw(:constants);
use NGCP::Panel::Utils::DateTime;
use NGCP::Panel::Utils::ValidateJSON qw();
require Catalyst::ActionRole::ACL;
require NGCP::Panel::Role::HTTPMethods;
require Catalyst::ActionRole::RequireSSL;
sub allowed_methods{
return [qw/GET OPTIONS HEAD/];
}
use parent qw/NGCP::Panel::Role::EntitiesItem NGCP::Panel::Role::API::BalanceIntervals/;
sub resource_name{
return 'balanceintervals';
}
sub dispatch_path{
return '/api/balanceintervals/';
}
sub relation{
return 'http://purl.org/sipwise/ngcp-api/#rel-balanceintervals';
}
#sub journal_query_params {
# my($self,$query_params) = @_;
# return $self->get_journal_query_params($query_params);
#}
sub query_params {
return [
{
param => 'start',
description => 'Filter balance intervals starting after or at the specified time stamp.',
query => {
first => sub {
my $q = shift;
my $dt = NGCP::Panel::Utils::DateTime::from_string($q);
return { 'start' => { '>=' => $dt } };
},
second => sub { },
},
},
#the end value of intervals is not constant along the retrieval operations
];
}
__PACKAGE__->set_config({
allowed_roles => [qw/admin reseller ccareadmin ccare/],
required_licenses => [qw/billing/],
action_add => {
item_base => {
Chained => '/',
PathPart => 'api/' . __PACKAGE__->resource_name,
CaptureArgs => 1,
},
item_get => {
Chained => 'item_base',
PathPart => '',
Args => 1,
Method => 'GET',
ACLDetachTo => '/api/root/invalid_user',
AllowedRole => [qw/admin reseller/],
Does => [qw(ACL RequireSSL)]
},
item_options => {
Chained => 'item_base',
PathPart => '',
Args => 1,
Method => 'OPTIONS',
ACLDetachTo => '/api/root/invalid_user',
AllowedRole => [qw/admin reseller/],
Does => [qw(ACL RequireSSL)]
},
item_head => {
Chained => 'item_base',
PathPart => '',
Args => 1,
Method => 'HEAD',
ACLDetachTo => '/api/root/invalid_user',
AllowedRole => [qw/admin reseller/],
Does => [qw(ACL RequireSSL)]
},
}
});
sub GET :Allow {
my ($self, $c, $id) = @_;
my $page = $c->request->params->{page} // 1;
my $rows = $c->request->params->{rows} // 10;
$c->model('DB')->set_transaction_isolation('READ COMMITTED');
my $guard = $c->model('DB')->txn_scope_guard;
{
my $now = NGCP::Panel::Utils::DateTime::current_local;
last unless $self->valid_id($c, $id);
my $contract = $self->contract_by_id($c, $id);
last unless $self->resource_exists($c, contract => $contract);
my $balances = $self->balances_rs($c,$contract,$now);
(my $total_count, $balances, my $balances_rows) = $self->paginate_order_collection($c, $balances);
my (@embedded, @links);
my $form = $self->get_form($c);
for my $balance (@$balances_rows) {
my $hal = $self->hal_from_balance($c, $balance, $form, $now);
$hal->_forcearray(1);
push @embedded, $hal;
my $link = Data::HAL::Link->new(
relation => 'ngcp:'.$self->resource_name,
href => sprintf('/%s%d', $c->request->path, $balance->id),
);
$link->_forcearray(1);
push @links, $link;
}
$guard->commit;
push @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 => 'profile', href => 'http://purl.org/sipwise/ngcp-api/'),
$self->collection_nav_links($c, $page, $rows, $total_count, $c->request->path, $c->request->query_params);
my $hal = Data::HAL->new(
embedded => [@embedded],
links => [@links],
);
$hal->resource({
total_count => $total_count,
});
my $response = HTTP::Response->new(HTTP_OK, undef,
HTTP::Headers->new($hal->http_headers(skip_links => 1)), $hal->as_json);
$c->response->headers($response->headers);
$c->response->body($response->content);
return;
}
return;
}
sub item_base {
my ($self,$c,$id) = @_;
$c->stash->{contract_id} = $id;
return;
}
sub item_get {
my ($self,$c,$id) = @_;
$c->model('DB')->set_transaction_isolation('READ COMMITTED');
my $guard = $c->model('DB')->txn_scope_guard;
{
my $now = NGCP::Panel::Utils::DateTime::current_local;
my $contract_id = $c->stash->{contract_id};
last unless $self->valid_id($c, $contract_id);
my $contract = $self->contract_by_id($c, $contract_id);
last unless $self->resource_exists($c, contract => $contract);
my $balance = undef;
if ($self->valid_id($c, $id)) {
$balance = $self->balance_by_id($c,$contract,$id,$now);
} else {
last;
}
last unless $self->resource_exists($c, balanceinterval => $balance);
my $form = $self->get_form($c);
my $hal = $self->hal_from_balance($c,$balance,$form,$now);
$guard->commit;
$c->response->headers(HTTP::Headers->new($hal->http_headers));
$c->response->body($hal->as_json);
return;
}
return;
}
sub item_options {
my ($self, $c, $id) = @_;
my $allowed_methods = [ 'GET', 'HEAD', 'OPTIONS' ];
$c->response->headers(HTTP::Headers->new(
Allow => join(', ', @{ $allowed_methods }),
Accept_Patch => 'application/json-patch+json',
));
$c->response->content_type('application/json');
$c->response->body(JSON::to_json({ methods => $allowed_methods })."\n");
return;
}
sub item_head {
my ($self, $c, $id) = @_;
$c->forward('item_get');
$c->response->body(q());
return;
}
1;