mirror of
https://github.com/fhem/fhem-mirror.git
synced 2024-11-22 09:49:50 +00:00
c905a808c8
versendet Messages per GoogleTalk, zb aufs Handy git-svn-id: https://svn.fhem.de/fhem/trunk@2615 2b470e98-0d58-463d-a4d8-8e2adae1ed80
65 lines
1.3 KiB
Perl
65 lines
1.3 KiB
Perl
##############################################
|
|
# $Id:$
|
|
##########################################################
|
|
# GoogleTalk
|
|
# Nachricht mittles GoogleTalk auf ein Android-Smartphone
|
|
|
|
package main;
|
|
|
|
use strict;
|
|
use warnings;
|
|
use POSIX;
|
|
|
|
sub
|
|
Utils_GoogleTalk_Initialize($$)
|
|
{
|
|
my ($hash) = @_;
|
|
}
|
|
|
|
sub GoogleTalk($) {
|
|
|
|
my ($message) = @_;
|
|
|
|
Log (3, "GoogleTalk \"" . $message . "\"");
|
|
|
|
use Net::XMPP;
|
|
my $conn = Net::XMPP::Client->new;
|
|
|
|
# individuelles Google-Konto zum Versenden
|
|
my $username = '<username>';
|
|
my $domain = 'gmail.com';
|
|
my $password = '<mypass>';
|
|
|
|
# individuelles Google-Konto zum Empfangen
|
|
my $recipient = '<empfaenger@gmail.com>';
|
|
|
|
my $resource = 'FHEM';
|
|
|
|
my $status = $conn->Connect(
|
|
hostname => 'talk.google.com',
|
|
port => 5222,
|
|
componentname => $domain,
|
|
connectiontype => 'tcpip',
|
|
tls => 1,
|
|
);
|
|
|
|
die "Connection failed: $!" unless defined $status;
|
|
my ($res,$msg) = $conn->AuthSend(
|
|
username => $username,
|
|
password => $password,
|
|
resource => $resource,
|
|
);
|
|
|
|
die "Auth failed ", defined $msg ? $msg : '', " $!" unless defined $res and $res eq 'ok';
|
|
$conn->MessageSend(
|
|
to => $recipient,
|
|
resource => $resource,
|
|
subject => 'message via ' . $resource,
|
|
type => 'chat',
|
|
body => $message,
|
|
);
|
|
|
|
}
|
|
|
|
1;
|