summaryrefslogtreecommitdiffstats
path: root/notify.pl
blob: c87b02f4325deb3f7d173184281c1088af4f081c (plain)
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
##
## 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 Net::DBus qw(:typing);


$VERSION = "0.2.0";
%IRSSI = (
    authors     => 'Luke Macken, Paul W. Frields',
    contact     => 'lewk@csh.rit.edu, stickster@gmail.com',
    name        => 'notify.pl',
    description => 'Use D-Bus to alert user to hilighted messages',
    license     => 'GNU General Public License',
    url         => 'http://lewk.org/log/code/irssi-notify',
);

Irssi::settings_add_str('notify', 'notify_icon', 'gtk-dialog-info');
Irssi::settings_add_str('notify', 'notify_time', '5000');

sub atoi {
    my $t;
    foreach my $d (split(//, shift())) {
	$t = $t * 10 + $d;
    }
}

sub notify {
    my ($server, $summary, $message) = @_;
    my $bus = Net::DBus->session;
    return if (!$bus);
    my $svc = $bus->get_service("org.freedesktop.Notifications");
    my $obj = $svc->get_object("/org/freedesktop/Notifications");

    # Make the message entity-safe.  This is all a crappy hack and I'd
    # love to know a Perl-ish way to do this properly.
    $message =~ s/&/&/g;
    $message =~ s/</&lt;/g;
    $message =~ s/>/&gt;/g;
    $message =~ s/'/&apos;/g;
    
    $obj->Notify("notify.pl",
		 0,
		 '',
		 $summary,
		 $message,
		 ['Close', 'Close'],
		 {0, 0, 0}, 
		 atoi(Irssi::settings_get_str('notify_time')));
}
 
sub print_text_notify {
    my ($dest, $text, $stripped) = @_;
    my $server = $dest->{server};

    return if (!$server || !($dest->{level} & MSGLEVEL_HILIGHT));
    notify($server, $dest->{target}, $stripped);
}

sub message_private_notify {
    my ($server, $msg, $nick, $address) = @_;

    return if (!$server);
    notify($server, "Private message from ".$nick, $msg);
}

sub dcc_request_notify {
    my ($dcc, $sendaddr) = @_;
    my $server = $dcc->{server};

    return if (!$server || !$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');
print "D-Bus plugin loaded.";