package NGCP::Panel::Controller::API::Contracts; use NGCP::Panel::Utils::Generic qw(:all); use Sipwise::Base; use boolean qw(true); use Data::HAL qw(); use Data::HAL::Link qw(); use HTTP::Headers qw(); use HTTP::Status qw(:constants); use NGCP::Panel::Utils::DateTime; use NGCP::Panel::Utils::Contract; use NGCP::Panel::Utils::ProfilePackages qw(); use Path::Tiny qw(path); require Catalyst::ActionRole::ACL; require Catalyst::ActionRole::CheckTrailingSlash; require NGCP::Panel::Role::HTTPMethods; require Catalyst::ActionRole::RequireSSL; sub allowed_methods{ return [qw/GET POST OPTIONS HEAD/]; } sub api_description { return 'Defines a billing container for peerings and resellers. A Billing Profile is assigned to a contract, and it has Contract Balances indicating the saldo of the contract for current and past billing intervals.'; }; sub query_params { return [ { param => 'contact_id', description => 'Filter for contracts with a specific contact id', query => { first => sub { my $q = shift; { contact_id => $q }; }, second => sub {}, }, }, { param => 'status', description => 'Filter for contracts with a specific status (except "terminated")', query => { first => sub { my $q = shift; { 'me.status' => $q }; }, second => sub {}, }, }, { param => 'external_id', description => 'Filter for contracts with a specific external id', query => { first => sub { my $q = shift; { 'me.external_id' => { like => $q } }; }, second => sub {}, }, }, ]; } use parent qw/Catalyst::Controller NGCP::Panel::Role::API::Contracts/; sub resource_name{ return 'contracts'; } sub dispatch_path{ return '/api/contracts/'; } sub relation{ return 'http://purl.org/sipwise/ngcp-api/#rel-contracts'; } __PACKAGE__->config( action => { map { $_ => { ACLDetachTo => '/api/root/invalid_user', AllowedRole => 'admin', Args => 0, Does => [qw(ACL CheckTrailingSlash RequireSSL)], Method => $_, Path => __PACKAGE__->dispatch_path, } } @{ __PACKAGE__->allowed_methods }, }, action_roles => [qw(+NGCP::Panel::Role::HTTPMethods)], ); sub auto :Private { my ($self, $c) = @_; $self->set_body($c); $self->log_request($c); #$self->apply_fake_time($c); return 1; } sub GET :Allow { my ($self, $c) = @_; 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; my $contracts_rs = $self->item_rs($c,0,$now); (my $total_count, $contracts_rs) = $self->paginate_order_collection($c, $contracts_rs); my $contracts = NGCP::Panel::Utils::ProfilePackages::lock_contracts(c => $c, rs => $contracts_rs, contract_id_field => 'id'); my (@embedded, @links); my $form = $self->get_form($c); for my $contract (@$contracts) { #NGCP::Panel::Utils::ProfilePackages::get_contract_balance push @embedded, $self->hal_from_contract($c, $contract, $form, $now); push @links, Data::HAL::Link->new( relation => 'ngcp:'.$self->resource_name, href => sprintf('/%s%d', $c->request->path, $contract->id), ); } $self->delay_commit($c,$guard); #potential db write ops in hal_from 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/'); push @links, $self->collection_nav_links($page, $rows, $total_count, $c->request->path, $c->request->query_params); # Data::HAL::Link->new(relation => 'self', href => sprintf('/%s?page=%s&rows=%s', $c->request->path, $page, $rows)); #if(($total_count / $rows) > $page ) { # push @links, Data::HAL::Link->new(relation => 'next', href => sprintf('/%s?page=%d&rows=%d', $c->request->path, $page + 1, $rows)); #} #if($page > 1) { # push @links, Data::HAL::Link->new(relation => 'prev', href => sprintf('/%s?page=%d&rows=%d', $c->request->path, $page - 1, $rows)); #} 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 HEAD :Allow { my ($self, $c) = @_; $c->forward(qw(GET)); $c->response->body(q()); return; } sub OPTIONS :Allow { my ($self, $c) = @_; my $allowed_methods = $self->allowed_methods_filtered($c); $c->response->headers(HTTP::Headers->new( Allow => join(', ', @{ $allowed_methods }), Accept_Post => 'application/hal+json; profile=http://purl.org/sipwise/ngcp-api/#rel-'.$self->resource_name, )); $c->response->content_type('application/json'); $c->response->body(JSON::to_json({ methods => $allowed_methods })."\n"); return; } sub POST :Allow { my ($self, $c) = @_; my $guard = $c->model('DB')->txn_scope_guard; { my $schema = $c->model('DB'); my $resource = $self->get_valid_post_data( c => $c, media_type => 'application/json', ); last unless $resource; my $form = $self->get_form($c); $resource->{contact_id} //= undef; last unless $self->validate_form( c => $c, resource => $resource, form => $form, exceptions => [ "contact_id", "billing_profile_id" ], ); my $syscontact = $schema->resultset('contacts') ->search({ 'me.status' => { '!=' => 'terminated' }, })->find($resource->{contact_id}); unless($syscontact) { $self->error($c, HTTP_UNPROCESSABLE_ENTITY, "Invalid 'contact_id'"); last; } my $mappings_to_create = []; last unless NGCP::Panel::Utils::Contract::prepare_billing_mappings( c => $c, resource => $resource, old_resource => undef, mappings_to_create => $mappings_to_create, err_code => sub { my ($err) = @_; #$c->log->error($err); $self->error($c, HTTP_UNPROCESSABLE_ENTITY, $err); }); my $product_class = delete $resource->{type}; my $product = $schema->resultset('products')->find({ class => $product_class }); unless($product) { $self->error($c, HTTP_UNPROCESSABLE_ENTITY, "Invalid 'type'."); last; } my $now = NGCP::Panel::Utils::DateTime::current_local; $resource->{create_timestamp} = $now; $resource->{modify_timestamp} = $now; my $contract; try { $contract = $schema->resultset('contracts')->create($resource); } catch($e) { $c->log->error("failed to create contract: $e"); # TODO: user, message, trace, ... $self->error($c, HTTP_INTERNAL_SERVER_ERROR, "Failed to create contract."); last; } if($contract->contact->reseller_id) { $self->error($c, HTTP_UNPROCESSABLE_ENTITY, "The contact_id is not a valid ngcp:systemcontacts item, but an ngcp:customercontacts item"); last; } try { foreach my $mapping (@$mappings_to_create) { $contract->billing_mappings->create($mapping); } $contract = $self->contract_by_id($c, $contract->id,1,$now); NGCP::Panel::Utils::ProfilePackages::create_initial_contract_balances(c => $c, contract => $contract, #bm_actual => $contract->billing_mappings->find($contract->get_column('bmid')), ); #NGCP::Panel::Utils::Contract::create_contract_balance( # c => $c, # profile => $contract->billing_mappings->find($contract->get_column('bmid'))->billing_profile, #$billing_profile, # contract => $contract, #); } catch($e) { $c->log->error("failed to create contract: $e"); # TODO: user, message, trace, ... $self->error($c, HTTP_INTERNAL_SERVER_ERROR, "Failed to create contract."); last; } last unless $self->add_create_journal_item_hal($c,sub { my $self = shift; my ($c) = @_; my $_contract = $self->contract_by_id($c, $contract->id, 1); return $self->hal_from_contract($c,$_contract,$form,$now); }); $guard->commit; $c->response->status(HTTP_CREATED); $c->response->header(Location => sprintf('/%s%d', $c->request->path, $contract->id)); $c->response->body(q()); } return; } sub end : Private { my ($self, $c) = @_; #$self->reset_fake_time($c); $self->log_response($c); return; } 1; # vim: set tabstop=4 expandtab: