Group
Extension

OneTool-App-Core/lib/OneTool/Daemon.pm

package OneTool::Daemon;

=head1 NAME

OneTool::Daemon - OneTool Daemon module

=cut

use strict;
use warnings;

use FindBin;
use HTTP::Daemon;

#use HTTP::Daemon::SSL;
use HTTP::Headers;
use HTTP::Response;
use HTTP::Status;
use IO::Socket::SSL;
use Log::Log4perl;
use Log::Log4perl::Level;
use Moose;
use URI;
use URI::QueryParam;

=head1 MOOSE OBJECT

=cut

has 'ip' => (
    is       => 'rw',
    isa      => 'Str',
    required => 1,
);

has 'port' => (
    is       => 'rw',
    isa      => 'Int',
    required => 1,
);

has 'api' => (
    is       => 'rw',
    isa      => 'HashRef',
    required => 1,
);

has 'logger' => (
    is       => 'rw',
    isa      => 'Log::Log4perl::Logger',
    required => 1,
);

=head1 SUBROUTINES/METHODS

=head2 Listener()

Listener for HTTP/HTTPS API requests

=cut

sub Listener
{
    my $self = shift;

    my $daemon = HTTP::Daemon->new(
        ReuseAddr => 1,
        LocalAddr => $self->{ip},
        LocalPort => $self->{port}
    );

=head2 comment
    my $daemon = HTTP::Daemon::SSL->new(
        ReuseAddr => 1, LocalAddr => $self->{ip}, LocalPort => $self->{port},
        SSL_cert_file => "$FindBin::Bin/../conf/certs/server-cert.pem",
        SSL_key_file => "$FindBin::Bin/../conf/certs/server-key.pem"
        ) 
        || die IO::Socket::SSL::errstr();
=cut

    my $json_header = HTTP::Headers->new('Content-Type' => 'application/json');
    $self->Log('info', 'OneTool Daemon API listening on ' . $daemon->url);
    while (my $connection = $daemon->accept)
    {
        while (my $request = $connection->get_request)
        {
            my ($method, $path, $params, $content) = (
                $request->method, $request->uri->path,
                $request->uri->query_form_hash,
                $request->content
            );
            if (   (defined $self->{api}->{$path})
                && ($method eq $self->{api}->{$path}->{method}))
            {
                my $resp_content =
                    $self->{api}->{$path}->{action}($self, $params, $content);
                my $resp =
                    HTTP::Response->new(200, 'OK', $json_header, $resp_content);
                $connection->send_response($resp);
            }
            else
            {
                $connection->send_error(RC_FORBIDDEN);
            }
        }
        $connection->close;
        undef($connection);
    }

    return (1);
}

=head2 Log($str_level, $msg)

Logs message $msg with loglevel $str_level

=cut

sub Log
{
    my ($self, $str_level, $msg) = @_;

    return (undef) if ($str_level !~ /^(?:debug|info|warn|error)$/i);

    my $level = Log::Log4perl::Level::to_priority(uc($str_level));
    $self->{logger}->log($level, $msg);

    return ($msg);
}

no Moose;
__PACKAGE__->meta->make_immutable;

1;

=head1 AUTHOR

Sebastien Thebert <contact@onetool.pm>

=cut


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