#!/usr/bin/env perl # # ChivaNet AIM Bot # Copyright (C) 2024, 2025 Coherent Logic Development LLC # # Author: Serena Willis # # Licensed AGPL-3.0 # # $Log: bot.pl,v $ # Revision 1.1 2025/01/30 05:27:42 snw # Initial revision # # use Net::OSCAR qw(:standard :loglevels); use HTML::Strip; use REST::Client; use JSON::XS; use Data::Dumper; use Getopt::Long; my $botsn = ''; my $botsrv = ''; my $botpw = ''; my $rasurl = ''; GetOptions("aimsn=s" => \$botsn, "aimhost=s" => \$botsrv, "aimpw=s" => \$botpw, "rasurl=s" => \$rasurl) or die("error in command line arguments"); %signon = ( screenname => $botsn, password => $botpw, host => $botsrv, ); $oscar = Net::OSCAR->new(); %invites; sub signon_done { print "[OK]\n"; $online = 1; } sub chat_joined { my($oscar, $chatname, $chat) = @_; print "bot: joined $chatname\n"; foreach my $i ( 0 .. $invites{$chatname}->$#* ) { $invitee = $invites{$chatname}[$i]; print "bot: inviting $invitee to $chatname...\n"; $chat->chat_send("Inviting $invitee to $chatname...\n"); $chat->invite($invitee, "Please join us in $chatname"); } delete($invites{$chatname}); $chat->part(); } sub im_in { my($oscar, $sender, $message, $is_away) = @_; my $hs = HTML::Strip->new(); my $rawcmd = $hs->parse($message); my @cmd = split(' ', $rawcmd); print "bot: command $cmd[0] received from $sender\n"; if($cmd[0] eq "ping") { $oscar->send_im($sender, "pong", $is_away); } elsif($cmd[0] eq "join") { my @rooma = @cmd[1..$#cmd]; my $room = join(' ', @rooma); my $client = REST::Client->new(); $client->GET("$rasurl/chat/room/public"); my $json = $client->responseContent(); my $arrayref = decode_json $json; foreach my $hash(@{$arrayref}) { if ($$hash{"name"} eq $room) { print "bot: sending invite to $sender for $room\n"; push $invites{$room}->@*, $sender; $oscar->send_im($sender, "Okay, I'll invite you to $room. You may need to have me in your buddy list for this to work.", $is_away); my $chat = $oscar->chat_join($room, 5); return; } } $oscar->send_im($sender, "You have specified a chat room that does not exist. Please remember that chat room names are case-sensitive.", $is_away); } elsif($cmd[0] eq "listchat") { my $client = REST::Client->new(); $client->GET("$rasurl/chat/room/public"); my $json = $client->responseContent(); my $arrayref = decode_json $json; print "bot: sending chat list to $sender\n"; foreach my $hash(@{$arrayref}) { my $url = "" . $$hash{"name"} . ""; $oscar->send_im($sender, $url, $is_away); } $oscar->send_im($sender, "You may join one of the above chat rooms by clicking the link or sending me 'join chat-room-name' to request an invite."); } else { $oscar->send_im($sender, "You can send me any of the following commands:", $is_away); $oscar->send_im($sender, " help: lists available bot commands", $is_away); $oscar->send_im($sender, " ping: tests the bot for response", $is_away); $oscar->send_im($sender, " listchat: lists the public chat roooms available on ChivaNet", $is_away); $oscar->send_im($sender, " join chat-room-name: joins public chat room chat-room-name", $is_away); $oscar->send_im($sender, " Please note that chat-room-name is case-sensitive", $is_away); } } $oscar->set_callback_signon_done(\&signon_done); $oscar->set_callback_im_in(\&im_in); $oscar->set_callback_chat_joined(\&chat_joined); print "ChivaNet AIM Bot v0.1.0\n"; print " Copyright (C) 2024, 2025 Coherent Logic Development LLC\n\n"; print "bot: attempting to sign in... "; $oscar->signon(%signon); while(1) { $oscar->do_one_loop(); }