forked from interchange/interchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakeCat.pm
2646 lines (2385 loc) · 59.9 KB
/
MakeCat.pm
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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Vend::MakeCat - Routines for Interchange catalog configurator
#
# $Id: MakeCat.pm,v 2.17 2007-08-09 13:40:53 pajamian Exp $
#
# Copyright (C) 2002-2007 Interchange Development Group
# Copyright (C) 1996-2002 Red Hat, Inc.
#
# This program was originally based on Vend 0.2 and 0.3
# Copyright 1995 by Andrew M. Wilcox <[email protected]>
#
# 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., 51 Franklin St, Fifth Floor, Boston,
# MA 02110-1301 USA.
package Vend::MakeCat;
use Cwd;
use File::Find;
use File::Copy;
use File::Basename;
use Sys::Hostname;
use Vend::Util;
require Vend::Safe;
$Safe = new Vend::Safe;
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(
%Conf
%Content
%Ever
%History
%IfRoot
%Commandline
%Postprocess
%Prefix
%Window
$Force
$Safe
add_catalog
addhistory
applicable_directive
can_do_suid
check_root_execute
compare_file
conf_parse_http
copy_current_to_dir
copy_dir
description
debug
directory_process
do_msg
error_message
find_inet_info
findexe
findfiles
get_id
get_ids
get_rename
history
inet_host
inet_port
install_file
label
prefix
pretty
prompt
read_additional
readconfig
sethistory
strip_na
strip_trailing_slash
substitute
sum_it
unique_ary
validate
);
use strict;
use vars qw($Safe $Force $Error $History $VERSION);
$Safe->share(qw/%Conf %Ever &debug/);
use vars qw/
%Alias
%Conf
%Content
%Commandline
%Ever
%History
%IfRoot
%Postprocess
%Special_sub
%Prefix
%Window
/;
$VERSION = substr(q$Revision: 2.17 $, 10);
$Force = 0;
$History = 0;
%Alias = (
serverconf => {
linux => '/etc/httpd/conf/httpd.conf',
},
);
my %Watch = qw/
cfg_extramysql 1
/;
my %Pretty = (
qw/
aliases Aliases
basedir BaseDir
catroot CatRoot
catuser CatUser
cgibase CgiBase
cgidir CgiDir
cgiurl CgiUrl
demotype DemoType
documentroot DocumentRoot
imagedir ImageDir
imageurl ImageUrl
interchangegroup InterchangeGroup
interchangeuser InterchangeUser
mailorderto MailOrderTo
samplehtml SampleHtml
sampleurl SampleUrl
serverconf ServerConf
servername ServerName
sharedir ShareDir
shareurl ShareUrl
vendroot VendRoot
/,
linkmode => 'Link mode',
);
my %Label = (
add_catalog => 'Add catalog to interchange.cfg',
aliases => 'Link aliases',
basedir => 'Base directory for catalogs',
catroot => 'Catalog directory',
catuser => 'Catalog user',
catalogname => 'Catalog name',
cgibase => 'CGI base URL',
cgidir => 'CGI Directory',
cgiurl => 'URL call for catalog',
demotype => 'Catalog skeleton',
documentroot => 'Document Root',
imagedir => 'Image directory',
imageurl => 'Image base URL',
interchangeuser => 'Interchange daemon username',
interchangegroup => 'Interchange daemon groupname',
linkhost => 'Link host',
linkmode => 'Link mode',
linkport => 'Link port',
mailorderto => 'Email address for orders',
permtype => 'Permission Type',
run_catalog => 'Add catalog to running server',
samplehtml => 'Catalog HTML base directory',
servconflist => 'Server config files found',
serverconf => 'Server config file',
serverlist => 'Servers in httpd.conf',
servername => 'Server name',
sharedir => 'Share Directory',
shareurl => 'Share URL',
win_addcatalog => 'Add catalog to Interchange',
win_catinfo => 'Catalog Initialization Information',
win_greeting => 'Make an Interchange Catalog',
win_servername => 'HTTP ServerName',
win_server => 'HTTP Server Information',
win_serverconf => 'HTTP Server Configuration File',
win_linkinfo => 'Link Program Information',
win_urls => 'URL and Directory Information',
);
my %Desc = (
add_catalog => <<EOF,
# To make the catalog active, you must add it to the
# interchange.cfg file. If you don't select this, then you will
# have to manually add it later.
EOF
aliases => <<EOF,
#
# Additional URL locations for the CGI program, as with CgiUrl.
# This is used when calling the catalog from more than one place,
# perhaps because your secure server is not the same name as the
# non-secure one.
#
# http://www.secure.domain/secure-bin/prog
# ^^^^^^^^^^^^^^^^
#
# We set it to the name of the catalog by default to enable the
# internal HTTP server.
#
EOF
basedir => <<EOF,
#
# DIRECTORY where the Interchange catalog directories will go.
# These are the catalog files, such as the ASCII database source,
# Interchange page files, and catalog.cfg file. Catalogs will be
# an individual subdirectory of this directory.
#
EOF
catalogname => <<EOF,
# Select a short, mnemonic name for the catalog. This will be
# used to set the defaults for naming the catalog, executable,
# and directory, so you will have to type in this name
# frequently.
#
# NOTE: This will be the name of 'vlink' or 'tlink', the link CGI
# program. Depending on your CGI setup, it may also have
# the extension .cgi added.
#
# Only the characters [-a-zA-Z0-9_] are allowed, and it is
# strongly suggested that the catalog name be all lower case.
#
# If you are doing the demo for the first time, you might use
# "standard".
EOF
catroot => <<EOF,
# Where the Interchange files for this catalog will go, pages,
# products, config and all. This should not be in HTML document
# space! Usually a 'catalogs' directory below your home directory
# works well. Remember, you will want a test catalog and an
# online catalog.
EOF
catuser => <<EOF,
#
# The user name the catalog will be owned by.
#
EOF
cgibase => <<EOF,
#
# The URL-style location of the normal CGI directory.
# Only used to set the default for the CgiUrl setting.
#
# http://www.virtual.com/cgi-bin/prog
# ^^^^^^^^
#
# If you have no CGI-bin directory, (your CGI programs end
# in .cgi), leave this blank.
#
EOF
cgidir => <<EOF,
# The location of the normal CGI directory. This is a
# file path, not a script alias.
#
# If all of your CGI programs must end in .cgi, this is
# should be the same as your HTML directory.
#
EOF
cgiurl => <<EOF,
# The URL location of the CGI program, without the http://
# or server name.
#
# http://www.virtual.com/cgi-bin/prog
# ^^^^^^^^^^^^^
#
# http://www.virtual.com/program.cgi
# ^^^^^^^^^^^^
#
EOF
demotype => <<EOF,
# The type of demo catalog to use. The standard one distributed is:
#
# standard
#
# If you have defined your own custom template catalog,
# you can enter its name.
#
# If you are new to Interchange, use "standard" to start with.
EOF
documentroot => <<EOF,
# The base directory for HTML for this (possibly virtual) domain.
# This is a directory path name, not a URL -- it is your HTML
# directory.
#
EOF
imagedir => <<EOF,
# Where the image files should be copied. A directory path
# name, not a URL.
#
EOF
imageurl => <<EOF,
# The URL base for the sample images. Sets the ImageDir
# directive in the catalog configuration file. This is a URL
# fragment, not a directory or file name.
#
# <IMG SRC="/standard/images/icon.gif">
# ^^^^^^^^^^^^^^^^
#
EOF
interchangegroup => <<EOF,
# The group name the server-owned files should be set to. This is
# only important if Interchange catalogs will be owned by
# multiple users and the group to be used is not the default for
# the catalog user.
#
# Normally this is left blank.
EOF
interchangeuser => <<EOF,
# The user name the Interchange server runs under on this
# machine. This should not be the same as the user that runs the
# HTTP server (i.e. NOT nobody).
EOF
linkhost => <<EOF,
# If you are using INET mode, you need to set the host the link
# CGI will talk to.
#
# If Interchange is running on the same server as your web
# server, this should be "localhost" or "127.0.0.1". If the web
# server is on a different machine, it is the IP address of the
# machine Interchange is running on.
EOF
linkmode => <<EOF,
# Interchange can use either UNIX- or internet-domain sockets.
# Most ISPs would prefer UNIX mode, and it is more secure.
#
# If you already have a program there, or use mod_interchange,
# select NONE. You will then need to copy the program by hand or
# otherwise ensure its presence.
EOF
linkport => <<EOF,
# If you are using INET mode, you need to set the port the
# link CGI will talk to. The IANA standard for Interchange is
# port 7786.
EOF
mailorderto => <<EOF,
# The email address where orders for this catalog should go. To
# have a secure catalog, either this should be a local user name
# and not go over the Internet -- or use the PGP option.
#
EOF
permtype => <<EOF,
# The type of permission structure for multiple user catalogs.
#
# Select:
# M for each user in own group (with interchange user in group)
# G for all users in group of interchange user
# U for all catalogs owned by interchange user
# (should be catuser as well)
#
# M is recommended, G works for most installations.
EOF
run_catalog => <<EOF,
# You can add this catalog to the running Interchange server. You
# may not want to do this if you are using a SQL database, as you
# will not be able to monitor the database creation activity.
#
# If you don't do it, then you can restart Interchange to
# activate the new catalog.
EOF
samplehtml => <<EOF,
# Where the sample HTML files (not Interchange pages) should be
# installed. There is a difference. Usually a subdirectory of
# your HTML directory.
#
EOF
sampleurl => <<EOF,
# Our guess as to the URL to run this catalog, used for the
# client-pull screens and an informational message, not prompted for.
#
EOF
servconflist => <<EOF,
# A list of server configuration files automatically found.
# When you use history to change this, it will be reflected
# in the next field to save you entering the file name.
#
EOF
serverconf => <<EOF,
# The server configuration file, if you are running
# Apache or NCSA. Often:
# /etc/httpd/conf/httpd.conf
# /usr/local/apache/conf/httpd.conf
# /usr/local/etc/httpd/conf/httpd.conf
#
EOF
servername => <<EOF,
# The server name, something like: www.company.com
# www.company.com:8000
# www.company.com/~yourname
#
EOF
sharedir => <<EOF,
# This is a directory path name (not a URL) where the administration user
# interface images from share/ should be copied to. These will normally be
# shared by all catalogs. Often this is the same as your DocumentRoot.
#
EOF
shareurl => <<EOF,
# The URL base for the administration user interface images.
# This is a URL fragment, not an entire URL.
#
# <IMG SRC="/interchange-5/en_US/bg.gif">
# (leave blank)
#
# <IMG SRC="/~yourname/interchange-5/en_US/bg.gif">
# ^^^^^^^^^^
#
EOF
vendroot => <<EOF,
# The directory where the Interchange software is installed.
#
EOF
win_addcatalog => <<EOF,
# You should add the catalog callout to interchange.cfg, and
# optionally can add it into the running server.
EOF
win_catinfo => <<EOF,
# We need to set base template type and directory for your catalog.
EOF
win_greeting => <<EOF,
# Welcome to Interchange!
#
# You can now configure a working catalog.
#
# You can exit by selecting the "Cancel" button below, but your
# catalog will not be built until you complete the configuration.
EOF
win_linkinfo => <<EOF,
# We need to get information necessary for compiling the link
# program(s).
EOF
win_server => <<EOF,
# We need to know some basic HTTP Server configuration information.
EOF
win_serverconf => <<EOF,
# If you are using Apache or another HTTP server with the same
# type of configuration file, we can read it and set some
# defaults based on the server name you are using.
EOF
win_servername => <<EOF,
# Since you are running Apache, we can give you a choice of the
# server names defined in the httpd.conf file you selected. This
# will be used to pre-set items like DocumentRoot, ScriptAlias
# (cgi-bin), etc.
#
# If you don't see your server, pick the empty option and go to
# the next screen.
EOF
win_urls => <<EOF,
# We need to set the HTML, image, and executable paths for your
# catalog.
EOF
);
my %Validate = (
demotype => <<EOF,
The demotype skeleton directory must exist. In addition, if you
are root the files must be owned by root and not be group-
or world-writable.
EOF
);
my %Build_error = (
demotype => <<EOF,
There were errors in copying the demo files. Cannot
continue. Check to see if permissions are correct.
EOF
);
my $Wname = 'content00';
sub readconfig {
my ($file, $ref) = @_;
return undef unless $file;
return undef unless -f $file;
$ref = {} unless ref $ref;
open (INICONF, "< $file")
or die "open $file: $!\n";
local($/);
my $data = <INICONF>;
close INICONF;
my $novirt;
my %virtual;
$data =~ s/^\s*#.*//mg;
$data =~ m{(\[<)}
or $novirt = 1;
my $first = $1;
if($first eq '<') {
$data =~ s!
<catalog\s+
([^>\n]+)
\s*>\s+
((?s:.)*?)
</catalog>!
$virtual{$1} = $2; ''!xieg;
$virtual{'_base'} = $data;
}
else {
my %recognize = ( base => '_base' );
my @lines = grep /\S/, split /\n/, $data;
my $handle;
for(@lines) {
if(/^\[(.*?)\]\s*$/) {
my $hh = $1;
if($hh =~ /^catalog\s+(\S+)/) {
$handle = $1;
}
elsif($recognize{$hh}) {
$handle = $recognize{$hh};
}
else {
undef $handle;
}
$virtual{$handle} = '' if ! $virtual{$handle};
next;
}
next unless $handle;
next unless /\S/;
$virtual{$handle} .= $_;
}
}
my $out = {};
foreach my $hk (keys %virtual) {
my $ref = $out->{$hk} = {};
my @lines = grep /\S/, split /\n/, $virtual{$hk};
for(@lines) {
s/^\s+//;
s/\s+$//;
my ($k, $v) = split /\s*=\s*/, $_, 2;
$ref->{$k} = $v;
}
}
return $out;
}
sub read_additional {
my ($file) = @_;
if (! $file) {
$file = "$Conf{vendroot}/$Conf{demotype}/config/additional_fields";
return undef unless -f $file;
}
my $help = $file;
$help =~ s/_fields$/_help/ or undef $help;
my $data;
SPLIT: {
local ($/);
open ADDLFIELDS, "< $file"
or return undef;
$data = <ADDLFIELDS>;
close ADDLFIELDS;
}
HELP: {
local($/) = "";
last HELP unless open ADDLHELP, "< $help";
while(<ADDLHELP>) {
s/^[.\t ]+$//mg;
my ($k, $v) = split /\n/, $_, 2;
$Desc{lc $k} = $v;
}
close ADDLHELP;
}
my @chunks;
if($data =~ /^\s*</) {
@chunks = read_common_config($data);
return read_additional_new(@chunks);
}
else {
@chunks = split /\n\n+/, $data;
return read_additional_old(@chunks);
}
}
sub read_additional_old {
my (@chunks) = @_;
my @addl_windows;
my %label;
my $winref;
for(@chunks) {
my $noprompt = '';
my $grp;
my $realgrp;
my $wid;
my $cref = {};
s/\s+$//;
my ($var, $prompt, $default) = split /\n/, $_, 3;
($var, $realgrp, $wid) = split /\t/, $var;
$cref->{widget} = $wid if $wid;
my $label;
($prompt, $label) = split /\t/, $prompt, 2;
my $subcode;
my $mainparam;
if($var =~ s/{\s*([A-Z0-9]+)(\s*\S.*?)?\s*}\s*//) {
$mainparam = lc $1;
my $test = $2;
$test =~ s/'?__MVC_([A-Z0-9]+)__'?/\$Conf{\L$1}/g;
$subcode = <<EOF;
sub {
my \$status;
if(\$Conf{$mainparam} $test) {
\$status = 1;
}
else {
\$status = 0;
}
return \$status;
}
EOF
my $sub = eval $subcode;
if($@) {
undef $sub;
}
$cref->{conditional} = $sub;
}
$var =~ s/\s+//g;
$var =~ s:^!::
and $noprompt = 1;
$var =~ s/\W+//g;
$var = lc $var;
debug("conditional code: $subcode") if $Watch{$var};
$cref->{help} = description($var);
$cref->{group} ||= $realgrp;
$grp = $cref->{group} || $var;
if(! $var and $cref->{group}) {
$Window{$cref->{group}} ||= { };
$Window{$cref->{group}}->{banner} = $label || $prompt;
$Window{$cref->{group}}->{help} =
$Window{$cref->{group}}->{message} = description($cref->{group});
push @addl_windows, $cref->{group};
next;
}
elsif($grp ne $var) {
if (! $Window{$grp}) {
$Window{$grp} = { };
push @addl_windows, $grp;
}
elsif($mainparam) {
$Window{$grp}{conditional} = $cref->{conditional}
if ! $Window{$grp}{conditional};
}
$Window{$grp}{contents} = [] if ! $Window{$grp}{contents};
push @{$Window{$grp}{contents}}, $var;
}
else {
push @addl_windows, $var;
}
my (@history) = split /\t/, $default;
$default = $Conf{$var} || $history[0] || '';
if($label =~ /\S/) {
$cref->{banner} = $prompt;
$cref->{label} = $label;
}
else {
$cref->{label} = $prompt;
}
my $presubcode;
if($default =~ s/__MVC_([A-Z0-9]+)__/\$Conf{\L$1}/g) {
$default =~ s/\@/\\\@/g;
my $presubcode = qq{
sub {
return qq[$default]
}
};
my $presub = eval $presubcode;
if($@) {
debug("error evaling prefix sub for $var: $presubcode");
}
$cref->{prefix} = $presub;
$cref->{prefix_source} = $presubcode;
}
else {
$cref->{prefix} = $default;
}
$cref->{options} = \@history;
if ($noprompt) {
if($cref->{conditional}) {
my $snippet = <<EOF;
\$Conf{$var} = q{$default} if \$status;
return \$status;
}
EOF
# Appease vi {
$subcode =~ s/\s*return .*\s+}\s*$/$snippet/;
$cref->{conditional} = eval $subcode;
$cref->{conditional_source} = $subcode;
}
else {
$Conf{$var} = substitute($default);
$cref->{conditional} = sub { 0 };
}
}
if($mainparam || $cref->{group}) {
my $winref;
if($cref->{group}) {
$winref = $Window{$cref->{group}};
}
else {
$winref = $Content{$mainparam};
$winref->{additional} ||= [];
push @{$winref->{additional}}, $var;
}
$winref->{override} ||= {};
$winref->{override}{$var} = $cref;
$Content{$var} = $cref unless $Content{$var};
}
elsif ($Content{$var}) {
die("generated duplicate param for $var with no group or mainparam.\n");
debug("generated duplicate param for $var with no group or mainparam.\n");
}
else {
$Content{$var} = $cref;
}
#debug( "ref for $var: " . ::uneval($cref));
}
close ADDLFIELDS;
#debug("read_additional: returning: " . join ",", @addl_windows);
my %seen;
# Multiple conditions may define them more than once
@addl_windows = grep !$seen{$_}++, @addl_windows;;
return @addl_windows;
}
sub read_additional_new {
my ($help, @chunks) = @_;
my $winref;
my @addl_windows;
foreach my $cref (@chunks) {
my $grp;
my $subcode;
my $mainparam;
my $var;
my $default;
my $cond_code;
if(! ref $cref) {
# Bad chunk
next;
}
$cref->{_additional} = 1;
if($cond_code = $cref->{conditional}) {
delete $cref->{conditional};
if($cond_code =~ /^sub\s+{.*}\s*$/s) {
$subcode = $cond_code;
}
else {
$cond_code =~ m{^[A-Z][A-Z0-9]+$}
and $cond_code = "\U__MVC_${cond_code}__";
$cond_code =~ m{__MVC_([A-Z0-9]+)__}
and $mainparam = lc $1;
$cond_code =~ s{(['"]?)__MVC_([A-Z0-9]+)__\1}
{'$Conf{' . lc $2 . '}' }eg;
# Appease vi }
$subcode = <<EOF;
sub {
my \$status;
if($cond_code) {
\$status = 1;
}
else {
\$status = 0;
}
return \$status;
}
EOF
}
}
if($subcode) {
my $sub = eval $subcode;
if($@) {
debug("Problem evaluating sub: $subcode");
undef $sub;
}
$cref->{conditional} = $sub;
}
for my $code (qw/callback/) {
my $cb = $cref->{$code}
or next;
if($cb =~ /^\s*sub\s+{/) {
# Appease vi }
local($SIG{__DIE__});
$cref->{$code} = eval $cb;
$cref->{"${code}_source"} = $cb;
}
elsif($cb =~ /^\s*\[.*\]\s*$/s) {
$cref->{$code} = eval($cb);
$cref->{"${code}_source"} = $cb;
}
elsif($cb =~ /[a-z]/) {
my @items = Text::ParseWords::shellwords($cref->{$code});
@items = map { lc $_ } @items;
$cref->{$code} = \@items;
$cref->{"${code}_source"} = $cb;
}
}
for my $code (qw/options history/) {
my $cb = $cref->{$code}
or next;
if($cb =~ /^\s*sub\s+{.*}\s*$/s) {
local($SIG{__DIE__});
$cref->{$code} = eval $cb;
$cref->{"${code}_source"} = $cb;
}
elsif($cb =~ /^\s*\[.*\]\s*$/s) {
$cref->{$code} = eval($cb);
$cref->{"${code}_source"} = $cb;
}
elsif($cb =~ /[a-z]/) {
my @items = Text::ParseWords::shellwords($cref->{$code});
$cref->{$code} = \@items;
$cref->{"${code}_source"} = $cb;
}
}
for my $code (qw/check_routine/) {
my $cb = $cref->{$code}
or next;
if($cb =~ /^\s*sub\s+{/) {
# Appease vi }
$cref->{$code} = eval $cb;
$cref->{"${code}_source"} = $cb;
}
else {
undef $cref->{$code};
}
}
$var = $cref->{name} || $Wname++;
$var =~ s/\s+//g;
$var =~ s/\W+//g;
$cref->{name} = $var = lc $var;
$::Subcode{$var} = $subcode;
debug("conditional code: $subcode") if $Watch{$var};
$grp = $cref->{group} || $var;
if($cref->{_window}) {
if(my $wref = $Window{$var}) {
for(keys %$wref) {
$cref->{$_} = $wref->{$_}
unless defined $cref->{$_};
}
}
$cref->{help} ||= description($var);
$cref->{message} ||= $cref->{help};
$cref->{banner} ||= $cref->{label};
push @addl_windows, $var;
$Window{$var} = $cref;
next;
}
elsif($grp ne $var) {
if (! $Window{$grp}) {
$Window{$grp} = { };
push @addl_windows, $grp;
}
elsif($mainparam) {
$Window{$grp}{conditional} = $cref->{conditional}
if ! $Window{$grp}{conditional};
}
$Window{$grp}{contents} = [] if ! $Window{$grp}{contents};
push @{$Window{$grp}{contents}}, $var;
}
else {
push @addl_windows, $var;
}
if(! $cref->{default} and ref $cref->{history} eq 'ARRAY') {
$cref->{default} = $cref->{history}[0];
}
$cref->{help} ||= description($var);
$cref->{message} ||= $cref->{help};
# Set default one of three ways
if($cref->{default}) {
$default = $cref->{default};
}
if($default =~ /\t/ and ! $cref->{history}) {
$cref->{history} = [ split /\t/, $default ];
$default =~ s/\t.*//;
$cref->{default} = $default;
}
$cref->{label} = $cref->{prompt} if ! $cref->{label};
my $presubcode;
if($cref->{default} =~ s/__MVC_([A-Z0-9]+)__/\$Conf{\L$1}/g) {
$cref->{default} =~ s/\@/\\\@/g;
my $presubcode = qq{
sub {
return qq[$cref->{default}]
}
};
my $presub = eval $presubcode;
if($@) {
debug("error evaling prefix sub for $var: $presubcode");
}
$cref->{default} = $cref->{prefix} = $presub;
$cref->{default_source} = $presubcode;
}
else {
$cref->{default} = $cref->{prefix} = $default;
}
$cref->{options} = $cref->{history} if ! $cref->{options};
if ($cref->{noprompt}) {
if($cref->{conditional}) {
# Appease vi {
my $snippet = <<EOF;
\$Conf{$var} = q{$default} if \$status;
return \$status;
}
EOF
# Appease vi {
$subcode =~ s/\s*return .*\s+}\s*$/$snippet/;
$cref->{conditional} = eval $subcode;
if($@) {
debug("Problem evaluating sub: $subcode");