X-Git-Url: https://git.p6c8.net/selfforum.git/blobdiff_plain/145128187279c4d4b52b8fc9b19f3f3a4d8f95b8..48fce6394d3bb5d6829f453a88f874d4c1f2ff13:/selfforum-cgi/user/fo_posting.pl diff --git a/selfforum-cgi/user/fo_posting.pl b/selfforum-cgi/user/fo_posting.pl index 91a21a1..8c9f8da 100644 --- a/selfforum-cgi/user/fo_posting.pl +++ b/selfforum-cgi/user/fo_posting.pl @@ -1,535 +1,374 @@ -#!/usr/bin/perl +#!/usr/bin/perl -wT ################################################################################ # # # File: user/fo_posting.pl # # # -# Authors: André Malo , 2001-01-25 # +# Authors: André Malo , 2001-03-31 # # # # Description: Accept new postings, display "Neue Nachricht" page # # # +# not ready, be patient please # +# # ################################################################################ use strict; -use vars qw($Bin $Shared $Script %subhash $httpurl $flocked); +use vars qw($Bin $Shared $Script); +# locate the script BEGIN { - ($Bin) = ($0 =~ /^(.*)\/.*$/)? $1 : '.'; + my $null = $0; $null =~ s/\\/\//g; # for win :-( + ($Bin) = ($null =~ /^(.*)\/.*$/)? $1 : '.'; $Shared = "$Bin/../shared"; - ($Script) = ($0 =~ /^.*\/(.*)$/)? $1 : $0;} - -use CGI::Carp qw(fatalsToBrowser); + ($Script) = ($null =~ /^.*\/(.*)$/)? $1 : $null; +} use lib "$Shared"; +#use CGI::Carp qw(fatalsToBrowser); + use Conf; use Encode::Plain; $Encode::Plain::utf8 = 1; use Encode::Posting; use Id; use Lock qw(:ALL); -use Mail; -use Posting::_lib qw(get_all_threads get_message_node get_message_header hr_time); +use CheckRFC; +use Posting::_lib qw(get_all_threads get_message_node get_message_header hr_time parse_xml_file); use Posting::Write; use Template; use Template::Posting; -use CGI qw(param header); +use CGI; use XML::DOM; -print header (-type => 'text/html'); - -our $conf = read_script_conf ($Bin, $Shared, $Script); - -our $show_posting = $conf -> {show} -> {Posting}; -our $assign = $show_posting -> {assign}; -our $formmust = $show_posting -> {form} -> {must}; -our $formdata = $show_posting -> {form} -> {data}; -our $formact = $show_posting -> {form} -> {action}; -our $template = new Template $show_posting -> {templateFile}; -our $pars = {}; -our ($failed, %dparam, $threads, $last_thread, $last_message, $ftid, $fmid, $flocked); - -sub forum_filename () {$conf -> {files} -> {forum};} -sub message_path () {$conf -> {files} -> {messagePath};} +# load script configuration and admin default conf. +my $conf = read_script_conf ($Bin, $Shared, $Script); +my $adminDefault = read_admin_conf ($conf -> {files} -> {adminDefault}); -################################ +# Initializing the request +my $response = new Posting::Response ($conf, $adminDefault); -# Formfelder ausfuellen (Namen) -for (qw(posterBody uniqueID followUp quoteChar userID posterName posterEmail posterCategory posterSubject posterURL posterImage)) { - $pars -> {$formdata -> {$_} -> {assign} -> {name}} = plain($formdata -> {$_} -> {name});} +# fetch and parse the cgi-params +$response -> parse_cgi; -my $checked = &check_param; - -unless (exists ($subhash {$checked})) { - &print_fatal ($assign -> {unknownError});} - -else { - unless ($checked eq 'newThread') { - $checked = &check_reply_dupe() || $checked;} - - unless (exists ($subhash {$checked})) { - &print_fatal ($assign -> {unknownError});} - else { - &{$subhash {$checked}};} - - if ($flocked) { - violent_unlock_file (forum_filename) unless (write_unlock_file (forum_filename));}} - -# ==================================================== -# end of main / Funktionen -# ==================================================== +################################################################################ +### Posting::Response ########################################################## +package Posting::Response; -### check_reply_dupe () ######################################################## +### sub new #################################################################### # -# Reply moeglich? Doppelposting? +# initialising the Posting::Response object +# check parameters and fill in object properties # -# Params: -none- -# Return: Dupe check result -# 'Dupe' - Posting is a dupe -# Nothing - ok. -# -sub check_reply_dupe () { - my $stat; - - unless ($stat = write_lock_file (forum_filename)) { - if ($stat == 0) { - # ueberlastet oder so - violent_unlock_file (forum_filename); - return 'Occupied'; - } else { - return 'masterLock'; - } - } else { - my ($i, %msg, %unids); - - $flocked = 1; - - ($threads, $last_thread, $last_message, undef, my $unids) = get_all_threads (forum_filename, 1, 0); - ($ftid,$fmid) = split /;/,$dparam{$formdata -> {followUp} -> {name}},2; +sub new { + my ($class, $conf, $adminDefault) = @_; - # Thread existiert nicht - if (exists($dparam{$formdata -> {followUp} -> {name}})) { - return 'noReply' unless (exists($threads -> {$ftid})); + my $sp = $conf -> {show} -> {Posting}; - # nur nicht geloeschte Messages beachten - for ($i=0; $i < @{$threads -> {$ftid}}; $i++) { - if ($threads -> {$ftid} -> [$i] -> {deleted}) { - $i+=$threads -> {$ftid} -> [$i] -> {answers};} + my $self = { + conf => { + original => $conf, + admin => $adminDefault, - else { - $msg{$threads -> {$ftid} -> [$i] -> {mid}}=$i;}} + message_path => $conf -> {files} -> {messagePath}, + forum_file_name => $conf -> {files} -> {forum}, - # Message existiert nicht - if (exists($dparam{$formdata -> {followUp} -> {name}})) { - return 'noReply' unless (exists($msg{$fmid}));} + show_posting => $sp, + assign => $sp -> {assign}, + form_must => $sp -> {form} -> {must}, + form_data => $sp -> {form} -> {data}, + form_action => $sp -> {form} -> {action}, + }, - %unids = map {$_ => 1} @{$threads -> {$ftid} -> [$msg{$fmid}] -> {unids}}; - } else { - %unids = map {$_ => 1} @$unids; - } - - # jetzt endlich - return 'Dupe' if (exists ($unids{$dparam{$formdata -> {uniqueID} -> {name}}})); - } + template => new Template $sp -> {templateFile} + }; - return; + bless $self, $class; } -################################ -# sub got_new +### sub parse_cgi ############################################################## # -# Eroeffnungsposting speichern -################################ - -sub got_new () { - - my $time = time; - my $pars = {author => $dparam {$formdata -> {posterName} -> {name}}, - email => $dparam {$formdata -> {posterEmail} -> {name}}, - category => $dparam {$formdata -> {posterCategory} -> {name}}, - subject => $dparam {$formdata -> {posterSubject} -> {name}}, - body => $dparam {$formdata -> {posterBody} -> {name}}, - homepage => $dparam {$formdata -> {posterURL} -> {name}}, - image => $dparam {$formdata -> {posterImage} -> {name}}, - time => $time, - uniqueID => $dparam {$formdata -> {uniqueID} -> {name}}, - ip => $ENV{REMOTE_ADDR}, - forumFile => forum_filename, - messagePath => message_path, - lastThread => $last_thread, - lastMessage => $last_message, - parsedThreads => $threads, - dtd => 'forum.dtd', - quoteChars => toUTF8('»» '), - messages => $conf -> {template} -> {messages}}; - - my ($stat, $xml, $mid) = write_posting ($pars); - violent_unlock_file (forum_filename) unless (write_unlock_file (forum_filename)); - $flocked = undef; - - if ($stat) { - print "Och noe...: $stat";} - - else { - my $thx = $show_posting -> {thanx}; - - print ${$template -> scrap ($assign -> {docThx}, - {$thx -> {author} => plain ($dparam {$formdata -> {posterName} -> {name}}), - $thx -> {email} => plain ($dparam {$formdata -> {posterEmail} -> {name}}), - $thx -> {time} => plain (hr_time($time)), - $thx -> {body} => message_as_HTML ($xml, $template, - {posting => $mid, - assign => $assign}), - $thx -> {category} => plain ($dparam {$formdata -> {posterCategory} -> {name}}), - $thx -> {home} => plain ($dparam {$formdata -> {posterURL} -> {name}}), - $thx -> {image} => plain ($dparam {$formdata -> {posterImage} -> {name}}), - $thx -> {subject} => plain ($dparam {$formdata -> {posterSubject} -> {name}})})}; - } - return; -} - -################################ -# sub got_reply +# fetch and decode cgi-parameters, +# find out the kind of response requested by the user (new message, reply) # -# Antwortposting speichern -################################ - -sub got_reply () { - my $stat; - - my $time = time; - my $pars = {author => $dparam {$formdata -> {posterName} -> {name}}, - email => $dparam {$formdata -> {posterEmail} -> {name}}, - category => $dparam {$formdata -> {posterCategory} -> {name}}, - subject => $dparam {$formdata -> {posterSubject} -> {name}}, - body => $dparam {$formdata -> {posterBody} -> {name}}, - homepage => $dparam {$formdata -> {posterURL} -> {name}}, - image => $dparam {$formdata -> {posterImage} -> {name}}, - time => $time, - uniqueID => $dparam {$formdata -> {uniqueID} -> {name}}, - ip => $ENV{REMOTE_ADDR}, - parentMessage => $fmid, - thread => $ftid, - forumFile => forum_filename, - messagePath => message_path, - lastThread => $last_thread, - lastMessage => $last_message, - parsedThreads => $threads, - dtd => 'forum.dtd', - quoteChars => toUTF8('»» '), - messages => $conf -> {template} -> {messages}}; - - ($stat, my $xml, my $mid) = write_posting ($pars); - violent_unlock_file (forum_filename) unless (write_unlock_file (forum_filename)); - $flocked = undef; - - if ($stat) { - print "Och noe...: $stat";} - - else { - my $thx = $show_posting -> {thanx}; - - print ${$template -> scrap ($assign -> {docThx}, - {$thx -> {author} => plain ($dparam {$formdata -> {posterName} -> {name}}), - $thx -> {email} => plain ($dparam {$formdata -> {posterEmail} -> {name}}), - $thx -> {time} => plain (hr_time($time)), - $thx -> {body} => message_as_HTML ($xml, $template, - {posting => $mid, - assign => $assign}), - $thx -> {category} => plain ($dparam {$formdata -> {posterCategory} -> {name}}), - $thx -> {home} => plain ($dparam {$formdata -> {posterURL} -> {name}}), - $thx -> {image} => plain ($dparam {$formdata -> {posterImage} -> {name}}), - $thx -> {subject} => plain ($dparam {$formdata -> {posterSubject} -> {name}})})};} -} - -################################ -# sub new_thread +# Return: Status Code (Bool) +# try out the error method, if false # -# HTML fuer Eroeffnungsposting -################################ - -sub new_thread () { - my $list = [map {{$assign -> {optval} => plain($_)}} @{$formdata -> {posterCategory} -> {values}}]; - - # spaeter kommen noch userspezifische Daten dazu... - print ${$template -> scrap ($assign -> {docNew}, - {$formdata->{uniqueID} ->{assign}->{value} => plain(unique_id), - $formdata->{quoteChar} ->{assign}->{value} => 'ÿ'.plain(toUTF8('»» ')), - $formact->{post}->{assign} => $formact->{post}->{url}, - $formdata->{posterCategory}->{assign}->{value} => $template->list ($assign -> {option}, $list) - },$pars)}; -} - -################################ -# diverse subs -# -# Fehlermeldungen -################################ - -sub no_reply () {&print_fatal ($assign -> {noReply});} -sub dupe_posting () {&print_fatal ($assign -> {dupe});} -sub missing_key () {&print_fatal ($assign -> {wrongPar});} -sub unexpected_key () {&print_fatal ($assign -> {wrongPar});} -sub unknown_encoding () {&print_fatal ($assign -> {wrongCode});} -sub too_short () { - if ($formdata -> {$failed} -> {errorType} eq 'repeat') { - &print_error ($formdata -> {$failed} -> {assign} -> {tooShort}, - $formdata -> {$failed} -> {minlength});} - - else { - &print_fatal ($formdata -> {$failed} -> {assign} -> {tooShort});} -} +sub parse_cgi { + my $self = shift; -sub too_long () { - if ($formdata -> {$failed} -> {errorType} eq 'repeat') { - &print_error ($formdata -> {$failed} -> {assign} -> {tooLong}, - $formdata -> {$failed} -> {maxlength});} + # create the CGI object + my $q = new CGI; + $self -> {cgi_object} = $q; - else { - &print_fatal ($formdata -> {$failed} -> {assign} -> {tooLong});} + # check the params + return unless $self -> check_cgi; } -sub wrong_mail () {print_error ($formdata -> {$failed} -> {assign} -> {wrong});} -sub occupied () {print_error ($assign -> {occupied});} - -################################ -# sub print_fatal +### sub check_cgi ############################################################## # -# fatale Fehlerausgabe -################################ - -sub print_fatal ($) { - print ${$template -> scrap ($assign -> {docFatal}, - {$assign -> {errorMessage} => $template -> insert ($_[0]) - },$pars)}; -} - -################################ -# sub print_error +# cgi params are like raw eggs... # -# Fehlerausgabe, Moeglichkeit -# zur Korrektur -################################ - -sub print_error ($;$) { - &fillin; - print ${$template -> scrap ($assign -> {docError}, - {$assign -> {errorMessage} => $template -> insert ($_[0]), - $assign -> {charNum} => $_[1] - },$pars)}; -} - -################################ -# sub fetch_subject +# Return: Status Code (Bool) +# creates content for the error method if anything fails # -# Subject und Category besorgen -# (wenn noch nicht vorhanden) -################################ - -sub fetch_subject () { - - my %must = map {$_ => 1} @{$formmust -> {exists $dparam{$formdata -> {followUp} -> {name}}?'reply':'new'}}; - - if ( ($must{posterCategory} and not exists ($dparam{$formdata -> {posterCategory} -> {name}})) or - ($must{posterSubject} and not exists ($dparam{$formdata -> {posterSubject} -> {name}}))) - { - my $filename = message_path.'t'.$ftid.'.xml'; +sub check_cgi { + my $self = shift; - if (-f $filename and lock_file ($filename)) - { - my $xml = new XML::DOM::Parser -> parsefile ($filename); - violent_unlock_file($filename) unless unlock_file ($filename); - - my $mnode = get_message_node ($xml, "t$ftid", "m$fmid"); - my $header = get_message_header ($mnode); + # find out the count of the submitted keys and the keys themselves + # + my %got_keys = map {($_ => 1)} $self -> {cgi_object} -> param; + my $cnt_got_keys = keys %got_keys; + my $formdata = $self -> {conf} -> {form_data}; + my $formmust = $self -> {conf} -> {form_must}; - $dparam{$formdata -> {posterCategory} -> {name}} = $header -> {category}; - $dparam{$formdata -> {posterSubject} -> {name}} = $header -> {subject}; - } + # user requested the 'new thread' page + # (no params or only the user-ID has been submitted) + # + if ($cnt_got_keys == 0 or ( + exists ($formdata -> {userID}) + and $cnt_got_keys == 1 + and $got_keys{$formdata -> {userID} -> {name}} + ) + ) { + $self -> {response} = {new_thread => 1}; + return 1; } -} -################################ -# sub fillin -# -# Fuellen von $pars -# (bereits vorhandene Formdaten) -################################ - -sub fillin () { - fetch_subject; + # now we know, we've got a filled out form + # we do the following steps to check it: + # + # 1st: create a reverse Hash (CGI-key - identifier) + # 2nd: did we get _all_ must-keys? + # check whether reply or new message request + # 3rd: did we get too many keys? + # 4th: do _all_ submitted values accord to + # our expectations? + # fetch the "missing" keys + # - my $list = [map {{$assign -> {optval} => plain($_), - (($_ eq $dparam{$formdata -> {posterCategory} -> {name}})?($assign -> {optsel} => 1):())}} - @{$formdata -> {posterCategory} -> {values}}]; + # 1 + # + my %name = map {($formdata -> {$_} -> {name} => $_)} keys %$formdata; - $pars -> {$formdata->{posterCategory}->{assign}->{value}} = $template->list ($assign -> {option}, $list); - $pars -> {$formact ->{post}->{assign}} = $formact->{post}->{url}; - $pars -> {$formdata->{quoteChar}->{assign}->{value}} = 'ÿ'.plain($dparam {$formdata -> {quoteChar} -> {name}} or ''); + # 2 + # + $self -> {response} -> {reply} = $got_keys {$formdata -> {followUp} -> {name}}? 1 : 0; + $self -> {response} -> {new} = not $self -> {response} -> {reply}; - # Formfelder ausfuellen (Werte) - for (qw(uniqueID userID followUp posterName posterEmail posterSubject posterBody posterURL posterImage)) { - $pars -> {$formdata->{$_}->{assign}->{value}} = plain($dparam {$formdata -> {$_} -> {name}});} -} + # define the fetch array (values to fetch from parent message) + # + $self -> {fetch} = []; -################################ -# sub decode_param -# -# CGI-Parameter decodieren -# (rudimentaerer UTF8-support) -################################ + for ( @{$formmust -> {$self -> {response} -> {reply}?'reply':'new'}} ) { -sub decode_param () { - my $code = param ($formdata -> {quoteChar} -> {name}); - my @array; + unless ($got_keys {$formdata -> {$_} -> {name}}) { - # UTF-8 ([hoechst-]wahrscheinlich) - if ($code =~ /^\303\277/) { + # only miss the key unless we're able to fetch it from parent posting + # + unless ( + $self -> {response} -> {new} + or $formdata -> {$name {$_}} -> {errorType} eq 'fetch') { - foreach (param) { - @array=param ($_); + $self -> {error} = {spec => 'missing_key'}; + return; + } + else { + # keep in mind to fetch the value later + # + push @{$self -> {fetch}} => $name {$_}; + } + } + } - if (@array == 1) { - $dparam{$_} = $array[0];} + # 3 + # + for ($self -> {cgi_object} -> param) { + unless (exists ($name {$_})) { + $self -> {error} = { + spec => 'unexpected_key', + desc => $name{$_} + }; + return; + } + } - else { - $dparam{$_} = \@array;}}} + # 4 + # + unless ($self -> decode_param) { + $self -> {error} = {spec => 'unknown_encoding'}; + return; + }; - # Latin 1 (hoffentlich - eigentlich ist es gar keine Codierung...) - elsif ($code =~ /^\377/) { - foreach (param) { - @array=param ($_); + # I'm lazy - I know... + my $q = $self -> {cgi_object}; - if (@array == 1) { - $dparam{$_} = toUTF8($array[0]);} + if ($self -> {response} -> {reply}) { - else { - $dparam{$_} = [map {toUTF8($_)} @array];}}} + # get the parent-identifiers if we got a reply + # + my ($ftid, $fmid) = split /;/ => $q -> param ($formdata -> {followUp} -> {name}) => 2; - # unbekannte Codierung - else { - return;} + unless ($ftid =~ /\d+/ and $fmid =~ /\d+/) { + $self -> {error} = {spec => 'unknown_followup'}; + return; + } + $self -> {fup_tid} = $ftid; + $self -> {fup_mid} = $fmid; + + # fetch the missing keys + # if it fails, they're too short, too... ;) + # + $self -> fetch; + $got_keys{$_}=1 for (@{$self -> {fetch}}); + } - # ersten beiden Zeichen der Quotechars loeschen (Indikator [ÿ (als UTF8)]) - $dparam {$formdata -> {quoteChar} -> {name}} = ($dparam {$formdata -> {quoteChar} -> {name}} =~ /..(.*)/)[0]; + # now we can check on length, type etc. + # + for (keys %got_keys) { + + my $val = $q -> param ($_); + + $val =~ s/\302\240/ /g; # convert nbsp (UTF-8 encoded) into normal spaces + $val =~ s/\015\012|\015|\012/ /g # convert \n into spaces unless it's a multiline field + unless ( + exists ($formdata -> {$name {$_}} -> {type}) + and $formdata -> {$name {$_}} -> {type} eq 'multiline-text' + ); + + $q -> param ($_ => $val); # write it back + + # too long? + # + if (length $val > $formdata -> {$name {$_}} -> {maxlength}) { + $self -> {error} = { + spec => 'too_long', + desc => $name{$_} + }; + return; + } - delete $dparam {$formdata -> {posterURL} -> {name}} - unless ($dparam {$formdata -> {posterURL} -> {name}} =~ /$httpurl/); + # too short? + # (only check if there's defined a minimum length) + # + if (exists ($formdata -> {$name {$_}} -> {minlength})) { + + # kill the whitespaces to get only the visible characters... + # + (my $val_ww = $val) =~ s/\s+//g; + + if (length $val_ww < $formdata -> {$name {$_}} -> {minlength}) { + $self -> {error} = { + spec => 'too_short', + desc => $name{$_} + }; + return; + } + } - delete $dparam {$formdata -> {posterImage} -> {name}} - unless ($dparam {$formdata -> {posterImage} -> {name}} =~ /$httpurl/); + # check the values on expected kinds of content + # (email, http-url, url) + # + if (exists ($formdata -> {$name {$_}} -> {type}) and length $val) { + if ($formdata -> {$name {$_}} -> {type} eq 'email' and not is_email $val) { + $self -> {error} = { + spec => 'wrong_mail', + desc => $name{$_} + }; + return; + } + + elsif ($formdata -> {$name {$_}} -> {type} eq 'http-url' and not is_URL $val => 'http') { + $self -> {error} = { + spec => 'wrong_http_url', + desc => $name{$_} + }; + return; + } + + elsif ($formdata -> {$name {$_}} -> {type} eq 'url' and not is_URL $val => ':ALL') { + $self -> {error} = { + spec => 'wrong_url', + desc => $name{$_} + }; + return; + } + } + } - # Codierung erkannt, alles klar + # ok, looks good. 1; } -################################ -# sub check_param +### sub fetch ################################################################## # -# CGI-Parameter pruefen -################################ - -sub check_param () { - my %gotKeys = map {($_ => 1)} param; - my $numGotKeys = keys %gotKeys; +# fetch "missing" keys from parent posting +# +sub fetch { + my $self = shift; + my $q = $self -> {cgi_object}; + my $formdata = $self -> {conf} -> {form_data}; - # Threaderoeffnung, Ersteingabe (leere Seite) - return 'newThread' if ($numGotKeys == 0 or - (($numGotKeys == 1) and ($gotKeys {$formdata -> {userID} -> {name}}))); + if (@{$self -> {fetch}}) { + my $filename = $self -> {conf} -> {message_path}.'t'.$self -> {fup_tid}.'.xml'; - # ======================================================= - # ab hier steht fest, wir haben ein ausgefuelltes - # Formular bekommen - # - # 1. Umrechnungshash bauen (CGI-Key => Identifier) - # 2. alle must-keys vorhanden? - # 3. zuviele Parameter uebermittelt? - # 4. entsprechen die Daten den Anforderungen? - # (alle, nicht nur die must-Daten) + if (lock_file ($filename)) { + my $xml = parse_xml_file ($filename); + violent_unlock_file($filename) unless unlock_file ($filename); - # 1 - # === - my %name = map {($formdata -> {$_} -> {name} => $_)} keys %$formdata; + if ($xml) { + my $mnode = get_message_node ($xml, 't'.$self -> {fup_tid}, 'm'.$self -> {fup_mid}); + if ($mnode) { + my $header = get_message_header ($mnode); - # 2 - # === - $failed=1; - foreach (@{$formmust -> {$gotKeys {$formdata -> {followUp} -> {name}}?'reply':'new'}}) { - return 'missingKey' unless ($gotKeys {$formdata -> {$_} -> {name}}); + $q -> param ($formdata -> {$_} -> {name} => $header -> {$formdata -> {$_} -> {header}}) + for (@{$self -> {fetch}}); + } + } + } } - # 3 - # === - foreach (param) { - $failed = $name {$_}; - return 'unexpectedKey' unless (exists ($name {$_})); - } + # fetching failed: + # fillout the values with an empty string + # + $q -> param ($formdata -> {$_} -> {name} => '') + for (@{$self -> {fetch}}); +} - # 4 - # === - return 'unknownEncoding' unless (decode_param); +### sub decode_param ########################################################### +# +# convert submitted form data into UTF-8 +# unless it's not encoded yet +# +# Return: Status Code (Bool) +# false if unknown encoding (like UTF-7 for instance) +# +sub decode_param { + my $self = shift; - foreach (keys %dparam) { - $failed = $name {$_}; + my $q = $self -> {cgi_object}; + my $formdata = $self -> {conf} -> {form_data}; - return 'tooLong' if (length($dparam{$_}) > $formdata -> {$name {$_}} -> {maxlength}); - return 'tooShort' if (@{[$dparam{$_} =~ /(\S)/g]} < $formdata -> {$name {$_}} -> {minlength}); - return 'wrongMail' if ($formdata -> {$name{$_}} -> {type} eq 'email' and length ($dparam{$_}) and not is_mail_address ($dparam{$_})); - } + my $code = $q -> param ($formdata -> {quoteChar} -> {name}); + my @array; - $failed=0; - return $gotKeys {$formdata -> {followUp} -> {name}}?'gotReply':'gotNew'; -} + # Latin 1 (we hope so - there's no real way to find out :-( ) + if ($code =~ /^\377/) { + $q -> param ($_ => map {toUTF8($_)} $q -> param ($_)) for ($q -> param); + } + else { + # UTF-8 is (probably) correct, + # other encodings we don't know and fail + return unless $code =~ /^\303\277/; + } -# ==================================================== -# Initialisierung -# ==================================================== + # remove the ÿ (encoded as UTF-8) from quotechars + $q -> param ($formdata -> {quoteChar} -> {name} => substr ($code, 2)); -BEGIN { - %subhash = (newThread => \&new_thread, - missingKey => \&missing_key, - unexpectedKey => \&unexpected_key, - unknownEncoding => \&unknown_encoding, - tooShort => \&too_short, - tooLong => \&too_long, - wrongMail => \&wrong_mail, - Occupied => \&occupied, - Dupe => \&dupe_posting, - noReply => \&no_reply, - gotReply => \&got_reply, - gotNew => \&got_new - ); - - # Die RFC-gerechte URL-Erkennung ist aus dem Forum - # (thx2Cheatah - wo auch immer er sie (in der Form) her hat :-) - my $lowalpha = '(?:[a-z])'; - my $hialpha = '(?:[A-Z])'; - my $alpha = "(?:$lowalpha|$hialpha)"; - my $digit = '(?:\d)'; - my $safe = '(?:[$_.+-])'; - my $hex = '(?:[\dA-Fa-f])'; - my $escape = "(?:%$hex$hex)"; - my $digits = '(?:\d+)'; - my $alphadigit = "(?:$alpha|\\d)"; - - # URL schemeparts for ip based protocols: - my $port = "(?:$digits)"; - my $hostnumber = "(?:$digits\\.$digits\\.$digits\\.$digits)"; - my $toplabel = "(?:(?:$alpha(?:$alphadigit|-)*$alphadigit)|$alpha)"; - my $domainlabel = "(?:(?:$alphadigit(?:$alphadigit|-)*$alphadigit)|$alphadigit)"; - my $hostname = "(?:(?:$domainlabel\\.)*$toplabel)"; - my $host = "(?:(?:$hostname)|(?:$hostnumber))"; - my $hostport = "(?:(?:$host)(?::$port)?)"; - - my $httpuchar = "(?:(?:$alpha|$digit|$safe|(?:[!*\',]))|$escape)"; - my $hsegment = "(?:(?:$httpuchar|[;:\@&=~])*)"; - my $search = "(?:(?:$httpuchar|[;:\@&=~])*)"; - my $hpath = "(?:$hsegment(?:/$hsegment)*)"; - - # das alles ergibt eine gueltige URL :-) - $httpurl = "^(?:https?://$hostport(?:/$hpath(?:\\?$search)?)?)\$"; + # ok, params now should be UTF-8 encoded + 1; } -# ==================================================== -# end of fo_posting.pl -# ==================================================== \ No newline at end of file +# +# +### end of fo_posting.pl ####################################################### \ No newline at end of file