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

176 lines
5.0 KiB

package NGCP::Panel::Role::API::CustomerFraudPreferences;
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::Contract qw();
sub get_form {
my ($self, $c) = @_;
return NGCP::Panel::Form::get("NGCP::Panel::Form::CustomerFraudPreferences::PreferencesAPI", $c);
}
sub hal_from_item {
my ($self, $c, $customer, $form) = @_;
my $resource = $self->resource_from_item($c,$customer,$form);
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("/api/%s/", $self->resource_name)),
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, $customer->id)),
Data::HAL::Link->new(relation => 'ngcp:customers', href => sprintf("/api/customers/%d", $customer->id)),
$self->get_journal_relation_link($c, $customer->id),
],
relation => 'ngcp:'.$self->resource_name,
);
$form //= $self->get_form($c);
$self->validate_form(
c => $c,
resource => $resource,
form => $form,
run => 0,
);
$self->expand_fields($c, $resource);
$hal->resource($resource);
return $hal;
}
sub resource_from_item {
my ($self, $c, $customer, $form) = @_;
my $item = $customer->contract_fraud_preference;
my $bp_item = $customer->actual_billing_profile->billing_profile;
my $resource;
my ($prefs, $bp_prefs);
$bp_prefs = { $bp_item->get_inflated_columns };
$prefs = $item ? { $item->get_inflated_columns } : undef;
if ($prefs) {
$resource = $prefs;
delete $resource->{contract_id};
delete $resource->{id};
} else {
$resource = {
fraud_interval_limit => undef,
fraud_interval_lock => undef,
fraud_interval_notify => undef,
fraud_daily_limit => undef,
fraud_daily_lock => undef,
fraud_daily_notify => undef,
}
}
foreach my $type (qw(interval daily)) {
my $prefix = 'fraud_'.$type.'_';
my $c_prefix = 'current_fraud_'.$type.'_';
$resource->{$c_prefix.'source'} =
$prefs && $prefs->{$prefix.'limit'}
? 'customer'
: 'billing_profile';
my $sel_prefs =
$resource->{$c_prefix.'source'} eq 'customer'
? $prefs
: $bp_prefs;
map {
$resource->{$c_prefix.$_} = $sel_prefs->{$prefix.$_}
} qw(limit lock notify);
}
return $resource;
}
sub _item_rs {
my ($self, $c, $include_terminated) = @_;
my $customer_rs = $c->model('DB')->resultset('contracts')->search({
$include_terminated ? () : ('me.status' => { '!=' => 'terminated' })
}, {
join => 'contact',
alias => 'me',
});
if($c->user->roles eq "admin") {
$customer_rs = $customer_rs->search({
'contact.reseller_id' => { '-not' => undef },
});
} elsif($c->user->roles eq "reseller") {
$customer_rs = $customer_rs->search({
'contact.reseller_id' => $c->user->reseller_id,
});
}
return $customer_rs;
}
sub item_by_id {
my ($self, $c, $id, $include_terminated) = @_;
return $self->_item_rs($c,$include_terminated)->find($id);
}
sub update_item {
my ($self, $c, $customer, $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,
);
$resource->{contract_id} = $customer->id;
foreach my $type (qw(interval daily)) {
if (not defined $resource->{'fraud_'.$type.'_limit'}) {
if (defined $resource->{'fraud_'.$type.'_lock'}) {
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, 'for cleared fraud_'.$type.'_limit, fraud_'.$type.'_lock must be cleared too.');
return;
}
if (defined $resource->{'fraud_'.$type.'_notify'}) {
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, 'for cleared fraud_'.$type.'_limit, fraud_'.$type.'_notify must be cleared too.');
return;
}
}
}
try {
my $item = $c->model('DB')->resultset('contract_fraud_preferences')->update_or_create($resource,{
key => 'contract_id'
});
$customer = $item->contract;
} catch($e) {
$self->error($c, HTTP_INTERNAL_SERVER_ERROR, "Failed to set customer fraud preference", $e);
return;
};
return $customer;
}
1;