blob: 6c5437116319a074b0eb4c647320464b7446d923 (
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
|
#!/bin/bash
dir='/srv/arch-mirror/arch/arch/archlinux32/irc-logs/#archlinux-ports/'
declare -A colors
sed '
s/([^()]*@[^()]*) //
' | \
sed '
:a
$!N
s/\n\s\+ | / /
ta
P
D
' | \
while read -r a b dummy c; do
if [ "${dummy}" != '|' ]; then
>&2 printf 'wrong dummy "%s"\n' "${dummy}"
exit 42
fi
time=$(
date -d@$(($(date -d"${a}" +%s)+3600*6)) +%T
)
if [ "${b}" = '-->' ]; then
name="${c%% *}"
channel="${c##* }"
printf '<a href="#%s" name="%s" class="time">[%s]</a> -!- <span class="join">%s</span> has joined %s\n<br />\n' \
"${time}" "${time}" "${time}" "${name}" "${channel}"
continue
fi
if [ "${b}" = '<--' ]; then
name="${c%% *}"
reason="${c##* (}"
reason="${reason%)*}"
printf '<a href="#%s" name="%s" class="time">[%s]</a> -!- <span class="quit">%s</span> has quit [%s]\n<br />\n' \
"${time}" "${time}" "${time}" "${name}" "${reason}"
continue
fi
if [ -z "${colors["${b}"]}" ]; then
colors["${b}"]=$(
find "${dir}" -type f -name '*-*-*.html' -exec \
grep -h "style=\"color:#[0-9a-f]\{6\}\"><${b}>" {} \; | \
sed 's@.* style="color:#\([0-9a-f]\{6\}\)"><.*@\1@' | \
sort -u
)
fi
if [ -z "${colors["${b}"]}" ]; then
>&2 printf 'unkown user "%s"\n' "${b}"
exit 42
fi
if [ $(echo "${colors["${b}"]}" | wc -l) -ne 1 ]; then
>&2 printf 'user "%s" has multiple colors\n' "${b}"
exit 42
fi
printf '<a href="#%s" name="%s" class="time">[%s]</a> <span class="person" style="color:#%s"><%s></span> %s\n<br />\n' \
"${time}" "${time}" "${time}" "${colors["${b}"]}" "${b}" "${c}"
done
|