Thread CGI.pm veraltet - Eigene CGI in min Ausführung
(48 answers)
Opened by Gustl at 2018-08-24 10:30
Hier meine cgix.pm. Kann nur get Variablen und Cookies abfragen/setzen.
sub expires expire_calc und habe ich aus der Util.pm. Code (perl): (dl
)
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 package CGIX; use strict; use warnings; use URI::Escape; sub new { my($class,@initializer) = @_; my $self = {}; $self->{header} = []; parse_QUERY_STRING(\$self); parse_HTTP_COOKIE(\$self); bless $self; return $self; } sub header { my $self = shift(); return join("\r\n", @{$self->{header}}), "\r\n\r\n"; } sub add_header{ my ($self, $new) = @_; push( @{$self->{header}}, $new ); } sub set_cookie { my ($self, $p) = @_; my $cs = ""; if( defined $p->{-name} && defined $p->{-value} ){ $cs .= "Set-Cookie: ".$p->{-name}."=".uri_escape($p->{-value}); if( defined $p->{-expires} ){ $cs .= "; Expires=".expires( $p->{-expires}, "cookie" ); } if( defined $p->{-path} ){ $cs .= "; Path=".$p->{-path}; } push( @{$self->{header}}, $cs ); } } sub param { my ($self, $param, $default) = @_; if( defined $self->{get}->{$param} ){ return $self->{get}->{$param}; } return $default; } sub cookie { my ($self, $param, $default) = @_; if( defined $self->{cookie}->{$param} ){ return $self->{cookie}->{$param}; } return $default; } sub parse_QUERY_STRING { my $self = shift; my @values = split(/\&/,$ENV{QUERY_STRING}); foreach (@values) { my ($paramname, $data) = split(/=/, $_); $$self->{get}->{$paramname} = $data; } } sub parse_HTTP_COOKIE { my $self = shift; my @values = split(/\;/,$ENV{HTTP_COOKIE}); foreach (@values) { my ($paramname, $data) = split(/=/, $_); $$self->{cookie}->{$paramname} = uri_unescape($data); } } sub expires { my($time,$format) = @_; $format ||= 'http'; my(@MON)=qw/Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec/; my(@WDAY) = qw/Sun Mon Tue Wed Thu Fri Sat/; # pass through preformatted dates for the sake of expire_calc() $time = expire_calc($time); return $time unless $time =~ /^\d+$/; # make HTTP/cookie date string from GMT'ed time # (cookies use '-' as date separator, HTTP uses ' ') my($sc) = ' '; $sc = '-' if $format eq "cookie"; my($sec,$min,$hour,$mday,$mon,$year,$wday) = gmtime($time); $year += 1900; return sprintf("%s, %02d$sc%s$sc%04d %02d:%02d:%02d GMT", $WDAY[$wday],$mday,$MON[$mon],$year,$hour,$min,$sec); } # This internal routine creates an expires time exactly some number of # hours from the current time. It incorporates modifications from # Mark Fisher. sub expire_calc { my($time) = @_; my(%mult) = ('s'=>1, 'm'=>60, 'h'=>60*60, 'd'=>60*60*24, 'M'=>60*60*24*30, 'y'=>60*60*24*365); # format for time can be in any of the forms... # "now" -- expire immediately # "+180s" -- in 180 seconds # "+2m" -- in 2 minutes # "+12h" -- in 12 hours # "+1d" -- in 1 day # "+3M" -- in 3 months # "+2y" -- in 2 years # "-3m" -- 3 minutes ago(!) # If you don't supply one of these forms, we assume you are # specifying the date yourself my($offset); if (!$time || (lc($time) eq 'now')) { $offset = 0; } elsif ($time=~/^\d+/) { return $time; } elsif ($time=~/^([+-]?(?:\d+|\d*\.\d*))([smhdMy])/) { $offset = ($mult{$2} || 1)*$1; } else { return $time; } my $cur_time = time; return ($cur_time+$offset); } 1; Aufruf: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 use CGIX; # GET-Parameter holen (Der 2. übergebene Wert ist der default wert, falls es den Parameter in der url nicht gibt) my $page = $cgix->param("page",""); my $subpage = $cgix->param("subpage",""); my $app = $cgix->param("app",0); my $pagenum = $cgix->param("pagenum",""); # cookie holen my $cookie = $cgix->cookie( "page" ); #Header $cgix->add_header("Content-Type: text/html; charset=ISO-8859-1"); $cgix->set_cookie( {-name=>"page", -expires=>"+99y", -value=>"cookievalue", -path=>'/'} ); print $cgix->header(); Ihr könnt mir doch bestimmt noch tipps geben wie es besser geht. :) Gruß |