App-Cme
view release on metacpan or search on metacpan
lib/App/Cme/Command/update.pm view on Meta::CPAN
#
# This file is part of App-Cme
#
# This software is Copyright (c) 2014-2022 by Dominique Dumont <ddumont@cpan.org>.
#
# This is free software, licensed under:
#
# The GNU Lesser General Public License, Version 2.1, February 1999
#
# ABSTRACT: Update the configuration of an application
package App::Cme::Command::update ;
$App::Cme::Command::update::VERSION = '1.047';
use strict;
use warnings;
use 5.10.1;
use App::Cme -command ;
use base qw/App::Cme::Common/;
use Config::Model::ObjTreeScanner;
use Config::Model;
sub validate_args {
my ($self, $opt, $args) = @_;
$self->check_unknown_args($args);
$self->process_args($opt,$args);
return;
}
sub opt_spec {
my ( $class, $app ) = @_;
return (
[ "edit!" => "Run editor after update is done" ],
[ "backup:s" => "Create a backup of configuration files before saving." ],
$class->cme_global_options,
);
}
sub usage_desc {
my ($self) = @_;
my $desc = $self->SUPER::usage_desc; # "%c COMMAND %o"
return "$desc [application] [file ]";
}
sub description {
my ($self) = @_;
return $self->get_documentation;
}
sub execute {
my ($self, $opt, $args) = @_;
my ( $inst) = $self->instance($opt,$args);
say "Updating data..." unless $opt->{quiet};
my @msgs = $inst->update(quiet => $opt->{quiet});
if (@msgs and not $opt->{quiet}) {
say "Update done";
}
elsif (not $opt->{quiet}) {
say "Command done, but ".$opt->{_application}
. " model has no provision for update";
}
# remove undef values or empty strings. Literal '0' are not
# expected here
say join("\n", grep {$_} @msgs );
if ($opt->{edit}) {
$self->run_tk_ui ( $inst, $opt);
}
else {
$self->save($inst,$opt) ;
}
return;
}
1;
__END__
( run in 1.858 second using v1.01-cache-2.11-cpan-39bf76dae61 )