Skip to content

Latest commit

 

History

History
executable file
·
256 lines (207 loc) · 8.15 KB

IcculusFinger_archiveplans.pl

File metadata and controls

executable file
·
256 lines (207 loc) · 8.15 KB
 
Jan 11, 2002
Jan 11, 2002
1
#!/usr/bin/perl -w
Jan 29, 2002
Jan 29, 2002
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#-----------------------------------------------------------------------------
#
# Copyright (C) 2002 Ryan C. Gordon (icculus@icculus.org)
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#-----------------------------------------------------------------------------
Jan 11, 2002
Jan 11, 2002
21
22
23
24
25
26
use strict;
use warnings;
use DBI;
use File::Basename;
Jan 29, 2002
Jan 29, 2002
27
28
29
30
31
#-----------------------------------------------------------------------------#
# CONFIGURATION VARIABLES: Change to suit your needs... #
#-----------------------------------------------------------------------------#
Jan 11, 2002
Jan 11, 2002
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
# The ever important debug-spew-enabler...
my $debug = 0;
# File must have not been touch within this many minutes to be archived.
# This prevents archiving of a file that is in the middle of being edited.
my $update_delay = 30;
my $plandir = '/fingerspace';
my $dbhost = 'localhost';
my $dbuser = 'fingermgr';
# The password can be entered in three ways: Either hardcode it into $dbpass,
# (which is a security risk, but is faster if you have a completely closed
# system), or leave $dbpass set to undef, in which case this script will try
# to read the password from the file specified in $dbpassfile (which means
# that this script and the database can be touched by anyone with read access
# to that file), or leave both undef to have DBI get the password from the
# DBI_PASS environment variable, which is the most secure, but least
# convenient.
my $dbpass = undef;
my $dbpassfile = '/etc/IcculusFinger_dbpass.txt';
my $dbname = 'IcculusFinger';
my $dbtable_archive = 'finger_archive';
my $post_to_icculusnews = 1;
my $newsauthor = 'fingermaster';
my $newsposter = '/usr/local/bin/IcculusNews_post.pl';
Jan 29, 2002
Jan 29, 2002
62
63
64
65
#-----------------------------------------------------------------------------#
# The rest is probably okay without you laying yer dirty mits on it. #
#-----------------------------------------------------------------------------#
Jan 11, 2002
Jan 11, 2002
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
sub run_external_updater {
my $u = shift;
my $d = shift;
my $t = shift;
if ($post_to_icculusnews) {
print(" posting to IcculusNews's submission queue...\n") if $debug;
1 while ($t =~ s/\&(?!amp)/&/s);
1 while ($t =~ s/</&lt;/s);
1 while ($t =~ s/>/&gt;/s);
1 while ($t =~ s/\[title\](.*?)\[\/title\](\n|\r\n|\b)//is);
1 while ($t =~ s/\[wittyremark\](.*?)\[\/wittyremark\](\n|\r\n|\b)//is);
1 while ($t =~ s/\[b\](.*?)\[\/b\]/<b>$1<\/b>/is);
1 while ($t =~ s/\[u\](.*?)\[\/u\]/<u>$1<\/u>/is);
1 while ($t =~ s/\[i\](.*?)\[\/i\]/<i>$1<\/i>/is);
1 while ($t =~ s/\[center\](.*?)\[\/center\]/<center>$1<\/center>/is);
1 while ($t =~ s/\[img=(".*?")\].*?\[\/img\]/<img src=$1>/is);
1 while ($t =~ s/\[link=(".*?")\](.*?)\[\/link\]/<a href=$1>$2<\/a>/is);
1 while ($t =~ s/\[font(.*?)\](.*?)\[\/font\]/<font $1>$2<\/font>/is);
print(" parsed markup tags...\n") if $debug;
my $newssubj = "Notable .plan update from $u";
my $rc = open(PH, "|$newsposter '$newsauthor' '$newssubj' -");
if (not $rc) {
print(" No pipe to IcculusNews: $!\n");
} else {
print PH "<i>$u updated his .plan file at $d" .
" with the following info:</i>\n<p>\n<pre>$t</pre>\n</p>\n";
close(PH);
print(" posted to submission queue.\n") if $debug;
}
}
}
#----------------------------------------------------------------------------#
# End of setup vars. The rest is probably okay without you touching it. #
#----------------------------------------------------------------------------#
sub get_planfiles {
my $dirname = shift;
opendir(DIRH, $dirname) or die ("Failed to enumerate planfiles: $!\n");
my @retval = readdir(DIRH) or die ("Failed to enumerate planfiles: $!\n");
closedir(DIRH);
return(@retval);
}
sub get_sqldate {
my $mtime = shift;
my @t = localtime($mtime);
$t[5] = "0000" . ($t[5] + 1900);
$t[5] =~ s/.*?(\d\d\d\d)\Z/$1/;
$t[4] = "00" . ($t[4] + 1);
$t[4] =~ s/.*?(\d\d)\Z/$1/;
$t[3] = "00" . $t[3];
$t[3] =~ s/.*?(\d\d)\Z/$1/;
$t[2] = "00" . $t[2];
$t[2] =~ s/.*?(\d\d)\Z/$1/;
$t[1] = "00" . $t[1];
$t[1] =~ s/.*?(\d\d)\Z/$1/;
$t[0] = "00" . $t[0];
$t[0] =~ s/.*?(\d\d)\Z/$1/;
return('' .
($t[5]) . '-' . ($t[4]) . '-' . ($t[3]) . ' ' .
($t[2]) . ':' . ($t[1]) . ':' . ($t[0])
);
}
sub read_plantext {
my $link = shift;
my $filename = shift;
my $retval = '';
open(PLAN_IN, $filename) or die("Can't open $filename: $!\n");
while (<PLAN_IN>) {
$retval .= $_;
}
close(PLAN_IN);
return($retval);
}
sub update_planfile {
my $link = shift;
my $filename = shift;
if (-d $filename) {
return;
}
my $user = basename($filename);
my $modtime = (stat($filename))[9];
my $fdate = get_sqldate($modtime);
my $sql = '';
print(" * Examining $user\'s .planfile (modtime $fdate)...\n") if $debug;
$user = $link->quote($user);
# ... get date of the latest archived .plan ...
$sql = "select postdate from $dbtable_archive where username=$user" .
" order by postdate desc limit 1";
my $sth = $link->prepare($sql);
$sth->execute() or die "can't execute the query: $sth->errstr";
my @row = $sth->fetchrow_array();
if (not @row) {
print(" Don't seem to have a previous entry ...\n") if $debug;
} else {
my $t = time();
if ($t < $modtime) {
print(" WARNING: file timestamp is in the future!\n") if $debug;
} else {
if ( ($t - $modtime) < ($update_delay * 60) ) {
if ($debug) {
my $oktime = int($update_delay - (($t - $modtime) / 60));
print(" File update is too new to archive.\n");
print(" (Try again in $oktime minutes.)\n");
}
return;
}
}
if ($debug) {
my $x = $row[0];
print(" dates: [$x] [$fdate]\n");
}
if ($row[0] eq $fdate) {
print(" Matches archive timestamp. Skipping.\n") if $debug;
return;
} else {
print(" Newer revision needs archiving.\n") if $debug;
}
}
Jan 11, 2002
Jan 11, 2002
206
$sth->finish();
Jan 11, 2002
Jan 11, 2002
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
my $t = read_plantext($link, $filename);
my $ftext = $link->quote($t);
$sql = "insert into $dbtable_archive (username, postdate, text)" .
" values ($user, '$fdate', $ftext)";
$link->do($sql) or die "can't execute the query: $link->errstr";
print(" Revision added to archives.\n") if $debug;
run_external_updater(basename($filename), $fdate, $t);
}
# the mainline.
foreach (@ARGV) {
$debug = 1, next if ($_ eq '--debug');
#$username = $_, next if (not defined $username);
#$subject = $_, next if (not defined $subject);
#$text = $_, next if (not defined $text);
#etc.
}
my @planfiles = get_planfiles($plandir);
if (not defined $dbpass) {
if (defined $dbpassfile) {
open(FH, $dbpassfile) or die("failed to open $dbpassfile: $!\n");
$dbpass = <FH>;
chomp($dbpass);
$dbpass =~ s/\A\s*//;
$dbpass =~ s/\s*\Z//;
close(FH);
}
}
my $dsn = "DBI:mysql:database=$dbname;host=$dbhost";
print(" * Connecting to [$dsn] ...\n") if $debug;
my $link = DBI->connect($dsn, $dbuser, $dbpass, {'RaiseError' => 1});
foreach (@planfiles) {
update_planfile($link, "$plandir/$_");
}
$link->disconnect();
exit 0;
# end of IcculusFinger_archiveplans.pl ...