2016-04-24 21:05:53 +02:00
|
|
|
#!/usr/bin/env perl
|
2021-08-06 16:12:15 +02:00
|
|
|
# Creates a database for the "seen" plugin from logs for xC.
|
2016-04-24 21:05:53 +02:00
|
|
|
# The results may not be completely accurate but are good for jumpstarting.
|
2021-08-06 16:12:15 +02:00
|
|
|
# Usage: ./seen-import-xC.pl LOG-FILE... > seen.db
|
2016-04-24 21:05:53 +02:00
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use File::Basename;
|
|
|
|
use Time::Piece;
|
|
|
|
|
|
|
|
my $db = {};
|
|
|
|
for (@ARGV) {
|
|
|
|
my $where = (basename($_) =~ /\.(.*).log/)[0];
|
|
|
|
unless ($where) {
|
|
|
|
print STDERR "Invalid filename: $_\n";
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
|
|
|
|
open my $fh, '<', $_ or die "Failed to open log file: $!";
|
|
|
|
while (<$fh>) {
|
|
|
|
my ($when, $who, $who_action, $what) =
|
|
|
|
/^(.{19}) (?:<[~&@%+]*(.*?)>| \* (\S+)) (.*)/;
|
|
|
|
next unless $when;
|
|
|
|
|
|
|
|
if ($who_action) {
|
|
|
|
$who = $who_action;
|
|
|
|
$what = "* $what";
|
|
|
|
}
|
|
|
|
$db->{$who}->{$where} =
|
|
|
|
[Time::Piece->strptime($when, "%Y-%m-%d %T")->epoch, $what];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
while (my ($who, $places) = each %$db) {
|
|
|
|
while (my ($where, $data) = each %$places) {
|
|
|
|
my ($when, $what) = @$data;
|
|
|
|
print ":$who PRIVMSG $where $when :$what\n";
|
|
|
|
}
|
|
|
|
}
|