2024-04-25 17:23:07 +02:00
|
|
|
#
|
2024-09-16 15:01:17 +02:00
|
|
|
# Generated by ${version}
|
|
|
|
#
|
|
|
|
#
|
2024-11-04 18:08:38 +01:00
|
|
|
# Routines to be edited by the developer to provide content and validation for parameters
|
2024-04-25 17:23:07 +02:00
|
|
|
# and provison of the control data for table(s)
|
|
|
|
#
|
|
|
|
use esmith::util;
|
2024-11-13 17:45:14 +01:00
|
|
|
use esmith::ConfigDB;
|
2024-04-25 17:23:07 +02:00
|
|
|
use esmith::HostsDB;
|
|
|
|
use esmith::AccountsDB;
|
|
|
|
use esmith::NetworksDB;
|
|
|
|
use esmith::DomainsDB;
|
|
|
|
|
2024-11-15 18:23:49 +01:00
|
|
|
use constant FALSE => 0;
|
|
|
|
use constant TRUE => 1;
|
|
|
|
|
2024-04-25 17:23:07 +02:00
|
|
|
|
|
|
|
#The most common ones
|
|
|
|
our $cdb = esmith::ConfigDB->open() || die("Couldn't open config db");
|
|
|
|
our $adb = esmith::AccountsDB->open() || die("Couldn't open Accounts db");
|
|
|
|
our $ndb = esmith::NetworksDB->open() || die("Couldn't open Network db");
|
|
|
|
our $hdb = esmith::HostsDB->open() || die("Couldn't open Hosts db");
|
|
|
|
our $ddb = esmith::DomainsDB->open() || die("Couldn't open Domains db");
|
|
|
|
|
|
|
|
# Validation routines - parameters for each panel
|
|
|
|
<tal:block tal:repeat="panel panels">
|
|
|
|
sub validate_${panel} {
|
2024-05-06 11:05:43 +02:00
|
|
|
my $c = shift;
|
|
|
|
my $prefix_data = shift; #Data hash as parameter
|
2024-11-15 18:23:49 +01:00
|
|
|
# Validation for each field
|
|
|
|
my $ret = "";
|
|
|
|
<tal:block tal:repeat="field fields[panel]">
|
|
|
|
if (! TRUE) #validate $c->param('${field}')
|
|
|
|
{$ret .= 'Validation for ${field} failed';}
|
|
|
|
</tal:block>
|
|
|
|
if ($ret eq "") {$ret = 'ok';}
|
2024-04-25 17:23:07 +02:00
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
</tal:block>
|
2024-11-04 18:08:38 +01:00
|
|
|
|
|
|
|
# Get singleton data for each panel
|
|
|
|
<tal:block tal:repeat="panel panels">
|
|
|
|
sub get_data_for_panel_${panel} {
|
|
|
|
# Return a hash with the fields required which will be loaded into the shared data
|
|
|
|
my $c = shift;
|
|
|
|
my %ret = (
|
|
|
|
'Data1'=>'Data for ${panel}', #Example
|
|
|
|
# fields from Inputs in ${panel} $fields['${panel}']
|
|
|
|
<tal:block tal:repeat="field fields[panel]">
|
|
|
|
'${field}'=>'${field} contents',
|
|
|
|
</tal:block>
|
|
|
|
|
|
|
|
);
|
|
|
|
return %ret;
|
|
|
|
}
|
|
|
|
</tal:block>
|
|
|
|
|
2024-04-25 17:23:07 +02:00
|
|
|
|
2024-11-15 18:23:49 +01:00
|
|
|
Get control data for table(s)
|
|
|
|
<tal:block repeat="tablecontrol tablecontrols">
|
|
|
|
sub get_${tablecontrol[0]} {
|
|
|
|
# Return an array of hashes of the contents for each row and column for ${tablecontrol[0]}
|
|
|
|
# default is a single row of strings "col1header-1, col2header-1, col3Header-1 etc"
|
|
|
|
# Cols needed are:
|
|
|
|
# <tal:block repeat="col tablecontrol[1]['columns']">${col}<tal:condition condition="not: repeat['col'].end">,
|
|
|
|
# </tal:condition></tal:block>
|
|
|
|
my $c = shift;
|
|
|
|
my $control_data = $c->stash('${tablecontrol[0]}');
|
|
|
|
my @ret = {};
|
|
|
|
|
|
|
|
|
|
|
|
return \@ret;
|
|
|
|
}
|
2024-04-28 13:03:06 +02:00
|
|
|
</tal:block>
|
|
|
|
|
2024-11-15 18:23:49 +01:00
|
|
|
|
2024-04-28 13:03:06 +02:00
|
|
|
# Return hash with values from row in which link clicked on table
|
|
|
|
<tal:block tal:repeat="panel panels">
|
2024-05-06 11:05:43 +02:00
|
|
|
sub get_selected_${panel} {
|
|
|
|
my $c = shift;
|
|
|
|
my $selected = shift; #Parameter is name of selected row.
|
|
|
|
my $is_new_record = shift; #Indicates new record required (defaults)
|
|
|
|
my %ret = {};
|
2024-04-28 13:03:06 +02:00
|
|
|
return $ret;
|
|
|
|
}
|
2024-04-25 17:23:07 +02:00
|
|
|
</tal:block>
|
2024-04-28 13:03:06 +02:00
|
|
|
|
|
|
|
#after sucessful modify or create or whatever and submit then perfom (if the params validate)
|
|
|
|
<tal:block tal:repeat="panel panels">
|
|
|
|
sub perform_${panel} {
|
2024-05-06 11:05:43 +02:00
|
|
|
my $c = shift;
|
|
|
|
my $prefix_data = shift; #Data hash as parameter
|
2024-11-15 18:23:49 +01:00
|
|
|
my $ret = "";
|
|
|
|
<tal:block tal:repeat="field fields[panel]">
|
|
|
|
if (! TRUE) #copy or perform with value: ${field} e.g. $c->setprop(dbentry,dbkey,$c->param('${field}')
|
|
|
|
{$ret .= 'Perform failed for ${field} failed';}
|
|
|
|
</tal:block>
|
|
|
|
if ($ret eq "") {$ret = 'ok';}
|
2024-04-28 13:03:06 +02:00
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
</tal:block>
|
|
|
|
|
2024-05-03 19:08:44 +02:00
|
|
|
sub create_link{
|
|
|
|
# WIP
|
|
|
|
my ($c,$route, $panel, $index) = shift;
|
|
|
|
my $link = "$route?trt=$panel&Selected=$index";
|
|
|
|
return $link;
|
|
|
|
}
|
2024-10-18 20:01:59 +02:00
|
|
|
1;
|