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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
package default;
use vars qw/$standardheader/;
use strict;
$standardheader = <<EOF;
<!-- This is part of CGI:IRC 0.5
== http://cgiirc.sourceforge.net/
== Copyright (C) 2000-2002 David Leadbeater <cgiirc\@dgl.cx>
== Released under the GNU GPL
-->
EOF
sub new {
return bless {};
}
sub exists {
return 1 if defined &{__PACKAGE__ . '::' . $_[1]};
}
sub makeline {
my($self, $type, $target, $html) = @_;
return "$html<br>\n";
}
sub lines {
my($self, @lines);
unless(print @lines) {
$::needtodie++;
}
}
sub header {
print "\n";
}
sub keepalive {
unless(print "<!-- nothing comment -->\r\n") {
$::needtodie++;
}
}
sub error {
my($self, $error) = @_;
$self->line({}, '', $error);
}
sub form { 'DUMMY' }
sub add { 'DUMMY' }
sub del { 'DUMMY' }
sub clear { 'DUMMY' }
sub end { 'DUMMY' }
sub options { 'DUMMY' }
sub setoption { 'DUMMY' }
# not supported by default interface
sub ctcpping { 0 }
sub ping { 0 }
sub login {
my($self, $this, $interface, $copy, $config, $order, $items, $adv) = @_;
my $notsupported = 0;
if($ENV{HTTP_USER_AGENT} =~ /konqueror.2|Mozilla\/4.\d+ \[|OmniWeb/i) {
$notsupported++;
}
print <<EOF;
$standardheader
<html>
<head>
<link rel="SHORTCUT ICON" href="$config->{image_path}/favicon.ico">
<script language="JavaScript"><!--
EOF
if($interface eq 'default') {
print <<EOF;
function setjs() {
if(navigator.product == 'Gecko') {
document.loginform["interface"].value = 'mozilla';
}else if(window.opera && document.childNodes) {
document.loginform["interface"].value = 'opera7';
}else if(navigator.appName == 'Microsoft Internet Explorer' &&
navigator.userAgent.indexOf("Mac_PowerPC") > 0) {
document.loginform["interface"].value = 'konqueror';
}else if(navigator.appName == 'Microsoft Internet Explorer' &&
document.getElementById && document.getElementById('ietest').innerHTML) {
document.loginform["interface"].value = 'ie';
}else if(navigator.appName == 'Konqueror') {
document.loginform["interface"].value = 'konqueror';
}else if(window.opera) {
document.loginform["interface"].value = 'opera';
}
}
function nickvalid() {
var nick = document.loginform.Nickname.value;
if(nick.match(/^[A-Za-z0-9\\[\\]\\{\\}^\\\\\\|\\_\\-\`]{1,32}\$/))
return true;
alert('Please enter a valid nickname');
document.loginform.Nickname.value = nick.replace(/[^A-Za-z0-9\\[\\]\\{\\}^\\\\\\|\\_\\-\`]/g, '');
return false;
}
EOF
}else{ # dummy functions
print <<EOF;
function setjs() {
return true;
}
function nickvalid() {
return true;
}
EOF
}
print <<EOF;
//-->
</script>
<title>CGI:IRC Login</title>
</head>
<body bgcolor="#ffffff" text="#000000">
EOF
if($notsupported) {
print "<font size=\"+1\" color=\"red\">Your browser does not correctly support CGI:IRC, it might not work or other problems may occur. Please consider upgrading.</font>\n";
}
print <<EOF;
<form method="post" action="$this" name="loginform" onsubmit="setjs();return nickvalid()">
EOF
print "<input type=\"hidden\" name=\"interface\" value=\"" .
($interface eq 'default' ? 'nonjs' : $interface) . "\">\n";
print <<EOF;
<table border="0" cellpadding="5" cellspacing="0">
<tr><td colspan="2" align="center" bgcolor="#c0c0dd"><b>CGI:IRC
Login</b></td></tr>
EOF
for(@$order) {
my $item = $$items{$_};
next unless defined $item;
print "<tr><td align=\"right\" bgcolor=\"#f1f1f1\">$_</td><td align=\"left\"
bgcolor=\"#f1f1f1\">";
if(ref $item eq 'ARRAY') {
print "<select name=\"$_\" style=\"width: 100%\">";
print "<option>$_</option>" for @$item;
print "</select>";
}elsif($item eq '-PASSWORD-') {
print "<input type=\"password\" name=\"$_\" value=\"\">";
}else{
my $tmp = '';
if($item =~ s/^-DISABLED- //) {
$tmp = " disabled=\"1\"";
}
print "<input type=\"text\" name=\"$_\" value=\"$item\"$tmp>";
}
print "</td></tr>\n";
}
print <<EOF;
<tr><td align="left" bgcolor="#d9d9d9">
EOF
if($adv) {
print <<EOF;
<small><a href="$this?adv=1">Advanced..</a></small>
EOF
}
print <<EOF;
</td><td align="right" bgcolor="#d9d9d9">
<input type="submit" value="Login" style="background-color: #d9d9d9">
</td></tr></table></form>
<small id="ietest">$copy</small>
</body></html>
EOF
}
1;
|