summaryrefslogtreecommitdiffstats
path: root/scripts/thistory.pl
blob: 47bc85dffd69600b6a84dbeb9f0d90b9e4ce4a7f (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
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
# thistory.pl v1.05 [10.03.2002]
# Copyright (C) 2001, 2002 Teemu Hjelt <temex@iki.fi>
#
# Written for irssi 0.7.98 and later, idea from JSuvanto.
#
# Many thanks to fuchs, shasta, Paladin, Koffa and people 
# on #irssi for their help and suggestions.
#
# Keeps information about the most recent topics of the 
# channels you are on.
# Usage: /thistory [channel] and /tinfo [channel]
# 
# v1.00 - Initial release.
# v1.02 - Months and topics with formatting were shown
#         incorrectly. (Found by fuchs and shasta)
# v1.03 - event_topic was occasionally using the wrong
#         server tag. Also added few variables to ease
#         changing the settings and behaviour of this
#         script.
# v1.04 - Minor bug-fixes.
# v1.05 - Made the script more consistent with other
#         Irssi scripts.

use strict;
use Irssi;
use Irssi::Irc;
use vars qw($VERSION %IRSSI);

# Formatting character.
my $fchar = '%';

# Format of the line.
my $format = '"%topic" %nick (%address) [%mday.%mon.%year %hour:%min:%sec]';

# Amount of topics stored.
my $tamount = 10;

my %topiclist;
###### Don't edit below this unless you know what you're doing ######

$VERSION = "1.05";
%IRSSI = (
	authors     => "Teemu Hjelt",
	contact     => "temex\@iki.fi",
	name        => "topic history",
	description => "Keeps information about the most recent topics of the channels you are on.",
	license     => "GNU GPLv2 or later",
	url         => "http://www.iki.fi/temex/",
	changed     => "Sun Mar 10 14:53:59 EET 2002",
);

sub cmd_topicinfo {
	my ($channel) = @_;
	my $tag = Irssi::active_server()->{'tag'};
	$channel =~ s/\s+//;
	$channel =~ s/\s+$//;

	if ($channel eq "") {
		if (Irssi::channel_find(Irssi::active_win()->get_active_name())) {
			$channel = Irssi::active_win()->get_active_name();
		}
	}
	if ($channel ne "") {
		if ($topiclist{lc($tag)}{lc($channel)}{0}) {
			Irssi::print("%W$channel%n: " . $topiclist{lc($tag)}{lc($channel)}{0}, MSGLEVEL_CRAP);
		} else {
			Irssi::print("No topic information for %W$channel%n", MSGLEVEL_CRAP);
		}
	} else {
		Irssi::print("Usage: /tinfo <channel>");
	}
}

sub cmd_topichistory {
	my ($channel) = @_;
	my $tag = Irssi::active_server()->{'tag'};
	$channel =~ s/\s+//;
	$channel =~ s/\s+$//;

        if ($channel eq "") {
                if (Irssi::channel_find(Irssi::active_win()->get_active_name())) {
                        $channel = Irssi::active_win()->get_active_name();
                }
        }
	if ($channel ne "") {
		if ($topiclist{lc($tag)}{lc($channel)}{0}) {
			my $amount = &getamount($tag, $channel);
			Irssi::print("Topic history for %W$channel%n:", MSGLEVEL_CRAP);
			for (my $i = 0; $i < $amount; $i++) {
				if ($topiclist{lc($tag)}{lc($channel)}{$i}) {
					my $num = $i + 1;
					if (length($amount) >= length($tamount) && length($i + 1) < length($tamount)) {
						for (my $j = length($tamount); $j > length($i + 1); $j--) {
							$num = " " . $num;
						}
					}
					Irssi::print($num . ". " . $topiclist{lc($tag)}{lc($channel)}{$i}, MSGLEVEL_CRAP);
				} else {
					last;
				}
			}
		} else {
			Irssi::print("No topic history for %W$channel%n", MSGLEVEL_CRAP);
		}
	} else {
		Irssi::print("Usage: /thistory <channel>");
	}
}

sub event_topic {
	my ($server, $data, $nick, $address) = @_;
	my ($channel, $topic) = split(/ :/, $data, 2);
	my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = localtime(time);
	my $tag = $server->{'tag'};
	my $output = $format;

	$topic =~ s/%/%%/g;
	$topic .= '%n';

	my %val;
	$val{'sec'} = $sec < 10 ? "0$sec" : $sec;
	$val{'min'} = $min < 10 ? "0$min" : $min;
	$val{'hour'} = $hour < 10 ? "0$hour" : $hour;
	$val{'mday'} = $mday < 10 ? "0$mday" : $mday;
	$val{'mon'} = $mon + 1 < 10 ? "0" . ($mon + 1) : $mon + 1;
	$val{'year'} = $year + 1900;

	$val{'nick'} = $nick;
	$val{'address'} = $address;
	$val{'channel'} = $channel;
	$val{'topic'} = $topic;
	$val{'tag'} = $tag;

	$output =~ s/$fchar(\w+)/$val{$1}/g;

        for (my $i = (&getamount($tag, $channel) - 1); $i >= 0; $i--) {
		if ($topiclist{lc($tag)}{lc($channel)}{$i}) {
			$topiclist{lc($tag)}{lc($channel)}{$i + 1} = $topiclist{lc($tag)}{lc($channel)}{$i};
		} 
        }
        $topiclist{lc($tag)}{lc($channel)}{0} = $output;
}

sub getamount {
	my ($tag, $channel) = @_;
	my $amount = 0;
	
	for (my $i = 0; $i < $tamount; $i++) {
		if ($topiclist{lc($tag)}{lc($channel)}{$i}) {
			$amount++;
		}
	}
	return $amount;
}

Irssi::command_bind("topichistory", "cmd_topichistory");
Irssi::command_bind("thistory", "cmd_topichistory");
Irssi::command_bind("topicinfo", "cmd_topicinfo");
Irssi::command_bind("tinfo", "cmd_topicinfo");
Irssi::signal_add("event topic", "event_topic");

Irssi::print("Loaded thistory.pl v$VERSION");