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.
136 lines
4.6 KiB
136 lines
4.6 KiB
package NGCP::Panel::Controller::API::Faxes;
|
|
use NGCP::Panel::Utils::Generic qw(:all);
|
|
|
|
use Sipwise::Base;
|
|
|
|
use parent qw/NGCP::Panel::Role::Entities NGCP::Panel::Role::API::Faxes/;
|
|
|
|
use HTTP::Headers qw();
|
|
use HTTP::Status qw(:constants);
|
|
use Encode qw/decode_utf8/;
|
|
|
|
use NGCP::Panel::Utils::DateTime;
|
|
use NGCP::Panel::Utils::API::Subscribers;
|
|
use NGCP::Panel::Utils::Fax;
|
|
|
|
__PACKAGE__->set_config({
|
|
allowed_roles => [qw/admin reseller subscriberadmin subscriber/],
|
|
required_licenses => [qw/fax/],
|
|
dont_validate_hal => 1,
|
|
no_item_created => 1,
|
|
backward_allow_empty_upload => 1,
|
|
POST => {
|
|
'ContentType' => ['multipart/form-data','application/json'],
|
|
'Uploads' => [qw/faxfile/],
|
|
},
|
|
});
|
|
|
|
sub allowed_methods{
|
|
return [qw/GET POST OPTIONS HEAD/];
|
|
}
|
|
|
|
sub api_description {
|
|
return 'Defines the meta information like duration, sender etc for fax recordings. The actual recordings can be fetched via the <a href="#faxrecordings">FaxRecordings</a> relation. NOTE: There is no Location header in the POST method response, as creation is asynchronous.';
|
|
};
|
|
|
|
sub query_params {
|
|
return [
|
|
{
|
|
param => 'tz',
|
|
description => 'Format timestamp according to the optional time zone provided here, e.g. Europe/Berlin.',
|
|
},
|
|
{
|
|
param => 'use_owner_tz',
|
|
description => 'Format timestamp according to the filtered customer\'s/subscribers\'s inherited time zone.',
|
|
},
|
|
{
|
|
param => 'subscriber_id',
|
|
description => 'Filter for faxes belonging to a specific subscriber',
|
|
query => {
|
|
first => sub {
|
|
my $q = shift;
|
|
# join is already done in get_item_rs
|
|
{ 'voip_subscriber.id' => $q };
|
|
},
|
|
second => sub { },
|
|
},
|
|
},
|
|
{
|
|
param => 'time_from',
|
|
description => 'Filter for faxes performed after or at the given timestamp.',
|
|
query => {
|
|
first => sub {
|
|
my $q = shift;
|
|
my $dt = NGCP::Panel::Utils::DateTime::from_string($q);
|
|
return { 'me.time' => { '>=' => $dt->epoch } };
|
|
},
|
|
second => sub { },
|
|
},
|
|
},
|
|
{
|
|
param => 'time_to',
|
|
description => 'Filter for faxes performed before or at the given timestamp.',
|
|
query => {
|
|
first => sub {
|
|
my $q = shift;
|
|
my $dt = NGCP::Panel::Utils::DateTime::from_string($q);
|
|
return { 'me.time' => { '<=' => $dt->epoch } };
|
|
},
|
|
second => sub { },
|
|
},
|
|
},
|
|
{
|
|
param => 'sid',
|
|
description => 'Filter for a fax with the specific session id',
|
|
query_type => 'string_eq',
|
|
},
|
|
{
|
|
param => 'number_rewrite_mode',
|
|
description => "Force the number normalization logic (available: 'default', 'extended').",
|
|
},
|
|
];
|
|
}
|
|
|
|
sub create_item {
|
|
my ($self, $c, $resource, $form, $process_extras) = @_;
|
|
|
|
if (!$c->config->{features}->{faxserver}) {
|
|
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, "Faxserver feature is not active.");
|
|
return;
|
|
}
|
|
|
|
my $billing_subscriber = NGCP::Panel::Utils::API::Subscribers::get_active_subscriber($self, $c, $resource->{subscriber_id});
|
|
unless($billing_subscriber) {
|
|
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, "Fax subscriber not found.",
|
|
"invalid subscriber id $$resource{subscriber_id} for fax send");
|
|
return;
|
|
}
|
|
my $prov_subscriber = $billing_subscriber->provisioning_voip_subscriber;
|
|
return unless $prov_subscriber;
|
|
my $faxpref = $prov_subscriber->voip_fax_preference;
|
|
unless ($faxpref && $faxpref->active){
|
|
$self->error($c, HTTP_UNPROCESSABLE_ENTITY, "Invalid subscriber fax preferences");
|
|
return;
|
|
}
|
|
try {
|
|
$c->log->debug("contacting fax server");
|
|
my $output = NGCP::Panel::Utils::Fax::send_fax(
|
|
c => $c,
|
|
subscriber => $billing_subscriber,
|
|
destination => $form->values->{destination},
|
|
upload => $form->values->{faxfile},
|
|
data => $c->req->headers->content_type eq 'multipart/form-data' ? decode_utf8($form->values->{data}) : $form->values->{data}
|
|
);
|
|
$c->log->debug("faxserver output:\n");
|
|
$c->log->debug($output);
|
|
} catch($e) {
|
|
$self->error($c, HTTP_INTERNAL_SERVER_ERROR, "Internal Server Error", "failed to send fax", $e);
|
|
return;
|
|
};
|
|
return;
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set tabstop=4 expandtab:
|