]> matita.cs.unibo.it Git - helm.git/blobdiff - matitaB/matita/matitadaemon.ml
Added viewlib to matitaweb.
[helm.git] / matitaB / matita / matitadaemon.ml
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 ();