Net::AIML - Perl interface to the Pandorabots.com AIML server


Net-AIML documentation Contained in the Net-AIML distribution.

Index


Code Index:

NAME

Top

Net::AIML - Perl interface to the Pandorabots.com AIML server

VERSION

Top

Version 0.0.2

SYNOPSIS

Top

    #!/usr/bin/perl
    package Alice;
    use Net::AIML;
    use IO::Prompt;

    my $bot = Net::AIML->new( botid => be50f516be367d9d ); # Alice
    while (prompt "You: ") {
    	print "Alice: ".$bot->tell($_)."\n";
    }  

DESCRIPTION

Top

Pandorabots.com provides an XMLRPC interface to their AIML server. This module wraps that interface into an easy Perl OO interface.

INTERFACE

Top

Net::AIML exports exactly two methods.

new

The only important parameter currently being c< botid > which identifies the bot you wish to use on Pandorabots.com. You can get this botid from Pandorabots.

tell

Given a line of text, tell returns the line returned by pandorabots.

CONFIGURATION AND ENVIRONMENT

Top

Net::AIML uses LWP internally. Any environment variables that LWP supports should be supported by Net::AIML. I hope.

DEPENDENCIES

Top

HTTP::Request::Common
LWP::Simple
LWP::UserAgent
XML::Smart

INCOMPATIBILITIES

Top

None reported.

BUGS AND LIMITATIONS

Top

No bugs have been reported.

Please report any bugs or feature requests to bug-net-aiml@rt.cpan.org, or through the web interface at http://rt.cpan.org.

AUTHOR

Top

Chris Prather <cpan@prather.org>

LICENCE AND COPYRIGHT

Top

DISCLAIMER OF WARRANTY

Top

BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.


Net-AIML documentation Contained in the Net-AIML distribution.

package Net::AIML;
use strict;
use warnings;

our $VERSION = '0.0.5';


use HTTP::Request::Common qw(POST);
use LWP::Simple;
use LWP::UserAgent;
use XML::Smart;

use constant BOTURL => 'http://www.pandorabots.com/pandora/talk-xml';

sub new {
    my $class = shift;
    return bless {@_}, $class;
}

sub tell {
    my ( $self, $input, $custid ) = @_;
    my $ua = LWP::UserAgent->new();
    $ua->env_proxy();
    my $req = POST BOTURL,
      [ botid => $self->{botid}, custid => $custid, input => $input ];
    my $res = $ua->request($req);
    if ( ! $res->is_success ) { return "sorry, I'm having connection problems"; }
    my $xs    = XML::Smart->new( $res->content );    # or whatever    
    my $error = qq[$xs->{result}{status}];
    if ($error) { warn $error; return; }
    return wantarray
      ? ( qq[$xs->{result}{that}], qq[$xs->{result}{custid}] )
      : qq[$xs->{result}{that}];
}

1;
__END__

1; # Magic true value required at end of module
__END__