Remove $Id$ tags from most of webcit
[citadel.git] / webcit / addressbook_popup.c
index 6d479b3f0e9f03ed669ee8cdb089da85bc07672a..074801f15c0124a9e04db1d65e7b65889f37a9c9 100644 (file)
 /*
- * $Id:  $
- *//**
- * \defgroup AjaxAutoCompletion ajax-powered autocompletion...
- * \ingroup ClientPower
+ * AJAX-powered auto-completion
+ *
+ * Copyright (c) 2005-2010 by the citadel.org team
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-/*@{*/
 #include "webcit.h"
 
 
-/**
- * \brief Address book popup window
+/*
+ * Call this right before wDumpContent() on any page which requires the address book popup
+ */
+void address_book_popup(void) {
+       /* Open a new div, hidden initially, for address book popups. */
+       wc_printf("</div>\n");  /* End of 'content' div */
+       wc_printf("<div id=\"address_book_popup\" style=\"display:none;\">");
+       wc_printf("<div id=\"address_book_popup_container_div\">");
+       wc_printf("<div id=\"address_book_popup_middle_div\"></div>");
+       wc_printf("<div id=\"address_book_inner_div\"></div>");
+       wc_printf("</div>");
+       /* The 'address_book_popup' div will be closed by wDumpContent() */
+}
+
+/*
+ * Address book popup window
  */
 void display_address_book_middle_div(void) {
        char buf[256];
-       char ebuf[256];
+       long len;
+       char *Name;
+       const char *VCName;
+       void *Namee;
+       StrBuf *DefAddrBook;
+       HashList *List;
+       HashPos  *it;
 
        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>");
+       DefAddrBook = get_room_pref("defaddrbook");
+
+       wc_printf("<table border=0 width=100%%><tr valign=middle>");
+       wc_printf("<td align=left><img src=\"static/viewcontacts_32x.gif\"></td>");
+       wc_printf("<td align=center>");
+
+       wc_printf("<form>"
+               "<select class=\"address_book_popup_title\" size=1 id=\"which_addr_book\" "
+               " onChange=\"PopulateAddressBookInnerDiv($('which_addr_book').value,'%s')\">",
+               bstr("target_input")
+       );
 
-       wprintf("<form><select class=\"address_book_popup_title\" size=1>");
+       wc_printf("<option value=\"__LOCAL_USERS__\" %s>", 
+               (strcmp(ChrPtr(DefAddrBook), "__LOCAL_USERS__") == 0)?
+               "selected=\"selected\" ":"");
+       escputs(ChrPtr(WC->serv_info->serv_humannode));
+       wc_printf("</option>\n");
+
+       
+       List = NewHash(1, NULL);
        serv_puts("LKRA");
        serv_getln(buf, sizeof buf);
-       if (buf[0] == '1') while(serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
+       if (buf[0] == '1') while(len = 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");
+                       Name = (char*) malloc(len + 1);
+                       len = extract_token(Name, buf, 0, '|', len);
+                       Put(List, Name, len, Name, NULL);
                }
        }
-       wprintf("</select></form>");
 
-       wprintf("</td>");
-       wprintf("<td align=right "
+       SortByHashKey(List, 1);
+       it = GetNewHashPos(List, 0);
+       while (GetNextHashPos(List, it, &len, &VCName, &Namee)) {
+               wc_printf("<option value=\"");
+               urlescputs((char*)Namee);
+               if (strcmp(ChrPtr(DefAddrBook), Namee) == 0)
+                       wc_printf("\" selected=\"selected\" >");
+               else
+                       wc_printf("\">");
+               escputs((char*)Namee);
+               wc_printf("</option>\n");
+       }
+       DeleteHashPos(&it);
+       DeleteHash(&List);
+       wc_printf("</select></form>");
+
+       wc_printf("</td>");
+       wc_printf("<td align=right "
                "onclick=\"javascript:$('address_book_popup').style.display='none';\" "
                "><img src=\"static/closewindow.gif\">");
-       wprintf("</td></tr></table>");
+       wc_printf("</td></tr></table>");
+
+       wc_printf("<script type=\"text/javascript\">PopulateAddressBookInnerDiv($('which_addr_book').value,'%s');</script>",
+               bstr("target_input")
+       );
 
        end_ajax_response();
 }
 
 
 
-/**
- * \brief Address book popup results
+/*
+ * Address book popup results
  */
-void display_address_book_inner_div(void) {
+void display_address_book_inner_div() {
+       char buf[256];
+       int num_targets = 0;
+       char target_id[64];
+       char target_label[64];
+       long len;
+       char *Name;
+       const char *VCName;
+       void *Namee;
+       HashList *List;
+       HashPos  *it;
        int i;
+       StrBuf *saved_roomname;
 
        begin_ajax_response();
 
-       wprintf("<div align=center><form>"
-               "<select name=\"whichaddr\" size=\"15\">\n");
+       List = NewHash(1, NULL);
+       wc_printf("<div align=center><form onSubmit=\"return false;\">"
+               "<select multiple name=\"whichaddr\" id=\"whichaddr\" size=\"15\">\n");
+
+       if (!strcasecmp(bstr("which_addr_book"), "__LOCAL_USERS__")) {
+               serv_puts("LIST");
+               serv_getln(buf, sizeof buf);
+               if (buf[0] == '1') while(len = serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
+                       Name = (char*) malloc(len + 1);
+                       len = extract_token(Name, buf, 0, '|', len + 1);
+                       if((len > 5) && (strncmp(Name, "SYS_", 4) == 0)) {
+                               free(Name);
+                               continue;
+                       }
+                       Put(List, Name, len, Name, NULL);
+
+               }
+               SortByHashKey(List, 1);
+               it = GetNewHashPos(List, 0);
+               while (GetNextHashPos(List, it, &len, &VCName, &Namee)) {
+                       wc_printf("<option value=\"");
+                       escputs((char*)Namee);
+                       wc_printf("\">");
+                       escputs((char*)Namee);
+                       wc_printf("</option>\n");
+               }
+               DeleteHashPos(&it);
+               DeleteHash(&List);
+       }
+
+       else {
+               set_room_pref("defaddrbook",NewStrBufDup(sbstr("which_addr_book")), 0);
+               saved_roomname = NewStrBufDup(WC->CurRoom.name);
+               gotoroom(sbstr("which_addr_book"));
+               serv_puts("DVCA");
+               serv_getln(buf, sizeof buf);
+               if (buf[0] == '1') while(len = serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
+                       Name = (char*) malloc(len + 1);
+                       len = extract_token(Name, buf, 0, '|', len + 1);
+                       Put(List, Name, len, Name, NULL);
+
+               }
+               SortByHashKey(List, 1);
+               it = GetNewHashPos(List, 0);
+               while (GetNextHashPos(List, it, &len, &VCName, (void**)&Namee)) {
+                       wc_printf("<option value=\"");
+                       escputs((char*)Namee);
+                       wc_printf("\">");
+                       escputs((char*)Namee);
+                       wc_printf("</option>\n");
+               }
+               DeleteHashPos(&it);
+               DeleteHash(&List);
+               gotoroom(saved_roomname);
+               FreeStrBuf(&saved_roomname);
+       }
+
+       wc_printf("</select>\n");
 
-       for (i=0; i<100; ++i) {
-               wprintf("<option>Contact %d &lt;contact%d@example.com&gt;</option>\n", i, i);
+       wc_printf("%s: ", _("Add"));
+
+       num_targets = num_tokens(bstr("target_input"), '|');
+       for (i=0; i<num_targets; i+=2) {
+               extract_token(target_id, bstr("target_input"), i, '|', sizeof target_id);
+               extract_token(target_label, bstr("target_input"), i+1, '|', sizeof target_label);
+               wc_printf("<INPUT TYPE=\"submit\" NAME=\"select_button\" VALUE=\"%s\" ", target_label);
+               wc_printf("onClick=\"AddContactsToTarget($('%s'),$('whichaddr'));\">", target_id);
        }
 
-       wprintf("</select></form></div>\n");
+       /* This 'close window' button works.  Omitting it because we already have a close button
+        * in the upper right corner, and this one takes up space.
+        *
+       wc_printf("<INPUT TYPE=\"submit\" NAME=\"close_button\" VALUE=\"%s\" ", _("Close window"));
+       wc_printf("onclick=\"javascript:$('address_book_popup').style.display='none';\">");
+        */
+
+       wc_printf("</form></div>\n");
 
        end_ajax_response();
 }
 
 
-/** @} */
+
+
+void 
+InitModule_ADDRBOOK_POPUP
+(void)
+{
+       WebcitAddUrlHandler(HKEY("display_address_book_middle_div"), "", 0, display_address_book_middle_div, 0);
+       WebcitAddUrlHandler(HKEY("display_address_book_inner_div"), "", 0, display_address_book_inner_div, 0);
+}