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.
239 lines
6.6 KiB
239 lines
6.6 KiB
package NGCP::Panel::Controller::API::Root;
|
|
use Sipwise::Base;
|
|
use namespace::sweep;
|
|
use Encode qw(encode);
|
|
use HTTP::Headers qw();
|
|
use HTTP::Response qw();
|
|
use HTTP::Status qw(:constants);
|
|
use MooseX::ClassAttribute qw(class_has);
|
|
use File::Find::Rule;
|
|
BEGIN { extends 'Catalyst::Controller'; }
|
|
require Catalyst::ActionRole::ACL;
|
|
require Catalyst::ActionRole::CheckTrailingSlash;
|
|
require Catalyst::ActionRole::HTTPMethods;
|
|
require Catalyst::ActionRole::RequireSSL;
|
|
|
|
with 'NGCP::Panel::Role::API';
|
|
|
|
class_has('dispatch_path', is => 'ro', default => '/api/');
|
|
|
|
__PACKAGE__->config(
|
|
action => {
|
|
map { $_ => {
|
|
ACLDetachTo => 'invalid_user',
|
|
AllowedRole => [qw/admin reseller/],
|
|
Args => 0,
|
|
Does => [qw(ACL CheckTrailingSlash RequireSSL)],
|
|
Method => $_,
|
|
Path => __PACKAGE__->dispatch_path,
|
|
} } @{ __PACKAGE__->allowed_methods }
|
|
},
|
|
action_roles => [qw(HTTPMethods)],
|
|
);
|
|
|
|
sub auto :Private {
|
|
my ($self, $c) = @_;
|
|
|
|
$self->set_body($c);
|
|
$self->log_request($c);
|
|
}
|
|
|
|
sub GET : Allow {
|
|
my ($self, $c) = @_;
|
|
|
|
my $blacklist = {
|
|
"DomainPreferenceDefs" => 1,
|
|
"SubscriberPreferenceDefs" => 1,
|
|
};
|
|
|
|
my @colls = $self->get_collections;
|
|
foreach my $coll(@colls) {
|
|
my $mod = $coll;
|
|
$mod =~ s/^.+\/([a-zA-Z0-9_]+)\.pm$/$1/;
|
|
next if(exists $blacklist->{$mod});
|
|
my $rel = lc $mod;
|
|
my $full_mod = 'NGCP::Panel::Controller::API::'.$mod;
|
|
|
|
my $role = $full_mod->config->{action}->{GET}->{AllowedRole};
|
|
if(ref $role eq "ARRAY") {
|
|
next unless grep @{ $role }, $c->user->roles;
|
|
} else {
|
|
next unless $role eq $c->user->roles;
|
|
}
|
|
|
|
my $query_params = [];
|
|
if($full_mod->can('query_params')) {
|
|
$query_params = $full_mod->query_params;
|
|
}
|
|
|
|
my $form = $full_mod->get_form($c);
|
|
$c->stash->{collections}->{$rel} = {
|
|
name => $mod,
|
|
description => $full_mod->api_description,
|
|
fields => $form ? $self->get_collection_properties($form) : [],
|
|
query_params => $query_params,
|
|
};
|
|
}
|
|
|
|
$c->stash(template => 'api/root.tt');
|
|
$c->forward($c->view);
|
|
$c->response->headers(HTTP::Headers->new(
|
|
Content_Language => 'en',
|
|
Content_Type => 'application/xhtml+xml',
|
|
#$self->collections_link_headers,
|
|
));
|
|
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;
|
|
$c->response->headers(HTTP::Headers->new(
|
|
Allow => $allowed_methods->join(', '),
|
|
$self->collections_link_headers,
|
|
));
|
|
$c->response->content_type('application/json');
|
|
$c->response->body(JSON::to_json({ methods => $allowed_methods })."\n");
|
|
return;
|
|
}
|
|
|
|
sub get_collections {
|
|
my ($self) = @_;
|
|
|
|
# figure out base path of our api modules
|
|
my $libpath = $INC{"NGCP/Panel/Controller/API/Root.pm"};
|
|
$libpath =~ s/Root\.pm$//;
|
|
|
|
# find all modules not called Root.pm and *Item.pm
|
|
# (which should then be just collections)
|
|
my $rootrule = File::Find::Rule->new->name('Root.pm');
|
|
my $itemrule = File::Find::Rule->new->name('*Item.pm');
|
|
my $rule = File::Find::Rule->new
|
|
->mindepth(1)
|
|
->maxdepth(1)
|
|
->name('*.pm')
|
|
->not($rootrule)
|
|
->not($itemrule);
|
|
my @colls = $rule->in($libpath);
|
|
|
|
return @colls;
|
|
}
|
|
|
|
sub collections_link_headers : Private {
|
|
my ($self) = @_;
|
|
|
|
my @colls = $self->get_collections;
|
|
|
|
# create Link header for each of the collections
|
|
my @links = ();
|
|
foreach my $mod(@colls) {
|
|
# extract file base from path (e.g. Foo from lib/something/Foo.pm)
|
|
$mod =~ s/^.+\/([a-zA-Z0-9_]+)\.pm$/$1/;
|
|
my $rel = lc $mod;
|
|
$mod = 'NGCP::Panel::Controller::API::'.$mod;
|
|
my $dp = $mod->dispatch_path;
|
|
push @links, Link => '<'.$dp.'>; rel="collection http://purl.org/sipwise/ngcp-api/#rel-'.$rel.'"';
|
|
}
|
|
return @links;
|
|
}
|
|
|
|
sub invalid_user : Private {
|
|
my ($self, $c, $ssl_client_m_serial) = @_;
|
|
#$self->error($c, HTTP_FORBIDDEN, "Invalid certificate serial number '$ssl_client_m_serial'.");
|
|
$self->error($c, HTTP_FORBIDDEN, "Invalid user");
|
|
return;
|
|
}
|
|
|
|
sub field_to_json : Private {
|
|
my ($self, $name) = @_;
|
|
|
|
given($name) {
|
|
when(/Float|Integer|Money|PosInteger|Minute|Hour|MonthDay|Year/) {
|
|
return "Number";
|
|
}
|
|
when(/Boolean/) {
|
|
return "Boolean";
|
|
}
|
|
when(/Repeatable/) {
|
|
return "Array";
|
|
}
|
|
when(/\+NGCP::Panel::Field::Regex/) {
|
|
return "String";
|
|
}
|
|
when(/\+NGCP::Panel::Field::EmailList/) {
|
|
return "String";
|
|
}
|
|
when(/\+NGCP::Panel::Field::Identifier/) {
|
|
return "String";
|
|
}
|
|
when(/\+NGCP::Panel::Field::SubscriberStatusSelect/) {
|
|
return "String";
|
|
}
|
|
when(/\+NGCP::Panel::Field::SubscriberLockSelect/) {
|
|
return "Number";
|
|
}
|
|
when(/\+NGCP::Panel::Field::E164/) {
|
|
return "Object";
|
|
}
|
|
when(/\+NGCP::Panel::Field::AliasNumber/) {
|
|
return "Array";
|
|
}
|
|
# usually {xxx}{id}
|
|
when(/\+NGCP::Panel::Field::/) {
|
|
return "Number";
|
|
}
|
|
default {
|
|
return "String";
|
|
}
|
|
}
|
|
}
|
|
|
|
sub get_collection_properties {
|
|
my ($self, $form) = @_;
|
|
|
|
my @props = ();
|
|
foreach my $f($form->fields) {
|
|
next if (
|
|
$f->type eq "Hidden" ||
|
|
$f->type eq "Button" ||
|
|
$f->type eq "Submit" ||
|
|
0);
|
|
my @types = ();
|
|
push @types, 'null' unless $f->required;
|
|
push @types, $self->field_to_json($f->type);
|
|
my $name = $f->name;
|
|
if($f->type =~ /^\+NGCP::Panel::Field::/) {
|
|
if($f->type =~ /E164/) {
|
|
$name = 'primary_number';
|
|
} elsif($f->type =~ /AliasNumber/) {
|
|
$name = 'alias_numbers';
|
|
} elsif($f->type !~ /Regex|EmailList|SubscriberStatusSelect|SubscriberLockSelect|Identifier/) {
|
|
$name .= '_id';
|
|
}
|
|
}
|
|
my $desc;
|
|
if($f->element_attr) {
|
|
$desc = $f->element_attr->{title}->[0];
|
|
} else {
|
|
$desc = $name;
|
|
}
|
|
push @props, { name => $name, description => $desc, types => \@types };
|
|
}
|
|
return \@props;
|
|
}
|
|
|
|
sub end : Private {
|
|
my ($self, $c) = @_;
|
|
|
|
#$self->log_response($c);
|
|
}
|
|
|
|
# vim: set tabstop=4 expandtab:
|