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 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
|
#!/usr/bin/perl -wT
#
# $Id: ffa.pl,v 1.21 2003/01/16 23:10:24 nickjc Exp $
#
use strict;
use CGI qw(:standard);
use Fcntl qw(:flock);
use POSIX qw(locale_h strftime);
use vars qw($DEBUGGING $done_headers);
# We don't need file uploads or very large POST requests.
# Annoying locution to shut up 'used only once' warning in older perl
$CGI::DISABLE_UPLOADS = $CGI::DISABLE_UPLOADS = 1;
$CGI::POST_MAX = $CGI::POST_MAX = 1000000;
# sanitize the environment.
delete @ENV{qw(ENV BASH_ENV IFS PATH)};
#
# Configurable stuff
#
#
# $DEBUGGING must be set in a BEGIN block in order to have it be set before
# the program is fully compiled.
# This should almost certainly be set to 0 when the program is 'live'
#
BEGIN
{
$DEBUGGING = 1;
}
# must be set for all configurations
# $directory is the full filesystem path to the files that are associated
# with this program. The webserver needs write permissions for this path.
my $directory = '/home/www/nms-test/links';
# This is the title that will be displayed for some of the pages.
my $linkstitle = "Free For All Links Page";
# Act as drop in replacement for Matts FFA script
# if so the $filename & $linksurl must be valid (otherwise not used);
my $emulate_matts_code = 1;
# $filename is the full filesystem path of the html file in which the links
# are created.
my $filename = "$directory/links.html";
# $linksurl is the public URL of the links page.
my $linksurl = "http://nms-test.gellyfish.com/links/links.html";
# Store all links in database file ?
my $usedatabase = 1;
# This is the location of the database file in which the links can be kept.
my $database = "$directory/database.txt";
# The 'locale' determines the language that dates and times are printed in
# If you are not concerned about this then leave this blank.
my $locale = '';
# if matts ffa is not being emulated then we must use the database.
unless ( $emulate_matts_code )
{
$usedatabase = 1;
}
#
# If $sendmail is set to 1 then:
#
# * $mailer must be set to be a valid path for a mailer on the machine
# which this script will run.
# * $mail_address must be set to a valid e-mail address to which you
# you want notifications of new additions sent.
#
my $sendmail = 1;
my $mailer = '/usr/lib/sendmail -t -oi';
my $mail_address = 'gellyfish@localhost';
# $style is the URL of a CSS stylesheet which will be used for script
# generated messages. This probably want's to be the same as the one
# that you use for all the other pages. This should be a local absolute
# URI fragment.
my $style = '/css/nms.css';
# $default_section indicates the section to which a link will be added
# if for some reason a section isn't provided.
my $default_section = 'misc';
# %sections lists the sections that are available for links to be added to
# if the links.html is altered to contain different sections then this will
# need to be changed to. The keys of the hash (the bits to the left of the
# '=>') should match the appropriate comments in the links.html file.
#
my %sections = (
busi => 'Business',
comp => 'Computers',
educ => 'Education',
ente => 'Entertainment',
gove => 'Government',
pers => 'Personal',
misc => 'Miscellaneous'
);
#
# No user maintainable parts beneath here
#
# We need finer control over what gets to the browser and the CGI::Carp
# set_message() is not available everywhere :(
# This is basically the same as what CGI::Carp does inside but simplified
# for our purposes here.
BEGIN
{
sub fatalsToBrowser
{
my ( $message ) = @_;
if ( $DEBUGGING )
{
$message =~ s/</</g;
$message =~ s/>/>/g;
}
else
{
$message = '';
}
my ( $pack, $file, $line, $sub ) = caller(0);
my ($id ) = $file =~ m%([^/]+)$%;
return undef if $file =~ /^\(eval/;
print "Content-Type: text/html\n\n" unless $done_headers;
print <<EOERR;
<html>
<head>
<title>Error</title>
</head>
<body>
<h1>Application Error</h1>
<p>
An error has occurred in the program
</p>
<p>
$message
</p>
</body>
</html>
EOERR
die @_;
};
$SIG{__DIE__} = \&fatalsToBrowser;
}
my $linkscgi = url();
my $url = param('url') || '';
my $title = param('title') || '';
my $section = param('section') || $default_section;
my $host_added = remote_host();
# Remove non-printable characters
$url = strip_nonprintable($url);
$title = strip_nonprintable($title);
$section = strip_nonprintable($section);
# Escape HTML
$url = escape_html($url);
$title = escape_html($title);
$section = escape_html($section);
unless ($url or $title) {
print redirect($linksurl);
exit;
}
no_url() unless $url;
no_title() unless $title;
no_url() if ($url eq 'http://' || $url !~ m#^(f|ht)tps?://[-\w.]+?/?# );
open(LOCK, ">$filename.lck") || die "Can't open $filename.lck (write) - $!\n";
flock(LOCK, LOCK_EX) || die "Can't lock $filename.lck (excl) - $!\n";
open(FILE,"<$filename") || die "Can't open $filename (read) - $!\n";
my $i = 1;
while ( defined(my $line = <FILE>) )
{
if ($line =~ m#<li><a href="?([^"]+)"?>([^<]+)</a>#)
{
$i++;
repeat_url($1) if ($url eq $1);
}
}
seek FILE, 0, 0 or die "seek to start of $filename: $!";
my $tmpnam = "$filename.tmp";
open (NEWFILE,">$tmpnam") || die "Can't open $tmpnam (write) - $!\n";
while ( defined(my $line = <FILE>) )
{
if ($line =~ /<!--time-->/)
{
print NEWFILE "<!--time--><b>Last link was added ",
datestamp(),"</b><hr />\n"
or ( unlink($tmpnam), die "write to $tmpnam: $!" );
}
elsif ($line =~ /<!--number-->/)
{
print NEWFILE "<!--number--><b>There are <i>",$i,
"</i> links on this page.</b><br />\n"
or ( unlink($tmpnam), die "write to $tmpnam: $!" );
}
else
{
print NEWFILE $line or ( unlink($tmpnam), die "write to $tmpnam: $!" );
}
SECTION:
foreach my $tag ( keys %sections)
{
if (($section eq $sections{$tag}) && ($line =~ /<!--\Q$tag\E-->/))
{
print NEWFILE qq%<li><a href="$url">$title</a></li>\n%
or ( unlink($tmpnam), die "write to $tmpnam: $!" );
last SECTION;
}
}
}
close NEWFILE or ( unlink($tmpnam), die "write to $tmpnam: $!" );
rename( $tmpnam, $filename) || die "Can't rename $tmpnam - $!\n";
close (LOCK);
print redirect($linksurl);
if ($usedatabase)
{
open (DATABASE,">>$database") || die "Can't open $database - $!\n";
flock(DATABASE,LOCK_EX) || die "Can't flock $database (excl) - $!\n";
print DATABASE "$section|$url|$title|@{[time]}|$host_added\n";
close(DATABASE);
}
if ($sendmail )
{
open(MAILER,"| $mailer" ) || die "Can't fork for mail - $!\n";
print MAILER <<EIEIO;
To: $mail_address
From: $linkstitle <$mail_address>
Subject: Link Added !
The link $url ($title) was added from $host_added
EIEIO
close(MAILER) || die "Error with $mailer - $? \n";
}
sub datestamp
{
my ( $time ) = @_;
$time ||= time();
setlocale(LC_TIME,$locale) if $locale;
return strftime("on %A, %B %d, %Y at %T",localtime($time));
}
sub no_url
{
print header;
$done_headers++;
print start_html('-title' => 'ERROR: No URL',
'-BGCOLOR' => '#FFFFFF',
'-style' => { src => $style } );
print <<EIEIO;
<h1>No URL</h1>
<p>
You either forgot to enter the url you wanted added to the Free for
all link page or you entered one which was invalid.</p>
<p>
<form method="POST" action="$linkscgi">
<input type="hidden" name="title" value="$title" />
<input type="hidden" name="section" value="$section" />
URL: <input type="text" name="url" size="50" />
<br />
<input name="submit" value="OK" type="submit" /> *
<input name="reset" value="Clear" type="reset" />
<hr />
<a href="$linksurl">$linkstitle</a>
</form></p></body></html>
EIEIO
exit;
}
sub no_title
{
print header;
$done_headers++;
print start_html('-title' => 'ERROR: No Title',
'-BGCOLOR' => '#FFFFFF',
'-style' => { src => $style } );
print <<EIEIO;
<h1>No Title</h1>
<p>
You either forgot to enter the title you wanted for your link or the title
you did enter contained characters that can't be displayed.
</p>
<p>
<form method="POST" action="$linkscgi">
<input type="hidden" name="url" value="$url" />
<input type="hidden" name="section" value="$section" />
TITLE: <input type="text" name="title" size="50" />
<br />
<input name="submit" value="OK" type="submit" /> *
<input type="reset" name="reset" value="clear" />
<hr />
<a href="$linksurl">$linkstitle</a>
</form></p></body></html>
EIEIO
exit;
}
sub repeat_url
{
print header;
$done_headers++;
print start_html('-title' => 'ERROR: Repeat URL',
'-BGCOLOR' => '#FFFFFF',
'-style' => { src => $style } );
print <<EIEIO;
<h1>Repeat URL</h1>
<p>
Sorry, this link is already in the $linkstitle
You cannot add this URL to it again. </p>
<p>
<a href="$linksurl">$linkstitle</a>
</p>
</body></html>
EIEIO
exit;
}
sub strip_nonprintable {
my $text = shift;
$text=~ tr#\011\012\040-\176\200-\377# #cs;
return $text;
}
sub escape_html {
my $str = shift;
my %escape_html_map = (
'&' => '&',
'<' => '<',
'>' => '>',
'"' => '"',
"'" => ''',
);
my $chars = join '', keys %escape_html_map;
$str =~ s/([\Q$chars\E])/$escape_html_map{$1}/g;
return $str;
}
|