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.
129 lines
4.5 KiB
129 lines
4.5 KiB
package NGCP::Panel::Role::Journal;
|
|
|
|
use Sipwise::Base;
|
|
|
|
use NGCP::Panel::Utils::Journal;
|
|
|
|
sub add_create_journal_item_hal {
|
|
my ($self,$c,@args) = @_;
|
|
return NGCP::Panel::Utils::Journal::add_journal_item_hal($self,$c,NGCP::Panel::Utils::Journal::CREATE_JOURNAL_OP,@args);
|
|
}
|
|
|
|
sub add_update_journal_item_hal {
|
|
my ($self,$c,@args) = @_;
|
|
return NGCP::Panel::Utils::Journal::add_journal_item_hal($self,$c,NGCP::Panel::Utils::Journal::UPDATE_JOURNAL_OP,@args);
|
|
}
|
|
|
|
sub add_delete_journal_item_hal {
|
|
my ($self,$c,@args) = @_;
|
|
return NGCP::Panel::Utils::Journal::add_journal_item_hal($self,$c,NGCP::Panel::Utils::Journal::DELETE_JOURNAL_OP,@args);
|
|
}
|
|
|
|
sub get_journal_operation_config {
|
|
my ($self, $c, $operation_spec, $reload) = @_;
|
|
my $operation;
|
|
if (!$operation_spec) {
|
|
my $method = uc($c->request->method);
|
|
if ($method =~ /^(PATCH|PUT)$/) {
|
|
$operation_spec = 'update';
|
|
} elsif ($method eq 'POST') {
|
|
$operation_spec = 'create';
|
|
} elsif ($method eq 'DELETE') {
|
|
$operation_spec = 'delete';
|
|
}
|
|
}
|
|
if ($operation_spec eq 'create') {
|
|
$operation = NGCP::Panel::Utils::Journal::CREATE_JOURNAL_OP;
|
|
} elsif ($operation_spec eq 'update') {
|
|
$operation = NGCP::Panel::Utils::Journal::UPDATE_JOURNAL_OP;
|
|
} elsif ($operation_spec eq 'delete') {
|
|
$operation = NGCP::Panel::Utils::Journal::DELETE_JOURNAL_OP;
|
|
}
|
|
return $c->stash->{journal}->{$operation}, $operation
|
|
if $c->stash->{journal}->{$operation} && !$reload;
|
|
my $cfg = NGCP::Panel::Utils::Journal::get_api_journal_op_config($c->config, $self->resource_name, $operation);
|
|
$c->stash( journal => { $operation => $cfg } );
|
|
return $cfg, $operation;
|
|
}
|
|
|
|
#is supposed to use only for delete operations - we take hal before delete item
|
|
sub get_journal_item_hal {
|
|
my ($self, $c, $item, $params) = @_;
|
|
my ($operation_spec, $form) = @$params{qw/operation form/};
|
|
my ($cfg, $operation) = $self->get_journal_operation_config($c, $operation_spec);
|
|
if ($cfg->{operation_enabled}) {
|
|
$item->discard_changes;
|
|
#we may pass resource inparams to don't perform expensive get_resource_from_item operation
|
|
return ($self->hal_from_item($c, $item, $form, $params),undef);
|
|
}
|
|
return;
|
|
}
|
|
|
|
sub add_journal_item_hal {
|
|
my ($self, $c, $params) = @_;
|
|
my ($operation_spec, $item, $form, $hal) = @$params{qw/operation item form hal/};
|
|
my ($cfg, $operation) = $self->get_journal_operation_config($c, $operation_spec);
|
|
if ($cfg->{operation_enabled}) {
|
|
#for delete operation we will pass presaved hal
|
|
if (!$hal) {
|
|
$item->discard_changes;
|
|
#we may pass resource inparams to don't perform expensive get_resource_from_item operation
|
|
$hal = $self->hal_from_item($c, $item, $form, $params);
|
|
}
|
|
return NGCP::Panel::Utils::Journal::add_journal_item_hal($self, $c, $operation, $params);
|
|
} else {
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
sub get_journal_action_config {
|
|
my ($class,$resource_name,$action_template) = @_;
|
|
my $cfg = NGCP::Panel::Utils::Journal::get_journal_resource_config(NGCP::Panel->config,$resource_name);
|
|
if ($cfg->{journal_resource_enabled}) {
|
|
return NGCP::Panel::Utils::Journal::get_api_journal_action_config('api/' . $resource_name,$action_template,$class->get_journal_methods);
|
|
}
|
|
return [];
|
|
}
|
|
|
|
sub get_journal_query_params {
|
|
my ($class,$query_params) = @_;
|
|
return NGCP::Panel::Utils::Journal::get_api_journal_query_params($query_params);
|
|
}
|
|
|
|
sub handle_item_base_journal {
|
|
return NGCP::Panel::Utils::Journal::handle_api_item_base_journal(@_);
|
|
}
|
|
|
|
sub handle_journals_get {
|
|
return NGCP::Panel::Utils::Journal::handle_api_journals_get(@_);
|
|
}
|
|
|
|
sub handle_journalsitem_get {
|
|
return NGCP::Panel::Utils::Journal::handle_api_journalsitem_get(@_);
|
|
}
|
|
|
|
sub handle_journals_options {
|
|
return NGCP::Panel::Utils::Journal::handle_api_journals_options(@_);
|
|
}
|
|
|
|
sub handle_journalsitem_options {
|
|
return NGCP::Panel::Utils::Journal::handle_api_journalsitem_options(@_);
|
|
}
|
|
|
|
sub handle_journals_head {
|
|
return NGCP::Panel::Utils::Journal::handle_api_journals_head(@_);
|
|
}
|
|
|
|
sub handle_journalsitem_head {
|
|
return NGCP::Panel::Utils::Journal::handle_api_journalsitem_head(@_);
|
|
}
|
|
|
|
sub get_journal_relation_link {
|
|
my $cfg = NGCP::Panel::Utils::Journal::get_journal_resource_config(NGCP::Panel->config,$_[0]->resource_name);
|
|
if ($cfg->{journal_resource_enabled}) {
|
|
return NGCP::Panel::Utils::Journal::get_journal_relation_link(@_);
|
|
}
|
|
return ();
|
|
}
|
|
1;
|