Group
Extension

Lemonldap-NG-Common/lib/Lemonldap/NG/Common/Cli.pm

package Lemonldap::NG::Common::Cli;

use strict;
use JSON;
use Mouse;
use Lemonldap::NG::Common::Conf;
use Lemonldap::NG::Common::EmailTransport;

use constant booleanOptions => qr/^(?:json)$/;

our $VERSION = '2.22.0';

extends 'Lemonldap::NG::Common::PSGI::Cli::Lib';

has confAccess => (
    is      => 'rw',
    builder => sub {
        my $res = Lemonldap::NG::Common::Conf->new( { (
                    ref $_[0] && $_[0]->{iniFile}
                    ? ( confFile => $_[0]->{iniFile} )
                    : ()
                )
            }
        );
        die $Lemonldap::NG::Common::Conf::msg unless ($res);
        return $res;
    },
);

has cfgNum => (
    is  => 'rw',
    isa => 'Int',
);

has json => ( is => 'rw' );

sub info {
    my ($self) = @_;
    my $conf =
      $self->confAccess->getConf( { cfgNum => $self->cfgNum, raw => 1 } )
      or die $Lemonldap::NG::Common::Conf::msg;
    $conf->{cfgAuthorIP} ||= "No IP provided";
    $conf->{cfgDate}     ||= 0;
    $conf->{cfgLog}      ||= "No log provided";
    if ( $self->json ) {
        print JSON->new->pretty->allow_nonref->encode( {
                num      => $conf->{cfgNum},
                author   => $conf->{cfgAuthor},
                authorIP => $conf->{cfgAuthorIP},
                date     => $conf->{cfgDate},
                version  => $conf->{cfgVersion},
                log      => $conf->{cfgLog},
            }
        );
    }
    else {
        print qq{
Num      : $conf->{cfgNum}
Author   : $conf->{cfgAuthor}
Author IP: $conf->{cfgAuthorIP}
Date     : } . localtime( $conf->{cfgDate} ) . qq{
Version  : $conf->{cfgVersion}
Log      : $conf->{cfgLog}
};
    }
}

sub updateCache {
    my $self = shift;
    my $conf = $self->confAccess->getConf( { noCache => 2 } );
    die "Must not be launched as root" unless ($>);
    print STDERR
      qq{Cache updated to configuration $conf->{cfgNum} for user $>\n};
}

sub testEmail {
    my $self = shift;
    my $dest = shift;
    die "Must specify destination" unless ($dest);
    my $conf = $self->confAccess->getConf();
    eval {
        Lemonldap::NG::Common::EmailTransport::sendTestMail( $conf, $dest );
    };
    die $@ if $@;
    print STDERR "Test email successfully sent to $dest\n";
}

sub run {
    my $self = shift;

    # Options simply call corresponding accessor
    my $args = {};
    my @ARGS2;
    for ( my $i = 0 ; $i < @_ ; $i++ ) {
        if ( $_[$i] =~ s/^--?(\w)/$1/ ) {
            my $k    = $_[$i];
            my $bool = ( $k =~ booleanOptions );
            my $v    = $bool ? 1 : $_[ $i++ ];
            if ( ref $self ) {
                eval { $self->$k($v) };
                if ($@) {
                    die "Unknown option -$k or bad value ($@)";
                }
            }
            else {
                $args->{$k} = $v;
            }
        }
        else {
            push @ARGS2, $_[$i];
        }
    }
    @_ = @ARGS2;
    unless ( ref $self ) {
        $self = $self->new($args);
    }
    unless (@_) {
        die 'nothing to do, aborting';
    }
    $self->confAccess()->lastCfg() unless ( $self->cfgNum );
    my $action = shift;
    unless ( $action =~ /^(?:info|update-cache|test-email)$/ ) {
        die "unknown action $action";
    }
    $action =~ s/\-([a-z])/uc($1)/e;
    $self->$action(@_);
}

1;


Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.