5 * \defgroup PageFunc Functions which implement the chat and paging facilities.
12 * \brief display the form for paging (x-messaging) another user
14 void display_page(void)
18 strcpy(recp
, bstr("recp"));
20 output_headers(1, 1, 2, 0, 0, 0);
21 wprintf("<div id=\"banner\">\n");
23 wprintf(_("Send instant message"));
27 wprintf("<div id=\"content\" class=\"service\">\n");
29 wprintf("<div class=\"fix_scrollbar_bug\">"
30 "<table class=\"paging_background\"><tr><td>\n");
32 wprintf(_("Send an instant message to: "));
36 wprintf("<FORM METHOD=\"POST\" action=\"page_user\">\n");
37 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
38 wprintf("<input type=\"hidden\" name=\"template\" value=\"who\">\n");
40 wprintf("<TABLE border=0 width=100%%><TR><TD>\n");
42 wprintf("<INPUT TYPE=\"hidden\" NAME=\"recp\" VALUE=\"");
46 wprintf(_("Enter message text:"));
49 wprintf("<TEXTAREA NAME=\"msgtext\" wrap=soft ROWS=5 COLS=40 "
50 "WIDTH=40></TEXTAREA>\n");
52 wprintf("</TD></TR></TABLE><br />\n");
54 wprintf("<INPUT TYPE=\"submit\" NAME=\"send_button\" VALUE=\"%s\">", _("Send message"));
55 wprintf("<br /><a href=\"javascript:window.close();\"%s</A>\n", _("Cancel"));
57 wprintf("</FORM></CENTER>\n");
58 wprintf("</td></tr></table></div>\n");
63 * \brief page another user
70 safestrncpy(recp
, bstr("recp"), sizeof recp
);
72 if (!havebstr("send_button")) {
73 safestrncpy(WC
->ImportantMessage
,
74 _("Message was not sent."),
75 sizeof WC
->ImportantMessage
78 serv_printf("SEXP %s|-", recp
);
79 serv_getln(buf
, sizeof buf
);
82 text_to_server(bstr("msgtext"));
84 stresc(buf
, 256, recp
, 0, 0);
85 snprintf(WC
->ImportantMessage
,
86 sizeof WC
->ImportantMessage
,
88 _("Message has been sent to "),
93 safestrncpy(WC
->ImportantMessage
, &buf
[4], sizeof WC
->ImportantMessage
);
103 * \brief multiuser chat
109 /** First, check to make sure we're still allowed in this room. */
110 serv_printf("GOTO %s", ChrPtr(WC
->wc_roomname
));
111 serv_getln(buf
, sizeof buf
);
114 Buf
= NewStrBufPlain(HKEY("_BASEROOM_"));
121 * If the chat socket is still open from a previous chat,
122 * close it -- because it might be stale or in the wrong room.
124 if (WC
->chat_sock
< 0) {
125 close(WC
->chat_sock
);
126 WC
->chat_sock
= (-1);
130 * WebCit Chat works by having transmit, receive, and refresh
131 * frames. Load the frameset. (This isn't AJAX but the headers
132 * output by begin_ajax_response() happen to be the ones we need.)
134 begin_ajax_response();
135 do_template("chatframeset", NULL
);
142 * \brief display page popup
143 * If there are instant messages waiting, and we notice that we haven't checked them in
144 * a while, it probably means that we need to open the instant messenger window.
146 void page_popup(void)
151 /** JavaScript function to alert the user that popups are probably blocked */
152 wprintf("<script type=\"text/javascript\"> "
153 "function PopUpFailed() { "
157 _("You have one or more instant messages waiting, but the Citadel Instant Messenger "
158 "window failed to open. This is probably because you have a popup blocker "
159 "installed. Please configure your popup blocker to allow popups from this site "
160 "if you wish to receive instant messages.")
163 /** First, do the check as part of our page load. */
165 len
= serv_getln(buf
, sizeof buf
);
166 if ((len
>= 3) && (buf
[3] == '*')) {
167 if ((time(NULL
) - WC
->last_pager_check
) > 60) {
168 wprintf("<script type=\"text/javascript\">"
169 " var oWin = window.open('static/instant_messenger.html', "
170 " 'CTDL_MESSENGER', 'width=700,height=400'); "
171 " if (oWin==null || typeof(oWin)==\"undefined\") { "
179 /** Then schedule it to happen again a minute from now if the user is idle. */
180 wprintf("<script type=\"text/javascript\"> "
181 " function HandleSslp(sslg_xmlresponse) { "
182 " sslg_response = sslg_xmlresponse.responseText.substr(0, 1); "
183 " if (sslg_response == 'Y') { "
184 " var oWin = window.open('static/instant_messenger.html', 'CTDL_MESSENGER', "
185 " 'width=700,height=400'); "
186 " if (oWin==null || typeof(oWin)==\"undefined\") { "
191 " function CheckPager() { "
192 " new Ajax.Request('sslg', { method: 'get', parameters: CtdlRandomString(), "
193 " onSuccess: HandleSslp } ); "
195 " new PeriodicalExecuter(CheckPager, 30); "
203 * \brief Support function for chat
204 * make sure the chat socket is connected
207 int setup_chat_socket(void) {
210 int good_chatmode
= 0;
212 if (WC
->chat_sock
< 0) {
214 if (!strcasecmp(ctdlhost
, "uds")) {
215 /** unix domain socket */
216 sprintf(buf
, "%s/citadel.socket", ctdlport
);
217 WC
->chat_sock
= uds_connectsock(buf
);
221 WC
->chat_sock
= tcp_connectsock(ctdlhost
, ctdlport
);
224 if (WC
->chat_sock
< 0) {
228 /** Temporarily swap the serv and chat sockets during chat talk */
230 WC
->serv_sock
= WC
->chat_sock
;
233 serv_getln(buf
, sizeof buf
);
235 serv_printf("USER %s", ChrPtr(WC
->wc_username
));
236 serv_getln(buf
, sizeof buf
);
238 serv_printf("PASS %s", ChrPtr(WC
->wc_password
));
239 serv_getln(buf
, sizeof buf
);
241 serv_printf("GOTO %s", ChrPtr(WC
->wc_roomname
));
242 serv_getln(buf
, sizeof buf
);
245 serv_getln(buf
, sizeof buf
);
254 /** Unswap the sockets. */
256 WC
->serv_sock
= WC
->chat_sock
;
259 if (!good_chatmode
) close(WC
->serv_sock
);
268 * \brief Receiving side of the chat window.
269 * This is implemented in a
270 * tiny hidden IFRAME that just does JavaScript writes to
271 * other frames whenever it refreshes and finds new data.
273 void chat_recv(void) {
277 int end_chat_now
= 0;
281 char *output_data
= NULL
;
283 output_headers(0, 0, 0, 0, 0, 0);
285 hprintf("Content-type: text/html; charset=utf-8\r\n");
288 "<meta http-equiv=\"refresh\" content=\"3\" />\n"
291 "<body bgcolor=\"#FFFFFF\">\n"
294 if (setup_chat_socket() != 0) {
295 wprintf(_("An error occurred while setting up the chat socket."));
296 wprintf("</BODY></HTML>\n");
302 * See if there is any chat data waiting.
304 output_data
= strdup("");
307 pf
.fd
= WC
->chat_sock
;
310 if ((poll(&pf
, 1, 1) > 0) && (pf
.revents
& POLLIN
)) {
313 /** Temporarily swap the serv and chat sockets during chat talk */
315 WC
->serv_sock
= WC
->chat_sock
;
318 serv_getln(buf
, sizeof buf
);
320 if (!strcmp(buf
, "000")) {
322 strcat(buf
, _("Now exiting chat mode."));
326 /** Unswap the sockets. */
328 WC
->serv_sock
= WC
->chat_sock
;
331 /** Append our output data */
332 output_data
= realloc(output_data
, strlen(output_data
) + strlen(buf
) + 4);
333 strcat(output_data
, buf
);
334 strcat(output_data
, "\n");
337 } while ( (got_data
) && (!end_chat_now
) );
340 close(WC
->chat_sock
);
341 WC
->chat_sock
= (-1);
342 wprintf("<img src=\"static/blank.gif\" onLoad=\"parent.window.close();\">\n");
345 if (!IsEmptyStr(output_data
)) {
347 len
= strlen(output_data
);
348 if (output_data
[len
-1] == '\n') {
349 output_data
[len
-1] = 0;
352 /** Output our fun to the other frame. */
353 wprintf("<img src=\"static/blank.gif\" WIDTH=1 HEIGHT=1\n"
357 for (i
=0; i
<num_tokens(output_data
, '\n'); ++i
) {
358 extract_token(buf
, output_data
, i
, '\n', sizeof buf
);
359 extract_token(cl_user
, buf
, 0, '|', sizeof cl_user
);
360 extract_token(cl_text
, buf
, 1, '|', sizeof cl_text
);
362 if (strcasecmp(cl_text
, "NOOP")) {
364 wprintf("parent.chat_transcript.document.write('");
366 if (strcasecmp(cl_user
, WC
->last_chat_user
)) {
367 wprintf("<TABLE border=0 WIDTH=100%% "
368 "CELLSPACING=1 CELLPADDING=0 "
369 "BGCOLOR="#FFFFFF">"
370 "<TR><TD></TR></TD></TABLE>"
375 wprintf("<TABLE border=0 WIDTH=100%% "
376 "CELLSPACING=0 CELLPADDING=0 "
377 "BGCOLOR="#EEEEEE">");
381 if (!strcasecmp(cl_user
, ":")) {
385 if (strcasecmp(cl_user
, WC
->last_chat_user
)) {
388 if (!strcasecmp(cl_user
, ChrPtr(WC
->wc_fullname
))) {
389 wprintf("<FONT COLOR="#FF0000">");
392 wprintf("<FONT COLOR="#0000FF">");
396 wprintf("</FONT>: </B>");
399 wprintf(" ");
402 if (!strcasecmp(cl_user
, ":")) {
406 wprintf("</TD></TR></TABLE>");
409 strcpy(WC
->last_chat_user
, cl_user
);
413 wprintf("parent.chat_transcript.scrollTo(999999,999999);\">\n");
418 wprintf("</BODY></HTML>\n");
424 * \brief sending side of the chat window
426 void chat_send(void) {
431 output_headers(0, 0, 0, 0, 0, 0);
432 hprintf("Content-type: text/html; charset=utf-8\r\n");
434 "<BODY onLoad=\"document.chatsendform.send_this.focus();\" >"
437 if (havebstr("send_this")) {
438 strcpy(send_this
, bstr("send_this"));
441 strcpy(send_this
, "");
444 if (havebstr("help_button")) {
445 strcpy(send_this
, "/help");
448 if (havebstr("list_button")) {
449 strcpy(send_this
, "/who");
452 if (havebstr("exit_button")) {
453 strcpy(send_this
, "/quit");
456 if (setup_chat_socket() != 0) {
457 wprintf(_("An error occurred while setting up the chat socket."));
458 wprintf("</BODY></HTML>\n");
463 /** Temporarily swap the serv and chat sockets during chat talk */
465 WC
->serv_sock
= WC
->chat_sock
;
468 while (!IsEmptyStr(send_this
)) {
469 if (strlen(send_this
) < 67) {
470 serv_puts(send_this
);
471 strcpy(send_this
, "");
474 for (i
=55; i
<67; ++i
) {
475 if (send_this
[i
] == ' ') break;
477 strncpy(buf
, send_this
, i
);
479 strcpy(send_this
, &send_this
[i
]);
484 /** Unswap the sockets. */
486 WC
->serv_sock
= WC
->chat_sock
;
489 wprintf("<FORM METHOD=\"POST\" action=\"chat_send\" NAME=\"chatsendform\">\n");
490 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC
->nonce
);
491 wprintf("<INPUT TYPE=\"text\" SIZE=\"80\" MAXLENGTH=\"%d\" "
492 "NAME=\"send_this\">\n", SIZ
-10);
494 wprintf("<INPUT TYPE=\"submit\" NAME=\"send_button\" VALUE=\"%s\">\n", _("Send"));
495 wprintf("<INPUT TYPE=\"submit\" NAME=\"help_button\" VALUE=\"%s\">\n", _("Help"));
496 wprintf("<INPUT TYPE=\"submit\" NAME=\"list_button\" VALUE=\"%s\">\n", _("List users"));
497 wprintf("<INPUT TYPE=\"submit\" NAME=\"exit_button\" VALUE=\"%s\">\n", _("Exit"));
498 wprintf("</FORM>\n");
500 wprintf("</BODY></HTML>\n");
508 WebcitAddUrlHandler(HKEY("display_page"), display_page
, 0);
509 WebcitAddUrlHandler(HKEY("page_user"), page_user
, 0);
510 WebcitAddUrlHandler(HKEY("chat"), do_chat
, 0);
511 WebcitAddUrlHandler(HKEY("chat_recv"), chat_recv
, 0);
512 WebcitAddUrlHandler(HKEY("chat_send"), chat_send
, 0);