forked from interchange/interchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDispatch.pm
1881 lines (1621 loc) · 47 KB
/
Dispatch.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::Dispatch - Handle Interchange page requests
#
# Copyright (C) 2002-2009 Interchange Development Group
# Copyright (C) 2002 Mike Heins <[email protected]>
#
# 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::Dispatch;
use vars qw($VERSION);
$VERSION = '1.113';
use POSIX qw(strftime);
use Vend::Util;
use Vend::Interpolate;
use Vend::Data;
use Vend::Config;
use autouse 'Vend::Error' => qw/get_locale_message interaction_error do_lockout full_dump/;
use Vend::Order;
use Vend::Session;
use Vend::Page;
use Vend::UserDB;
use Vend::CounterFile;
no warnings qw(uninitialized numeric);
# TRACK
use Vend::Track;
# END TRACK
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(
config_named_catalog
dispatch
do_process
http
response
run_macro
tie_static_dbm
update_user
update_values
);
use strict;
my $H;
sub http {
return $H;
}
sub response {
my $possible = shift;
return if $Vend::Sent;
if (defined $possible and ! $::Pragma->{download}) {
push @Vend::Output, (ref $possible ? $possible : \$possible);
}
if($::Pragma->{download}) {
$H->respond(ref $possible ? $possible : \$possible);
}
elsif($Vend::MultiOutput) {
for my $space (keys %Vend::OutPtr) {
my $things = $Vend::OutPtr{$space} || [];
for my $ptr (@$things) {
my $subs = $Vend::OutFilter{$space} || [];
for my $sub (@$subs) {
$sub->($Vend::Output[$ptr]);
}
}
}
for(grep $_, @Vend::Output) {
$H->respond($_);
}
}
else {
for(@Vend::Output) {
Vend::Interpolate::substitute_image($_);
$H->respond($_);
}
}
@Vend::Output = ();
}
# Parse the mv_click and mv_check special variables
sub parse_click {
my ($ref, $click, $extra) = @_;
my($codere) = '[-\w_#/.]+';
my $params;
#::logDebug("Looking for click $click");
if($params = $::Scratch->{$click}) {
# Do nothing, we found the click
#::logDebug("Found scratch click $click = |$params|");
}
elsif(defined ($params = $Vend::Cfg->{OrderProfileName}{$click}) ) {
# Do nothing, we found the click
$params = $Vend::Cfg->{OrderProfile}[$params];
#::logDebug("Found profile click $click = |$params|");
}
elsif(defined ($params = $Global::ProfilesName->{$click}) ) {
# Do nothing, we found the click
$params = $Global::Profiles->[$params];
#::logDebug("Found profile click $click = |$params|");
}
elsif($params = $::Scratch->{"mv_click $click"}) {
$::Scratch->{mv_click_arg} = $click;
}
elsif($params = $::Scratch->{mv_click}) {
$::Scratch->{mv_click_arg} = $click;
}
else {
#::logDebug("Found NO click $click");
return 1;
} # No click processor
my($var,$val,$parameter);
$params = interpolate_html($params);
my(@param) = split /\n+/, $params;
for(@param) {
next unless /\S/;
next if /^\s*#/;
s/^[\r\s]+//;
s/[\r\s]+$//;
$parameter = $_;
($var,$val) = split /[\s=]+/, $parameter, 2;
$val =~ s/&#(\d+);/chr($1)/ge;
$ref->{$var} = $val;
$extra->{$var} = $val
if defined $extra;
}
}
## This is the set of variables we don't want to dump or save in
## sessions for security reasons.
@Global::HideCGI = qw(
mv_password
mv_verify
mv_password_old
mv_credit_card_number
mv_credit_card_cvv2
);
# This is the set of CGI-passed variables to ignore, in other words
# never set in the user session. If set in the mv_check pass, though,
# they will stick.
%Global::Ignore = qw(
mv_todo 1
mv_todo.submit.x 1
mv_todo.submit.y 1
mv_todo.return.x 1
mv_todo.return.y 1
mv_todo.checkout.x 1
mv_todo.checkout.y 1
mv_todo.todo.x 1
mv_todo.todo.y 1
mv_todo.map 1
mv_doit 1
mv_check 1
mv_click 1
mv_nextpage 1
mv_failpage 1
mv_password 1
mv_verify 1
mv_password_old 1
mv_successpage 1
mv_more_ip 1
mv_credit_card_number 1
mv_credit_card_cvv2 1
);
## FILE PERMISSIONS
sub set_file_permissions {
my($r, $w, $p, $u);
$r = $Vend::Cfg->{'ReadPermission'};
if ($r eq 'user') { $p = 0400; $u = 0277; }
elsif ($r eq 'group') { $p = 0440; $u = 0227; }
elsif ($r eq 'world') { $p = 0444; $u = 0222; }
else { die "Invalid value for ReadPermission\n"; }
$w = $Vend::Cfg->{'WritePermission'};
if ($w eq 'user') { $p += 0200; $u &= 0577; }
elsif ($w eq 'group') { $p += 0220; $u &= 0557; }
elsif ($w eq 'world') { $p += 0222; $u &= 0555; }
else { die "Invalid value for WritePermission\n"; }
$Vend::Cfg->{'FileCreationMask'} = $p;
$Vend::Cfg->{'Umask'} = $u;
}
sub update_values {
my (@keys) = @_;
my $set;
if(@keys) {
$set = {};
@{$set}{@keys} = @CGI::values{@keys};
}
else {
$set = \%CGI::values;
if( $Vend::Cfg->{CreditCardAuto} and $CGI::values{mv_credit_card_number} ) {
(
@{$::Values}{
qw/
mv_credit_card_valid
mv_credit_card_info
mv_credit_card_exp_month
mv_credit_card_exp_year
mv_credit_card_exp_all
mv_credit_card_type
mv_credit_card_reference
mv_credit_card_error
/ }
) = encrypt_standard_cc(\%CGI::values);
}
}
my $restrict;
if($restrict = $Vend::Session->{restrict_html} and ! ref $restrict) {
$restrict = [ map { lc $_ } split /\s+/, $restrict ];
$Vend::Session->{restrict_html} = $restrict;
}
while (my ($key, $value) = each %$set) {
# values explicly ignored in configuration
next if defined $Global::Ignore{$key};
next if defined $Vend::Cfg->{FormIgnore}{$key};
#LEGACY
# We add any checkbox ordered items, but don't update --
# we don't want to order them twice
next if ($key =~ m/^quantity\d+$/);
#END LEGACY
# Admins should know what they are doing
if($Vend::admin) {
$::Values->{$key} = $value;
next;
}
elsif ($restrict and $value =~ /</) {
# Allow designer to allow only certain HTML tags from trusted users
# Will go away when current session ends...
# [ script start character handled in [value ...] ITL tag
$value = Vend::Interpolate::filter_value(
'restrict_html',
$value,
undef,
@$restrict,
);
$::Values->{$key} = $value;
next;
}
$value =~ tr/<[//d;
$value =~ s/<//ig;
$value =~ s/[//g;
$::Values->{$key} = $value;
}
}
sub update_user {
my($key,$value);
# Update the user-entered fields.
add_items() if defined $CGI::values{mv_order_item};
update_values();
if($CGI::values{mv_check}) {
my(@checks) = split /\s*[,\0]+\s*/, delete $CGI::values{mv_check};
my($check);
foreach $check (@checks) {
parse_click $::Values, $check, \%CGI::values;
}
}
check_save if defined $CGI::values{mv_save_session};
}
## DO PROCESS
sub do_click {
my($click, @clicks);
do {
if($CGI::values{mv_click}) {
@clicks = split /\s*[\0]+\s*/, delete $CGI::values{mv_click};
}
if(defined $CGI::values{mv_click_map}) {
my(@map) = split /\s*[\0]+\s*/, delete $CGI::values{mv_click_map};
foreach $click (@map) {
push (@clicks, $click)
if defined $CGI::values{"mv_click.$click.x"}
or defined $CGI::values{"$click.x"}
or $click = $CGI::values{"mv_click_$click"};
}
}
foreach $click (@clicks) {
parse_click \%CGI::values, $click;
}
} while $CGI::values{mv_click};
return 1;
}
sub do_deliver {
my $file = $CGI::values{mv_data_file};
my $mode = $CGI::values{mv_acl_mode} || '';
if($::Scratch->{mv_deliver} !~ m{(^|\s)$file(\s|$)}
and
! Vend::UserDB::userdb(
'check_file_acl',
location => $file,
mode => $mode,
)
)
{
$Vend::StatusLine = "Status: 403\nContent-Type: text/html";
my $msg = get_locale_message(403, <<EOF);
<b>Authorization Required</b>
<p>
This server could not verify that you are authorized to access the document
requested.
</p>
EOF
response($msg);
return 0;
}
if (! -f $file) {
$Vend::StatusLine = "Status: 404\nContent-Type: text/html";
my $msg = get_locale_message(404, <<EOF, $file);
<b>Not Found</b>
<p>
The requested file %s was not found on this server.
</p>
EOF
response($msg);
return 0;
}
my $size = -s $CGI::values{mv_data_file};
$CGI::values{mv_content_type} ||= 'application/octet-stream';
$Vend::StatusLine = <<EOF;
Content-Type: $CGI::values{mv_content_type}
Content-Length: $size
EOF
::response(
Vend::Util::readfile($CGI::values{mv_data_file}, undef, undef,
{encoding => 'raw'}));
return 0;
}
my %form_action = (
search => \&do_search,
deliver => \&do_deliver,
submit =>
sub {
update_user();
update_quantity()
or return interaction_error("quantities");
my $ok;
my($missing,$next,$status,$final,$result_hash);
# Set shopping cart if necessary
# Vend::Items is tied, remember!
$Vend::Items = $CGI::values{mv_cartname}
if $CGI::values{mv_cartname};
#::logDebug("Default order route=$::Values->{mv_order_route}");
## Determine the master order route, if routes
## are not set in CGI values (4.7.x default)
if(
$Vend::Cfg->{Route}
and ! defined $::Values->{mv_order_route}
)
{
my $curr = $Vend::Cfg->{Route};
my $repos = $Vend::Cfg->{Route_repository};
if($curr->{master}) {
# Default route is master
for(keys %$repos) {
next unless $curr eq $repos->{$_};
$::Values->{mv_order_route} = $_;
last;
}
}
else {
for(keys %$repos) {
next unless $repos->{$_}->{master};
$::Values->{mv_order_route} = $_;
last;
}
}
}
#::logDebug("Default order route=$::Values->{mv_order_route}");
CHECK_ORDER: {
# If the user sets this later, will be used
delete $Vend::Session->{mv_order_number};
if (defined $CGI::values{mv_order_profile}) {
($status,$final,$missing) =
check_order($CGI::values{mv_order_profile});
}
else {
$status = $final = 1;
}
#::logDebug("Profile status status=$status final=$final errors=$missing");
my $provisional;
if ($status and defined $::Values->{mv_order_route}) {
# This checks only route order profiles
#::logDebug("Routing order, pre-check");
($status, $provisional, $missing)
= route_order(
$::Values->{mv_order_route},
$Vend::Items,
'check',
);
}
$final = $provisional if ! $final;
#::logDebug("Routing status status=$status final=$final errors=$missing");
if($status) {
$CGI::values{mv_nextpage} = $CGI::values{mv_successpage}
if $CGI::values{mv_successpage};
$CGI::values{mv_nextpage} = $::Values->{mv_orderpage}
if ! $CGI::values{mv_nextpage};
}
else {
$CGI::values{mv_nextpage} = $CGI::values{mv_failpage}
if $CGI::values{mv_failpage};
$CGI::values{mv_nextpage} = find_special_page('needfield')
if ! $CGI::values{mv_nextpage};
undef $final;
}
return 1 unless $final;
my $order_no;
if (defined $::Values->{mv_order_route}) {
# $ok will not be defined unless Route "supplant" was set
# $order_no will come back so we don't issue two of them
#::logDebug("Routing order $::Values->{mv_order_route}");
($ok, $order_no, $result_hash) = route_order(
$::Values->{mv_order_route},
$Vend::Items
);
return 1 unless $ok;
}
$result_hash = {} unless $result_hash;
# TRACK
$Vend::Track->finish_order () if $Vend::Track;
# END TRACK
# This function (followed down) now does the rudimentary
# backend ordering with AsciiTrack and the order report.
# If the "supplant" option was set in order routing it will
# not be used ($ok would have been defined)
#::logDebug("Order number=$order_no\n");
$ok = mail_order(undef, $order_no || undef) unless defined $ok;
#::logDebug("Order number=$order_no, result_hash=" . ::uneval($result_hash));
# Display a receipt if configured
my $not_displayed = 1;
if(! $ok) {
display_special_page(
find_special_page('failed'),
errmsg('Error transmitting order(%s): %s', $!, $@),
);
}
elsif (! $result_hash->{no_receipt} ) {
eval {
my $receipt = $result_hash->{receipt}
|| $::Values->{mv_order_receipt}
|| find_special_page('receipt');
#::logDebug("selected receipt=$receipt");
display_special_page($receipt);
};
$not_displayed = 0;
#::logDebug("not_displayed=$not_displayed");
if($@) {
my $msg = $@;
logError(
'Display of receipt on order number %s failed: %s',
$::Values->{mv_order_number},
$msg,
);
}
}
# Do order cleanup
run_macro($Vend::Cfg->{OrderCleanup});
# Remove the items
@$Vend::Items = ();
#::logDebug("returning order_number=$order_no, not_displayed=$not_displayed");
return $not_displayed;
}
},
refresh => sub {
update_quantity()
or return interaction_error("quantities");
# LEGACY
$CGI::values{mv_nextpage} = $CGI::values{mv_orderpage}
if $CGI::values{mv_orderpage};
# END LEGACY
$CGI::values{mv_nextpage} = $CGI::values{mv_orderpage}
|| find_special_page('order')
if ! $CGI::values{mv_nextpage};
update_user();
return 1;
},
set => sub {
update_user() unless $CGI::values{mv_data_auto_number};
update_data();
update_user() if $CGI::values{mv_data_auto_number};
return 1;
},
autoset => sub {
update_data();
update_user();
return 1;
},
back => sub { return 1 },
return => sub {
update_user();
update_quantity()
or return interaction_error("quantities");
return 1;
},
cancel => sub {
put_session();
get_session();
init_session();
$CGI::values{mv_nextpage} = find_special_page('canceled')
if ! $CGI::values{mv_nextpage};
return 1;
},
);
$form_action{go} = $form_action{return};
# Process the completed order or search page.
sub do_process {
# Prevent using keys operation more than once
my @cgikeys = keys %CGI::values;
my @multis = grep /^mv\d\d?_/, @cgikeys;
## Only operates on up to 100 items to prevent "amplification"
## which could result in DOS attacks
MULTIS:
if(@multis) {
my %hash;
for(@multis) {
my $val = delete $CGI::values{$_};
# Have to handle nulls somehow....
$val =~ s/\0/::/g;
m{^mv\d+\d?_(.*)};
my $idx = $1;
my $key = $2;
$hash{$key} ||= [];
$hash{$key}[$idx] = $val;
}
while (my ($k, $v) = each %hash) {
$CGI::values{$k} = join "\0", @$v;
}
}
my @filters = grep /^[mu][vi]_filter:/, @cgikeys;
FILTERS: {
last FILTERS unless @filters;
foreach my $key (@filters) {
next unless $key =~ /^ui_|^mv_/;
my $val = delete $CGI::values{$key};
$key =~ s/^.._filter://;
next unless $val;
if($val =~ /checkbox/) {
$CGI::values{$key} = $Tag->filter($val, $CGI::values{$key}, $key);
}
else {
next unless defined $CGI::values{$key};
$CGI::values{$key} = $Tag->filter($val, $CGI::values{$key}, $key);
}
}
}
if($CGI::values{mv_form_profile}) {
my ($status) = check_order(
$CGI::values{mv_form_profile},
\%CGI::values,
$CGI::values{mv_individual_profile},
);
return 1 if defined $status and ! $status;
}
my $orig_todo = $CGI::values{mv_todo};
do_click();
my $todo = $CGI::values{mv_todo};
# Maybe we have an imagemap input, if not, use $doit
if($orig_todo ne $todo) {
# Don't mess with it, changed in click
}
elsif (defined $CGI::values{'mv_todo.x'}) {
my $x = $CGI::values{'mv_todo.x'};
my $y = $CGI::values{'mv_todo.y'};
my $map = $CGI::values{'mv_todo.map'};
# Called with action_map and not package id
# since "autouse" is possibly in force...found
# by Jeff Carnahan
$todo = action_map($x,$y,$map);
}
elsif( my @todo = grep /^mv_todo\.\w+(?:\.x)?$/, @cgikeys ) {
# Only one todo!
for(@todo) {
delete $CGI::values{$_};
s/^mv_todo\.(\w+)(?:\.[xy])?$/$1/;
}
$todo = shift @todo;
}
$todo = $CGI::values{mv_doit} || 'back' if ! $todo;
#::logDebug("todo=$todo after mv_click");
my ($sub, $status);
#Now determine the action on the todo
if (defined $Vend::Cfg->{FormAction}{$todo}) {
$sub = $Vend::Cfg->{FormAction}{$todo};
}
elsif (not $sub = $form_action{$todo} ) {
unless ($sub = Vend::Util::codedef_routine('FormAction', $todo)) {
interaction_error(::errmsg("Invalid action %s passed for processing.\n", $todo));
return;
}
}
eval {
$status = $sub->($todo);
};
if($@) {
undef $status;
my $err = $@;
my $template = <<EOF;
Sorry, there was an error in processing this form action. Please
report the error or try again later.
EOF
$template .= "\n\nError: %s\n"
if $Global::DisplayErrors && $Vend::Cfg->{DisplayErrors}
;
$template = get_locale_message(500, $template, $err);
$template .= "($err)";
logError($err);
response($template);
}
if($CGI::values{mv_cleanup}) {
my(@checks) = split /\s*[,\0]+\s*/, delete $CGI::values{mv_cleanup};
my($check);
foreach $check (@checks) {
parse_click $::Values, $check, \%CGI::values;
}
}
return $status;
}
sub run_in_catalog {
my ($cat, $job, $itl, $parms) = @_;
my ($g,$c);
#::logGlobal("running job in cat=$cat");
$parms ||= {};
$g = $Global::Catalog{$cat};
unless (defined $g) {
logGlobal( "Can't find catalog '%s' for jobs group %s" , $cat, $job );
return undef;
}
open_cat($cat);
logError("Run jobs group=%s pid=$$", $job || 'INTERNAL');
Vend::Server::set_process_name("job $cat $job");
my $jobscfg = $Vend::Cfg->{Jobs};
my $dir;
my @itl;
if($job) {
my @jobdirs = ([$jobscfg->{base_directory} || 'etc/jobs', 0]);
if (is_yes($jobscfg->{use_global}) || is_yes($Global::Jobs->{UseGlobal})) {
push (@jobdirs, ["$Global::ConfDir/jobs", 1]);
}
my $global_dir;
for my $r (@jobdirs) {
my $d;
($d, $global_dir) = @$r;
#::logGlobal("check directory=$d for $job");
next unless $d;
next unless -d "$d/$job";
$dir = "$d/$job";
last;
}
if($dir) {
my $tmp;
if ($global_dir) {
$tmp = $Global::AllowedFileRegex->{$cat};
$Global::AllowedFileRegex->{$cat} = qr{^$dir};
}
my @f = glob("$dir/*");
@f = grep ! -d $_, @f;
@f = grep $_ !~ /$Vend::Cfg->{HTMLsuffix}$/, @f;
@f = grep $_ =~ /$jobscfg->{suffix}$/, @f;
for(@f) {
#::logGlobal("found jobs piece file=$_");
push @itl, [$_, readfile($_)];
}
if ($global_dir) {
$Global::AllowedFileRegex->{$cat} = $tmp;
}
}
}
if ($itl) {
push @itl, ["Passed ITL", $itl];
}
my (@out, $errors, $failure);
# remove bogus session created by logError
undef $Vend::Session;
if(@itl) {
# Track job
my ($trackdb, $trackid);
if ($jobscfg->{trackdb}) {
if ($trackdb = database_exists_ref($jobscfg->{trackdb})) {
$trackid = $trackdb->set_slice('', [qw(name begin_run pid)],
[$job, Vend::Interpolate::mvtime(undef, {}, '%Y-%m-%d %H:%M'), $$]);
}
else {
::logError ("Invalid jobs tracking database $jobscfg->{trackdb}");
}
}
eval {
# Run once at beginning
run_macro($jobscfg->{initialize});
# initialize or autoload can create session
# but must handle all aspects
unless ($Vend::Session) {
$CGI::values{mv_tmp_session} = 1;
init_session();
}
$CGI::remote_addr ||= 'none';
$CGI::useragent ||= 'commandline';
for(@itl) {
# Run once at beginning of each job
run_macro($jobscfg->{autoload});
push @out, interpolate_html($_->[1]);
# Run once at end of each job
run_macro($jobscfg->{autoend});
}
};
if ($@) {
# job terminated due to an error
$errors = 1;
$failure = errmsg('Job terminated with an error: %s', $@);
logError ("Job group=%s pid=$$ terminated with an error: %s", $job || 'INTERNAL', $@);
# remove flag for this job
Vend::Server::flag_job($$, $cat, 'furl');
}
if ($trackid) {
$trackdb->set_field($trackid, 'end_run',
Vend::Interpolate::mvtime(undef, {}, '%Y-%m-%d %H:%M'));
}
}
else {
logError("Empty job=%s", $job);
}
my $out = join "", @out;
my $filter = $jobscfg->{filter} || 'strip';
$out = Vend::Interpolate::filter_value($filter, $out);
if ($errors && is_no($jobscfg->{ignore_errors})) {
$out = join("\n\n", $failure, $out);
}
$out .= full_dump() if is_yes($jobscfg->{add_session});
logError("Finished jobs group=%s pid=$$", $job || 'INTERNAL');
close_cat();
# don't send email and/or write log entry if job returns
# no output (in spirit of the cron daemon)
return unless $out;
if(my $addr = $parms->{email} || $jobscfg->{email}) {
my $subject = $jobscfg->{subject} || 'Interchange results for job: %s';
$subject = errmsg($subject, $job);
my $from = $jobscfg->{from} || $Vend::Cfg->{MailOrderTo};
Vend::Interpolate::tag_mail($addr,
{
from => $from,
to => $addr,
subject => $subject,
reply_to => $jobscfg->{reply_to},
mailer => "Interchange $::VERSION",
extra => $jobscfg->{extra_headers},
log_error => 1,
},
$out,
);
}
if($jobscfg->{log}) {
logData($jobscfg->{log}, $out);
}
return $out;
}
sub adjust_cgi {
my($host);
die "REQUEST_METHOD is not defined" unless defined $CGI::request_method
or @Global::argv;
if ($Global::HostnameLookups && !$CGI::remote_host && $CGI::remote_addr && !$CGI::values{mv_tmp_session}) {
$CGI::remote_host = gethostbyaddr(Socket::inet_aton($CGI::remote_addr),Socket::AF_INET);
}
# The great and really final AOL fix
#
$host = $CGI::remote_host;
$CGI::ip = $CGI::remote_addr;
if($Global::DomainTail and $host) {
$host =~ /\.([A-Za-z]+)$/;
my $tld = $1;
my $level = (defined($Global::CountrySubdomains->{$tld}) && $host =~ $Global::CountrySubdomains->{$tld}) ? 2 : 1;
$host =~ s/.*?((?:[-A-Za-z0-9]+\.){$level}[A-Za-z]+)$/$1/;
}
elsif($Global::IpHead) {
$host = $Global::IpQuad == 0 ? 'nobody' : '';
my @ip;
@ip = split /\./, $CGI::ip;
$CGI::ip = '';
$CGI::ip = join ".", @ip[0 .. ($Global::IpQuad - 1)] if $Global::IpQuad;
}
#
# end AOL fix
# Fix Cobalt/CGIwrap problem
if($Global::Variable->{CGIWRAP_WORKAROUND}) {
$CGI::path_info =~ s!^$CGI::script_name!!;
}
$CGI::host = $host || $CGI::ip;
$CGI::user = $CGI::remote_user, undef $CGI::authorization
if $CGI::remote_user;
if ($Global::FullUrl) {
if ($Global::FullUrlIgnorePort or $CGI::server_port eq '80') {
$CGI::server_port = '';
}
else {
$CGI::server_port = ":$CGI::server_port";
}
$CGI::script_name = $CGI::server_name . $CGI::server_port . $CGI::script_path;
}
else {
$CGI::script_name = $CGI::script_path;
}
}
use vars qw/@NoHistory/;
@NoHistory= qw/
mv_credit_card_number
mv_credit_card_cvv2
mv_password
mv_verify
/;
sub url_history {
$Vend::Session->{History} = []
unless defined $Vend::Session->{History};
shift @{$Vend::Session->{History}}
if $#{$Vend::Session->{History}} >= $Vend::Cfg->{History};
if( $CGI::values{mv_no_cache} ) {
push (@{$Vend::Session->{History}}, [ 'expired', {} ]);
}
else {
my @save;
for(@NoHistory) {
push @save, delete $CGI::values{$_};
}
push (@{$Vend::Session->{History}}, [ $CGI::path_info, { %CGI::values } ]);
for(my $i = 0; $i < @NoHistory; $i++) {
next unless defined $save[$i];
$CGI::values{$NoHistory[$i]} = $save[$i];
}
}
return;
}
## DISPATCH
# Parse the invoking URL and dispatch to the handling subroutine.
my %action = (
process => \&do_process,
ui => sub {
&UI::Primitive::ui_acl_global();
&do_process(@_);
},
scan => \&do_scan,
search => \&do_search,
order => \&do_order,
obtain => \&do_order,
silent => sub {
$Vend::StatusLine = "Status: 204 No content";
my $extra_click = $Vend::FinalPath;
$extra_click =~ s:/:\0:g;
$CGI::values{mv_click} = $CGI::values{mv_click}
? "$CGI::values{mv_click}\0$extra_click"
: $extra_click;
do_process(@_);
response('');
return 0;
},
);
sub update_global_actions {