96503c1a7f33c5608694336a567d06b8dc5bb701
[citadel.git] / webcit / auth.c
1 /*
2  * $Id$
3  *
4  * WebcitAuth; Handles authentication of users to a Citadel server.
5  */
6
7 #include "webcit.h"
8 #include "webserver.h"
9
10 /*
11  * Access level definitions.  This is initialized from a function rather than a
12  * static array so that the strings may be localized.
13  */
14 char *axdefs[7]; 
15
16 void initialize_axdefs(void) {
17         axdefs[0] = _("Deleted");       /* an erased user */
18         axdefs[1] = _("New User");      /* a new user */
19         axdefs[2] = _("Problem User");  /* a trouble maker */
20         axdefs[3] = _("Local User");    /* user with normal privileges */
21         axdefs[4] = _("Network User");  /* a user that may access network resources */
22         axdefs[5] = _("Preferred User");/* a moderator */
23         axdefs[6] = _("Aide");          /* chief */
24 }
25
26
27
28
29 /* 
30  * Display the login screen
31  * mesg = the error message if last attempt failed.
32  */
33 void display_login(char *mesg)
34 {
35         char buf[SIZ];
36
37         output_headers(1, 1, 2, 0, 0, 0);
38         wprintf("<div id=\"login_screen\">\n");
39
40         if (mesg != NULL) if (!IsEmptyStr(mesg)) {
41                         stresc(buf, SIZ,  mesg, 0, 0);
42                         svprintf(HKEY("MESG"), WCS_STRING, "%s", buf);
43         }
44
45         svprintf(HKEY("LOGIN_INSTRUCTIONS"), WCS_STRING,
46                 _("<ul>"
47                 "<li><b>If you already have an account on %s</b>, "
48                 "enter your user name and password and click &quot;Login.&quot; "
49                 "<li><b>If you are a new user</b>, enter the name and password "
50                 "you wish to use, "
51                 "and click &quot;New User.&quot; "
52                 "<li>Please log off properly when finished. "
53                 "<li>You must use a browser that supports <i>frames</i> and "
54                 "<i>cookies</i>. "
55                 "<li>Also keep in mind that if your browser is "
56                 "configured to block pop-up windows, you will not be able "
57                 "to receive any instant messages.<br />"
58                 "</ul>"),
59                 serv_info.serv_humannode
60         );
61
62         svput("USERNAME_BOX", WCS_STRING, _("User name:"));
63         svput("PASSWORD_BOX", WCS_STRING, _("Password:"));
64         svput("LANGUAGE_BOX", WCS_STRING, _("Language:"));
65         svput("LOGIN_BUTTON", WCS_STRING, _("Login"));
66         svput("NEWUSER_BUTTON", WCS_STRING, _("New User"));
67         svput("EXIT_BUTTON", WCS_STRING, _("Exit"));
68         svput("HELLO", WCS_SERVCMD, "MESG hello");
69         svprintf(HKEY("BOXTITLE"), WCS_STRING, _("%s - powered by <a href=\"http://www.citadel.org\">Citadel</a>"),
70                 serv_info.serv_humannode);
71         svcallback("DO_LANGUAGE_BOX", offer_languages);
72         if (serv_info.serv_newuser_disabled) {
73                 svput("NEWUSER_BUTTON_PRE", WCS_STRING, "<div style=\"display:none;\">");
74                 svput("NEWUSER_BUTTON_POST", WCS_STRING, "</div>");
75         }
76         else {
77                 svput("NEWUSER_BUTTON_PRE", WCS_STRING, "");
78                 svput("NEWUSER_BUTTON_POST", WCS_STRING, "");
79         }
80
81         if (1) {        // FIXME we have to check whether the server offers openid
82                 svprintf(HKEY("OFFER_OPENID_LOGIN"), WCS_STRING,
83                         "<div align=center>"
84                         "<a href=\"display_openid_login\">"
85                         "<img src=\"static/openid-small.gif\" border=0 valign=middle>"
86                         "%s</a>"
87                         "</div>"
88                         ,
89                         "Log in using OpenID"
90                 );
91         }
92         else {
93                 svput("OFFER_OPENID_LOGIN", WCS_STRING, "");
94         }
95
96         do_template("login");
97
98         wDumpContent(2);
99 }
100
101
102
103
104 /* 
105  * Display the openid-enabled login screen
106  * mesg = the error message if last attempt failed.
107  */
108 void display_openid_login(char *mesg)
109 {
110         char buf[SIZ];
111
112         output_headers(1, 1, 2, 0, 0, 0);
113         wprintf("<div id=\"login_screen\">\n");
114
115         if (mesg != NULL) if (!IsEmptyStr(mesg)) {
116                         stresc(buf, SIZ,  mesg, 0, 0);
117                         svprintf(HKEY("MESG"), WCS_STRING, "%s", buf);
118         }
119
120         svprintf(HKEY("LOGIN_INSTRUCTIONS"), WCS_STRING,
121                 _("<ul>"
122                 "<li>Enter your OpenID URL and click &quot;Login&quot;."
123                 "<li>Please log off properly when finished. "
124                 "<li>You must use a browser that supports <i>frames</i> and "
125                 "<i>cookies</i>. "
126                 "<li>Also keep in mind that if your browser is "
127                 "configured to block pop-up windows, you will not be able "
128                 "to receive any instant messages.<br />"
129                 "</ul>")
130         );
131
132         svput("OPENID_BOX", WCS_STRING, _("OpenID URL:"));
133         svput("LANGUAGE_BOX", WCS_STRING, _("Language:"));
134         svput("LOGIN_BUTTON", WCS_STRING, _("Login"));
135         svput("EXIT_BUTTON", WCS_STRING, _("Exit"));
136         svput("HELLO", WCS_SERVCMD, "MESG hello");
137         svprintf(HKEY("BOXTITLE"), WCS_STRING, _("%s - powered by <a href=\"http://www.citadel.org\">Citadel</a>"),
138                 serv_info.serv_humannode);
139         svcallback("DO_LANGUAGE_BOX", offer_languages);
140
141         svprintf(HKEY("OFFER_CONVENTIONAL_LOGIN"), WCS_STRING,
142                 "<div align=center>"
143                 "<a href=\"display_login\">"
144                 "%s</a>"
145                 "</div>"
146                 ,
147                 "Log in using a user name and password"
148         );
149
150         do_template("openid_login");
151         wDumpContent(2);
152 }
153
154
155
156
157 /* Initialize the session
158  *
159  * This function needs to get called whenever the session changes from
160  * not-logged-in to logged-in, either by an explicit login by the user or
161  * by a timed-out session automatically re-establishing with a little help
162  * from the browser cookie.  Either way, we need to load access controls and
163  * preferences from the server.
164  *
165  * user                 the username
166  * pass                 his password
167  * serv_response        The parameters returned from a Citadel USER or NEWU command
168  */
169 void become_logged_in(char *user, char *pass, char *serv_response)
170 {
171         char buf[SIZ];
172
173         WC->logged_in = 1;
174         extract_token(WC->wc_fullname, &serv_response[4], 0, '|', sizeof WC->wc_fullname);
175         safestrncpy(WC->wc_username, user, sizeof WC->wc_username);
176         safestrncpy(WC->wc_password, pass, sizeof WC->wc_password);
177         WC->axlevel = extract_int(&serv_response[4], 1);
178         if (WC->axlevel >= 6) {
179                 WC->is_aide = 1;
180         }
181
182         load_preferences();
183
184         serv_puts("CHEK");
185         serv_getln(buf, sizeof buf);
186         if (buf[0] == '2') {
187                 WC->new_mail = extract_int(&buf[4], 0);
188                 WC->need_regi = extract_int(&buf[4], 1);
189                 WC->need_vali = extract_int(&buf[4], 2);
190                 extract_token(WC->cs_inet_email, &buf[4], 3, '|', sizeof WC->cs_inet_email);
191         }
192
193         get_preference("current_iconbar", buf, sizeof buf);
194         WC->current_iconbar = atoi(buf);
195
196         get_preference("floordiv_expanded", WC->floordiv_expanded, sizeof WC->floordiv_expanded);
197 }
198
199
200 /* 
201  * Perform authentication using a user name and password
202  */
203 void do_login(void)
204 {
205         char buf[SIZ];
206
207         if (havebstr("language")) {
208                 set_selected_language(bstr("language"));
209                 go_selected_language();
210         }
211
212         if (havebstr("exit_action")) {
213                 do_logout();
214                 return;
215         }
216         if (havebstr("login_action")) {
217                 serv_printf("USER %s", bstr("name"));
218                 serv_getln(buf, sizeof buf);
219                 if (buf[0] == '3') {
220                         serv_printf("PASS %s", bstr("pass"));
221                         serv_getln(buf, sizeof buf);
222                         if (buf[0] == '2') {
223                                 become_logged_in(bstr("name"),
224                                                  bstr("pass"), buf);
225                         } else {
226                                 display_login(&buf[4]);
227                                 return;
228                         }
229                 } else {
230                         display_login(&buf[4]);
231                         return;
232                 }
233         }
234         if (havebstr("newuser_action")) {
235                 if (!havebstr("pass")) {
236                         display_login(_("Blank passwords are not allowed."));
237                         return;
238                 }
239                 serv_printf("NEWU %s", bstr("name"));
240                 serv_getln(buf, sizeof buf);
241                 if (buf[0] == '2') {
242                         become_logged_in(bstr("name"), bstr("pass"), buf);
243                         serv_printf("SETP %s", bstr("pass"));
244                         serv_getln(buf, sizeof buf);
245                 } else {
246                         display_login(&buf[4]);
247                         return;
248                 }
249         }
250         if (WC->logged_in) {
251                 if (WC->need_regi) {
252                         display_reg(1);
253                 } else if (WC->need_vali) {
254                         validate();
255                 } else {
256                         do_welcome();
257                 }
258         } else {
259                 display_login(_("Your password was not accepted."));
260         }
261
262 }
263
264
265 /* 
266  * Perform authentication using OpenID
267  * assemble the checkid_setup request and then redirect to the user's identity provider
268  */
269 void do_openid_login(void)
270 {
271         char buf[4096];
272
273         if (havebstr("language")) {
274                 set_selected_language(bstr("language"));
275                 go_selected_language();
276         }
277
278         if (havebstr("exit_action")) {
279                 do_logout();
280                 return;
281         }
282         if (havebstr("login_action")) {
283                 snprintf(buf, sizeof buf,
284                         "OIDS %s|%s://%s/finalize_openid_login|%s://%s",
285                         bstr("openid_url"),
286                         (is_https ? "https" : "http"), WC->http_host,
287                         (is_https ? "https" : "http"), WC->http_host
288                 );
289
290                 serv_puts(buf);
291                 serv_getln(buf, sizeof buf);
292                 if (buf[0] == '2') {
293                         lprintf(CTDL_DEBUG, "OpenID server contacted; redirecting to %s\n", &buf[4]);
294                         http_redirect(&buf[4]);
295                         return;
296                 }
297                 else {
298                         display_openid_login(&buf[4]);
299                         return;
300                 }
301         }
302
303         /* If we get to this point then something failed. */
304         display_openid_login(_("Your password was not accepted."));
305 }
306
307 /* 
308  * Complete the authentication using OpenID
309  * This function handles the positive or negative assertion from the user's Identity Provider
310  */
311 void finalize_openid_login(void)
312 {
313         char buf[1024];
314         struct wcsession *WCC = WC;
315         int already_logged_in = (WCC->logged_in) ;
316         int linecount = 0;
317         char result[128] = "";
318         char username[128] = "";
319         char password[128] = "";
320
321         if (havebstr("openid.mode")) {
322                 if (!strcasecmp(bstr("openid.mode"), "id_res")) {
323
324                         // FIXME id accepted but the code isn't finished
325                         serv_puts("OIDF");
326                         serv_getln(buf, sizeof buf);
327
328                         if (buf[0] == '8') {
329                                 urlcontent *u;
330                                 void *U;
331                                 long HKLen;
332                                 char *HKey;
333                                 HashPos *Cursor;
334                                 
335                                 Cursor = GetNewHashPos ();
336                                 while (GetNextHashPos(WCC->urlstrings, Cursor, &HKLen, &HKey, &U)) {
337                                         u = (urlcontent*) U;
338                                         if (!strncasecmp(u->url_key, "openid.", 7)) {
339                                                 serv_printf("%s|%s", &u->url_key[7], u->url_data);
340                                         }
341                                 }
342
343                                 serv_puts("000");
344
345                                 linecount = 0;
346                                 while (serv_getln(buf, sizeof buf), strcmp(buf, "000")) {
347                                         if (linecount == 0) safestrncpy(result, buf, sizeof result);
348                                         if (!strcasecmp(result, "authenticate")) {
349                                                 if (linecount == 1) {
350                                                         safestrncpy(username, buf, sizeof username);
351                                                 }
352                                                 else if (linecount == 2) {
353                                                         safestrncpy(password, buf, sizeof password);
354                                                 }
355                                         }
356                                         ++linecount;
357                                 }
358                         }
359                 }
360         }
361
362         /* If we were already logged in, this was an attempt to associate an OpenID account */
363         if (already_logged_in) {
364                 display_openids();
365                 return;
366         }
367
368         /* Was the claimed ID associated with an existing account?  Then log in that account now. */
369         if (!strcasecmp(result, "authenticate")) {
370                 serv_printf("USER %s", username);
371                 serv_getln(buf, sizeof buf);
372                 if (buf[0] == '3') {
373                         serv_printf("PASS %s", password);
374                         serv_getln(buf, sizeof buf);
375                         if (buf[0] == '2') {
376                                 become_logged_in(username, password, buf);
377                         }
378                 }
379         }
380
381         /* FIXME -- right here we have to put the code to log in a new user */
382
383         /* Did we manage to log in?  If so, continue with the normal flow... */
384         if (WC->logged_in) {
385                 if (WC->need_regi) {
386                         display_reg(1);
387                 } else {
388                         do_welcome();
389                 }
390         } else {
391                 display_openid_login(_("Your password was not accepted."));
392         }
393
394 }
395
396
397 /*
398  * Display a welcome screen to the user.
399  *
400  * If this is the first time login, and the web based setup is enabled, 
401  * lead the user through the setup routines
402  */
403 void do_welcome(void)
404 {
405         char buf[SIZ];
406 #ifdef XXX_NOT_FINISHED_YET_XXX
407         FILE *fp;
408         int i;
409
410         /**
411          * See if we have to run the first-time setup wizard
412          */
413         if (WC->is_aide) {
414                 if (!setup_wizard) {
415                         int len;
416                         sprintf(wizard_filename, "setupwiz.%s.%s",
417                                 ctdlhost, ctdlport);
418                         len = strlen(wizard_filename);
419                         for (i=0; i<len; ++i) {
420                                 if (    (wizard_filename[i]==' ')
421                                         || (wizard_filename[i] == '/')
422                                 ) {
423                                         wizard_filename[i] = '_';
424                                 }
425                         }
426         
427                         fp = fopen(wizard_filename, "r");
428                         if (fp != NULL) {
429                                 fgets(buf, sizeof buf, fp);
430                                 buf[strlen(buf)-1] = 0;
431                                 fclose(fp);
432                                 if (atoi(buf) == serv_info.serv_rev_level) {
433                                         setup_wizard = 1; /**< already run */
434                                 }
435                         }
436                 }
437
438                 if (!setup_wizard) {
439                         http_redirect("setup_wizard");
440                 }
441         }
442 #endif
443
444         /*
445          * Go to the user's preferred start page
446          */
447         get_preference("startpage", buf, sizeof buf);
448         if (IsEmptyStr(buf)) {
449                 safestrncpy(buf, "dotskip&room=_BASEROOM_", sizeof buf);
450                 set_preference("startpage", buf, 1);
451         }
452         if (buf[0] == '/') {
453                 strcpy(buf, &buf[1]);
454         }
455         http_redirect(buf);
456 }
457
458
459 /*
460  * Disconnect from the Citadel server, and end this WebCit session
461  */
462 void end_webcit_session(void) {
463         char buf[256];
464
465         if (WC->logged_in) {
466                 sprintf(buf, "%d", WC->current_iconbar);
467                 set_preference("current_iconbar", buf, 0);
468                 set_preference("floordiv_expanded", WC->floordiv_expanded, 1);
469         }
470
471         serv_puts("QUIT");
472         WC->killthis = 1;
473         /* close() of citadel socket will be done by do_housekeeping() */
474 }
475
476 /* 
477  * execute the logout
478  */
479 void do_logout(void)
480 {
481         char buf[SIZ];
482
483         safestrncpy(WC->wc_username, "", sizeof WC->wc_username);
484         safestrncpy(WC->wc_password, "", sizeof WC->wc_password);
485         safestrncpy(WC->wc_roomname, "", sizeof WC->wc_roomname);
486         safestrncpy(WC->wc_fullname, "", sizeof WC->wc_fullname);
487
488         /** Calling output_headers() this way causes the cookies to be un-set */
489         output_headers(1, 1, 0, 1, 0, 0);
490
491         wprintf("<div id=\"logout_screen\">");
492         wprintf("<div class=\"box\">");
493         wprintf("<div class=\"boxlabel\">");
494         wprintf(_("Log off"));
495         wprintf("</div><div class=\"boxcontent\">");    
496         serv_puts("MESG goodbye");
497         serv_getln(buf, sizeof buf);
498
499         if (WC->serv_sock >= 0) {
500                 if (buf[0] == '1') {
501                         fmout("CENTER");
502                 } else {
503                         wprintf("Goodbye\n");
504                 }
505         }
506         else {
507                 wprintf(_("This program was unable to connect or stay "
508                         "connected to the Citadel server.  Please report "
509                         "this problem to your system administrator.")
510                 );
511                 wprintf("<a href=\"http://www.citadel.org/doku.php/"
512                         "faq:mastering_your_os:net#netstat\">%s</a>", 
513                         _("Read More..."));
514         }
515
516         wprintf("<hr /><div class=\"buttons\"> "
517                 "<span class=\"button_link\"><a href=\".\">");
518         wprintf(_("Log in again"));
519         wprintf("</a></span>&nbsp;&nbsp;&nbsp;<span class=\"button_link\">"
520                 "<a href=\"javascript:window.close();\">");
521         wprintf(_("Close window"));
522         wprintf("</a></span></div></div></div></div>\n");
523         wDumpContent(2);
524         end_webcit_session();
525 }
526
527
528 /*
529  * validate new users
530  */
531 void validate(void)
532 {
533         char cmd[SIZ];
534         char user[SIZ];
535         char buf[SIZ];
536         int a;
537
538         output_headers(1, 1, 2, 0, 0, 0);
539         wprintf("<div id=\"banner\">\n");
540         wprintf("<h1>");
541         wprintf(_("Validate new users"));
542         wprintf("</h1>");
543         wprintf("</div>\n");
544
545         wprintf("<div id=\"content\" class=\"service\">\n");
546
547         /* If the user just submitted a validation, process it... */
548         safestrncpy(buf, bstr("user"), sizeof buf);
549         if (!IsEmptyStr(buf)) {
550                 if (havebstr("axlevel")) {
551                         serv_printf("VALI %s|%s", buf, bstr("axlevel"));
552                         serv_getln(buf, sizeof buf);
553                         if (buf[0] != '2') {
554                                 wprintf("<b>%s</b><br />\n", &buf[4]);
555                         }
556                 }
557         }
558
559         /* Now see if any more users require validation. */
560         serv_puts("GNUR");
561         serv_getln(buf, sizeof buf);
562         if (buf[0] == '2') {
563                 wprintf("<b>");
564                 wprintf(_("No users require validation at this time."));
565                 wprintf("</b><br />\n");
566                 wDumpContent(1);
567                 return;
568         }
569         if (buf[0] != '3') {
570                 wprintf("<b>%s</b><br />\n", &buf[4]);
571                 wDumpContent(1);
572                 return;
573         }
574
575         wprintf("<div class=\"fix_scrollbar_bug\">"
576                 "<table class=\"auth_validate\"><tr><td>\n");
577         wprintf("<center>");
578
579         safestrncpy(user, &buf[4], sizeof user);
580         serv_printf("GREG %s", user);
581         serv_getln(cmd, sizeof cmd);
582         if (cmd[0] == '1') {
583                 a = 0;
584                 do {
585                         serv_getln(buf, sizeof buf);
586                         ++a;
587                         if (a == 1)
588                                 wprintf("#%s<br /><H1>%s</H1>",
589                                         buf, &cmd[4]);
590                         if (a == 2)
591                                 wprintf("PW: %s<br />\n", buf);
592                         if (a == 3)
593                                 wprintf("%s<br />\n", buf);
594                         if (a == 4)
595                                 wprintf("%s<br />\n", buf);
596                         if (a == 5)
597                                 wprintf("%s, ", buf);
598                         if (a == 6)
599                                 wprintf("%s ", buf);
600                         if (a == 7)
601                                 wprintf("%s<br />\n", buf);
602                         if (a == 8)
603                                 wprintf("%s<br />\n", buf);
604                         if (a == 9)
605                                 wprintf(_("Current access level: %d (%s)\n"),
606                                         atoi(buf), axdefs[atoi(buf)]);
607                 } while (strcmp(buf, "000"));
608         } else {
609                 wprintf("<H1>%s</H1>%s<br />\n", user, &cmd[4]);
610         }
611
612         wprintf("<hr />");
613         wprintf(_("Select access level for this user:"));
614         wprintf("<br />\n");
615         for (a = 0; a <= 6; ++a) {
616                 wprintf("<a href=\"validate?nonce=%ld?user=", WC->nonce);
617                 urlescputs(user);
618                 wprintf("&axlevel=%d\">%s</A>&nbsp;&nbsp;&nbsp;\n",
619                         a, axdefs[a]);
620         }
621         wprintf("<br />\n");
622
623         wprintf("</CENTER>\n");
624         wprintf("</td></tr></table></div>\n");
625         wDumpContent(1);
626 }
627
628
629
630 /*
631  * Display form for registration.
632  *
633  * (Set during_login to 1 if this registration is being performed during
634  * new user login and will require chaining to the proper screen.)
635  */
636 void display_reg(int during_login)
637 {
638         long vcard_msgnum;
639
640         if (goto_config_room() != 0) {
641                 if (during_login) do_welcome();
642                 else display_main_menu();
643                 return;
644         }
645
646         vcard_msgnum = locate_user_vcard(WC->wc_fullname, -1);
647         if (vcard_msgnum < 0L) {
648                 if (during_login) do_welcome();
649                 else display_main_menu();
650                 return;
651         }
652
653         if (during_login) {
654                 do_edit_vcard(vcard_msgnum, "1", "do_welcome", USERCONFIGROOM);
655         }
656         else {
657                 do_edit_vcard(vcard_msgnum, "1", "display_main_menu", USERCONFIGROOM);
658         }
659
660 }
661
662
663
664
665 /*
666  * display form for changing your password
667  */
668 void display_changepw(void)
669 {
670         char buf[SIZ];
671
672         output_headers(1, 1, 1, 0, 0, 0);
673
674         svput("BOXTITLE", WCS_STRING, _("Change your password"));
675         do_template("beginbox");
676
677         if (!IsEmptyStr(WC->ImportantMessage)) {
678                 wprintf("<span class=\"errormsg\">"
679                         "%s</span><br />\n", WC->ImportantMessage);
680                 safestrncpy(WC->ImportantMessage, "", sizeof WC->ImportantMessage);
681         }
682
683         serv_puts("MESG changepw");
684         serv_getln(buf, sizeof buf);
685         if (buf[0] == '1') {
686                 fmout("CENTER");
687         }
688
689         wprintf("<form name=\"changepwform\" action=\"changepw\" method=\"post\">\n");
690         wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%ld\">\n", WC->nonce);
691         wprintf("<table class=\"altern\" ");
692         wprintf("<tr class=\"even\"><td>");
693         wprintf(_("Enter new password:"));
694         wprintf("</td><td>");
695         wprintf("<input type=\"password\" name=\"newpass1\" value=\"\" maxlength=\"20\"></td></tr>\n");
696         wprintf("<tr class=\"odd\"><td>");
697         wprintf(_("Enter it again to confirm:"));
698         wprintf("</td><td>");
699         wprintf("<input type=\"password\" name=\"newpass2\" value=\"\" maxlength=\"20\"></td></tr>\n");
700         wprintf("</table>\n");
701
702         wprintf("<div class=\"buttons\">\n");
703         wprintf("<input type=\"submit\" name=\"change_action\" value=\"%s\">", _("Change password"));
704         wprintf("&nbsp;");
705         wprintf("<input type=\"submit\" name=\"cancel_action\" value=\"%s\">\n", _("Cancel"));
706         wprintf("</div>\n");
707         wprintf("</form>\n");
708
709         do_template("endbox");
710         wDumpContent(1);
711 }
712
713 /*
714  * change password
715  * if passwords match, propagate it to citserver.
716  */
717 void changepw(void)
718 {
719         char buf[SIZ];
720         char newpass1[32], newpass2[32];
721
722         if (!havebstr("change_action")) {
723                 safestrncpy(WC->ImportantMessage, 
724                         _("Cancelled.  Password was not changed."),
725                         sizeof WC->ImportantMessage);
726                 display_main_menu();
727                 return;
728         }
729
730         safestrncpy(newpass1, bstr("newpass1"), sizeof newpass1);
731         safestrncpy(newpass2, bstr("newpass2"), sizeof newpass2);
732
733         if (strcasecmp(newpass1, newpass2)) {
734                 safestrncpy(WC->ImportantMessage, 
735                         _("They don't match.  Password was not changed."),
736                         sizeof WC->ImportantMessage);
737                 display_changepw();
738                 return;
739         }
740
741         if (IsEmptyStr(newpass1)) {
742                 safestrncpy(WC->ImportantMessage, 
743                         _("Blank passwords are not allowed."),
744                         sizeof WC->ImportantMessage);
745                 display_changepw();
746                 return;
747         }
748
749         serv_printf("SETP %s", newpass1);
750         serv_getln(buf, sizeof buf);
751         sprintf(WC->ImportantMessage, "%s", &buf[4]);
752         if (buf[0] == '2') {
753                 safestrncpy(WC->wc_password, buf, sizeof WC->wc_password);
754                 display_main_menu();
755         }
756         else {
757                 display_changepw();
758         }
759 }
760
761
762
763 void InitModule_AUTH(void)
764 {
765         WebcitAddUrlHandler(HKEY("do_welcome"), do_welcome, 0);
766         return ;
767 }