]> matita.cs.unibo.it Git - helm.git/blob - matitaB/matita/matitaAuthentication.ml
Changed redirect behaviour of the daemon (incompatibility with browsers
[helm.git] / matitaB / matita / matitaAuthentication.ml
1 (* Copyright (C) 2004-2011, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://helm.cs.unibo.it/
24  *)
25
26 type session_id = Uuidm.t
27
28 (* user table: user id, (password, optional session id) *)
29 type user = string * (string * session_id option)
30
31 let user_tbl = (ref [] : user list ref)
32
33 (* session table: session id, (user id, matita status, matita history *)
34 type session = session_id * (string * MatitaEngine.status * MatitaEngine.status list)
35
36 let session_tbl = (ref [] : session list ref)
37
38 exception UsernameCollision of string
39
40 let lookup_user uid = List.assoc uid !user_tbl
41
42 let user_of_session sid = let res,_,_ = List.assoc sid !session_tbl in res
43
44 let create_session uid =
45   let status = new MatitaEngine.status (Some uid) "cic:/matita" in
46   let history = [status] in
47   let pw,sid = List.assoc uid !user_tbl in
48   let clean_utbl = List.remove_assoc uid !user_tbl in
49   let new_session = Uuidm.create `V4 in
50   user_tbl := (uid,(pw,Some new_session))::clean_utbl;
51   let clean_stbl = match sid with
52     | Some sid' -> 
53        List.remove_assoc sid' !session_tbl
54     | _ -> !session_tbl
55   in 
56   session_tbl := (new_session,(uid,status,history))::clean_stbl;
57   new_session
58 ;;
59
60 let get_session_owner sid =
61   let uid,_,_ = List.assoc sid !session_tbl
62   in uid
63
64 let get_status sid =
65   let _,st,_ = List.assoc sid !session_tbl
66   in st
67
68 let get_history sid = 
69   let _,_,hist = List.assoc sid !session_tbl
70   in hist
71
72 let set_status sid st =
73   let uid, oldst, hist = List.assoc sid !session_tbl in
74   session_tbl := (sid,(uid,st,hist))::(List.remove_assoc sid !session_tbl)
75    
76 let set_history sid hist =
77   let uid, st, oldhist = List.assoc sid !session_tbl in
78   session_tbl := (sid,(uid,st,hist))::(List.remove_assoc sid !session_tbl)
79
80 let logout_user sid =
81   let uid,st,hist = List.assoc sid !session_tbl in
82   let pw,_ = List.assoc uid !user_tbl in
83   user_tbl := (uid,(pw,None))::List.remove_assoc uid !user_tbl;
84   session_tbl := List.remove_assoc sid !session_tbl
85 ;;
86
87 let remove_user uid =
88   user_tbl := List.remove_assoc uid !user_tbl
89 ;;
90
91 (* serialization and deserialization of the user table *)
92 let config_path () =
93   let path = Helm_registry.get "matita.basedir" in
94   let dirname = Filename.dirname path in
95   HExtlib.mkdir dirname;
96   path
97 ;;
98
99 let serialize () =
100   let clean_utbl = List.map (fun (uid,(pw,_)) -> uid,(pw,None)) !user_tbl in
101   let utbl_ch = open_out (config_path () ^ "/usertable.dump") in
102   Marshal.to_channel utbl_ch clean_utbl [];
103   close_out utbl_ch;
104 ;;
105
106 let deserialize () =
107   (try
108     let utbl_ch = open_in (config_path () ^ "/usertable.dump") in
109     user_tbl := Marshal.from_channel utbl_ch;
110     close_in utbl_ch;
111   with
112     | Sys_error _ -> 
113        user_tbl := []; serialize());
114   (* old_sessions are now invalid *)
115   session_tbl := [];
116 ;;
117
118 let add_user uid pw =
119   try
120     let _ = lookup_user uid in
121     raise (UsernameCollision uid)
122   with Not_found -> 
123     MatitaFilesystem.checkout uid;
124     user_tbl := (uid,(pw,None))::!user_tbl;
125     serialize ()
126 ;;
127
128 let reset () =
129   user_tbl := [];
130   session_tbl := [];
131   MatitaFilesystem.reset_lib ();
132   serialize ();
133 ;;