Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asn1c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
oai
asn1c
Commits
b655ad5a
Commit
b655ad5a
authored
20 years ago
by
Lev Walkin
Browse files
Options
Downloads
Patches
Plain Diff
saving user's email
parent
a8bbbda1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
asn1c/webcgi/asn1c.cgi
+31
-14
31 additions, 14 deletions
asn1c/webcgi/asn1c.cgi
with
31 additions
and
14 deletions
asn1c/webcgi/asn1c.cgi
+
31
−
14
View file @
b655ad5a
...
@@ -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
--
\n
asn1c
\n
";
print
S
"
\n
--
\n
asn1c
\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>
";
$r
edirect
=
"
<META HTTP-EQUIV=
\"
Refresh
\"
CONTENT=
\"
5
\"
>
"
;
IssueR
edirect
()
;
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>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment