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
|
#!/usr/bin/perl -w
# Need to pass the four passed-in vars to the newxxx() routines
use strict;
use Slash;
use Slash::XML;
use vars qw( %task $me );
$task{$me}{timespec} = '13,43 * * * *';
$task{$me}{timespec_panic_1} = ''; # not that important
$task{$me}{code} = sub {
my($virtual_user, $constants, $slashdb, $user) = @_;
my($backupdb);
if ($constants->{backup_db_user}) {
$backupdb = getObject('Slash::DB', $constants->{backup_db_user});
} else {
$backupdb = $slashdb;
}
my $stories = $backupdb->getBackendStories();
if ($stories and @$stories) {
newxml(@_, undef, $stories);
newrdf(@_, undef, $stories);
newwml(@_, undef, $stories);
newrss(@_, undef, $stories);
}
my $sections = $backupdb->getSections();
for (keys %$sections) {
my($section) = $sections->{$_}->{section};
$stories = $backupdb->getBackendStories($section);
if ($stories and @$stories) {
newxml(@_, $section, $stories);
newrdf(@_, $section, $stories);
newrss(@_, $section, $stories);
}
}
return ;
};
sub save2file {
my($f, $d) = @_;
my $fh = gensym();
open $fh, ">$f" or die "Can't open $f: $!";
print $fh $d;
close $fh;
}
sub site2file {
my($virtual_user, $constants, $backupdb, $user, $section) = @_;
(my $file = $section || lc $constants->{sitename}) =~ s/\W+//g;
return $file;
}
sub _do_rss {
my($virtual_user, $constants, $backupdb, $user, $section, $stories, $version) = @_;
my $file = site2file($virtual_user, $constants, $backupdb, $user, $section);
my $SECT = $backupdb->getSection($section);
my $link = $constants->{absolutedir} .
($section ? "/index.pl?section=$section" : '/');
my $title = $section
? $SECT->{isolate}
? $SECT->{title}
: "$constants->{sitename}: $SECT->{title}"
: $constants->{sitename};
my $rss = xmlDisplay('rss', {
version => $version,
title => $title,
'link' => $link,
textinput => 1,
image => 1,
items => [ map { { story => $_ } } @$stories ],
}, 1);
my $ext = $version == 0.9 ? 'rdf' : 'rss';
save2file("$constants->{basedir}/$file.$ext", $rss);
}
sub newrdf { _do_rss(@_, "0.9") } # RSS 0.9
sub newrss { _do_rss(@_, "1.0") } # RSS 1.0
sub newwml {
my($virtual_user, $constants, $backupdb, $user, $section, $stories) = @_;
my $x = <<EOT;
<?xml version="1.0"?>
<!DOCTYPE wml PUBLIC "-//PHONE.COM//DTD WML 1.1//EN" "http://www.phone.com/dtd/wml11.dtd" >
<wml>
<head><meta http-equiv="Cache-Control" content="max-age=3600" forua="true"/></head>
<!-- Dev -->
<!-- TOC -->
<card title="$constants->{sitename}" id="$constants->{sitename}">
<do label="Home" type="options">
<go href="/index.wml"/>
</do>
<p align="left"><b>$constants->{sitename}</b>
<select>
EOT
my $z = 0;
my $body;
for my $sect (@$stories) {
$x .= qq|<option title="View" onpick="/wml.pl?sid=$sect->{sid}">| .
xmlencode(strip_notags($sect->{title})) .
"</option>\n";
$z++;
}
$x .= <<EOT;
</select>
</p>
</card>
</wml>
EOT
my $file = site2file($virtual_user, $constants, $backupdb, $user, $section);
save2file("$constants->{basedir}/$file.wml", $x);
}
sub newxml {
my($virtual_user, $constants, $backupdb, $user, $section, $stories) = @_;
my $x = <<EOT;
<?xml version="1.0"?><backslash
xmlns:backslash="$constants->{absolutedir}/backslash.dtd">
EOT
for my $sect (@$stories) {
my @str = (xmlencode($sect->{title}), xmlencode($sect->{dept}));
my $author = $backupdb->getAuthor($sect->{uid}, 'nickname');
$x.= <<EOT;
<story>
<title>$str[0]</title>
<url>$constants->{absolutedir}/article.pl?sid=$sect->{sid}</url>
<time>$sect->{'time'}</time>
<author>$author</author>
<department>$str[1]</department>
<topic>$sect->{tid}</topic>
<comments>$sect->{commentcount}</comments>
<section>$sect->{section}</section>
<image>$sect->{image}</image>
</story>
EOT
}
$x .= "</backslash>\n";
my $file = site2file($virtual_user, $constants, $backupdb, $user, $section);
save2file("$constants->{basedir}/$file.xml", $x);
}
1;
|