我正在创建一个连接到Matrix服务器的机器人。为此,我使用Net::Async::Matrix。
代码:
#!/usr/bin/perl
use strict;
use warnings;
use Net::Async::Matrix;
use Net::Async::Matrix::Utils qw ( parse_formatted_message );
use IO::Async::Loop;
use Data::Dumper;
my $loop = IO::Async::Loop->new;
my $matrix = Net::Async::Matrix->new(
server => 'matrix.server.net',
on_error => sub {
my ( undef, $message ) = @_;
warn "error: $message\n";
},
);
$loop->add( $matrix );
$matrix->login(
user_id => '@bot:matrix.server.net',
password => 'password',
)->get;
my $room = $matrix->join_room( '#Lobby:matrix.server.net' )->get;
$room->configure(
on_message => sub {
my ( undef, $member, $content, $event ) = @_;
my $msg = parse_formatted_message( $content );
my $sendername = $member->displayname;
print Dumper $sendername;
&sendmsg("$sendername said: $msg");
},
);
my $stream = $matrix->start;
sub sendmsg {
my $input = shift;
if ($input) {
$room->send_message(
type => "m.text",
body => $input,
),
}
}
$loop->run;
基本上,我希望机器人能够回应所说的内容。
我得到以下输出:
$ VAR1 ='m1ndgames'; Longpoll失败 - 遇到了对象'm1ndgames 说:测试',但既不是allow_blessed,也不是convert_blessed 在启用allow_tags设置(或缺少TO_JSON / FREEZE方法) /usr/local/share/perl/5.24.1/Net/Async/Matrix.pm第292行。
我不明白。当我将test
之类的字符串输入到正文中时,会将其发送到房间。
答案 0 :(得分:2)
parse_formatted_message
返回一个String :: Tagged对象。此类重载连接,以便"$sendername said: $msg"
也返回String :: Tagged对象。此对象传递给sendmsg
,它尝试将其序列化为JSON,但它拒绝序列化对象。
修复:替换
my $msg = parse_formatted_message( $content );
带
my $msg = parse_formatted_message( $content )->str;
答案 1 :(得分:0)
我猜这是引用错误。如果你看Net::Async::Matrix::Room
:
sub send_message
{
my $self = shift;
my %args = ( @_ == 1 ) ? ( type => "m.text", body => shift ) : @_;
my $type = $args{msgtype} = delete $args{type} or
croak "Require a 'type' field";
$MSG_REQUIRED_FIELDS{$type} or
croak "Unrecognised message type '$type'";
foreach (@{ $MSG_REQUIRED_FIELDS{$type} } ) {
$args{$_} or croak "'$type' messages require a '$_' field";
}
if( defined( my $txn_id = $args{txn_id} ) ) {
$self->_do_PUT_json( "/send/m.room.message/$txn_id", \%args )
->then_done()
}
else {
$self->_do_POST_json( "/send/m.room.message", \%args )
->then_done()
}
}
您发送的type
由此子处理,然后实际消息将传递到Net::Async::Matrix
中的_do_POST_json
。
但您发送了一个包含:
的字符串。
所以我认为它发生的是这样的编码:
use JSON;
use Data::Dumper;
my $json = encode_json ( {body => "m1ndgames: said test"});
print Dumper $json;
但回复的反应是在第292行:
if( length $content and $content ne q("") ) {
eval {
$content = decode_json( $content );
1;
} or
return Future->fail( "Unable to parse JSON response $content" );
return Future->done( $content, $response );
}
所以我认为正在发生的事情是远程服务器向您发送一个损坏的错误代码,并且该模块没有正确处理它 - 它期待{{1但它实际上并没有得到它。
我最好的猜测是 - 尝试将JSON
从您的消息中删除,因为我猜测会发生一些糟糕的引用。但是,如果没有在服务器端看到代码,我无法说清楚。