AnyEvent-Porttracker
view release on metacpan or search on metacpan
Porttracker.pm view on Meta::CPAN
sub call {
my ($self, $type, @args) = @_;
$self->{$type}
? $self->{$type}($self, @args)
: ($type = (UNIVERSAL::can $self, $type))
? $type->($self, @args)
: ()
}
=item $api = new AnyEvent::Porttracker [key => value...]
Creates a new porttracker API connection object and tries to connect to
the specified host (see below). After the connection has been established,
the TLS handshake (if requested) will take place, followed by a login
attempt using either the C<none>, C<login_cram_md6> or C<login> methods,
in this order of preference (typically, C<login_cram_md6> is used, which
shields against some man-in-the-middle attacks and avoids transferring the
password).
It is permissible to send requests immediately after creating the object -
they will be queued until after successful login.
Possible key-value pairs are:
=over 4
=item host => $hostname [MANDATORY]
The hostname or IP address of the Porttracker box.
=item port => $service
The service (port) to use (default: C<porttracker=55>).
=item user => $string, pass => $string
These are the username and password to use when authentication is required
(which it is in almost all cases, so these keys are normally mandatory).
=item tls => $bool
Enables or disables TLS (default: disables). When enabled, then the
connection will try to handshake a TLS connection before logging in. If
unsuccessful a fatal error will be raised.
Since most Porttracker/PortIQ boxes will not have a sensible/verifiable
certificate, no attempt at verifying it will be done (which means
man-in-the-middle-attacks will be trivial). If you want some form of
verification you need to provide your own C<tls_ctx> object with C<<
verify => 1, verify_peername => [1, 1, 1] >> or whatever verification mode
you wish to use.
=item tls_ctx => $tls_ctx
The L<AnyEvent::TLS> object to use. See C<tls>, above.
=item on_XYZ => $coderef
You can specify event callbacks either by sub-classing and overriding the
respective methods or by specifying code-refs as key-value pairs when
constructing the object. You add or remove event handlers at any time with
the C<event> method.
=back
=cut
sub new {
my $class = shift;
my $self = bless {
id => "a",
ids => [],
queue => [], # initially queue everything
@_,
}, $class;
{
Scalar::Util::weaken (my $self = $self);
$self->{hdl} = new AnyEvent::Handle
connect => [$self->{host}, $self->{port} || "porttracker=55"],
on_error => sub {
$self->error ($_[2]);
},
on_connect => sub {
if ($self->{tls}) {
$self->_req (start_tls => sub {
$_[1]
or return $self->error ("TLS rejected by server");
$self->_login;
});
}
},
on_read => sub {
while ($_[0]{rbuf} =~ s/^([^\x0a]*)\x0a//) {
my $msg = JSON::decode_json $1;
my $id = shift @$msg;
if (defined $id) {
my $cb = delete $self->{cb}{$id}
or return $self->error ("received unexpected reply msg with id $id");
push @{ $self->{ids} }, $id;
$cb->($self, @$msg);
} else {
$msg->[0] = "on_$msg->[0]_notify";
call $self, @$msg;
}
}
},
;
}
$self
}
Porttracker.pm view on Meta::CPAN
my ($self, $msg) = @_;
$self->error ($msg);
}
sub on_error {
my ($self, $msg) = @_;
warn $msg;
%$self = ();
}
sub on_login_failure {
my ($self, $msg) = @_;
$msg =~ s/\n$//;
$self->error ("login failed: $msg");
}
sub on_event_notify {
my ($self, $event, @args) = @_;
call $self, "on_${event}_event", @args;
}
=back
=head1 EVENTS/CALLBACKS
AnyEvent::Porttracker connections are fully event-driven, and naturally
there are a number of events that can occur. All these events have a name
starting with C<on_> (example: C<on_login_failure>).
Programs can catch these events in two ways: either by providing
constructor arguments with the event name as key and a code-ref as value:
my $api = new AnyEvent::Porttracker
host => ...,
user => ..., pass => ...,
on_error => sub {
my ($api, $msg) = @_;
warn $msg;
exit 1;
},
;
Or by sub-classing C<AnyEvent::Porttracker> and overriding methods of the
same name:
package MyClass;
use base AnyEvent::Porttracker;
sub on_error {
my ($api, $msg) = @_;
warn $msg;
exit 1;
}
Event callbacks are not expected to return anything and are always passed
the API object as first argument. Some might have default implementations
(for example, C<on_error>), others are ignored unless overriden.
Description of individual events follow:
=over 4
=item on_error $api, $msg
Is called for every (fatal) error, including C<error> notifies. The
default prints the message and destroys the object, so it is highly
advisable to override this event.
=item on_login $api, $method
Called after a successful login, after which commands can be send. It is
permissible to send commands before a successful login: those will be
queued and sent just before this event is invoked. C<$method> is the auth
method that was used.
=item on_login_failure $api, $msg
Called when all login attempts have failed - the default raises a fatal
error with the error message from the server.
=item on_hello_notify $api, $version, $authtypes, $nonce
This protocol notification is used internally by AnyEvent::Porttracker -
you can override it, but the module will most likely not work.
=item on_info_notify $api, $msg
Called for informational messages from the server - the default
implementation calls C<warn> but otherwise ignores this notification.
=item on_error_notify $api, $msg
Called for fatal errors from the server - the default implementation calls
C<warn> and destroys the API object.
=item on_start_tls_notify $api
Called when the server wants to start TLS negotiation. This is used
internally and - while it is possible to override it - should not be
overridden.
=item on_event_notify $api, $eventname, @args
Called when the server broadcasts an event the API object is subscribed
to. The default implementation (which should not be overridden) simply
re-issues an "on_eventname_event" event with the @args.
=item on_XYZ_notify $api, ...
In general, any protocol notification will result in an event of the form
C<on_NOTIFICATION_notify>.
=item on_XYZ_event $api, ...
Called when the server broadcasts the named (XYZ) event.
( run in 0.684 second using v1.01-cache-2.11-cpan-cdf2f3d4e48 )