* fix language preferences backing; now we should realy restore the language after...
[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 #include <ctype.h>
10
11
12 void display_reg(int during_login);
13
14 /*
15  * Access level definitions.  This is initialized from a function rather than a
16  * static array so that the strings may be localized.
17  */
18 char *axdefs[7]; 
19
20 void initialize_axdefs(void) {
21         axdefs[0] = _("Deleted");       /* an erased user */
22         axdefs[1] = _("New User");      /* a new user */
23         axdefs[2] = _("Problem User");  /* a trouble maker */
24         axdefs[3] = _("Local User");    /* user with normal privileges */
25         axdefs[4] = _("Network User");  /* a user that may access network resources */
26         axdefs[5] = _("Preferred User");/* a moderator */
27         axdefs[6] = _("Aide");          /* chief */
28 }
29
30
31
32
33 /* 
34  * Display the login screen
35  * mesg = the error message if last attempt failed.
36  */
37 void display_login(void)
38 {
39         begin_burst();
40         output_headers(1, 0, 0, 0, 1, 0);
41         do_template("login", NULL);
42         end_burst();
43 }
44
45
46
47
48 /* 
49  * Display the openid-enabled login screen
50  * mesg = the error message if last attempt failed.
51  */
52 void display_openid_login(char *mesg)
53 {
54   begin_burst();
55   output_headers(1, 0, 0, 0, 1, 0);
56   do_template("openid_login", NULL);
57   end_burst();
58 }
59
60
61 void display_openid_name_request(const StrBuf *claimed_id, const StrBuf *username) 
62 {
63         StrBuf *Buf = NULL;
64
65         output_headers(1, 1, 2, 0, 0, 0);
66         wprintf("<div id=\"login_screen\">\n");
67
68         Buf = NewStrBufPlain(NULL, StrLength(claimed_id));
69         StrEscAppend(Buf, claimed_id, NULL, 0, 0);
70         svprintf(HKEY("VERIFIED"), WCS_STRING, _("Your OpenID <tt>%s</tt> was successfully verified."),
71                  ChrPtr(Buf));
72         SVPutBuf("CLAIMED_ID", Buf, 0);
73
74
75         if (StrLength(username) > 0) {
76                         Buf = NewStrBufPlain(NULL, StrLength(username));
77                         StrEscAppend(Buf, claimed_id, NULL, 0, 0);
78                         svprintf(HKEY("REASON"), WCS_STRING,
79                                  _("However, the user name '%s' conflicts with an existing user."), 
80                                  ChrPtr(Buf));
81                         FreeStrBuf(&Buf);
82         }
83         else {
84                 svput("REASON", WCS_STRING, "");
85         }
86
87         svput("ACTION_REQUESTED", WCS_STRING, _("Please specify the user name you would like to use."));
88
89         svput("USERNAME_BOX", WCS_STRING, _("User name:"));
90         svput("NEWUSER_BUTTON", WCS_STRING, _("New User"));
91         svput("EXIT_BUTTON", WCS_STRING, _("Exit"));
92
93         svprintf(HKEY("BOXTITLE"), WCS_STRING, _("%s - powered by <a href=\"http://www.citadel.org\">Citadel</a>"),
94                  ChrPtr(WC->serv_info->serv_humannode));
95
96         do_template("openid_manual_create", NULL);
97         wDumpContent(2);
98 }
99
100
101
102 /* Initialize the session
103  *
104  * This function needs to get called whenever the session changes from
105  * not-logged-in to logged-in, either by an explicit login by the user or
106  * by a timed-out session automatically re-establishing with a little help
107  * from the browser cookie.  Either way, we need to load access controls and
108  * preferences from the server.
109  *
110  * user                 the username
111  * pass                 his password
112  * serv_response        The parameters returned from a Citadel USER or NEWU command
113  */
114 void become_logged_in(const StrBuf *user, const StrBuf *pass, StrBuf *serv_response)
115 {
116         wcsession *WCC = WC;
117         char buf[SIZ];
118         StrBuf *FloorDiv;
119         StrBuf *Language = NULL;
120
121         WC->logged_in = 1;
122
123         if (WCC->wc_fullname == NULL)
124                 WCC->wc_fullname = NewStrBufPlain(NULL, StrLength(serv_response));
125         StrBufExtract_token(WCC->wc_fullname, serv_response, 0, '|');
126         StrBufCutLeft(WCC->wc_fullname, 4 );
127         
128         if (WCC->wc_username == NULL)
129                 WCC->wc_username = NewStrBufDup(user);
130         else {
131                 FlushStrBuf(WCC->wc_username);
132                 StrBufAppendBuf(WCC->wc_username, user, 0);
133         }
134
135         if (WCC->wc_password == NULL)
136                 WCC->wc_password = NewStrBufDup(pass);
137         else {
138                 FlushStrBuf(WCC->wc_password);
139                 StrBufAppendBuf(WCC->wc_password, pass, 0);
140         }
141
142         WCC->axlevel = StrBufExtract_int(serv_response, 1, '|');
143         if (WCC->axlevel >= 6) { /* TODO: make this a define, else it might trick us later */
144                 WCC->is_aide = 1;
145         }
146
147         load_preferences();
148
149         serv_puts("CHEK");
150         serv_getln(buf, sizeof buf);
151         if (buf[0] == '2') {
152                 WC->new_mail = extract_int(&buf[4], 0);
153                 WC->need_regi = extract_int(&buf[4], 1);
154                 WC->need_vali = extract_int(&buf[4], 2);
155                 extract_token(WC->cs_inet_email, &buf[4], 3, '|', sizeof WC->cs_inet_email);
156         }
157         if (havebstr("language"))
158                 set_preference("language", NewStrBufDup(SBSTR("language")), 1);
159         else {
160                 get_preference("language", &Language);
161                 if (Language != NULL) {
162                         set_selected_language(ChrPtr(Language));
163                         go_selected_language();         /* set locale */
164                 }
165         }
166         get_preference("floordiv_expanded", &FloorDiv);
167         WC->floordiv_expanded = FloorDiv;
168 }
169
170
171 /* 
172  * Perform authentication using a user name and password
173  */
174 void do_login(void)
175 {
176         wcsession *WCC = WC;
177         StrBuf *Buf;
178
179         if (havebstr("language")) {
180                 set_selected_language(bstr("language"));
181                 go_selected_language();
182         }
183
184         if (havebstr("exit_action")) {
185                 do_logout();
186                 return;
187         }
188         Buf = NewStrBuf();
189         if (havebstr("login_action")) {
190                 serv_printf("USER %s", bstr("name"));
191                 StrBuf_ServGetln(Buf);
192                 if (GetServerStatus(Buf, NULL) == 3) {
193                         serv_printf("PASS %s", bstr("pass"));
194                         StrBuf_ServGetln(Buf);
195                         if (GetServerStatus(Buf, NULL) == 2) {
196                                 become_logged_in(sbstr("name"), sbstr("pass"), Buf);
197                         } else {
198                                 snprintf(WCC->ImportantMessage, 
199                                          sizeof (WCC->ImportantMessage), 
200                                          "%s", 
201                                          &(ChrPtr(Buf))[4]);
202                                 display_login();
203                                 FreeStrBuf(&Buf);
204                                 return;
205                         }
206                 } else {
207                         snprintf(WCC->ImportantMessage, 
208                                  sizeof (WCC->ImportantMessage), 
209                                  "%s", 
210                                  &(ChrPtr(Buf))[4]);
211                         display_login();
212                         FreeStrBuf(&Buf);
213                         return;
214                 }
215         }
216         if (havebstr("newuser_action")) {
217                 if (!havebstr("pass")) {
218                         snprintf(WCC->ImportantMessage, 
219                                  sizeof (WCC->ImportantMessage), 
220                                  "%s", 
221                                  _("Blank passwords are not allowed."));
222                         display_login();
223                         FreeStrBuf(&Buf);
224                         return;
225                 }
226                 serv_printf("NEWU %s", bstr("name"));
227                 StrBuf_ServGetln(Buf);
228                 if (GetServerStatus(Buf, NULL) == 2) {
229                         become_logged_in(sbstr("name"), sbstr("pass"), Buf);
230                         serv_printf("SETP %s", bstr("pass"));
231                         StrBuf_ServGetln(Buf); /* Don't care? */
232                 } else {
233                         snprintf(WCC->ImportantMessage, 
234                                  sizeof (WCC->ImportantMessage), 
235                                  "%s", 
236                                  &(ChrPtr(Buf))[4]);
237                         display_login();
238                         FreeStrBuf(&Buf);
239                         return;
240                 }
241         }
242         if (WCC->logged_in) {
243                 if (WCC->need_regi) {
244                         display_reg(1);
245                 } else if (WCC->need_vali) {
246                         validate();
247                 } else {
248                         do_welcome();
249                 }
250         } else {
251                 snprintf(WCC->ImportantMessage, 
252                          sizeof (WCC->ImportantMessage), 
253                          "%s", 
254                          _("Your password was not accepted."));
255                 display_login();
256         }
257         FreeStrBuf(&Buf);
258 }
259
260 /* 
261  * Try to create an account manually after an OpenID was verified
262  */
263 void openid_manual_create(void)
264 {
265         StrBuf *Buf;
266
267         if (havebstr("exit_action")) {
268                 do_logout();
269                 return;
270         }
271
272         if (havebstr("newuser_action")) {
273                 Buf = NewStrBuf();
274                 serv_printf("OIDC %s", bstr("name"));
275                 StrBuf_ServGetln(Buf);
276                 if (GetServerStatus(Buf, NULL) == 2) {
277                         StrBuf *gpass;
278
279                         gpass = NewStrBuf();
280                         serv_puts("SETP GENERATE_RANDOM_PASSWORD");
281                         StrBuf_ServGetln(gpass);
282                         StrBufCutLeft(gpass, 4);
283                         become_logged_in(sbstr("name"), gpass, Buf);
284                         FreeStrBuf(&gpass);
285                 }
286                 FreeStrBuf(&Buf);
287         }
288
289         if (WC->logged_in) {
290                 if (WC->need_regi) {
291                         display_reg(1);
292                 } else if (WC->need_vali) {
293                         validate();
294                 } else {
295                         do_welcome();
296                 }
297         } else {
298                 display_openid_name_request(sbstr("openid_url"), sbstr("name"));
299         }
300
301 }
302
303
304 /* 
305  * Perform authentication using OpenID
306  * assemble the checkid_setup request and then redirect to the user's identity provider
307  */
308 void do_openid_login(void)
309 {
310         wcsession *WCC = WC;
311         char buf[4096];
312
313         if (havebstr("language")) {
314                 set_selected_language(bstr("language"));
315                 go_selected_language();
316         }
317
318         if (havebstr("exit_action")) {
319                 do_logout();
320                 return;
321         }
322         if (havebstr("login_action")) {
323                 snprintf(buf, sizeof buf,
324                         "OIDS %s|%s://%s/finalize_openid_login|%s://%s",
325                         bstr("openid_url"),
326                          (is_https ? "https" : "http"), ChrPtr(WCC->http_host),
327                          (is_https ? "https" : "http"), ChrPtr(WCC->http_host)
328                 );
329
330                 serv_puts(buf);
331                 serv_getln(buf, sizeof buf);
332                 if (buf[0] == '2') {
333                         lprintf(CTDL_DEBUG, "OpenID server contacted; redirecting to %s\n", &buf[4]);
334                         http_redirect(&buf[4]);
335                         return;
336                 }
337                 else {
338                         display_openid_login(&buf[4]);
339                         return;
340                 }
341         }
342
343         /* If we get to this point then something failed. */
344         display_openid_login(_("Your password was not accepted."));
345 }
346
347 /* 
348  * Complete the authentication using OpenID
349  * This function handles the positive or negative assertion from the user's Identity Provider
350  */
351 void finalize_openid_login(void)
352 {
353         StrBuf *Buf;
354         wcsession *WCC = WC;
355         int already_logged_in = (WCC->logged_in) ;
356         int linecount = 0;
357         StrBuf *result = NULL;
358         StrBuf *username = NULL;
359         StrBuf *password = NULL;
360         StrBuf *logged_in_response = NULL;
361         StrBuf *claimed_id = NULL;
362
363         if (havebstr("openid.mode")) {
364                 if (!strcasecmp(bstr("openid.mode"), "id_res")) {
365                         Buf = NewStrBuf();
366                         serv_puts("OIDF");
367                         StrBuf_ServGetln(Buf);
368                         if (GetServerStatus(Buf, NULL) == 8) {
369                                 urlcontent *u;
370                                 void *U;
371                                 long HKLen;
372                                 const char *HKey;
373                                 HashPos *Cursor;
374                                 
375                                 Cursor = GetNewHashPos (WCC->urlstrings, 0);
376                                 while (GetNextHashPos(WCC->urlstrings, Cursor, &HKLen, &HKey, &U)) {
377                                         u = (urlcontent*) U;
378                                         if (!strncasecmp(u->url_key, "openid.", 7)) {
379                                                 serv_printf("%s|%s", &u->url_key[7], ChrPtr(u->url_data));
380                                         }
381                                 }
382
383                                 serv_puts("000");
384
385                                 linecount = 0;
386                                 while (StrBuf_ServGetln(Buf), strcmp(ChrPtr(Buf), "000")) 
387                                 {
388                                         if (linecount == 0) result = NewStrBufDup(Buf);
389                                         if (!strcasecmp(ChrPtr(result), "authenticate")) {
390                                                 if (linecount == 1) {
391                                                         username = NewStrBufDup(Buf);
392                                                 }
393                                                 else if (linecount == 2) {
394                                                         password = NewStrBufDup(Buf);
395                                                 }
396                                                 else if (linecount == 3) {
397                                                         logged_in_response = NewStrBufDup(Buf);
398                                                 }
399                                         }
400                                         else if (!strcasecmp(ChrPtr(result), "verify_only")) {
401                                                 if (linecount == 1) {
402                                                         claimed_id = NewStrBufDup(Buf);
403                                                 }
404                                                 if (linecount == 2) {
405                                                         username = NewStrBufDup(Buf);
406                                                 }
407                                         }
408                                         ++linecount;
409                                 }
410                         }
411                         FreeStrBuf(&Buf);
412                 }
413         }
414
415         /* If we were already logged in, this was an attempt to associate an OpenID account */
416         if (already_logged_in) {
417                 display_openids();
418                 FreeStrBuf(&result);
419                 FreeStrBuf(&username);
420                 FreeStrBuf(&password);
421                 FreeStrBuf(&claimed_id);
422                 FreeStrBuf(&logged_in_response);
423                 return;
424         }
425
426         /* If this operation logged us in, either by connecting with an existing account or by
427          * auto-creating one using Simple Registration Extension, we're already on our way.
428          */
429         if (!strcasecmp(ChrPtr(result), "authenticate")) {
430                 become_logged_in(username, password, logged_in_response);
431         }
432
433         /* The specified OpenID was verified but the desired user name was either not specified via SRI
434          * or conflicts with an existing user.  Either way the user will need to specify a new name.
435          */
436
437         else if (!strcasecmp(ChrPtr(result), "verify_only")) {
438                 display_openid_name_request(claimed_id, username);
439         }
440
441         /* Did we manage to log in?  If so, continue with the normal flow... */
442         if (WC->logged_in) {
443                 if (WC->need_regi) {
444                         display_reg(1);
445                 } else {
446                         do_welcome();
447                 }
448         } else {
449                 display_openid_login(_("Your password was not accepted."));
450         }
451
452         FreeStrBuf(&result);
453         FreeStrBuf(&username);
454         FreeStrBuf(&password);
455         FreeStrBuf(&claimed_id);
456         FreeStrBuf(&logged_in_response);
457 }
458
459
460 /*
461  * Display a welcome screen to the user.
462  *
463  * If this is the first time login, and the web based setup is enabled, 
464  * lead the user through the setup routines
465  */
466 void do_welcome(void)
467 {
468         StrBuf *Buf;
469 #ifdef XXX_NOT_FINISHED_YET_XXX
470         FILE *fp;
471         int i;
472
473         /**
474          * See if we have to run the first-time setup wizard
475          */
476         if (WC->is_aide) {
477                 if (!setup_wizard) {
478                         int len;
479                         sprintf(wizard_filename, "setupwiz.%s.%s",
480                                 ctdlhost, ctdlport);
481                         len = strlen(wizard_filename);
482                         for (i=0; i<len; ++i) {
483                                 if (    (wizard_filename[i]==' ')
484                                         || (wizard_filename[i] == '/')
485                                 ) {
486                                         wizard_filename[i] = '_';
487                                 }
488                         }
489         
490                         fp = fopen(wizard_filename, "r");
491                         if (fp != NULL) {
492                                 fgets(buf, sizeof buf, fp);
493                                 buf[strlen(buf)-1] = 0;
494                                 fclose(fp);
495                                 if (atoi(buf) == serv_info.serv_rev_level) {
496                                         setup_wizard = 1; /**< already run */
497                                 }
498                         }
499                 }
500
501                 if (!setup_wizard) {
502                         http_redirect("setup_wizard");
503                 }
504         }
505 #endif
506
507         /*
508          * Go to the user's preferred start page
509          */
510         if (!get_preference("startpage", &Buf)) {
511                 Buf = NewStrBuf ();
512                 StrBufPrintf(Buf, "dotskip&room=_BASEROOM_");
513                 set_preference("startpage", Buf, 1);
514         }
515         if (ChrPtr(Buf)[0] == '/') {
516                 StrBufCutLeft(Buf, 1);
517         }
518         if (StrLength(Buf) == 0)
519                 StrBufAppendBufPlain(Buf, "dotgoto?room=_BASEROOM_", -1, 0);
520         http_redirect(ChrPtr(Buf));
521 }
522
523
524 /*
525  * Disconnect from the Citadel server, and end this WebCit session
526  */
527 void end_webcit_session(void) {
528         
529         serv_puts("QUIT");
530         WC->killthis = 1;
531         /* close() of citadel socket will be done by do_housekeeping() */
532 }
533
534 /* 
535  * execute the logout
536  */
537 void do_logout(void)
538 {
539         char buf[SIZ];
540
541         FlushStrBuf(WC->wc_username);
542         FlushStrBuf(WC->wc_password);
543         FlushStrBuf(WC->wc_roomname);
544         FlushStrBuf(WC->wc_fullname);
545
546         /* FIXME: this is to suppress the iconbar displaying, because we aren't
547            actually logged out yet */
548         WC->logged_in = 0;
549         
550         /** Calling output_headers() this way causes the cookies to be un-set */
551         output_headers(1, 1, 0, 1, 0, 0);
552
553         wprintf("<div id=\"logout_screen\">");
554         wprintf("<div class=\"box\">");
555         wprintf("<div class=\"boxlabel\">");
556         wprintf(_("Log off"));
557         wprintf("</div><div class=\"boxcontent\">");    
558         serv_puts("MESG goodbye");
559         serv_getln(buf, sizeof buf);
560
561         if (WC->serv_sock >= 0) {
562                 if (buf[0] == '1') {
563                         fmout("CENTER");
564                 } else {
565                         wprintf("Goodbye\n");
566                 }
567         }
568         else {
569                 wprintf(_("This program was unable to connect or stay "
570                         "connected to the Citadel server.  Please report "
571                         "this problem to your system administrator.")
572                 );
573                 wprintf("<a href=\"http://www.citadel.org/doku.php/"
574                         "faq:mastering_your_os:net#netstat\">%s</a>", 
575                         _("Read More..."));
576         }
577
578         wprintf("<hr /><div class=\"buttons\"> "
579                 "<span class=\"button_link\"><a href=\".\">");
580         wprintf(_("Log in again"));
581         wprintf("</a></span>&nbsp;&nbsp;&nbsp;<span class=\"button_link\">"
582                 "<a href=\"javascript:window.close();\">");
583         wprintf(_("Close window"));
584         wprintf("</a></span></div></div></div></div>\n");
585         wDumpContent(2);
586         end_webcit_session();
587 }
588
589
590 /*
591  * validate new users
592  */
593 void validate(void)
594 {
595         char cmd[SIZ];
596         char user[SIZ];
597         char buf[SIZ];
598         int a;
599
600         output_headers(1, 1, 2, 0, 0, 0);
601         wprintf("<div id=\"banner\">\n");
602         wprintf("<h1>");
603         wprintf(_("Validate new users"));
604         wprintf("</h1>");
605         wprintf("</div>\n");
606
607         wprintf("<div id=\"content\" class=\"service\">\n");
608
609         /* If the user just submitted a validation, process it... */
610         safestrncpy(buf, bstr("user"), sizeof buf);
611         if (!IsEmptyStr(buf)) {
612                 if (havebstr("axlevel")) {
613                         serv_printf("VALI %s|%s", buf, bstr("axlevel"));
614                         serv_getln(buf, sizeof buf);
615                         if (buf[0] != '2') {
616                                 wprintf("<b>%s</b><br>\n", &buf[4]);
617                         }
618                 }
619         }
620
621         /* Now see if any more users require validation. */
622         serv_puts("GNUR");
623         serv_getln(buf, sizeof buf);
624         if (buf[0] == '2') {
625                 wprintf("<b>");
626                 wprintf(_("No users require validation at this time."));
627                 wprintf("</b><br>\n");
628                 wDumpContent(1);
629                 return;
630         }
631         if (buf[0] != '3') {
632                 wprintf("<b>%s</b><br>\n", &buf[4]);
633                 wDumpContent(1);
634                 return;
635         }
636
637         wprintf("<div class=\"fix_scrollbar_bug\">"
638                 "<table class=\"auth_validate\"><tr><td>\n");
639         wprintf("<div id=\"validate\">");
640
641         safestrncpy(user, &buf[4], sizeof user);
642         serv_printf("GREG %s", user);
643         serv_getln(cmd, sizeof cmd);
644         if (cmd[0] == '1') {
645                 a = 0;
646                 do {
647                         serv_getln(buf, sizeof buf);
648                         ++a;
649                         if (a == 1)
650                                 wprintf("#%s<br><H1>%s</H1>",
651                                         buf, &cmd[4]);
652                         if (a == 2) {
653                                 char *pch;
654                                 int haveChar = 0;
655                                 int haveNum = 0;
656                                 int haveOther = 0;
657                                 int count = 0;
658                                 pch = buf;
659                                 while (!IsEmptyStr(pch))
660                                 {
661                                         if (isdigit(*pch))
662                                                 haveNum = 1;
663                                         else if (isalpha(*pch))
664                                                 haveChar = 1;
665                                         else
666                                                 haveOther = 1;
667                                         pch ++;
668                                 }
669                                 count = pch - buf;
670                                 if (count > 7)
671                                         count = 0;
672                                 switch (count){
673                                 case 0:
674                                         pch = _("very weak");
675                                         break;
676                                 case 1:
677                                         pch = _("weak");
678                                         break;
679                                 case 2:
680                                         pch = _("ok");
681                                         break;
682                                 case 3:
683                                 default:
684                                         pch = _("strong");
685                                 }
686
687                                 wprintf("PW: %s<br>\n", pch);
688                         }
689                         if (a == 3)
690                                 wprintf("%s<br>\n", buf);
691                         if (a == 4)
692                                 wprintf("%s<br>\n", buf);
693                         if (a == 5)
694                                 wprintf("%s, ", buf);
695                         if (a == 6)
696                                 wprintf("%s ", buf);
697                         if (a == 7)
698                                 wprintf("%s<br>\n", buf);
699                         if (a == 8)
700                                 wprintf("%s<br>\n", buf);
701                         if (a == 9)
702                                 wprintf(_("Current access level: %d (%s)\n"),
703                                         atoi(buf), axdefs[atoi(buf)]);
704                 } while (strcmp(buf, "000"));
705         } else {
706                 wprintf("<H1>%s</H1>%s<br />\n", user, &cmd[4]);
707         }
708
709         wprintf("<hr />");
710         wprintf(_("Select access level for this user:"));
711         wprintf("<br />\n");
712         for (a = 0; a <= 6; ++a) {
713                 wprintf("<a href=\"validate?nonce=%d?user=", WC->nonce);
714                 urlescputs(user);
715                 wprintf("&axlevel=%d\">%s</A>&nbsp;&nbsp;&nbsp;\n",
716                         a, axdefs[a]);
717         }
718         wprintf("<br />\n");
719
720         wprintf("</div>\n");
721         wprintf("</td></tr></table></div>\n");
722         wDumpContent(1);
723 }
724
725
726
727 /*
728  * Display form for registration.
729  *
730  * (Set during_login to 1 if this registration is being performed during
731  * new user login and will require chaining to the proper screen.)
732  */
733 void display_reg(int during_login)
734 {
735         long vcard_msgnum;
736
737         if (goto_config_room() != 0) {
738                 if (during_login) do_welcome();
739                 else display_main_menu();
740                 return;
741         }
742
743         vcard_msgnum = locate_user_vcard_in_this_room();
744         if (vcard_msgnum < 0L) {
745                 if (during_login) do_welcome();
746                 else display_main_menu();
747                 return;
748         }
749
750         if (during_login) {
751                 do_edit_vcard(vcard_msgnum, "1", "do_welcome", USERCONFIGROOM);
752         }
753         else {
754                 do_edit_vcard(vcard_msgnum, "1", "display_main_menu", USERCONFIGROOM);
755         }
756
757 }
758
759
760
761
762 /*
763  * display form for changing your password
764  */
765 void display_changepw(void)
766 {
767         WCTemplputParams SubTP;
768         char buf[SIZ];
769         StrBuf *Buf;
770         output_headers(1, 1, 1, 0, 0, 0);
771
772         Buf = NewStrBufPlain(_("Change your password"), -1);
773         memset(&SubTP, 0, sizeof(WCTemplputParams));
774         SubTP.Filter.ContextType = CTX_STRBUF;
775         SubTP.Context = Buf;
776         DoTemplate(HKEY("beginbox"), NULL, &SubTP);
777
778         FreeStrBuf(&Buf);
779
780         if (!IsEmptyStr(WC->ImportantMessage)) {
781                 wprintf("<span class=\"errormsg\">"
782                         "%s</span><br />\n", WC->ImportantMessage);
783                 safestrncpy(WC->ImportantMessage, "", sizeof WC->ImportantMessage);
784         }
785
786         serv_puts("MESG changepw");
787         serv_getln(buf, sizeof buf);
788         if (buf[0] == '1') {
789                 fmout("CENTER");
790         }
791
792         wprintf("<form name=\"changepwform\" action=\"changepw\" method=\"post\">\n");
793         wprintf("<input type=\"hidden\" name=\"nonce\" value=\"%d\">\n", WC->nonce);
794         wprintf("<table class=\"altern\" ");
795         wprintf("<tr class=\"even\"><td>");
796         wprintf(_("Enter new password:"));
797         wprintf("</td><td>");
798         wprintf("<input type=\"password\" name=\"newpass1\" value=\"\" maxlength=\"20\"></td></tr>\n");
799         wprintf("<tr class=\"odd\"><td>");
800         wprintf(_("Enter it again to confirm:"));
801         wprintf("</td><td>");
802         wprintf("<input type=\"password\" name=\"newpass2\" value=\"\" maxlength=\"20\"></td></tr>\n");
803         wprintf("</table>\n");
804
805         wprintf("<div class=\"buttons\">\n");
806         wprintf("<input type=\"submit\" name=\"change_action\" value=\"%s\">", _("Change password"));
807         wprintf("&nbsp;");
808         wprintf("<input type=\"submit\" name=\"cancel_action\" value=\"%s\">\n", _("Cancel"));
809         wprintf("</div>\n");
810         wprintf("</form>\n");
811
812         do_template("endbox", NULL);
813         wDumpContent(1);
814 }
815
816 /*
817  * change password
818  * if passwords match, propagate it to citserver.
819  */
820 void changepw(void)
821 {
822         char buf[SIZ];
823         char newpass1[32], newpass2[32];
824
825         if (!havebstr("change_action")) {
826                 safestrncpy(WC->ImportantMessage, 
827                         _("Cancelled.  Password was not changed."),
828                         sizeof WC->ImportantMessage);
829                 display_main_menu();
830                 return;
831         }
832
833         safestrncpy(newpass1, bstr("newpass1"), sizeof newpass1);
834         safestrncpy(newpass2, bstr("newpass2"), sizeof newpass2);
835
836         if (strcasecmp(newpass1, newpass2)) {
837                 safestrncpy(WC->ImportantMessage, 
838                         _("They don't match.  Password was not changed."),
839                         sizeof WC->ImportantMessage);
840                 display_changepw();
841                 return;
842         }
843
844         if (IsEmptyStr(newpass1)) {
845                 safestrncpy(WC->ImportantMessage, 
846                         _("Blank passwords are not allowed."),
847                         sizeof WC->ImportantMessage);
848                 display_changepw();
849                 return;
850         }
851
852         serv_printf("SETP %s", newpass1);
853         serv_getln(buf, sizeof buf);
854         sprintf(WC->ImportantMessage, "%s", &buf[4]);
855         if (buf[0] == '2') {
856                 if (WC->wc_password == NULL)
857                         WC->wc_password = NewStrBufPlain(buf, -1);
858                 else {
859                         FlushStrBuf(WC->wc_password);
860                         StrBufAppendBufPlain(WC->wc_password,  buf, -1, 0);
861                 }
862                 display_main_menu();
863         }
864         else {
865                 display_changepw();
866         }
867 }
868
869 int ConditionalAide(StrBuf *Target, WCTemplputParams *TP)
870 {
871         return (WC->is_aide == 0);
872 }
873
874 int ConditionalRoomAide(StrBuf *Target, WCTemplputParams *TP)
875 {
876         return (WC->is_room_aide == 0);
877 }
878
879 int ConditionalIsLoggedIn(StrBuf *Target, WCTemplputParams *TP) {
880   return (WC->logged_in == 0);
881 }
882 int ConditionalRoomAcessDelete(StrBuf *Target, WCTemplputParams *TP)
883 {
884         wcsession *WCC = WC;
885         return ( (WCC->is_room_aide) || (WCC->is_mailbox) || (WCC->room_flags2 & QR2_COLLABDEL) );
886 }
887
888
889
890 void _display_openid_login(void) {display_openid_login(NULL);}
891 void _display_reg(void) {display_reg(0);}
892
893
894 void 
895 InitModule_AUTH
896 (void)
897 {
898         WebcitAddUrlHandler(HKEY("do_welcome"), do_welcome, ANONYMOUS);
899         WebcitAddUrlHandler(HKEY("login"), do_login, ANONYMOUS);
900         WebcitAddUrlHandler(HKEY("display_openid_login"), _display_openid_login, ANONYMOUS);
901         WebcitAddUrlHandler(HKEY("openid_login"), do_openid_login, ANONYMOUS);
902         WebcitAddUrlHandler(HKEY("finalize_openid_login"), finalize_openid_login, ANONYMOUS);
903         WebcitAddUrlHandler(HKEY("openid_manual_create"), openid_manual_create, ANONYMOUS);
904         WebcitAddUrlHandler(HKEY("do_logout"), do_logout, 0);
905         WebcitAddUrlHandler(HKEY("validate"), validate, 0);
906         WebcitAddUrlHandler(HKEY("display_reg"), _display_reg, 0);
907         WebcitAddUrlHandler(HKEY("display_changepw"), display_changepw, 0);
908         WebcitAddUrlHandler(HKEY("changepw"), changepw, 0);
909         WebcitAddUrlHandler(HKEY("termquit"), do_logout, 0);
910
911         RegisterConditional(HKEY("COND:AIDE"), 2, ConditionalAide, CTX_NONE);
912         RegisterConditional(HKEY("COND:ROOMAIDE"), 2, ConditionalRoomAide, CTX_NONE);
913         RegisterConditional(HKEY("COND:ACCESS:DELETE"), 2, ConditionalRoomAcessDelete, CTX_NONE);
914         RegisterConditional(HKEY("COND:LOGGEDIN"), 2, ConditionalIsLoggedIn, CTX_NONE);
915
916         return ;
917 }