| AnyEvent-XMPP documentation | Contained in the AnyEvent-XMPP distribution. |
AnyEvent::XMPP::IM::Message - Instant message
use AnyEvent::XMPP::IM::Message;
my $con = AnyEvent::XMPP::IM::Connection->new (...);
AnyEvent::XMPP::IM::Message->new (
body => "Hello there!",
to => "elmex@jabber.org"
)->send ($con);
This module represents an instant message. It's mostly a shortlived object and acts as wrapper object around the XML stuff that is happening under the hood.
A AnyEvent::XMPP::IM::Message object overloads the stringification
operation. The string represenation of this object is the return
value of the any_body method.
AnyEvent::XMPP::IM::Message is derived from AnyEvent::XMPP::IM::Delayed, use the interface described there to find out whether this message was delayed.
This method creates a new instance of a AnyEvent::XMPP::IM::Message.
%args is the argument hash. All arguments to new are optional.
These are the possible keys:
This is the AnyEvent::XMPP::IM::Connection object that will
be used to send this message when the send method is called.
This is the destination JID of this message.
$jid should be full if this message is send within a conversation
'context', for example when replying to a previous message.
Replies can also be generated by the make_reply method, see also
the from argument below.
This is the source JID of this message, it's mainly
used by the make_reply method.
This is the default language that will be used to tag the values
passed in the body and subject argument to new.
This is the text $body of the message either with the language
tag from the lang attached or without any language tag.
If you want to attach multiple bodies with different languages use the add_body
method.
This is the $subject of the message either with the language
tag from the lang attached or without any language tag.
If you want to attach the subject with a different language use the add_subject
method.
This field sets the type of the message. See also the type method below.
The default value for $type is 'normal'.
This method returns the ID of this message.
If $msg_id is not undef it will replace the current
message id.
This method returns the source JID of this message.
If $jid is not undef it will replace the current
source address.
This method returns the destination JID of this message.
If $jid is not undef it will replace the current
destination address.
This method returns a new instance of AnyEvent::XMPP::IM::Message. The destination address, connection and type of the returned message object will be set.
If $msg is defined and an instance of AnyEvent::XMPP::IM::Message
the destination address, connection and type of $msg will be changed
and this method will not return a new instance of AnyEvent::XMPP::IM::Message.
This method returns 1 when the message is "connected".
That means: It returns 1 when you can call the send method
without a connection argument. (It will also return only 1 when
the connection that is referenced by this message is still
connected).
This method send this message. If $connection
is defined it will set the connection of this
message object before it is send.
This method returns the type of the message, which is either undefined or one of the following values:
'chat', 'error', 'groupchat', 'headline', 'normal'
If the $type argument is defined it will set the type
of this message.
This method returns the thread id of this message, which might be undefined.
If you want to set the threadid simply pass the $thread
argument.
This returns the default language tag of this message, which can be undefined.
To set the language tag pass the $lang argument, which
should be the new default language tag.
If you do not want to specify any language pass the empty string as language tag.
This method returns the subject of this message.
If the $lang argument is defined a subject of that
language will be returned or undef.
If the $lang argument is undefined this method will
return either the subject in the default language.
This method will try to find any subject on the message with the following try order of languagetags:
1. $lang argument if one passed 2. default language 3. subject without any language tag 4. subject with the 'en' language tag 5. any subject from any language
This method adds the subject $subject with the optional
language tag $lang to this message. If no $lang
argument is passed the default language for this message will be used.
Further subject => lang pairs can passed to this function like this:
$msg->add_subject ('foobar' => undef, "barfooo" => "de");
This method returns a list of key value pairs with the language tag as key and the subject as value.
The subject which has the empty string as key has no language attached.
This method returns the body of this message.
If the $lang argument is defined a body of that
language will be returned or undef.
If the $lang argument is undefined this method will
return either the body in the default language.
This method will try to find any body on the message with the following try order of languagetags:
1. $lang argument if one passed 2. default language 3. body without any language tag 4. body with the 'en' language tag 5. any body from any language
This method adds the body $body with the optional
language tag $lang to this message. If no $lang
argument is passed the default language for this message will be used.
Further body => lang pairs can passed to this function like this:
$msg->add_body ('foobar' => undef, "barfooo" => "de");
This method returns a list of key value pairs with the language tag as key and the body as value.
The body which has the empty string as key has no language attached.
This method allows the user to append custom XML stuff to the message when it is sent. This is an example:
my $msg =
AnyEvent::XMPP::IM::Message->new (
body => "Test!",
to => "test@test.tld",
);
$msg->append_creation (sub {
my ($w) = @_;
$w->startTag (['http://test.namespace','test']);
$w->characters ("TEST");
$w->endTag;
});
$msg->send ($con);
This should send a message stanza similar to this:
Robin Redeker, <elmex at ta-sa.org>, JID: <elmex at jabber.org>
Copyright 2007, 2008 Robin Redeker, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| AnyEvent-XMPP documentation | Contained in the AnyEvent-XMPP distribution. |
package AnyEvent::XMPP::IM::Message; use strict; use overload '""' => "to_string"; use AnyEvent::XMPP::IM::Delayed; our @ISA = qw/AnyEvent::XMPP::IM::Delayed/;
sub new { my $this = shift; my $class = ref($this) || $this; my $self = bless { @_ }, $class; if (my $sub = delete $self->{subject}) { $self->add_subject ($sub); } if (my $body = delete $self->{body}) { $self->add_body ($body); } $self->{type} ||= 'normal'; # default it to 'normal' $self->{lang} ||= ''; $self } sub from_node { my ($self, $node) = @_; $self->{node} = $node; $self->fetch_delay_from_node ($node); my $id = $node->attr ('id'); my $from = $node->attr ('from'); my $to = $node->attr ('to'); my $type = $node->attr ('type'); my ($thread) = $node->find_all ([qw/client thread/]); my %bodies; my %subjects; $bodies{$_->attr ('lang') || ''} = $_->text for $node->find_all ([qw/client body/]); $subjects{$_->attr ('lang') || ''} = $_->text for $node->find_all ([qw/client subject/]); $self->{id} = $id; $self->{from} = $from; $self->{to} = $to; $self->{type} = $type; $self->{thread} = $thread; $self->{bodies} = \%bodies; $self->{subjects} = \%subjects; } sub to_string { my ($self) = @_; $self->any_body }
sub id { my ($self, $id) = @_; $self->{id} = $id if defined $id; $self->{id} }
sub from { my ($self, $from) = @_; $self->{from} = $from if defined $from; $self->{from} }
sub to { my ($self, $to) = @_; $self->{to} = $to if defined $to; $self->{to} }
sub make_reply { my ($self, $msg) = @_; unless ($msg) { $msg = $self->new (); } $msg->{connection} = $self->{connection}; $msg->to ($self->from); $msg->type ($self->type); $msg }
sub is_connected { my ($self) = @_; $self->{connection}->is_connected }
sub send { my ($self, $connection) = @_; $self->{connection} = $connection if $connection; my @add; push @add, (subject => $self->{subjects}) if %{$self->{subjects} || {}}; push @add, (thread => $self->thread) if $self->thread; push @add, (from => $self->from) if $self->from; push @add, (id => $self->id) if $self->id; $self->{connection}->send_message ( $self->to, $self->type, $self->{create_cbs}, body => $self->{bodies}, @add ); }
sub type { my ($self, $type) = @_; $self->{type} = $type if defined $type; $self->{type} }
sub thread { my ($self, $thread) = @_; $self->{thread} = $thread if defined $thread; $self->{thread} }
sub lang { my ($self, $lang) = @_; $self->{lang} = $lang if defined $lang; $self->{lang} }
sub subject { my ($self, $lang) = @_; if (defined $lang) { return $self->{subjects}->{$lang} } return $self->{subjects}->{$self->{lang}}; undef }
sub any_subject { my ($self, $lang) = @_; if (defined $lang) { return $self->{subjects}->{$lang} if defined $self->{subjects}->{$lang}; } return $self->{subjects}->{$self->{lang}} if defined $self->{subjects}->{$self->{lang}}; return $self->{subjects}->{''} if defined $self->{subjects}->{''}; return $self->{subjects}->{en} if defined $self->{subjects}->{en}; return $self->{subjects}->{$_} for (keys %{$self->{subjects}}); return undef; }
sub add_subject { my $self = shift; while (@_) { my $subj = shift; my $lang = shift; $self->{subjects}->{$lang || $self->{lang} || ''} = $subj; } $self }
sub subjects { %{$_[0]->{subjects} || {}} }
sub body { my ($self, $lang) = @_; if (defined $lang) { return $self->{bodies}->{$lang} } else { return $self->{bodies}->{$self->{lang}} if defined $self->{bodies}->{$self->{lang}}; } undef }
sub any_body { my ($self, $lang) = @_; if (defined $lang) { return $self->{bodies}->{$lang} if defined $self->{bodies}->{$lang}; } return $self->{bodies}->{$self->{lang}} if defined $self->{bodies}->{$self->{lang}}; return $self->{bodies}->{''} if defined $self->{bodies}->{''}; return $self->{bodies}->{en} if defined $self->{bodies}->{en}; return $self->{bodies}->{$_} for (keys %{$self->{bodies}}); return undef; }
sub add_body { my $self = shift; while (@_) { my $body = shift; my $lang = shift; $self->{bodies}->{$lang || $self->{lang} || ''} = $body; } $self }
sub bodies { %{$_[0]->{bodies} || {}} }
sub append_creation { my ($self, $cb) = @_; push @{$self->{create_cbs}}, $cb; }
1; # End of AnyEvent::XMPP