]> matita.cs.unibo.it Git - helm.git/commitdiff
Added viewlib to matitaweb.
authorWilmer Ricciotti <ricciott@cs.unibo.it>
Wed, 22 Jun 2011 09:06:32 +0000 (09:06 +0000)
committerWilmer Ricciotti <ricciott@cs.unibo.it>
Wed, 22 Jun 2011 09:06:32 +0000 (09:06 +0000)
matitaB/matita/matitaAuthentication.ml
matitaB/matita/matitaAuthentication.mli
matitaB/matita/matitadaemon.ml
matitaB/matita/netplex.conf

index 8b23cc948e72f0325e778d1c9bb48599db44ceec..ad6bec47d6915bad556bc737660a4e723ce7e49b 100644 (file)
@@ -39,6 +39,8 @@ exception UsernameCollision of string
 
 let lookup_user uid = List.assoc uid !user_tbl
 
+let user_of_session sid = let res,_,_ = List.assoc sid !session_tbl in res
+
 let create_session uid =
   let status = new MatitaEngine.status (Some uid) "cic:/matita" in
   let history = [status] in
index 3bd1bc0aa7217b5eb074ec9769bacd32340f7e3a..e47df783c1ca36adf5517572ba28d0fd52e5a694 100644 (file)
@@ -29,6 +29,8 @@ exception UsernameCollision of string
 
 val lookup_user : string -> (string * session_id option)
 
+val user_of_session : session_id -> string
+
 val create_session : string -> session_id
 
 val get_session_owner : session_id -> string
index 744034e060ba1c7c7f4c638584cbd865448a4861..b9aed4be8666891b006324c680760485b47feb91 100644 (file)
@@ -403,6 +403,25 @@ let retract (cgi : Netcgi1_compat.Netcgi_types.cgi_activation) =
 ;;
 
 
+let viewLib (cgi : Netcgi1_compat.Netcgi_types.cgi_activation) =
+  let cgi = Netcgi1_compat.Netcgi_types.of_compat_activation cgi in
+  let env = cgi#environment in
+  
+    let sid = Uuidm.of_string (Netcgi.Cookie.value (env#cookie "session")) in
+    let sid = HExtlib.unopt sid in
+    cgi # set_header 
+      ~cache:`No_cache 
+      ~content_type:"text/xml; charset=\"utf-8\""
+      ();
+    let uid = MatitaAuthentication.user_of_session sid in
+    
+    let html = MatitaFilesystem.html_of_library uid in
+    cgi#out_channel#output_string
+      ("<html><head></head><body>" ^ html ^ "</body></html>");
+  cgi#out_channel#commit_work()
+  
+;;
+
 open Netcgi1_compat.Netcgi_types;;
 
 (**********************************************************************)
@@ -487,6 +506,13 @@ let start() =
       dyn_translator = (fun _ -> ""); (* not needed *)
       dyn_accept_all_conditionals = false;
     } in 
+  let do_viewlib =
+    { Nethttpd_services.dyn_handler = (fun _ -> viewLib);
+      dyn_activation = Nethttpd_services.std_activation `Std_activation_buffered;
+      dyn_uri = None;                 (* not needed *)
+      dyn_translator = (fun _ -> ""); (* not needed *)
+      dyn_accept_all_conditionals = false;
+    } in 
   
   let nethttpd_factory = 
     Nethttpd_plex.nethttpd_factory
@@ -496,7 +522,8 @@ let start() =
                 ; "open", retrieve 
                 ; "register", do_register
                 ; "login", do_login 
-                ; "logout", do_logout ]
+                ; "logout", do_logout 
+                ; "viewlib", do_viewlib]
       () in
   MatitaInit.initialize_all ();
   MatitaAuthentication.deserialize ();
index 52178dee496daea15f3c3e7d2ec317c6c3ea6270..a270765e9482ca218c3bad38afd9b23e622ef364 100644 (file)
@@ -81,6 +81,13 @@ netplex {
             handler = "logout";
           }
         };
+        uri {
+          path = "/viewlib";
+          service {
+            type = "dynamic";
+            handler = "viewlib";
+          }
+        };
       };
     };
     workload_manager {