Skip to content
Snippets Groups Projects
Commit b655ad5a authored by Lev Walkin's avatar Lev Walkin
Browse files

saving user's email

parent a8bbbda1
No related branches found
No related tags found
No related merge requests found
...@@ -40,13 +40,20 @@ $homePath = "<FONT FACE=Courier SIZE=-1>" ...@@ -40,13 +40,20 @@ $homePath = "<FONT FACE=Courier SIZE=-1>"
# The code below rarely requires any modification # # The code below rarely requires any modification #
################################################### ###################################################
my $redirect = ''; # No redirection by default
my $content = ''; # Default content is empty
use CGI qw/param cookie header upload escapeHTML/; use CGI qw/param cookie header upload escapeHTML/;
$|=1; # Enable AutoFlush (for older versions of Perl) $|=1; # Enable AutoFlush (for older versions of Perl)
my $redirect = ''; # No redirection by default
my $redirect_bottom = ''; # No redirection text by default
my $content = ''; # Default content is empty
sub IssueRedirect() {
$redirect = "<META HTTP-EQUIV=\"Refresh\" "
. "CONTENT=\"5; URL=$myName\">";
$redirect_bottom = "<P><CENTER>This page will <A HREF=$ASN1C_Page/asn1c.cgi>disappear</A> in 5 seconds.</CENTER>"
}
# If something goes wrong, this function is invoked to display the error message # If something goes wrong, this function is invoked to display the error message
sub bark($@) { sub bark($@) {
local $_ = join("<BR>\n", @_); local $_ = join("<BR>\n", @_);
...@@ -147,19 +154,28 @@ my $EnvironmentSetOK = prepareChrootEnvironment(); ...@@ -147,19 +154,28 @@ my $EnvironmentSetOK = prepareChrootEnvironment();
# Record user's email. # Record user's email.
# #
$userEmail = cookie('userEmail'); $userEmail = cookie('userEmail');
$userEmail = $defaultUserEmail unless $userEmail; $userEmail = $defaultUserEmail unless defined($userEmail);
$tmpEmail = param('email'); $tmpEmail = param('email');
if(defined($tmpEmail) if(defined($tmpEmail)) {
&& $tmpEmail ne $userEmail) {
unless($tmpEmail =~ /^\s*([a-z0-9._+-]+@[a-z0-9.+-]+)\s*$/i) { unless($tmpEmail =~ /^\s*([a-z0-9._+-]+@[a-z0-9.+-]+)\s*$/i) {
bark("Invalid email address: " bark("Invalid email address: "
. "<B><FONT COLOR=darkred>$tmpEmail</FONT></B>"); . "<B><FONT COLOR=darkred>$tmpEmail</FONT></B>");
} }
my $previousEmail = $userEmail;
$userEmail = $1; $userEmail = $1;
local $ck = cookie(-name=>'userEmail', if($userEmail eq $defaultUserEmail) {
-value=>$userEmail, IssueRedirect();
-path=>'/', -expires=>'+1d'); bark("Please enter <FONT COLOR=red>your own</FONT> "
print "Set-Cookie: " . $ck . "\n"; . "email address, "
. "instead of default \"<FONT COLOR=darkred>$defaultUserEmail</FONT>\"");
}
if($userEmail ne $previousEmail) {
# Refresh cookie contents.
local $ck = cookie(-name=>'userEmail',
-value=>$userEmail,
-path=>'/', -expires=>'+1d');
print "Set-Cookie: " . $ck . "\n";
}
} }
# #
...@@ -264,7 +280,7 @@ if(defined($transHelp) ...@@ -264,7 +280,7 @@ if(defined($transHelp)
open(S, "| sendmail -it") or bark("Cannot perform help request, please email to the address below"); open(S, "| sendmail -it") or bark("Cannot perform help request, please email to the address below");
print S "From: $userEmail\n"; print S "From: $userEmail\n";
print S "To: $HelpEmail\n"; print S "To: $HelpEmail\n";
print S "Subject: asn1c help requested for $2--$3\n"; print S "Subject: asn1c help requested for $3 ($1)\n";
print S "\n"; print S "\n";
print S "User $userEmail requested help with\n$session/$2--$3 ($1)\n"; print S "User $userEmail requested help with\n$session/$2--$3 ($1)\n";
print S "\n-- \nasn1c\n"; print S "\n-- \nasn1c\n";
...@@ -275,10 +291,9 @@ if(defined($transHelp) ...@@ -275,10 +291,9 @@ if(defined($transHelp)
$content = '<CENTER>Transaction ' $content = '<CENTER>Transaction '
. "$1 ($3) is marked for manual processing.<BR>" . "$1 ($3) is marked for manual processing.<BR>"
. "Results will be mailed to " . "Results will be mailed to "
. "<FONT COLOR=darkgreen>$userEmail</FONT> shortly.<BR>" . "<FONT COLOR=darkgreen>$userEmail</FONT> shortly."
. "<P>This page will <A HREF=$ASN1C_Page/asn1c.cgi>disappear</A> in 5 seconds."
. "</CONTENT>"; . "</CONTENT>";
$redirect = "<META HTTP-EQUIV=\"Refresh\"CONTENT=\"5\">"; IssueRedirect();
goto PRINTOUT; goto PRINTOUT;
} }
...@@ -620,6 +635,8 @@ $homePath ...@@ -620,6 +635,8 @@ $homePath
$content $content
$redirect_bottom
<HR WIDTH=70%> <HR WIDTH=70%>
<CENTER><ADDRESS><FONT SIZE=-1 FACE=Courier COLOR=#404040> <CENTER><ADDRESS><FONT SIZE=-1 FACE=Courier COLOR=#404040>
<A HREF=$ASN1C_Page>The ASN.1 Compiler</A> <A HREF=$ASN1C_Page>The ASN.1 Compiler</A>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment