-
Notifications
You must be signed in to change notification settings - Fork 235
/
notes.pl
273 lines (228 loc) · 7.47 KB
/
notes.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
# First, add $NOTE to your /format whois line so the output is shown, for example use
# '/format whois {nick $0} {nickhost $1@$2}%:{whois ircname $3}%:{whois note $NOTE}' which would produce
# Dec 12 21:24:18 -!- vague [[email protected]]
# Dec 12 21:24:18 -!- ircname : vague
# Dec 12 21:24:18 -!- note : A nice guy but can be a PITA :)
# ...
#
# See /notes help for more help
#
# Prerequisites:
# irssi 0.8.13+
# DBM::Deep
# DBI
use strict;
use warnings;
use Irssi;
use DBI;
use DBM::Deep;
use List::MoreUtils qw(any);
no autovivification;
use feature qw(fc);
use Data::Dumper;
our $VERSION = '1.0';
our %IRSSI = (
authors => 'vague',
contact => 'vague!#irssi@freenode',
name => 'notes',
description => 'Keeps notes on users and displayes the note in /whois output if the host/nick matches',
license => 'GPL2',
changed => '22 Apr 20:00:00 CEST 2017',
);
my ($notes, $expando);
my @chatnets;
my $DEBUG_ENABLED;
push @chatnets, $_->{name} for(Irssi::chatnets());
sub DEBUG { $DEBUG_ENABLED }
sub _print {
my ($msg, $w) = @_;
$w = Irssi::active_win() unless $w;
$w->print($msg, Irssi::MSGLEVEL_CLIENTCRAP);
}
sub _error {
my ($msg, $w) = @_;
$w = Irssi::active_win() unless $w;
$w->print($msg, Irssi::MSGLEVEL_CLIENTCRAP);
}
sub _debug {
my ($msg, $w) = @_;
return unless DEBUG;
$w = Irssi::active_win() unless $w;
$w->print($msg, Irssi::MSGLEVEL_CLIENTCRAP);
}
sub init {
$DEBUG_ENABLED = Irssi::settings_get_bool("notes_verbose");
my $filename = Irssi::settings_get_str("notes_db") // Irssi::get_irssi_dir() . "/notes.db";
$filename =~ s,^~,$ENV{HOME},e;
_debug "Loading database from " . $filename, Irssi::window_find_refnum(1);
$notes = DBM::Deep->new( file => $filename, autoflush => 1 );
$expando = '';
}
sub sig_whois {
my ($server, $data, undef, undef) = @_;
my ($me, $nick, $user, $host) = split(" ", $data);
my $network = fc $server->{tag};
$nick = fc $nick;
if ($notes->{$network}{nick}{$nick}) {
$expando = $notes->{$network}{nick}{$nick};
}
else {
my $masks = $notes->{$network}{mask};
while (my ($mask, $value) = each %$masks) {
if ($server->mask_match_address(fc $mask, $nick, sprintf('%s@%s', $user, $host))) {
$expando = $value;
}
}
}
}
sub expand_note {
my $tmp = $expando;
$expando = '';
return $tmp;
}
sub cmd_notes_add {
my ($data, $server, $witem) = @_;
my ($args, $rest) = Irssi::command_parse_options('notes add', $data);
my ($type, $pattern);
unless ($rest) {
_error "You have to specify notes to add", $witem;
}
if (any {/nick|mask/i} keys %$args) {
_error("Can't specify both -nick and -mask", $witem) && return if $args->{nick} && $args->{mask};
$type = $args->{nick} ? 'nick' : 'mask';
$pattern = fc $args->{$type};
}
my $patt = join('|', @chatnets);
my @networks = grep {/$patt/i} keys %$args;
unless (@networks) {
push @networks, fc $server->{tag};
}
unless ($type && $pattern) {
_error "Could not parse command\n" . usage(), $witem;
return;
}
for (@networks) {
$notes->{$_}{$type}{$pattern} = $rest;
_print "Added $type $pattern to $_ with data: $rest", $witem;
}
}
sub cmd_notes_del {
my ($data, $server, $witem) = @_;
my ($args, $rest) = Irssi::command_parse_options('notes del', $data);
my ($type, $pattern);
if (any {/nick|mask/i} keys %$args) {
_error("Can't specify both -nick and -mask", $witem) && return if $args->{nick} && $args->{mask};
$type = $args->{nick} ? 'nick' : 'mask';
$pattern = fc $args->{$type};
}
my $patt = join('|', @chatnets);
my @networks = grep {/$patt/i} keys %$args;
my $purge = (defined $args->{purge} ? 1 : 0);
unless ($purge || ($type && $pattern)) {
_error "Could not parse command\n" . usage(), $witem;
return;
}
if ($purge && !@networks) {
$notes->clear;
_print "Deleted all notes", $witem;
return;
}
else {
push @networks, fc $server->{tag} if !@networks;
}
for (@networks) {
if ($purge) {
delete $notes->{$_};
_print "Deleted all notes for users on $_", $witem;
}
elsif ($notes->{$_}{$type}{$pattern}) {
delete $notes->{$_}{$type}{$pattern};
delete $notes->{$_}{$type} if !keys %{$notes->{$_}{$type}};
delete $notes->{$_} if !keys %{$notes->{$_}};
_print "Deleted $type $pattern from $_", $witem;
}
else {
_error "\u$type '$pattern' on '$_' not found", $witem;
}
}
}
sub cmd_notes_list {
my ($data, $server, $witem) = @_;
my ($args, $rest) = Irssi::command_parse_options('notes list', $data);
my ($type, $pattern);
if (any {/nick|mask/i} keys %$args) {
_error("Can't specify both -nick and -mask", $witem) && return if $args->{nick} && $args->{mask};
$type = $args->{nick} ? 'nick' : 'mask';
$pattern = fc $args->{$type};
}
my $patt = join('|', @chatnets);
my @networks = map {fc} grep {/$patt/i} keys %$args;
my $all = !$type && !$pattern;
if ($all) {
for my $tag (keys %$notes) {
next if @networks && !any {/$tag/} @networks;
next unless keys %{$notes->{$tag}};
_print "--- Notes for $tag ---", $witem;
my $nicks = $notes->{$tag}->{nick};
while (my ($nick, $value1) = each %$nicks) {
_print "$nick: $value1", $witem;
}
my $masks = $notes->{$tag}->{mask};
while (my ($hostmask, $value2) = each %$masks) {
_print "$hostmask: $value2", $witem;
}
}
}
else {
unless (@networks) {
push @networks, fc $server->{tag};
}
for (@networks) {
if ($type && $pattern) {
if ($notes->{$_}{$type}{$pattern}) {
_print "--- Note on $_/$type/$pattern ---", $witem;
_print $notes->{$_}{$type}{$pattern}, $witem;
}
else {
_print "--- Nothing on $_/$type/$pattern ---", $witem;
}
}
else {
return unless keys %{$notes->{$_}};
Irssi::active_win()->print("--- Notes for $_ ---");
my $nicks = $notes->{$_}{nick};
while (my ($nick, $value1) = each %$nicks) {
Irssi::active_win()->print($nick . ": " . $value1);
}
my $masks = $notes->{$_}{mask};
while (my ($hostmask, $value2) = each %$masks) {
Irssi::active_win()->print($hostmask . ": " . $value2);
}
}
}
}
}
sub usage {
return "Usage: %_/notes%_ add [-tag] -nick|-mask <pattern> <notes>\n" .
" %_/notes%_ del [-tag] [-purge] -nick|-mask <pattern>\n" .
" %_/notes%_ list [-tag] [-nick|-mask <pattern>]";
}
Irssi::command_bind('notes' => sub {
my ( $data, $server, $item ) = @_;
$data =~ s/\s+$//g;
Irssi::command_runsub ('notes', $data, $server, $item ) ;
});
Irssi::command_bind('notes add', 'cmd_notes_add');
Irssi::command_bind('notes del', 'cmd_notes_del');
Irssi::command_bind('notes list', 'cmd_notes_list');
Irssi::command_bind('notes help', sub { Irssi::active_win()->print(usage()); });
Irssi::command_set_options('notes add', join(' ', @chatnets) . ' +nick +mask');
Irssi::command_set_options('notes del', join(' ', @chatnets) . ' purge +nick +mask');
Irssi::command_set_options('notes list', join(' ', @chatnets) . ' +nick +mask');
Irssi::settings_add_str('Notes', 'notes_db', Irssi::get_irssi_dir() . "/notes.db");
Irssi::settings_add_bool('Notes', 'notes_verbose', 0);
Irssi::signal_add('setup changed' => \&init);
Irssi::signal_add_first('event 311', \&sig_whois);
Irssi::expando_create('NOTE', \&expand_note,
{'event 311' => 'None' });
init();