* we have now several bstrs:
[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 (havebstr("language")) {
146                 set_selected_language(bstr("language"));
147                 go_selected_language();
148         }
149
150         if (havebstr("exit_action")) {
151                 do_logout();
152                 return;
153         }
154         if (havebstr("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 (havebstr("newuser_action")) {
173                 if (!havebstr("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                 wprintf("<a href=\"http://www.citadel.org/doku.php/"
314                         "faq:mastering_your_os:net#netstat\">%s</a>", 
315                         _("Read More..."));
316         }
317
318         wprintf("<hr /><div class=\"buttons\"> "
319                 "<span class=\"button_link\"><a href=\".\">");
320         wprintf(_("Log in again"));
321         wprintf("</a></span>&nbsp;&nbsp;&nbsp;<span class=\"button_link\">"
322                 "<a href=\"javascript:window.close();\">");
323         wprintf(_("Close window"));
324         wprintf("</a></span></div></div></div></div>\n");
325         wDumpContent(2);
326         end_webcit_session();
327 }
328
329
330 /* *
331  * validate new users
332  */
333 void validate(void)
334 {
335         char cmd[SIZ];
336         char user[SIZ];
337         char buf[SIZ];
338         int a;
339
340         output_headers(1, 1, 2, 0, 0, 0);
341         wprintf("<div id=\"banner\">\n");
342         wprintf("<h1>");
343         wprintf(_("Validate new users"));
344         wprintf("</h1>");
345         wprintf("</div>\n");
346
347         wprintf("<div id=\"content\" class=\"service\">\n");
348
349         /** If the user just submitted a validation, process it... */
350         safestrncpy(buf, bstr("user"), sizeof buf);
351         if (!IsEmptyStr(buf)) {
352                 if (havebstr("axlevel")) {
353                         serv_printf("VALI %s|%s", buf, bstr("axlevel"));
354                         serv_getln(buf, sizeof buf);
355                         if (buf[0] != '2') {
356                                 wprintf("<b>%s</b><br />\n", &buf[4]);
357                         }
358                 }
359         }
360
361         /** Now see if any more users require validation. */
362         serv_puts("GNUR");
363         serv_getln(buf, sizeof buf);
364         if (buf[0] == '2') {
365                 wprintf("<b>");
366                 wprintf(_("No users require validation at this time."));
367                 wprintf("</b><br />\n");
368                 wDumpContent(1);
369                 return;
370         }
371         if (buf[0] != '3') {
372                 wprintf("<b>%s</b><br />\n", &buf[4]);
373                 wDumpContent(1);
374                 return;
375         }
376
377         wprintf("<div class=\"fix_scrollbar_bug\">"
378                 "<table class=\"auth_validate\"><tr><td>\n");
379         wprintf("<center>");
380
381         safestrncpy(user, &buf[4], sizeof user);
382         serv_printf("GREG %s", user);
383         serv_getln(cmd, sizeof cmd);
384         if (cmd[0] == '1') {
385                 a = 0;
386                 do {
387                         serv_getln(buf, sizeof buf);
388                         ++a;
389                         if (a == 1)
390                                 wprintf("#%s<br /><H1>%s</H1>",
391                                         buf, &cmd[4]);
392                         if (a == 2)
393                                 wprintf("PW: %s<br />\n", buf);
394                         if (a == 3)
395                                 wprintf("%s<br />\n", buf);
396                         if (a == 4)
397                                 wprintf("%s<br />\n", buf);
398                         if (a == 5)
399                                 wprintf("%s, ", buf);
400                         if (a == 6)
401                                 wprintf("%s ", buf);
402                         if (a == 7)
403                                 wprintf("%s<br />\n", buf);
404                         if (a == 8)
405                                 wprintf("%s<br />\n", buf);
406                         if (a == 9)
407                                 wprintf(_("Current access level: %d (%s)\n"),
408                                         atoi(buf), axdefs[atoi(buf)]);
409                 } while (strcmp(buf, "000"));
410         } else {
411                 wprintf("<H1>%s</H1>%s<br />\n", user, &cmd[4]);
412         }
413
414         wprintf("<hr />");
415         wprintf(_("Select access level for this user:"));
416         wprintf("<br />\n");
417         for (a = 0; a <= 6; ++a) {
418                 wprintf("<a href=\"validate?nonce=%ld?user=", WC->nonce);
419                 urlescputs(user);
420                 wprintf("&axlevel=%d\">%s</A>&nbsp;&nbsp;&nbsp;\n",
421                         a, axdefs[a]);
422         }
423         wprintf("<br />\n");
424
425         wprintf("</CENTER>\n");
426         wprintf("</td></tr></table></div>\n");
427         wDumpContent(1);
428 }
429
430
431
432 /** 
433  * \brief Display form for registration.
434  * (Set during_login to 1 if this registration is being performed during
435  * new user login and will require chaining to the proper screen.)
436  * \param during_login are we just in the login phase?
437  */
438 void display_reg(int during_login)
439 {
440         long vcard_msgnum;
441
442         if (goto_config_room() != 0) {
443                 if (during_login) do_welcome();
444                 else display_main_menu();
445                 return;
446         }
447
448         vcard_msgnum = locate_user_vcard(WC->wc_fullname, -1);
449         if (vcard_msgnum < 0L) {
450                 if (during_login) do_welcome();
451                 else display_main_menu();
452                 return;
453         }
454
455         if (during_login) {
456                 do_edit_vcard(vcard_msgnum, "1", "do_welcome", USERCONFIGROOM);
457         }
458         else {
459                 do_edit_vcard(vcard_msgnum, "1", "display_main_menu", USERCONFIGROOM);
460         }
461
462 }
463
464
465
466
467 /** 
468  * display form for changing your password
469  */
470 void display_changepw(void)
471 {
472         char buf[SIZ];
473
474         output_headers(1, 1, 1, 0, 0, 0);
475
476         svprintf("BOXTITLE", WCS_STRING, _("Change your password"));
477         do_template("beginbox");
478
479         if (!IsEmptyStr(WC->ImportantMessage)) {
480                 wprintf("<span class=\"errormsg\">"
481                         "%s</span><br />\n", WC->ImportantMessage);
482                 safestrncpy(WC->ImportantMessage, "", sizeof WC->ImportantMessage);
483         }
484
485         serv_puts("MESG changepw");
486         serv_getln(buf, sizeof buf);
487         if (buf[0] == '1') {
488                 fmout("CENTER");
489         }
490
491         wprintf("<form name=\"changepwform\" action=\"changepw\" method=\"post\">\n");
492         wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%ld\">\n", WC->nonce);
493         wprintf("<table class=\"altern\" ");
494         wprintf("<tr class=\"even\"><td>");
495         wprintf(_("Enter new password:"));
496         wprintf("</td><td>");
497         wprintf("<input type=\"password\" name=\"newpass1\" value=\"\" maxlength=\"20\"></td></tr>\n");
498         wprintf("<tr class=\"odd\"><td>");
499         wprintf(_("Enter it again to confirm:"));
500         wprintf("</td><td>");
501         wprintf("<input type=\"password\" name=\"newpass2\" value=\"\" maxlength=\"20\"></td></tr>\n");
502         wprintf("</table>\n");
503
504         wprintf("<div class=\"buttons\">\n");
505         wprintf("<input type=\"submit\" name=\"change_action\" value=\"%s\">", _("Change password"));
506         wprintf("&nbsp;");
507         wprintf("<input type=\"submit\" name=\"cancel_action\" value=\"%s\">\n", _("Cancel"));
508         wprintf("</div>\n");
509         wprintf("</form>\n");
510
511         do_template("endbox");
512         wDumpContent(1);
513 }
514
515 /**
516  * \brief change password
517  * if passwords match, propagate it to citserver.
518  */
519 void changepw(void)
520 {
521         char buf[SIZ];
522         char newpass1[32], newpass2[32];
523
524         if (!havebstr("change_action")) {
525                 safestrncpy(WC->ImportantMessage, 
526                         _("Cancelled.  Password was not changed."),
527                         sizeof WC->ImportantMessage);
528                 display_main_menu();
529                 return;
530         }
531
532         safestrncpy(newpass1, bstr("newpass1"), sizeof newpass1);
533         safestrncpy(newpass2, bstr("newpass2"), sizeof newpass2);
534
535         if (strcasecmp(newpass1, newpass2)) {
536                 safestrncpy(WC->ImportantMessage, 
537                         _("They don't match.  Password was not changed."),
538                         sizeof WC->ImportantMessage);
539                 display_changepw();
540                 return;
541         }
542
543         if (IsEmptyStr(newpass1)) {
544                 safestrncpy(WC->ImportantMessage, 
545                         _("Blank passwords are not allowed."),
546                         sizeof WC->ImportantMessage);
547                 display_changepw();
548                 return;
549         }
550
551         serv_printf("SETP %s", newpass1);
552         serv_getln(buf, sizeof buf);
553         sprintf(WC->ImportantMessage, "%s", &buf[4]);
554         if (buf[0] == '2') {
555                 safestrncpy(WC->wc_password, buf, sizeof WC->wc_password);
556                 display_main_menu();
557         }
558         else {
559                 display_changepw();
560         }
561 }
562
563
564
565 /** @} */