Changes done on the Mac.
[cocanwiki.git] / scripts / login.ml
1 (* COCANWIKI - a wiki written in Objective CAML.
2  * Written by Richard W.M. Jones <rich@merjis.com>.
3  * Copyright (C) 2004 Merjis Ltd.
4  * $Id: login.ml,v 1.10 2006/03/28 13:20:00 rich Exp $
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; see the file COPYING.  If not, write to
18  * the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 02111-1307, USA.
20  *)
21
22 open Apache
23 open Registry
24 open Cgi
25 open Printf
26
27 open Cocanwiki
28 open Cocanwiki_ok
29
30 let expires = "Wed, 18-May-2033 04:33:20 GMT"
31
32 let run r (q : cgi) dbh hostid _ _ =
33   let username = q#param "username" in
34   let password = q#param "password" in
35   let permanent = try "1" = q#param "permanent" with Not_found -> false in
36   let redirect = try q#param "redirect" with Not_found -> "/" in
37
38   let rows = PGSQL(dbh)
39     "select id, force_password_change from users
40       where name = $username and password = $password and hostid = $hostid" in
41
42   let userid, force_password_change =
43     match rows with
44     | [] ->
45         error
46           ~title:"Bad name or password"
47           ~back_button:true
48           dbh hostid q "The name or password was wrong."
49     | [ row ] -> row
50     | _ -> assert false in
51
52   (* Create a cookie. *)
53   let cookie = random_sessionid () in
54   PGSQL(dbh) "insert into usercookies (userid, cookie)
55               values ($userid, $cookie)";
56
57   PGOCaml.commit dbh;
58
59   (* Force password change? *)
60   let redirect =
61     if force_password_change then "/_bin/change_password_form.cmo"
62     else redirect in
63
64   let cookie =
65     if permanent then
66       Cookie.cookie "auth" cookie ~path:"/" ~expires
67     else
68       Cookie.cookie "auth" cookie ~path:"/" in
69
70   let ok_button = ok_button redirect in
71   let buttons =
72     if redirect <> "/" && redirect <> "/index" then (
73       ok_button ::
74         [ { Template.StdPages.label = " Home Page ";
75             Template.StdPages.link = "/";
76             Template.StdPages.method_ = None;
77             Template.StdPages.params = [] } ]
78     ) else [ ok_button ] in
79
80   ok ~title:"Logged in" ~buttons ~cookie
81     dbh hostid q
82     ("Welcome " ^ username ^ "." ^
83        if force_password_change then "  Please change your password now."
84        else "")
85
86 let () =
87   register_script run