package SrvMngr::Controller::Nfsshare; # # Generated by version:SM2Gen version:0.8 Chameleon version:4.5.4 On Python:3.12.3 at 2024-09-16 11:52 # #---------------------------------------------------------------------- # heading : Network # description : NFS data share # navigation : 2000 400 # # name : nfsshare, method : get, url : /nfsshare, ctlact : Nfsshare#main # name : nfsshareu, method : post, url : /nfsshareu, ctlact : Nfsshare#do_update # name : nfsshared, method : get, url : /nfsshared, ctlact : Nfsshare#do_display # # routes : end # # Documentation: https://wiki.contribs.org/Nfsshare #---------------------------------------------------------------------- # # Scheme of things: # # TBA!! use strict; use warnings; use Mojo::Base 'Mojolicious::Controller'; use constant FALSE => 0; use constant TRUE => 1; use Locale::gettext; use SrvMngr::I18N; use SrvMngr qw(theme_list init_session); use Data::Dumper; use esmith::util; use esmith::HostsDB; use esmith::AccountsDB; use esmith::NetworksDB; use esmith::HostsDB; use esmith::DomainsDB; #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"); require '/usr/share/smanager/lib/SrvMngr/Controller/Nfsshare-Custom.pm'; #The code that is to be added by the developer sub main { # # Initial entry - route is "/" # #set initial panel #for initial panel: #Specifiy panel to enter #load up _data hash with DB fields #load up stash with pointer(s) to control fields hash(= get-)) #and a pointer to the prefix_data hash #render initial panel my $c = shift; $c->app->log->info( $c->log_req ); my %nfs_data = (); my $title = $c->l('nfs_NFS_data_share'); my $modul = ''; $nfs_data{'trt'} = 'TABLE'; #Load any DB entries into the _data area so as they are preset in the form # which DB - this only really works if the initial panel is a PARAMS type panel and not a TABLE my $db = $cdb; #pickup local or global db or Default to config # and table control fields $c->stash(ibays=>$c->get_ibays()); $c->stash( title => $title, modul => $modul, nfs_data => \%nfs_data ); $c->render( template => "nfsshare" ); } # Post request with params - submit from the form sub do_update { # # Return after submit pushed on panel (this is a post) - route is "/u" # parameters in the params hash. # #load up all params into prefix_data hash: #By panel (series of if statements - only one executed): #call validate-PANEL() - return ret = ok or error message #if validation not ok: #render back to current panel with error message in stash #otherwise: #By panel (series of if statements - only one executed): #do whatever is required: call perform-PANEL() - return "ok" or Error Message #call signal-event for any global actions specified (check it exists - error and continue?) #if action smeserver--update exists #signal_event smeserver--update #call signal-event for any specific actions for thids panel (check it exists first - error and continue) #set success in stash #if no "nextpanel" entry: #set firstpanel #else #set nextpanel #call render my $c = shift; $c->app->log->info($c->log_req); my %nfs_data = (); my $title = $c->l('nfs_NFS_data_share'); # Accessing all POST parameters my %params = $c->req->params->to_hash; # Get number of POST parameters my $num_params = keys %params; #Params are available in the hash "params" - copy to the prefix_data hash while (my ($key, $value) = each %{$c->req->params->to_hash}) { $nfs_data{$key} = $value; } # the value of trt will tell you which panel has returned my $trt = $c->param('trt') || 'TABLE'; #hidden control on every form. my $ret = 'ok'; #Validate the parameters in a custom sub one for each panel (although only one of these will be executed) my $thispanel; if ($trt eq 'PARAMS'){ #Validate form parameters for panel PARAMS $ret = $c->validate_PARAMS(\%nfs_data); $thispanel = 'PARAMS'; } if ($trt eq 'TABLE'){ #Validate form parameters for panel TABLE $ret = $c->validate_TABLE(\%nfs_data); $thispanel = 'TABLE'; } if ($ret ne "ok") { # return to the panel with error message $c->stash(error => $c->l($ret)); $c->render("nfsshare"); } else { #Do whatever is needed, including writing values to the DB if ($trt eq 'PARAMS'){ #do whatever is required ... $ret = $c->perform_PARAMS(\%nfs_data); if ($ret ne "ok") { # return to the panel with error message $c->stash(error => $c->l($ret)); $c->render("nfsshare"); } else { $c->stash( success => $c->l('nfs_PARAMS_panel_action_was_successful')); #A bit bland - edit it in the lex file } } if ($trt eq 'TABLE'){ #do whatever is required ... $ret = $c->perform_TABLE(\%nfs_data); if ($ret ne "ok") { # return to the panel with error message $c->stash(error => $c->l($ret)); $c->render("nfsshare"); } else { $c->stash( success => $c->l('nfs_TABLE_panel_action_was_successful')); #A bit bland - edit it in the lex file } } # and call any signal-events needed # Setup shared data and call panel $c->stash( title => $title, nfs_data => \%nfs_data ); if ('none' eq 'none') { $nfs_data{'trt'} = 'TABLE'; } else { $nfs_data{'trt'} = 'none'; } $c->render("nfsshare"); } } sub do_display { # # Return after link clicked in table (this is a get) - route is "/d" # Expects ?trt=PANEL&selected="TableRowName" plus any other required # # OR it maybe a post from the main panel to add a new record # #load up all supplied params into prefix_data hash #call get-selected-PANEL() - returns hash of all relevent parameters #load up returned hash into prefix_data #render - to called panel my $c = shift; $c->app->log->info($c->log_req); my %nfs_data = (); my $title = $c->l('nfs_NFS_data_share'); # Accessing all parameters my %params = $c->req->params->to_hash; # Get number of parameters my $num_params = keys %params; #Tag as Post or Get (ie. create new entry or edit existing one my $is_new_record = ($c->req->method() eq 'POST'); #Params are available in the hash "params" - copy to the prefix_data hash while (my ($key, $value) = each %{$c->req->params->to_hash}) { $nfs_data{$key} = $value; } # the value of trt will tell you which panel has returned my $trt = $c->param('trt') || 'TABLE'; #Indicates where to go now # Now add in the params from the selected row from the table my %selectedrow; if ($trt eq 'PARAMS'){ #Validate form parameters for panel PARAMS %selectedrow = $c->get_selected_PARAMS($nfs_data{'Selected'},$is_new_record); } if ($trt eq 'TABLE'){ #Validate form parameters for panel TABLE %selectedrow = $c->get_selected_TABLE($nfs_data{'Selected'},$is_new_record); } #Copy in the selected row params to the prefix_data hash to pass to the panel while (my ($key, $value) = each %selectedrow){ $nfs_data{$key} = $value; } # Where to go now $nfs_data{'trt'} = $trt; # Data for panel $c->stash( title => $title, nfs_data => \%nfs_data ); $c->render("nfsshare"); } 1;