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 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435
|
#!/usr/bin/perl -w
# This code is a part of Slash, and is released under the GPL.
# Copyright 1997-2001 by Open Source Development Network. See README
# and COPYING for more information, or see http://slashcode.com/.
# $Id: template-tool,v 1.2.2.9 2001/12/04 00:39:23 pudge Exp $
# First version by Brian, brian@tangent.org
# Updated by Patrick Galbraith, capttofu@slashdot.org
# I hope someone takes this over. A TK frontend
# would be nice. This was Cliff's idea and kudos
# should go to him. -Brian
#
# Cliff++; -CaptTofu
use strict;
use File::Basename;
use FindBin '$Bin';
use File::Path;
use File::Spec::Functions;
use Slash;
use Slash::Utility;
use Slash::DB;
use Slash::Install;
use Getopt::Std;
use Cwd;
(my $VERSION) = ' $Revision: 1.2.2.9 $ ' =~ /\$Revision:\s+([^\s]+)/;
my $PROGNAME = basename($0);
(my $PREFIX = $Bin) =~ s|/[^/]+/?$||;
my %opts;
# Remember to doublecheck these match usage()!
usage('Options used incorrectly') unless getopts('cdilrsvg:D:O:P:S:p:f:u:B:h', \%opts);
usage() if ($opts{'h'} || !keys %opts);
version() if $opts{'v'};
boiler() if $opts{'B'};
# if deleting, then there should be no other operation or file flags
usage('deletion with other op flags') if ( $opts{'r'} && ($opts{'d'} || $opts{'l'} || $opts{'f'} || $opts{'s'} || $opts{'e'} ));
# can't have multiple IDs on a save
usage('too many ids to save') if (@ARGV > 2 && $opts{'s'} && $opts{'i'});
$opts{'u'} ||= 'slash';
createEnvironment($opts{'u'});
my $slashdb = getCurrentDB();
my $install = Slash::Install->new($opts{'u'});
# datastruct of ALL templates, keyed by uid
my $templates = $slashdb->getTemplates();
my($sectionpage_flag, $section_flag, $page_flag, $all_flag) = (0, 0, 0, 0);
##################################
# compile to perl code
if ($opts{'c'}) {
# There is logic in making -i work with -P and -S, but I'm too tired to
# implement that right now.
die "Can't use -P or -S options with -i and -c!\n"
if $opts{i} && ($opts{P} || $opts{S});
# (-i) Sanity check. We only want an @ARGV full of numeric arguments.
map {
die "Non-numeric options given with -i!\n" unless /^\d+$/;
} @ARGV if $opts{i};
compile_template();
exit;
}
if ($opts{'O'}) {
if (! -d $opts{'O'}) {
if ($opts{'d'} || $opts{'e'} || ($opts{'l'} && $opts{'f'})) {
File::Path::mkpath($opts{'O'})
or die "Could not make directory $opts{'O'}: $!";
} else {
print "Invalid directory $opts{'O'}\n";
exit;
}
}
}
if ($opts{'S'} and $opts{'P'}) {
$sectionpage_flag = 1;
} elsif ($opts{'S'}) {
$section_flag = 1;
} elsif ($opts{'P'}) {
$page_flag = 1;
} else {
$all_flag = 1;
}
# start the processing
if ($opts{'s'}) {
for (@ARGV) {
$_ = catfile($opts{'O'}, $_) if $opts{'O'};
my $template = $install->readTemplateFile($_);
next unless $template;
print "Preparing to insert $template->{name} using filename $_\n";
my $temp2 = $slashdb->getTemplateByName($template->{name},
[qw(tpid name page section)], 1,
$template->{page}, $template->{section});
if (defined $temp2 && $temp2->{page} eq $template->{page}
&& $temp2->{section} eq $template->{section}
) {
if ($template->{instructions} =~ /placeholder/) {
print "Not overwritting template $_ with placeholder.\n";
next;
}
delete $template->{instructions};
if ($slashdb->setTemplate($temp2->{tpid}, $template)) {
print "updated template $_ tpid $temp2->{tpid}\n";
} else {
print "wasn't able to update template $_ tpid $temp2->{tpid}\n";
print "Error: " . $slashdb->{_dbh}->DBI::err_str . "\n";
}
} else {
if (my($tpid) = $slashdb->createTemplate($template)) {
print "created template $_ tpid $tpid\n";
} else {
print "wasn't able to update template $_\n";
print "Error: " . $slashdb->{_dbh}->DBI::err_str . "\n";
}
}
}
} else {
my $templatelist = {};
my($sectionpage_match, $no_sectionpage, $template_counter) = (0, 0, 0);
my $filename;
if ($opts{'f'}) {
$filename = $opts{'f'};
$filename = catfile($opts{'O'}, $filename) if $opts{'O'};
} elsif ($opts{'O'}) {
$filename = $opts{'O'};
}
# build a template list of the templates we want to process
for my $key (keys %$templates) {
if ($opts{'m'}) {
next unless $key =~ /$opts{'m'}/;
}
if ( ($sectionpage_flag &&
$opts{'S'} eq $templates->{$key}{section} &&
$opts{'P'} eq $templates->{$key}{page})
||
($section_flag && $templates->{$key}{section} eq $opts{'S'})
||
($page_flag and $templates->{$key}{page} eq $opts{'P'}) )
{
$sectionpage_match = 1;
# print "section_flag $section_flag template section $templates->{$key}{section} opts section $opts{'S'}\n";
} elsif ($all_flag) {
$no_sectionpage = 1;
}
if ($sectionpage_match || $no_sectionpage) {
if (@ARGV) {
for (@ARGV) {
if ($opts{'i'}) {
$templatelist->{$key} = $templates->{$key}
if $key == $_;
} else {
my $templatename = $_;
if ($templates->{$key}{name} eq $templatename) {
$templatelist->{$key} = $templates->{$key};
$template_counter++;
}
}
}
} elsif (! $opts{'i'}) {
$templatelist->{$key} = $templates->{$key};
$template_counter++;
}
($sectionpage_match, $no_sectionpage) = (0, 0);
}
}
if ($opts{'l'}) {
list_templates($templatelist, $filename);
} elsif ($opts{'d'}) {
if ($template_counter > 1 && $opts{'f'}) {
usage('too many templates per file');
} else {
dump_templates($templatelist, $filename);
}
} elsif ($opts{'r'}) {
delete_templates($templatelist);
}
}
###############################################
sub dump_templates {
my($templatelist, $directory) = @_;
my $filename;
$directory = curdir() unless defined($directory);
for my $template (keys %$templatelist) {
if (! $directory || -d $directory) {
$filename = $templatelist->{$template}{'name'} . ';' .
$templatelist->{$template}{'page'} . ';' .
$templatelist->{$template}{'section'};
$filename = catfile($directory, $filename);
} else {
$filename = $directory;
}
print "dumping template to $filename\n";
$install->writeTemplateFile($filename, $templatelist->{$template});
}
}
###############################################
sub list_templates {
my($templatelist, $file) = @_;
# all path creation should use File::Spec::Functions,
# File::Basename, etc. -- pudge
if ($file) {
$file = catfile($file, 'templatelist.txt') if -d $file;
print "printing template descriptions to $file\n";
my $fh = gensym();
open($fh, "> $file") or die "$! unable to open file $file to dump to\n";
select($fh);
}
for my $template (keys %$templatelist) {
# stinking lousy control-Ms
$templatelist->{$template}{description} =~ s/\015\012/\n/g
if $templatelist->{$template}{description};
print <<EOT;
--------------------------------------------------------
Tpid: $templatelist->{$template}{tpid} Name: $templatelist->{$template}{name}
Page: $templatelist->{$template}{page} Section: $templatelist->{$template}{section}
EOT
print <<EOT if $templatelist->{$template}{description};
Description:\n$templatelist->{$template}{description}
EOT
}
close(FILE);
}
###############################################
sub delete_templates {
my($templatelist) = @_;
my $list = join(" ", keys(%$templatelist));
print "are you sure you want to delete templates tpid(s) $list ? y/Y ";
chomp(my $answer = <STDIN>);
if ($answer =~ /^[Yy]$/) {
for my $template (keys %$templatelist) {
$slashdb->deleteTemplate($template);
}
} else {
print "\n...canceled template deletion.\n";
}
}
###############################################
sub compile_template {
require Slash::Display;
my $template_provider = Slash::Display::get_template({}, {
COMPILE_EXT => '.ttc',
COMPILE_DIR => defined($opts{O}) ? $opts{O} : curdir(),
});
my $page = $opts{P} || 'misc';
my $section = $opts{S} || 'default';
my $user = getCurrentUser();
for (@ARGV) {
my($data, $template, $compiled_template, $error);
# get template text or pass template data
if ($opts{i}) {
my $data = $slashdb->getTemplate($_, ['name', 'page', 'section']);
@{$user}{qw(currentPage currentSection)} =
@{$data}{qw(page section)};
$template = $data->{name};
# this doesn't work, -f takes arg, filename
# is not in @ARGV
} elsif ($opts{f}) {
# The logic here is that $template would be set to the contents
# of the file named $_.
local $/ = undef;
my $in = gensym();
if (open($in, $_)) {
$$template = <$in>;
close($in) or warn "Can't close file $_: $!\n";
} else {
warn "Can't open file $_ for reading: $!\n";
}
} else {
if (/;/) {
($template, @{$user}{qw(currentPage currentSection)}) =
split /;/, $_;
} else {
$template = $_;
@{$user}{qw(currentPage currentSection)} =
($page, $section);
}
}
die "Requested template '$_' ($section|$page) is empty!\n"
if !$template;
my $out;
my $ok = $template_provider->process($template, {}, \$out);
warn $template_provider->error unless $ok;
}
}
###############################################
sub usage {
print "*** $_[0] \n" if $_[0];
print <<EOT;
Usage: $PROGNAME [OPTIONS] <template templateN>
Main options:
-h Help (this message)
-v Version
-u Virtual user (default is "slash")
-B generates a blank template (specify the name of the file
after the option)
-d dump templates
-i use tpid (template id) instead of template name
-l list template(s) and their descriptions
-m only perform list and get actions if the template matches
this pattern
-f <templatefilename> filename of template being dumped or
created (single template)
-s create/save/update template
-O directory where templates are saved or created
-P <page> template page
-S <section> template section
-r deletes template(s) (don't shoot yourself in the foot!)
Save Notes:
* With no args except filename, uses filename to derive
section, page and template name from.
* -s <filenames> allows you to save specific templates from
the given files. This needs to be a template in a template
file format. Use -b to generate blank ones.
* If you don't supply a template name, or leave the section
and page unset, the name will try to be derived from the
filename.
* If you supply a section and/or page and you're reading files
out of a directory, those templates will be saved with those
sections. If you want to read from a directory and not have
your section or page changed, don't provide these arguments.
Section, page, and template args logic for listing and dumping functions:
-S <section> all templates in a section
-S <section> <template templateN> all templates in a section
having the name(s)
-P <page> all templates for a page
-P <page> <template templateN> all templates for a page having
the name(s)
-S <section> -P <page> all templates for a page and section
-S <section> -P <page> <template templateN> templates for a page
and section with the name(s) <template templateN> all
templates having the name(s) all other template fields should
be modified via web interface
Debugging options:
-c Compiles named template into Perl code for testing
-O <directory> Destination directory of compiled templates
(default is ".")
Compiled templates are saved as <template-name>.ttc in the
destination directory.
EOT
exit;
}
sub version {
print <<EOT;
$PROGNAME $VERSION
This code is a part of Slash, and is released under the GPL.
Copyright 1997-2001 by Open Source Development Network. See README
and COPYING for more information, or see http://slashcode.com/.
EOT
exit;
}
sub boiler {
my $section = $opts{'S'} || 'default';
my $page = $opts{'P'} || 'misc';
my $name = shift @ARGV || 'generic';
my $fh = gensym();
open($fh, "> $opts{'B'}") or die "Could not open file for blank template";
print $fh <<EOT;
__section__
$section
__description__
You should describe stuff here.
__title__
Useless title to template
__page__
$page
__lang__
en_US
__name__
$name
__template__
This is where you would
put all of your html and such to be displayed. See
Template(3) for more information about syntax.
__seclev__
10000
EOT
close(FILE);
exit;
}
|