forked from guyzmo/notossh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotify.pl
66 lines (54 loc) · 1.91 KB
/
notify.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
##
## Put me in ~/.irssi/scripts, and then execute the following in irssi:
##
## /load perl
## /script load notify
##
use strict;
use Irssi;
use vars qw($VERSION %IRSSI);
use IO::Socket;
$VERSION = "0.2";
%IRSSI = (
authors => 'Bernard `Guyzmo` Pratz, Luke Macken, Paul W. Frields',
contact => 'guyzmo AT m0g DOT net, lewk@csh.rit.edu, stickster@gmail.com',
name => 'notify.pl',
description => 'Use libnotify over SSH to alert user for hilighted messages',
license => 'GNU General Public License',
url => 'http://github.com/guyzmo/irssi-over-ssh-notifications',
);
sub notify {
my ($server, $summary, $message) = @_;
my $remote = IO::Socket::INET->new(
Proto => "tcp",
PeerAddr => "localhost",
PeerPort => "4222",
)
or die "cannot connect to 4222 port at localhost";
# ... write notifications to the socket ... #
print $remote $summary . ": '" . $message . "'\n";
}
sub print_text_notify {
my ($dest, $text, $stripped) = @_;
my $server = $dest->{server};
return if (!$server || !($dest->{level} & MSGLEVEL_HILIGHT));
my $sender = $stripped;
$sender =~ s/^\<.([^\>]+)\>.+/\1/ ;
my $summary = $sender . "@" . $dest->{server}->{tag} . $dest->{target};
$stripped =~ s/^\<.[^\>]+\>.// ;
notify($server, $summary, $stripped);
}
sub message_private_notify {
my ($server, $msg, $nick, $address) = @_;
return if (!$server);
notify($server, "PM from ".$nick, $msg);
}
sub dcc_request_notify {
my ($dcc, $sendaddr) = @_;
my $server = $dcc->{server};
return if (!$dcc);
notify($server, "DCC ".$dcc->{type}." request", $dcc->{nick});
}
Irssi::signal_add('print text', 'print_text_notify');
Irssi::signal_add('message private', 'message_private_notify');
Irssi::signal_add('dcc request', 'dcc_request_notify');