no more logging
[mirror/userdir-ldap-cgi.git] / login.cgi
1 #!/usr/bin/perl
2
3 # $Id: login.cgi,v 1.5 1999/12/13 05:03:47 tausq Exp $
4 # (c) 1999 Randolph Chung. Licensed under the GPL. <tausq@debian.org>
5
6 use lib '.';
7 use strict;
8 #use Apache::Registry;
9 use CGI;
10 use Util;
11 use URI::Escape;
12 use Crypt::Blowfish;
13 use Net::LDAP qw(:all);
14
15 my %config = &Util::ReadConfigFile;
16
17 my $query = new CGI;
18 my $proto = ($ENV{HTTPS} ? "https" : "http");
19
20 if (!($query->param('username')) || !($query->param('password'))) {
21   print "Location: $proto://$ENV{SERVER_NAME}/$config{webloginurl}\n\n";
22   exit;
23 }
24
25 my $key = &Util::CreateKey($config{blowfishkeylen}); # human-readable version of the key
26 my $hrkey = unpack("H".($config{blowfishkeylen}*2), $key);
27 my $cipher = new Crypt::Blowfish $key;
28
29 my $ldap = Net::LDAP->new($config{ldaphost}) || &Util::HTMLError($!);
30
31 my $username = $query->param('username');
32 my $password = $query->param('password');
33 my $binddn = "uid=$username,$config{basedn}";
34
35 my $mesg = $ldap->bind($binddn, password => $password);
36 $mesg->sync;
37
38 if ($mesg->code == LDAP_SUCCESS) {
39   my $cryptid = &Util::SavePasswordToFile($username, $password, $cipher);
40
41   if ($query->param('update')) {
42     my $url = "$proto://$ENV{SERVER_NAME}/$config{webupdateurl}?id=$username&authtoken=$cryptid,$hrkey&editdn=";
43     $url .= uri_escape("uid=$username,$config{basedn}", "\x00-\x40\x7f-\xff");
44     print "Location: $url\n\n";
45   } else {
46     my $url = "$proto://$ENV{SERVER_NAME}/$config{websearchurl}?id=$username&authtoken=$cryptid,$hrkey";
47     print "Location: $url\n\n";
48   }
49
50   $ldap->unbind;
51 } else {
52   print "Content-type: text/html\n\n";
53   print "<html><body><h1>Not authenticated</h1></body></html>\n";
54 }
55