Began implementing GetLoggedInFirst(destination_url) path
[citadel.git] / webcit / static / wclib.js
index 7a85697ecaad8823adb72c62b049d2a84b09d563..889b068e70f11b1b96ebec0c632263bc52096771 100644 (file)
@@ -875,3 +875,26 @@ function ConfirmLogoff() {
                 }
         );
 }
+
+
+/*
+ * Wrapper script to require logging in before completing an action
+ */
+function GetLoggedInFirst(destination_url) {
+
+       /* If logged in already, go directly to the destination. */
+       /* FIXME implement this */
+
+       /* If not logged in, go modal and ask the user to log in first. */
+       p = 'do_template?template=get_logged_in?destination_url=' + destination_url;
+       new Ajax.Updater(
+               'md-content',
+               p,
+                {
+                        method: 'get',
+                       onSuccess: function(cl_success) {
+                               toggleModal(1);
+                       }
+                }
+        );
+}