App-MonM-Notifier
view release on metacpan or search on metacpan
lib/App/MonM/Notifier/Monotifier.pm view on Meta::CPAN
use constant {
NODE_NAME => 'notifier',
NODE_NAME_ALIAS => 'monotifier',
ROWS_LIMIT => 1000,
DATE_FORMAT => '%YYYY-%MM-%DD %hh:%mm:%ss',
TABLE_INFO => [(
[12, 'NAME'],
[68, 'VALUE'],
)],
};
sub again {
my $self = shift;
$self->SUPER::again(); # CTK::App again first!!
# Store
my $store_conf = hash($self->conf(NODE_NAME) || $self->conf(NODE_NAME_ALIAS));
$store_conf->{expires} = getExpireOffset(lvalue($store_conf, "expires") || lvalue($store_conf, "expire") || 0);
$store_conf->{maxtime} = getExpireOffset(lvalue($store_conf, "maxtime") || 0);
my $store = App::MonM::Notifier::Store->new(%$store_conf);
$self->{store} = $store;
#print App::MonM::Util::explain($store);
return $self; # CTK requires!
}
sub store {
my $self = shift;
return $self->{store};
}
sub raise {
my $self = shift;
say STDERR red(@_);
return 0;
}
__PACKAGE__->register_handler(
handler => "info",
description => "Show statistic information",
code => sub {
### CODE:
my ($self, $meta, @arguments) = @_;
my $store = $self->store;
# General info
printf("Hostname : %s\n", HOSTNAME);
printf("Monotifier version : %s\n", $self->VERSION);
printf("Monotifier enabled : %s\n", lvalue($self->config("usemonotifier")) ? green("Yes") : magenta("No"));
printf("Date : %s\n", _fdate());
printf("Data dir : %s\n", $self->datadir);
printf("Config file : %s\n", $self->configfile);
printf("Config status : %s\n", $self->conf("loadstatus") ? green("OK") : magenta("ERROR: not loaded"));
$self->raise($self->configobj->error) if !$self->configobj->status and length($self->configobj->error);
#$self->debug(explain($self->config)) if $self->conf("loadstatus") && $self->verbosemode;
# DB status
printf("DB DSN : %s\n", $store->dsn);
printf("DB status : %s\n", $store->error ? red("ERROR") : green("OK"));
my $db_is_ok = $store->error ? 0 : 1;
if ($db_is_ok && $store->{file} && -e $store->{file}) {
my $s = File::stat::stat($store->{file})->size;
printf("DB file : %s\n", $store->{file});
printf("DB size : %s\n", sprintf("%s (%d bytes)", _fbytes($s), $s));
printf("DB modified : %s\n", _fdate(File::stat::stat($store->{file})->mtime || 0));
}
$self->raise($store->error) unless $db_is_ok;
return 1;
});
__PACKAGE__->register_handler(
handler => "show",
description => "Show table data",
code => sub {
### CODE:
my ($self, $meta, @arguments) = @_;
my $id = shift(@arguments) || 0;
my $store = $self->store;
return $self->raise($store->error) if $store->error;
# Show message
if ($id) {
my %info = $store->getById($id);
return $self->raise($store->error) if $store->error;
return skip("No data") unless $info{id};
# Table
my $tbl_hdrs = TABLE_INFO;
$tbl_hdrs->[1][0] = (SCREENWIDTH() - 19);
my $tbl = Text::SimpleTable->new(@$tbl_hdrs);
# Stash
my $exp = $info{expired} || 0;
$tbl->row("Id", $id);
$tbl->row("To", $info{to} // '');
$tbl->row("Channel", $info{channel} // '');
$tbl->row("Subject", encode( locale => $info{subject} // '' ));
$tbl->row("Status", $info{status} // '');
$tbl->row("Published", $info{published} ? dtf(DATE_FORMAT, $info{published}) : '');
$tbl->row("Scheduled", $info{scheduled} ? dtf(DATE_FORMAT, $info{scheduled}) : '');
$tbl->row("Expired", dtf(DATE_FORMAT, $exp)) if $exp;
$tbl->row("Sent", dtf(DATE_FORMAT, $info{sent})) if $info{sent};
$tbl->row("Attempt", $info{attempt}) if $info{attempt};
$tbl->row("Errcode", $info{errcode} // 0);
$tbl->row("Errmsg", encode( locale => $info{errmsg} // '' ));
$tbl->hr;
$tbl->row("SUMMARY", ($exp < time) ? "EXPIRED" : $info{status} // '');
say $tbl->draw();
# Show attributes (dump)
if ($self->verbosemode) {
say "Attributes of channel:";
print(explain($info{attributes}));
print "\n";
# Show message
printf("%s BEGIN MESSAGE ~~~\n", "~" x (SCREENWIDTH()-18));
say encode( locale => $info{message} // '' );
printf("%s END MESSAGE ~~~\n", "~" x (SCREENWIDTH()-16));
}
} else {
my @table = $store->getAll(ROWS_LIMIT);
return $self->raise($store->error) if $store->error;
( run in 2.101 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )