]> code.citadel.org Git - citadel.git/blob - webcit/auth.c
Pretty buttons for Log Off screen
[citadel.git] / webcit / auth.c
1 /*
2  * $Id$
3  */
4 /**
5  *
6  * \defgroup WebcitAuth WebcitAuth; Handles authentication of users to a Citadel server.
7  * \ingroup CitadelConfig
8  */
9
10 /*@{*/
11 #include "webcit.h"
12
13
14
15 /**
16  * \brief  user states
17  * the plain text states of a user. filled in at \ function TODO initialize_ax_defs()
18  * due to NLS
19  */
20 char *axdefs[7]; 
21
22 void initialize_axdefs(void) {
23         axdefs[0] = _("Deleted");       /*!0: an erased user */
24         axdefs[1] = _("New User");      /*!1: a new user */
25         axdefs[2] = _("Problem User");  /*!2: a trouble maker */
26         axdefs[3] = _("Local User");    /*!3: user with normal privileges */
27         axdefs[4] = _("Network User");  /*!4: a user that may access network resources */
28         axdefs[5] = _("Preferred User");/*!5: a moderator */
29         axdefs[6] = _("Aide");          /*!6: chief */
30 }
31
32
33
34
35 /** 
36  * \brief Display the login screen
37  * \param mesg The error message if last attempt failed.
38  */
39 void display_login(char *mesg)
40 {
41         char buf[SIZ];
42
43         output_headers(1, 1, 2, 0, 0, 0);
44         wprintf("<div id=\"login_screen\">\n");
45
46         if (mesg != NULL) if (!IsEmptyStr(mesg)) {
47                         stresc(buf, SIZ,  mesg, 0, 0);
48                         svprintf("mesg", WCS_STRING, "%s", buf);
49         }
50
51         svprintf("LOGIN_INSTRUCTIONS", WCS_STRING,
52                 _("<ul>"
53                 "<li><b>If you already have an account on %s</b>, "
54                 "enter your user name and password and click &quot;Login.&quot; "
55                 "<li><b>If you are a new user</b>, enter the name and password "
56                 "you wish to use, "
57                 "and click &quot;New User.&quot; "
58                 "<li>Please log off properly when finished. "
59                 "<li>You must use a browser that supports <i>frames</i> and "
60                 "<i>cookies</i>. "
61                 "<li>Also keep in mind that if your browser is "
62                 "configured to block pop-up windows, you will not be able "
63                 "to receive any instant messages.<br />"
64                 "</ul>"),
65                 serv_info.serv_humannode
66         );
67
68         svprintf("USERNAME_BOX", WCS_STRING, "%s", _("User name:"));
69         svprintf("PASSWORD_BOX", WCS_STRING, "%s", _("Password:"));
70         svprintf("LANGUAGE_BOX", WCS_STRING, "%s", _("Language:"));
71         svprintf("LOGIN_BUTTON", WCS_STRING, "%s", _("Login"));
72         svprintf("NEWUSER_BUTTON", WCS_STRING, "%s", _("New User"));
73         svprintf("EXIT_BUTTON", WCS_STRING, "%s", _("Exit"));
74         svprintf("hello", WCS_SERVCMD, "MESG hello");
75         svprintf("BOXTITLE", WCS_STRING, _("%s - powered by <a href=\"http://www.citadel.org\">Citadel</a>"),
76                 serv_info.serv_humannode);
77         svcallback("DO_LANGUAGE_BOX", offer_languages);
78         if (serv_info.serv_newuser_disabled) {
79                 svprintf("NEWUSER_BUTTON_PRE", WCS_STRING, "<div style=\"display:none;\">");
80                 svprintf("NEWUSER_BUTTON_POST", WCS_STRING, "</div>");
81         }
82         else {
83                 svprintf("NEWUSER_BUTTON_PRE", WCS_STRING, "");
84                 svprintf("NEWUSER_BUTTON_POST", WCS_STRING, "");
85         }
86
87         do_template("login");
88
89         wDumpContent(2);
90 }
91
92
93
94
95 /** \brief Initialize the session
96  * This function needs to get called whenever the session changes from
97  * not-logged-in to logged-in, either by an explicit login by the user or
98  * by a timed-out session automatically re-establishing with a little help
99  * from the browser cookie.  Either way, we need to load access controls and
100  * preferences from the server.
101  *
102  * \param user the username
103  * \param pass his password
104  * \param serv_response The parameters returned from a Citadel USER or NEWU command
105  */
106 void become_logged_in(char *user, char *pass, char *serv_response)
107 {
108         char buf[SIZ];
109
110         WC->logged_in = 1;
111         extract_token(WC->wc_fullname, &serv_response[4], 0, '|', sizeof WC->wc_fullname);
112         safestrncpy(WC->wc_username, user, sizeof WC->wc_username);
113         safestrncpy(WC->wc_password, pass, sizeof WC->wc_password);
114         WC->axlevel = extract_int(&serv_response[4], 1);
115         if (WC->axlevel >= 6) {
116                 WC->is_aide = 1;
117         }
118
119         load_preferences();
120
121         serv_puts("CHEK");
122         serv_getln(buf, sizeof buf);
123         if (buf[0] == '2') {
124                 WC->new_mail = extract_int(&buf[4], 0);
125                 WC->need_regi = extract_int(&buf[4], 1);
126                 WC->need_vali = extract_int(&buf[4], 2);
127                 extract_token(WC->cs_inet_email, &buf[4], 3, '|', sizeof WC->cs_inet_email);
128         }
129
130         get_preference("current_iconbar", buf, sizeof buf);
131         WC->current_iconbar = atoi(buf);
132
133         get_preference("floordiv_expanded", WC->floordiv_expanded, sizeof WC->floordiv_expanded);
134 }
135
136
137 /** 
138  * \brief Login Checks
139  * the logics to detect invalid passwords not to get on citservers nerves
140  */
141 void do_login(void)
142 {
143         char buf[SIZ];
144
145         if (!IsEmptyStr(bstr("language"))) {
146                 set_selected_language(bstr("language"));
147                 go_selected_language();
148         }
149
150         if (!IsEmptyStr(bstr("exit_action"))) {
151                 do_logout();
152                 return;
153         }
154         if (!IsEmptyStr(bstr("login_action"))) {
155                 serv_printf("USER %s", bstr("name"));
156                 serv_getln(buf, sizeof buf);
157                 if (buf[0] == '3') {
158                         serv_printf("PASS %s", bstr("pass"));
159                         serv_getln(buf, sizeof buf);
160                         if (buf[0] == '2') {
161                                 become_logged_in(bstr("name"),
162                                                  bstr("pass"), buf);
163                         } else {
164                                 display_login(&buf[4]);
165                                 return;
166                         }
167                 } else {
168                         display_login(&buf[4]);
169                         return;
170                 }
171         }
172         if (!IsEmptyStr(bstr("newuser_action"))) {
173                 if (IsEmptyStr(bstr("pass"))) {
174                         display_login(_("Blank passwords are not allowed."));
175                         return;
176                 }
177                 serv_printf("NEWU %s", bstr("name"));
178                 serv_getln(buf, sizeof buf);
179                 if (buf[0] == '2') {
180                         become_logged_in(bstr("name"), bstr("pass"), buf);
181                         serv_printf("SETP %s", bstr("pass"));
182                         serv_getln(buf, sizeof buf);
183                 } else {
184                         display_login(&buf[4]);
185                         return;
186                 }
187         }
188         if (WC->logged_in) {
189                 if (WC->need_regi) {
190                         display_reg(1);
191                 } else {
192                         do_welcome();
193                 }
194         } else {
195                 display_login(_("Your password was not accepted."));
196         }
197
198 }
199
200 /**
201  * \brief display the user a welcome screen. 
202  * if this is the first time login, and the web based setup is enabled, 
203  * lead the user through the setup routines
204  */
205 void do_welcome(void)
206 {
207         char buf[SIZ];
208 #ifdef XXX_NOT_FINISHED_YET_XXX
209         FILE *fp;
210         int i;
211
212         /**
213          * See if we have to run the first-time setup wizard
214          */
215         if (WC->is_aide) {
216                 if (!setup_wizard) {
217                         int len;
218                         sprintf(wizard_filename, "setupwiz.%s.%s",
219                                 ctdlhost, ctdlport);
220                         len = strlen(wizard_filename);
221                         for (i=0; i<len; ++i) {
222                                 if (    (wizard_filename[i]==' ')
223                                         || (wizard_filename[i] == '/')
224                                 ) {
225                                         wizard_filename[i] = '_';
226                                 }
227                         }
228         
229                         fp = fopen(wizard_filename, "r");
230                         if (fp != NULL) {
231                                 fgets(buf, sizeof buf, fp);
232                                 buf[strlen(buf)-1] = 0;
233                                 fclose(fp);
234                                 if (atoi(buf) == serv_info.serv_rev_level) {
235                                         setup_wizard = 1; /**< already run */
236                                 }
237                         }
238                 }
239
240                 if (!setup_wizard) {
241                         http_redirect("setup_wizard");
242                 }
243         }
244 #endif
245
246         /**
247          * Go to the user's preferred start page
248          */
249         get_preference("startpage", buf, sizeof buf);
250         if (IsEmptyStr(buf)) {
251                 safestrncpy(buf, "dotskip&room=_BASEROOM_", sizeof buf);
252                 set_preference("startpage", buf, 1);
253         }
254         if (buf[0] == '/') {
255                 strcpy(buf, &buf[1]);
256         }
257         http_redirect(buf);
258 }
259
260
261 /**
262  * Disconnect from the Citadel server, and end this WebCit session
263  */
264 void end_webcit_session(void) {
265         char buf[256];
266
267         if (WC->logged_in) {
268                 sprintf(buf, "%d", WC->current_iconbar);
269                 set_preference("current_iconbar", buf, 0);
270                 set_preference("floordiv_expanded", WC->floordiv_expanded, 1);
271         }
272
273         serv_puts("QUIT");
274         WC->killthis = 1;
275         /* close() of citadel socket will be done by do_housekeeping() */
276 }
277
278 /** 
279  * execute the logout
280  */
281 void do_logout(void)
282 {
283         char buf[SIZ];
284
285         safestrncpy(WC->wc_username, "", sizeof WC->wc_username);
286         safestrncpy(WC->wc_password, "", sizeof WC->wc_password);
287         safestrncpy(WC->wc_roomname, "", sizeof WC->wc_roomname);
288         safestrncpy(WC->wc_fullname, "", sizeof WC->wc_fullname);
289
290         /** Calling output_headers() this way causes the cookies to be un-set */
291         output_headers(1, 1, 0, 1, 0, 0);
292
293         wprintf("<div id=\"logout_screen\">");
294         wprintf("<div class=\"box\">");
295         wprintf("<div class=\"boxlabel\">");
296         wprintf(_("Log off"));
297         wprintf("</div><div class=\"boxcontent\">");    
298         serv_puts("MESG goodbye");
299         serv_getln(buf, sizeof buf);
300
301         if (WC->serv_sock >= 0) {
302                 if (buf[0] == '1') {
303                         fmout("CENTER");
304                 } else {
305                         wprintf("Goodbye\n");
306                 }
307         }
308         else {
309                 wprintf(_("This program was unable to connect or stay "
310                         "connected to the Citadel server.  Please report "
311                         "this problem to your system administrator.")
312                 );
313         }
314
315         wprintf("<hr /><div class=\"buttons\"> "
316                 "<span class=\"button_link\"><a href=\".\">");
317         wprintf(_("Log in again"));
318         wprintf("</a></span>&nbsp;&nbsp;&nbsp;<span class=\"button_link\">"
319                 "<a href=\"javascript:window.close();\">");
320         wprintf(_("Close window"));
321         wprintf("</a></span></div></div></div></div>\n");
322         wDumpContent(2);
323         end_webcit_session();
324 }
325
326
327 /* *
328  * validate new users
329  */
330 void validate(void)
331 {
332         char cmd[SIZ];
333         char user[SIZ];
334         char buf[SIZ];
335         int a;
336
337         output_headers(1, 1, 2, 0, 0, 0);
338         wprintf("<div id=\"banner\">\n");
339         wprintf("<h1>");
340         wprintf(_("Validate new users"));
341         wprintf("</h1>");
342         wprintf("</div>\n");
343
344         wprintf("<div id=\"content\" class=\"service\">\n");
345
346         /** If the user just submitted a validation, process it... */
347         safestrncpy(buf, bstr("user"), sizeof buf);
348         if (!IsEmptyStr(buf)) {
349                 if (!IsEmptyStr(bstr("axlevel"))) {
350                         serv_printf("VALI %s|%s", buf, bstr("axlevel"));
351                         serv_getln(buf, sizeof buf);
352                         if (buf[0] != '2') {
353                                 wprintf("<b>%s</b><br />\n", &buf[4]);
354                         }
355                 }
356         }
357
358         /** Now see if any more users require validation. */
359         serv_puts("GNUR");
360         serv_getln(buf, sizeof buf);
361         if (buf[0] == '2') {
362                 wprintf("<b>");
363                 wprintf(_("No users require validation at this time."));
364                 wprintf("</b><br />\n");
365                 wDumpContent(1);
366                 return;
367         }
368         if (buf[0] != '3') {
369                 wprintf("<b>%s</b><br />\n", &buf[4]);
370                 wDumpContent(1);
371                 return;
372         }
373
374         wprintf("<div class=\"fix_scrollbar_bug\">"
375                 "<table class=\"auth_validate\"><tr><td>\n");
376         wprintf("<center>");
377
378         safestrncpy(user, &buf[4], sizeof user);
379         serv_printf("GREG %s", user);
380         serv_getln(cmd, sizeof cmd);
381         if (cmd[0] == '1') {
382                 a = 0;
383                 do {
384                         serv_getln(buf, sizeof buf);
385                         ++a;
386                         if (a == 1)
387                                 wprintf("#%s<br /><H1>%s</H1>",
388                                         buf, &cmd[4]);
389                         if (a == 2)
390                                 wprintf("PW: %s<br />\n", buf);
391                         if (a == 3)
392                                 wprintf("%s<br />\n", buf);
393                         if (a == 4)
394                                 wprintf("%s<br />\n", buf);
395                         if (a == 5)
396                                 wprintf("%s, ", buf);
397                         if (a == 6)
398                                 wprintf("%s ", buf);
399                         if (a == 7)
400                                 wprintf("%s<br />\n", buf);
401                         if (a == 8)
402                                 wprintf("%s<br />\n", buf);
403                         if (a == 9)
404                                 wprintf(_("Current access level: %d (%s)\n"),
405                                         atoi(buf), axdefs[atoi(buf)]);
406                 } while (strcmp(buf, "000"));
407         } else {
408                 wprintf("<H1>%s</H1>%s<br />\n", user, &cmd[4]);
409         }
410
411         wprintf("<hr />");
412         wprintf(_("Select access level for this user:"));
413         wprintf("<br />\n");
414         for (a = 0; a <= 6; ++a) {
415                 wprintf("<a href=\"validate?nonce=%ld?user=", WC->nonce);
416                 urlescputs(user);
417                 wprintf("&axlevel=%d\">%s</A>&nbsp;&nbsp;&nbsp;\n",
418                         a, axdefs[a]);
419         }
420         wprintf("<br />\n");
421
422         wprintf("</CENTER>\n");
423         wprintf("</td></tr></table></div>\n");
424         wDumpContent(1);
425 }
426
427
428
429 /** 
430  * \brief Display form for registration.
431  * (Set during_login to 1 if this registration is being performed during
432  * new user login and will require chaining to the proper screen.)
433  * \param during_login are we just in the login phase?
434  */
435 void display_reg(int during_login)
436 {
437         long vcard_msgnum;
438
439         if (goto_config_room() != 0) {
440                 if (during_login) do_welcome();
441                 else display_main_menu();
442                 return;
443         }
444
445         vcard_msgnum = locate_user_vcard(WC->wc_fullname, -1);
446         if (vcard_msgnum < 0L) {
447                 if (during_login) do_welcome();
448                 else display_main_menu();
449                 return;
450         }
451
452         if (during_login) {
453                 do_edit_vcard(vcard_msgnum, "1", "do_welcome", USERCONFIGROOM);
454         }
455         else {
456                 do_edit_vcard(vcard_msgnum, "1", "display_main_menu", USERCONFIGROOM);
457         }
458
459 }
460
461
462
463
464 /** 
465  * display form for changing your password
466  */
467 void display_changepw(void)
468 {
469         char buf[SIZ];
470
471         output_headers(1, 1, 1, 0, 0, 0);
472
473         svprintf("BOXTITLE", WCS_STRING, _("Change your password"));
474         do_template("beginbox");
475
476         if (!IsEmptyStr(WC->ImportantMessage)) {
477                 wprintf("<span class=\"errormsg\">"
478                         "%s</span><br />\n", WC->ImportantMessage);
479                 safestrncpy(WC->ImportantMessage, "", sizeof WC->ImportantMessage);
480         }
481
482         serv_puts("MESG changepw");
483         serv_getln(buf, sizeof buf);
484         if (buf[0] == '1') {
485                 fmout("CENTER");
486         }
487
488         wprintf("<form name=\"changepwform\" action=\"changepw\" method=\"post\">\n");
489         wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%ld\">\n", WC->nonce);
490         wprintf("<table class=\"altern\" ");
491         wprintf("<tr class=\"even\"><td>");
492         wprintf(_("Enter new password:"));
493         wprintf("</td><td>");
494         wprintf("<input type=\"password\" name=\"newpass1\" value=\"\" maxlength=\"20\"></td></tr>\n");
495         wprintf("<tr class=\"odd\"><td>");
496         wprintf(_("Enter it again to confirm:"));
497         wprintf("</td><td>");
498         wprintf("<input type=\"password\" name=\"newpass2\" value=\"\" maxlength=\"20\"></td></tr>\n");
499         wprintf("</table>\n");
500
501         wprintf("<div class=\"buttons\">\n");
502         wprintf("<input type=\"submit\" name=\"change_action\" value=\"%s\">", _("Change password"));
503         wprintf("&nbsp;");
504         wprintf("<input type=\"submit\" name=\"cancel_action\" value=\"%s\">\n", _("Cancel"));
505         wprintf("</div>\n");
506         wprintf("</form>\n");
507
508         do_template("endbox");
509         wDumpContent(1);
510 }
511
512 /**
513  * \brief change password
514  * if passwords match, propagate it to citserver.
515  */
516 void changepw(void)
517 {
518         char buf[SIZ];
519         char newpass1[32], newpass2[32];
520
521         if (IsEmptyStr(bstr("change_action"))) {
522                 safestrncpy(WC->ImportantMessage, 
523                         _("Cancelled.  Password was not changed."),
524                         sizeof WC->ImportantMessage);
525                 display_main_menu();
526                 return;
527         }
528
529         safestrncpy(newpass1, bstr("newpass1"), sizeof newpass1);
530         safestrncpy(newpass2, bstr("newpass2"), sizeof newpass2);
531
532         if (strcasecmp(newpass1, newpass2)) {
533                 safestrncpy(WC->ImportantMessage, 
534                         _("They don't match.  Password was not changed."),
535                         sizeof WC->ImportantMessage);
536                 display_changepw();
537                 return;
538         }
539
540         if (IsEmptyStr(newpass1)) {
541                 safestrncpy(WC->ImportantMessage, 
542                         _("Blank passwords are not allowed."),
543                         sizeof WC->ImportantMessage);
544                 display_changepw();
545                 return;
546         }
547
548         serv_printf("SETP %s", newpass1);
549         serv_getln(buf, sizeof buf);
550         sprintf(WC->ImportantMessage, "%s", &buf[4]);
551         if (buf[0] == '2') {
552                 safestrncpy(WC->wc_password, buf, sizeof WC->wc_password);
553                 display_main_menu();
554         }
555         else {
556                 display_changepw();
557         }
558 }
559
560
561
562 /** @} */