#7022 - CGI PERL Apache Redirect #2160

Closed
jsegarra wants to merge 10 commits from 5576_CGI_imagenes into dev
4 changed files with 84 additions and 0 deletions

20
images/Dockerfile Normal file
View File

@ -0,0 +1,20 @@
FROM httpd:latest
RUN apt-get update \
&& apt-get install -y curl libcgi-pm-perl \
&& rm -rf /var/lib/apt/lists/*
RUN echo "ServerName localhost\n" \
"Include conf/extra/httpd-vhosts.conf\n" \
"LoadModule rewrite_module modules/mod_rewrite.so\n" \
"LoadModule cgid_module modules/mod_cgid.so\n" \
"LoadModule proxy_module modules/mod_proxy.so\n" \
"LoadModule proxy_http_module modules/mod_proxy_http.so" \
>> "/usr/local/apache2/conf/httpd.conf"
COPY apache2.conf /usr/local/apache2/conf/extra/httpd-vhosts.conf
COPY www/ /usr/local/apache2/htdocs/
RUN chmod +x /usr/local/apache2/htdocs/rwmap.pl
CMD ["httpd-foreground"]

18
images/apache2.conf Normal file
View File

@ -0,0 +1,18 @@
<VirtualHost *:80>
DocumentRoot /usr/local/apache2/htdocs
RewriteEngine On
RewriteMap rwmap prg:/usr/local/apache2/htdocs/rwmap.pl
RewriteRule ^/image/catalog/(.+)$ ${rwmap:$1} [PT,QSA]
<Proxy *>
Require all granted
</Proxy>
<Directory "/usr/local/apache2/htdocs">
Options Indexes FollowSymLinks ExecCGI
AllowOverride All
Require all granted
AddHandler cgi-script .pl
</Directory>
</VirtualHost>

10
images/docker-compose.yml Normal file
View File

@ -0,0 +1,10 @@
version: '3'
services:
apache:
volumes:
- ./images:/usr/local/apache2/htdocs/images/
build:
context: .
dockerfile: Dockerfile
ports:
- "80:80"

36
images/www/rwmap.pl Executable file
View File

@ -0,0 +1,36 @@
#!/usr/bin/perl
use strict;
use warnings;
use Digest::SHA qw(sha1_hex);
# Desactiva el buffering de salida para que Apache pueda obtener la respuesta inmediatamente
$| = 1;
my $serverName = $ENV{'SERVER_NAME'} || 'localhost';
my $serverPort = $ENV{'SERVER_PORT'} || '80';
my $scheme = ($serverPort == 443) ? 'https' : 'http';
my $baseUrl = "$scheme://$serverName";
$baseUrl .= ":$serverPort" if ($serverPort != 80 && $serverPort != 443);
while (<STDIN>) {
chomp;
my $input = $_;
print STDERR "DEBUG: Input recibido: $input\n"; # Mensaje de depuración
my ($path, $filename) = split('/', $input);
if (defined $filename && $filename =~ /^(.+)\.(\w+)$/) {
my $name = $1;
my $extension = $2;
my $sha1 = sha1_hex($name);
my $first = substr($sha1, 0, 2);
my $last = substr($sha1, 1, 2);
if (-e "images/catalog/$path/$first/$last/$name.$extension") {
print "$baseUrl/images/catalog/$path/$first/$last/$name.$extension\n";
}
else {
print "$baseUrl/images/catalog/$path/$name.$extension\n";
}
} else {
print "Status: 400 Bad Request\n";
}
}