fix the who is online display
[citadel.git] / webcit / who.c
1 /*
2  * $Id$
3  */
4 /**
5  * \defgroup DislpayWho Display a list of all users currently logged on to the Citadel server.
6  * \ingroup WebcitDisplayItems
7  */
8 /*@{*/
9 #include "webcit.h"
10
11
12
13 /**
14  * \brief Display inner div of Wholist
15  */
16 void who_inner_div(void) {
17         char buf[SIZ], user[SIZ], room[SIZ], host[SIZ],
18                 realroom[SIZ], realhost[SIZ];
19         int sess;
20         time_t last_activity;
21         time_t now;
22         int bg = 0;
23
24         wprintf("<table class=\"altern\">"
25                 "<tr>\n");
26         wprintf("<th class=\"edit_col\"> </th>\n");
27         wprintf("<th colspan=\"2\"> </th>\n");
28         wprintf("<th>%s</th>\n", _("User name"));
29         wprintf("<th>%s</th>", _("Room"));
30         wprintf("<th class=\"host_col\">%s</th>\n</tr>\n", _("From host"));
31
32         serv_puts("TIME");
33         serv_getln(buf, sizeof buf);
34         if (buf[0] == '2') {
35                 now = extract_long(&buf[4], 0);
36         }
37         else {
38                 now = time(NULL);
39         }
40
41         serv_puts("RWHO");
42         serv_getln(buf, sizeof buf);
43         if (buf[0] == '1') {
44                 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
45                         sess = extract_int(buf, 0);
46                         extract_token(user, buf, 1, '|', sizeof user);
47                         extract_token(room, buf, 2, '|', sizeof room);
48                         extract_token(host, buf, 3, '|', sizeof host);
49                         extract_token(realroom, buf, 9, '|', sizeof realroom);
50                         extract_token(realhost, buf, 10, '|', sizeof realhost);
51                         last_activity = extract_long(buf, 5);
52
53                         bg = 1 - bg;
54                         wprintf("<tr class=\"%s\">",
55                                 (bg ? "even" : "odd")
56                         );
57
58
59                         wprintf("<td class=\"edit_col\">");
60                         if ((WC->is_aide) &&
61                             (sess != WC->ctdl_pid)) {
62                                 wprintf(" <a href=\"terminate_session?which_session=%d", sess);
63                                 wprintf("\" onClick=\"return ConfirmKill();\">%s</a>", _("(kill)"));
64                         }
65                         if (sess == WC->ctdl_pid) {
66                                 wprintf(" <a href=\"edit_me\">%s</a>", _("(edit)"));
67                         }
68                         wprintf("</td>");
69
70                         /** (link to page this user) */
71                         wprintf("<td width=\"5%\"><a href=\"display_page?recp=");
72                         urlescputs(user);
73                         wprintf("\">"
74                                 "<img align=\"middle\" "
75                                 "src=\"static/citadelchat_24x.gif\" "
76                                 "alt=\"(p)\""
77                                 " border=\"0\" /></a> ");
78                         wprintf("</td>");
79
80                         /** (idle flag) */
81                         wprintf("<td width=\"5%\">");
82                         if ((now - last_activity) > 900L) {
83                                 wprintf(" "
84                                         "<img align=\"middle\" "
85                                         "src=\"static/inactiveuser_24x.gif\" "
86                                         "alt=\"(idle)\" border=\"0\" />");
87                         }
88                         else {
89                                 wprintf(" "
90                                         "<img align=\"middle\" "
91                                         "src=\"static/activeuser_24x.gif\" "
92                                         "alt=\"(active)\" border=\"0\" />");
93                         }
94                         wprintf("</td>\n<td>");
95
96
97
98                         /** username (link to user bio/photo page) */
99                         wprintf("<a href=\"showuser?who=");
100                         urlescputs(user);
101                         wprintf("\">");
102                         escputs(user);
103                         wprintf("</a>");
104
105                         /** room */
106                         wprintf("</td>\n\t<td>");
107                         escputs(room);
108                         if (!IsEmptyStr(realroom) ) {
109                                 wprintf("<br /><i>");
110                                 escputs(realroom);
111                                 wprintf("</i>");
112                         }
113                         wprintf("</td>\n\t<td class=\"host_col\">");
114
115                         /** hostname */
116                         escputs(host);
117                         if (!IsEmptyStr(realhost)) {
118                                 wprintf("<br /><i>");
119                                 escputs(realhost);
120                                 wprintf("</i>");
121                         }
122                         wprintf("</td>\n</tr>");
123                 }
124         }
125         wprintf("</table>");
126 }
127
128
129 /**
130  * \brief who is on?
131  */
132 void who(void)
133 {
134         char title[256];
135
136         output_headers(1, 1, 2, 0, 0, 0);
137
138         wprintf("<script type=\"text/javascript\">\n"
139                 "function ConfirmKill() { \n"
140                 "return confirm('%s');\n"
141                 "}\n"
142                 "</script>\n", _("Do you really want to kill this session?")
143         );
144
145         wprintf("<div id=\"banner\">\n");
146         wprintf("<div class=\"room_banner\">");
147         wprintf("<img src=\"static/usermanag_48x.gif\">");
148         wprintf("<h1>");
149         snprintf(title, sizeof title, _("Users currently on %s"), serv_info.serv_humannode);
150         escputs(title);
151         wprintf("</h1></div>");
152         wprintf("<ul class=\"room_actions\">\n");
153         wprintf("<li class=\"start_page\">");
154         offer_start_page();
155         wprintf("</li></ul>");
156         wprintf("</div>");
157
158         wprintf("<div id=\"content\" class=\"fix_scrollbar_bug who_is_online\">\n");
159         wprintf("<div class=\"box\">");
160         wprintf("<div class=\"boxlabel\">");    
161         snprintf(title, sizeof title, _("Users currently on %s"), serv_info.serv_humannode);
162         escputs(title);
163         wprintf("</div>");      
164         wprintf("<div class=\"boxcontent\">");
165         wprintf("<div id=\"who_inner\" >");
166         who_inner_div();
167         wprintf("</div>");
168
169         wprintf("<div class=\"instructions\">");
170         wprintf(_("Click on a name to read user info.  Click on %s "
171                 "to send an instant message to that user."),
172                 "<img align=\"middle\" src=\"static/citadelchat_16x.gif\" alt=\"(p)\" border=\"0\">"
173         );
174         wprintf("</div></div>\n");
175
176         /**
177          * JavaScript to make the ajax refresh happen:
178          * See http://www.sergiopereira.com/articles/prototype.js.html for info on Ajax.PeriodicalUpdater
179          * It wants: 1. The div being updated
180          *           2. The URL of the update source
181          *           3. Other flags (such as the HTTP method and the refresh frequency)
182          */
183         wprintf(
184                 "<script type=\"text/javascript\">                                      "
185                 " new Ajax.PeriodicalUpdater('who_inner', 'who_inner_html',     "
186                 "                            { method: 'get', frequency: 30 }  );       "
187                 "</script>                                                              \n"
188         );
189         wDumpContent(1);
190 }
191
192 /**
193  * \brief end session \todo what??? does this belong here? 
194  */
195 void terminate_session(void)
196 {
197         char buf[SIZ];
198
199         serv_printf("TERM %s", bstr("which_session"));
200         serv_getln(buf, sizeof buf);
201         who();
202 }
203
204
205 /**
206  * \brief Change your session info (fake roomname and hostname)
207  */
208 void edit_me(void)
209 {
210         char buf[SIZ];
211
212         if (!IsEmptyStr(bstr("change_room_name_button"))) {
213                 serv_printf("RCHG %s", bstr("fake_roomname"));
214                 serv_getln(buf, sizeof buf);
215                 http_redirect("who");
216         } else if (!IsEmptyStr(bstr("change_host_name_button"))) {
217                 serv_printf("HCHG %s", bstr("fake_hostname"));
218                 serv_getln(buf, sizeof buf);
219                 http_redirect("who");
220         } else if (!IsEmptyStr(bstr("change_user_name_button"))) {
221                 serv_printf("UCHG %s", bstr("fake_username"));
222                 serv_getln(buf, sizeof buf);
223                 http_redirect("who");
224         } else if (!IsEmptyStr(bstr("cancel_button"))) {
225                 http_redirect("who");
226         } else {
227                 output_headers(1, 1, 0, 0, 0, 0);
228
229                 wprintf("<div id=\"banner\">\n");
230                 wprintf("<table class=\"who_banner\"><tr><td>");
231                 wprintf("<span class=\"titlebar\">");
232                 wprintf(_("Edit your session display"));
233                 wprintf("</span></td></tr></table>\n");
234                 wprintf("</div>\n<div id=\"content\">\n");
235
236                 wprintf(_("This screen allows you to change the way your "
237                         "session appears in the 'Who is online' listing. "
238                         "To turn off any 'fake' name you've previously "
239                         "set, simply click the appropriate 'change' button "
240                         "without typing anything in the corresponding box. "));
241                 wprintf("<br />\n");
242
243                 wprintf("<form method=\"POST\" action=\"edit_me\">\n");
244                 wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%ld\">\n", WC->nonce);
245
246                 wprintf("<table border=0 width=100%%>\n");
247
248                 wprintf("<tr><td><b>");
249                 wprintf(_("Room name:"));
250                 wprintf("</b></td>\n<td>");
251                 wprintf("<input type=\"text\" name=\"fake_roomname\" maxlength=\"64\">\n");
252                 wprintf("</td>\n<td align=center>");
253                 wprintf("<input type=\"submit\" name=\"change_room_name_button\" value=\"%s\">",
254                         _("Change room name"));
255                 wprintf("</td>\n</tr>\n");
256
257                 wprintf("<tr><td><b>");
258                 wprintf(_("Host name:"));
259                 wprintf("</b></td><td>");
260                 wprintf("<input type=\"text\" name=\"fake_hostname\" maxlength=\"64\">\n");
261                 wprintf("</td>\n<td align=center>");
262                 wprintf("<input type=\"submit\" name=\"change_host_name_button\" value=\"%s\">",
263                         _("Change host name"));
264                 wprintf("</td>\n</tr>\n");
265
266                 if (WC->is_aide) {
267                         wprintf("<tr><td><b>");
268                         wprintf(_("User name:"));
269                         wprintf("</b></td><td>");
270                         wprintf("<input type=\"text\" name=\"fake_username\" maxlength=\"64\">\n");
271                         wprintf("</td>\n<td align=center>");
272                         wprintf("<input type=\"submit\" name \"change_user_name_button\" value=\"%s\">",
273                                 _("Change user name"));
274                         wprintf("</td>\n</tr>\n");
275                 }
276                 wprintf("<tr><td> </td><td> </td><td align=center>");
277                 wprintf("<input type=\"submit\" name=\"cancel_button\" value=\"%s\">",
278                         _("Cancel"));
279                 wprintf("</td></tr></table>\n");
280                 wprintf("</form></center>\n");
281                 wDumpContent(1);
282         }
283 }
284
285
286 /*@}*/