Finalize vcard editing:
[citadel.git] / webcit / addressbook_popup.c
index 7d67bc74e18e03f79d68761307527bbaf19bf66d..c119cc18ee0b206df714070fa64cfe5367e48dcf 100644 (file)
@@ -1,86 +1,84 @@
 /*
- * $Id:  $
- *//**
- * \defgroup AjaxAutoCompletion ajax-powered autocompletion...
- * \ingroup ClientPower
+ * AJAX-powered auto-completion
+ *
+ * Copyright (c) 1996-2012 by the citadel.org team
+ *
+ * This program is open source software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License, version 3.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
  */
 
-/*@{*/
 #include "webcit.h"
 
 
-/**
- * \brief Address book popup window
+/*
+ * Address book popup results
  */
-void display_address_book_middle_div(void) {
-       char buf[256];
-       char ebuf[256];
-
-       begin_ajax_response();
-
-       wprintf("<table border=0 width=100%%><tr valign=middle>");
-       wprintf("<td align=left><img src=\"static/viewcontacts_32x.gif\"></td>");
-       wprintf("<td align=center>");
+HashList* GetAddressbookList()
+{
+       HashList *List = NULL;
+       const StrBuf *WhichAddrBook;
+       StrBuf *saved_roomname;
+       StrBuf *Name;
+       StrBuf *Line;
+       long BufLen;
+       int IsLocalAddrBook;
+
+       WhichAddrBook = sbstr("which_addr_book");
+       IsLocalAddrBook = strcasecmp(ChrPtr(WhichAddrBook), "__LOCAL_USERS__") == 1;
+
+       if (IsLocalAddrBook) {
+               serv_puts("LIST");
+       }
+       else {
+               /* remember the default addressbook for this room */
+               set_room_pref("defaddrbook", NewStrBufDup(WhichAddrBook), 0);
+               saved_roomname = NewStrBufDup(WC->CurRoom.name);
+               gotoroom(WhichAddrBook);
+               serv_puts("DVCA");
+       }
+       
+       Line = NewStrBuf();
+       StrBuf_ServGetln(Line);
+       if (GetServerStatus(Line, NULL)  == 1) {
+               List = NewHash(1, NULL);
+               while (BufLen = StrBuf_ServGetln(Line), 
+                      ((BufLen >= 0) && 
+                       ((BufLen != 3) || strcmp(ChrPtr(Line), "000"))))
+               {
+                       if (IsLocalAddrBook &&
+                           (BufLen > 5) &&
+                           (strncmp(ChrPtr(Line), "SYS_", 4) == 0))
+                       {
+                               continue;
+                       }
+                       Name = NewStrBufPlain(NULL, StrLength(Line));
+                       StrBufExtract_token(Name, Line, 0, '|');
+                       Put(List, SKEY(Name), Name, HFreeStrBuf);
 
-       wprintf("<form>"
-               "<select class=\"address_book_popup_title\" size=1 id=\"which_addr_book\" "
-               " onChange=\"PopulateAddressBookInnerDiv($('which_addr_book').value)\">");
-       serv_puts("LKRA");
-       serv_getln(buf, sizeof buf);
-       if (buf[0] == '1') while(serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
-               if (extract_int(buf, 6) == VIEW_ADDRESSBOOK) {
-                       extract_token(ebuf, buf, 0, '|', sizeof ebuf);
-                       wprintf("<option value=\"");
-                       urlescputs(ebuf);
-                       wprintf("\">");
-                       escputs(ebuf);
-                       wprintf("</option>\n");
                }
+               SortByHashKey(List, 1);
        }
-       wprintf("</select></form>");
-
-       wprintf("</td>");
-       wprintf("<td align=right "
-               "onclick=\"javascript:$('address_book_popup').style.display='none';\" "
-               "><img src=\"static/closewindow.gif\">");
-       wprintf("</td></tr></table>");
 
-       wprintf("<script type=\"text/javascript\">"
-               "PopulateAddressBookInnerDiv($('which_addr_book').value);"
-               "</script>\n");
+       if (!IsLocalAddrBook) {
+               gotoroom(saved_roomname);
+               FreeStrBuf(&saved_roomname);
+       }
 
-       end_ajax_response();
+       return List;
 }
 
 
 
-/**
- * \brief Address book popup results
- */
-void display_address_book_inner_div() {
-       char buf[256];
-
-       begin_ajax_response();
 
-       wprintf("<div align=center><form>"
-               "<select name=\"whichaddr\" size=\"15\">\n");
-
-       serv_printf("GOTO %s", bstr("which_addr_book"));
-       serv_getln(buf, sizeof buf);
-       serv_puts("DVCA");
-       serv_getln(buf, sizeof buf);
-       if (buf[0] == '1') while(serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
-               wprintf("<option value=\">");
-               escputs(buf);
-               wprintf("\">");
-               escputs(buf);
-               wprintf("</option>\n");
-       }
+void 
+InitModule_ADDRBOOK_POPUP
+(void)
+{
 
-       wprintf("</select></form></div>\n");
-
-       end_ajax_response();
+       RegisterIterator("ITERATE:ABNAMES", 0, NULL, GetAddressbookList, NULL, NULL, CTX_STRBUF, CTX_NONE, IT_NOFLAG);
 }
-
-
-/** @} */