display presence in web browser
[MQR.git] / scripts / mqr-xmpp-client.pl
index 23dbfd6..489ef83 100755 (executable)
@@ -9,16 +9,19 @@ use AnyEvent::XMPP::Ext::Version;
 use AnyEvent::XMPP::Namespaces qw/xmpp_ns/;
 use AnyEvent::XMPP::Ext::MUC;
 use AnyEvent::XMPP::Util qw/node_jid res_jid/;
-use AnyEvent::Redis;
 use Data::Dump qw(dump);
 use Encode;
 use Carp qw(confess);
 
+use lib 'lib';
+use MQR::Redis;
+
 binmode STDOUT, ":utf8";
 
-my $jid  = $ENV{XMPP_JID} || die "XMPP_JID";
-my $pw   = $ENV{XMPP_PASSWD} || die "XMPP_PASSWD";
-my $room = $ENV{XMPP_ROOM} || die "XMPP_ROOM";
+my $jid = $ENV{XMPP_JID} || die "XMPP_JID";
+my $pw  = $ENV{XMPP_PASSWD} || die "XMPP_PASSWD";
+my $room = $ENV{XMPP_ROOM} || warn "no XMPP_ROOM - not joining any muc rooms!\n";
+my $subscribe  = $ENV{XMPP_SUBSCRIBE} || warn "no XMPP_SUBSCRIBE - pushing ALL MSG\n";
 
 my $j       = AnyEvent->condvar;
 my $cl      = AnyEvent::XMPP::Client->new (debug => 1);
@@ -35,24 +38,49 @@ $cl->set_presence(undef, 'I\'m a talking bot.', 1);
 $cl->add_account ($jid, $pw);
 warn "connecting to $jid...\n";
 
-my $sub = AnyEvent::Redis->new( host => $ENV{REDIS_HOST}, port => $ENV{REDIS_PORT}, on_error => sub { confess @_ } );
-
-our $contacts = { $room => 1 };
-
-$sub->psubscribe( 'channel *', sub {
-       my ( $message, $from ) = @_;
-       return unless $from !~ m/\Q$jid\E/; # skip our messages
-       Encode::_utf8_on($message);
-       warn "#Q<< ", dump( $from, $message );
-       my ( undef, $channel, $user ) = split(/ /,$from,3);
-warn "# contacts ",dump($contacts);
-       foreach my $contact ( keys %$contacts ) {
-               next if $from =~ m/\Q$contact\E/;
-               warn "# $jid [$from] -> [$contact] | $message\n";
-               $cl->send_message( join(' ',$channel, $user, $message), $contact => $jid, 'chat' );
+warn "# jid:$jid root:$room subscribe:$subscribe\n";
+
+our $contacts;
+our $muc_rooms;
+
+sub publish;
+
+sub redis { MQR::Redis->redis }
+
+redis->psubscribe( "MSG $subscribe", sub {
+       my ( $body, $channel ) = @_;
+       warn "<<<< ", dump( $channel, $body );
+       Encode::_utf8_on($body);
+
+       my ( undef, $gw, $room, $user, $from ) = split(/\s/,$channel);
+
+       return if $from eq $jid; # FIXME skip own
+
+       foreach my $to ( keys %$contacts, keys %$muc_rooms ) {
+               next if $from =~ m/\Q$to\E/; # FIXME
+               my $type = defined $muc_rooms->{$to} ? 'groupchat' : 'chat';
+               publish "SEND $jid $type $user $to" => $body;
        }
+}) if $subscribe;
+
+redis->psubscribe( "SEND $jid *", sub {
+       my ( $body, $channel ) = @_;
+       warn "<<<< ",dump( $channel, $body );
+       Encode::_utf8_on($body);
+
+       my ( undef, $gw, $type, $user, $to ) = split(/\s/, $channel);
+       warn "SEND $jid $type $to <$user> $body\n";
+       $cl->send_message( "<$user> $body", $to => $jid, $type );
 });
 
+#redis->psubscribe( '*' => sub { warn @_, $/ };
+
+sub publish {
+       my ( $channel, $body ) = @_;
+       Encode::_utf8_off($body);
+       MQR::Redis->publish( $channel, $body );
+}
+
 $cl->reg_cb (
    session_ready => sub {
       my ($cl, $acc) = @_;
@@ -61,9 +89,19 @@ $cl->reg_cb (
       $muc->reg_cb (
          message => sub {
             my ($cl, $room, $msg, $is_echo) = @_;
+               my $room_jid = $room->nick_jid;
+               $muc_rooms->{ $room_jid }++;
+               redis->sadd( "presence/rooms $jid" => $room_jid );
+warn "# MUC message ",dump( $room_jid, $msg->any_body, $is_echo );
 
             return if $is_echo;
             return if $msg->is_delayed;
+
+                       my $from = $msg->from;
+                       my $user = $from;
+                       $user =~ s{^.+/}{};
+                       publish "MSG $room_jid groupchat $user $from" => $msg->any_body;
+
             my $mynick = res_jid ($room->nick_jid);
             if ($msg->any_body =~ /^\s*\Q$mynick\E:\s+(.*?)\s*$/) {
                my $ans = answer_to ($1);
@@ -77,19 +115,17 @@ $cl->reg_cb (
    message => sub {
                my ($cl, $acc, $msg) = @_;
 
+               my $from = $msg->from;
                my $body = $msg->any_body;
 
-               my $f = $msg->from;
-               $f =~ s!/.+!!;
-               $contacts->{ $f }++;
+#              $contacts->{ $from }++; # don't push to anyone who sent message
+
+               my $user = $from;
+               $user =~ s{\@.+$}{};
 
-warn "# contacts ",dump($contacts);
+               my $type = $msg->type;
 
-               my $channel = join(' ', 'channel', $jid, $msg->from);
-               Encode::_utf8_off($body);
-               my $pub = AnyEvent::Redis->new( host => $ENV{REDIS_HOST}, port => $ENV{REDIS_PORT}, on_error => sub { confess @_ } );
-               $pub->publish( $channel, $body );
-               warn "#X<< ",dump($channel, $body);
+               publish "MSG $jid $type $user $from" => $body;
 
 #              my $repl = $msg->make_reply;
 #              $repl->add_body( $response );
@@ -115,7 +151,8 @@ warn "# contacts ",dump($contacts);
                my ($con,$account,$roster) = @_;
 warn "XXXXX", ref($account), " | ", ref($roster);
                foreach my $contact ( $roster->get_contacts ) {
-                       $contacts->{ $contact->{jid} }++;
+                       $contacts->{ $contact->jid }++;
+                       redis->sadd( "presence/contacts $jid" => $contact->jid );
                        warn "# contacts ",dump($contacts);
                }
                warn "# contacts ",dump($contacts);