X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fuseredit.c;h=743c6f8b8ab6b17a3a4e19716e625f77bdb7fabc;hb=fb6f6fa4ec4e3277e30d84326d48e6850822d318;hp=02aea240ea596d133049299a0a32907da2bcbb02;hpb=8154090751bc44a627f258219239a1a4805315e8;p=citadel.git diff --git a/webcit/useredit.c b/webcit/useredit.c index 02aea240e..743c6f8b8 100644 --- a/webcit/useredit.c +++ b/webcit/useredit.c @@ -1,20 +1,28 @@ /* - * $Id$ + * Copyright (c) 1996-2012 by the citadel.org team + * + * This program is open source software. You can redistribute it and/or + * modify it under the terms of the GNU General Public License, version 3. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. */ #include "webcit.h" #include "webserver.h" -/** +/* * show a list of available users to edit them * message the header message??? - * preselect which user should be selected in the browser + * preselect = which user should be selected in the browser */ -void select_user_to_edit(const char *message, const char *preselect) +void select_user_to_edit(const char *preselect) { output_headers(1, 0, 0, 0, 1, 0); - do_template("edituser_select", NULL); + do_template("aide_edituser_select"); end_burst(); } @@ -31,10 +39,11 @@ typedef struct _UserListEntry { /* Just available for Single users to view: */ unsigned int Flags; int DaysTillPurge; + int HasBio; } UserListEntry; -UserListEntry* NewUserListOneEntry(StrBuf *SerializedUser) +UserListEntry* NewUserListOneEntry(StrBuf *SerializedUser, const char *Pos) { UserListEntry *ul; @@ -45,15 +54,15 @@ UserListEntry* NewUserListOneEntry(StrBuf *SerializedUser) ul->UserName = NewStrBuf(); ul->Passvoid = NewStrBuf(); - StrBufExtract_token(ul->UserName, SerializedUser, 0, '|'); - StrBufExtract_token(ul->Passvoid, SerializedUser, 1, '|'); - ul->Flags = (unsigned int)StrBufExtract_long(SerializedUser, 2, '|'); - ul->nLogons = StrBufExtract_int(SerializedUser, 3, '|'); - ul->nPosts = StrBufExtract_int(SerializedUser, 4, '|'); - ul->AccessLevel = StrBufExtract_int(SerializedUser, 5, '|'); - ul->UID = StrBufExtract_int(SerializedUser, 6, '|'); - ul->LastLogonT = StrBufExtract_long(SerializedUser, 7, '|'); - ul->DaysTillPurge = StrBufExtract_int(SerializedUser, 8, '|'); + StrBufExtract_NextToken(ul->UserName, SerializedUser, &Pos, '|'); + StrBufExtract_NextToken(ul->Passvoid, SerializedUser, &Pos, '|'); + ul->Flags = StrBufExtractNext_unsigned_long(SerializedUser, &Pos, '|'); + ul->nLogons = StrBufExtractNext_int( SerializedUser, &Pos, '|'); + ul->nPosts = StrBufExtractNext_int( SerializedUser, &Pos, '|'); + ul->AccessLevel = StrBufExtractNext_int( SerializedUser, &Pos, '|'); + ul->UID = StrBufExtractNext_int( SerializedUser, &Pos, '|'); + ul->LastLogonT = StrBufExtractNext_long( SerializedUser, &Pos, '|'); + ul->DaysTillPurge = StrBufExtractNext_int( SerializedUser, &Pos, '|'); return ul; } @@ -68,6 +77,7 @@ void DeleteUserListEntry(void *vUserList) UserListEntry* NewUserListEntry(StrBuf *SerializedUserList) { + const char *Pos = NULL; UserListEntry *ul; if (StrLength(SerializedUserList) < 8) @@ -77,14 +87,15 @@ UserListEntry* NewUserListEntry(StrBuf *SerializedUserList) ul->UserName = NewStrBuf(); ul->Passvoid = NewStrBuf(); - StrBufExtract_token(ul->UserName, SerializedUserList, 0, '|'); - ul->AccessLevel = StrBufExtract_int(SerializedUserList, 1, '|'); - ul->UID = StrBufExtract_int(SerializedUserList, 2, '|'); - ul->LastLogonT = StrBufExtract_long(SerializedUserList, 3, '|'); - ul->nLogons = StrBufExtract_int(SerializedUserList, 4, '|'); - ul->nPosts = StrBufExtract_int(SerializedUserList, 5, '|'); - StrBufExtract_token(ul->Passvoid, SerializedUserList, 6, '|'); + StrBufExtract_NextToken(ul->UserName, SerializedUserList, &Pos, '|'); + ul->AccessLevel = StrBufExtractNext_int( SerializedUserList, &Pos, '|'); + ul->UID = StrBufExtractNext_int( SerializedUserList, &Pos, '|'); + ul->LastLogonT = StrBufExtractNext_long(SerializedUserList, &Pos, '|'); + ul->nLogons = StrBufExtractNext_int( SerializedUserList, &Pos, '|'); + ul->nPosts = StrBufExtractNext_int( SerializedUserList, &Pos, '|'); + StrBufExtract_NextToken(ul->Passvoid, SerializedUserList, &Pos, '|'); ul->Flags = 0; + ul->HasBio = 0; ul->DaysTillPurge = -1; return ul; } @@ -99,12 +110,14 @@ int CompareUserListName(const void *vUser1, const void *vUser2) return strcmp(ChrPtr(u1->UserName), ChrPtr(u2->UserName)); } + int CompareUserListNameRev(const void *vUser1, const void *vUser2) { UserListEntry *u1 = (UserListEntry*) GetSearchPayload(vUser1); UserListEntry *u2 = (UserListEntry*) GetSearchPayload(vUser2); return strcmp(ChrPtr(u2->UserName), ChrPtr(u1->UserName)); } + int GroupchangeUserListName(const void *vUser1, const void *vUser2) { UserListEntry *u1 = (UserListEntry*) vUser1; @@ -113,7 +126,7 @@ int GroupchangeUserListName(const void *vUser1, const void *vUser2) } /* - * Sort by AccessLevel + * Sort by access level */ int CompareAccessLevel(const void *vUser1, const void *vUser2) { @@ -122,6 +135,7 @@ int CompareAccessLevel(const void *vUser1, const void *vUser2) return (u1->AccessLevel > u2->AccessLevel); } + int CompareAccessLevelRev(const void *vUser1, const void *vUser2) { UserListEntry *u1 = (UserListEntry*) GetSearchPayload(vUser1); @@ -129,6 +143,7 @@ int CompareAccessLevelRev(const void *vUser1, const void *vUser2) return (u2->AccessLevel > u1->AccessLevel); } + int GroupchangeAccessLevel(const void *vUser1, const void *vUser2) { UserListEntry *u1 = (UserListEntry*) vUser1; @@ -137,7 +152,6 @@ int GroupchangeAccessLevel(const void *vUser1, const void *vUser2) return u2->AccessLevel != u1->AccessLevel; } - /* * Sort by UID */ @@ -148,6 +162,7 @@ int CompareUID(const void *vUser1, const void *vUser2) return (u1->UID > u2->UID); } + int CompareUIDRev(const void *vUser1, const void *vUser2) { UserListEntry *u1 = (UserListEntry*) GetSearchPayload(vUser1); @@ -155,6 +170,7 @@ int CompareUIDRev(const void *vUser1, const void *vUser2) return (u2->UID > u1->UID); } + int GroupchangeUID(const void *vUser1, const void *vUser2) { UserListEntry *u1 = (UserListEntry*) vUser1; @@ -173,6 +189,7 @@ int CompareLastLogon(const void *vUser1, const void *vUser2) return (u1->LastLogonT > u2->LastLogonT); } + int CompareLastLogonRev(const void *vUser1, const void *vUser2) { UserListEntry *u1 = (UserListEntry*) GetSearchPayload(vUser1); @@ -180,6 +197,7 @@ int CompareLastLogonRev(const void *vUser1, const void *vUser2) return (u2->LastLogonT > u1->LastLogonT); } + int GroupchangeLastLogon(const void *vUser1, const void *vUser2) { UserListEntry *u1 = (UserListEntry*) vUser1; @@ -198,6 +216,7 @@ int ComparenLogons(const void *vUser1, const void *vUser2) return (u1->nLogons > u2->nLogons); } + int ComparenLogonsRev(const void *vUser1, const void *vUser2) { UserListEntry *u1 = (UserListEntry*) GetSearchPayload(vUser1); @@ -205,6 +224,7 @@ int ComparenLogonsRev(const void *vUser1, const void *vUser2) return (u2->nLogons > u1->nLogons); } + int GroupchangenLogons(const void *vUser1, const void *vUser2) { UserListEntry *u1 = (UserListEntry*) vUser1; @@ -223,6 +243,7 @@ int ComparenPosts(const void *vUser1, const void *vUser2) return (u1->nPosts > u2->nPosts); } + int ComparenPostsRev(const void *vUser1, const void *vUser2) { UserListEntry *u1 = (UserListEntry*) GetSearchPayload(vUser1); @@ -230,6 +251,7 @@ int ComparenPostsRev(const void *vUser1, const void *vUser2) return (u2->nPosts > u1->nPosts); } + int GroupchangenPosts(const void *vUser1, const void *vUser2) { UserListEntry *u1 = (UserListEntry*) vUser1; @@ -243,34 +265,56 @@ HashList *iterate_load_userlist(StrBuf *Target, WCTemplputParams *TP) { int Done = 0; CompareFunc SortIt; - HashList *Hash; + HashList *Hash = NULL; StrBuf *Buf; UserListEntry* ul; - char nnn[64]; - int nUsed; int len; + int UID; + void *vData; WCTemplputParams SubTP; memset(&SubTP, 0, sizeof(WCTemplputParams)); serv_puts("LIST"); Buf = NewStrBuf(); - StrBuf_ServGetlnBuffered(Buf); + StrBuf_ServGetln(Buf); if (GetServerStatus(Buf, NULL) == 1) { - Hash = NewHash(1, NULL); + Hash = NewHash(1, Flathash); while (!Done) { - len = StrBuf_ServGetlnBuffered(Buf); - if ((len == 3) && - (strcmp(ChrPtr(Buf), "000")==0)) { + len = StrBuf_ServGetln(Buf); + if ((len <0) || + ((len == 3) && + !strcmp(ChrPtr(Buf), "000"))) + { Done = 1; break; } ul = NewUserListEntry(Buf); if (ul == NULL) continue; - nUsed = GetCount(Hash); - nUsed = snprintf(nnn, sizeof(nnn), "%d", nUsed+1); - Put(Hash, nnn, nUsed, ul, DeleteUserListEntry); + + Put(Hash, IKEY(ul->UID), ul, DeleteUserListEntry); + } + + serv_puts("LBIO 1"); + StrBuf_ServGetln(Buf); + if (GetServerStatus(Buf, NULL) == 1) + Done = 0; + while (!Done) { + len = StrBuf_ServGetln(Buf); + if ((len <0) || + ((len == 3) && + !strcmp(ChrPtr(Buf), "000"))) + { + Done = 1; + break; + } + UID = atoi(ChrPtr(Buf)); + if (GetHash(Hash, IKEY(UID), &vData) && vData != 0) + { + ul = (UserListEntry*)vData; + ul->HasBio = 1; + } } SubTP.Filter.ContextType = CTX_USERLIST; SortIt = RetrieveSort(&SubTP, HKEY("USER"), HKEY("user:uid"), 0); @@ -278,10 +322,9 @@ HashList *iterate_load_userlist(StrBuf *Target, WCTemplputParams *TP) SortByPayload(Hash, SortIt); else SortByPayload(Hash, CompareUID); - return Hash; } FreeStrBuf(&Buf); - return NULL; + return Hash; } @@ -380,19 +423,84 @@ int ConditionalFlagINetEmail(StrBuf *Target, WCTemplputParams *TP) int ConditionalUserAccess(StrBuf *Target, WCTemplputParams *TP) { UserListEntry *ul = (UserListEntry*) CTX; + + if (ul == NULL) + return 0; - if (TP->Tokens->Params[3]->Type == TYPE_LONG) - return (TP->Tokens->Params[3]->lvalue == ul->AccessLevel); - else + return GetTemplateTokenNumber(Target, + TP, + 3, + AxNewU) + == + ul->AccessLevel; +} +int ConditionalHaveBIO(StrBuf *Target, WCTemplputParams *TP) +{ + UserListEntry *ul = (UserListEntry*) CTX; + + if (ul == NULL) return 0; + return ul->HasBio; +} + +void tmplput_USER_BIO(StrBuf *Target, WCTemplputParams *TP) +{ + int Done = 0; + StrBuf *Buf; + const char *who; + long len; + + GetTemplateTokenString(Target, TP, 0, &who, &len); + + Buf = NewStrBuf(); + serv_printf("RBIO %s", who); + StrBuf_ServGetln(Buf); + if (GetServerStatus(Buf, NULL) == 1) { + StrBuf *BioBuf = NewStrBufPlain(NULL, SIZ); + while (!Done && StrBuf_ServGetln(Buf)>=0) { + if ( (StrLength(Buf)==3) && + !strcmp(ChrPtr(Buf), "000")) + Done = 1; + else + StrBufAppendBuf(BioBuf, Buf, 0); + } + StrBufAppendTemplate(Target, TP, BioBuf, 1); + FreeStrBuf(&BioBuf); + } + FreeStrBuf(&Buf); } +int Conditional_USER_HAS_PIC(StrBuf *Target, WCTemplputParams *TP) +{ + StrBuf *Buf; + const char *who; + long len; + int r = 0; + + GetTemplateTokenString(Target, TP, 2, &who, &len); + + Buf = NewStrBuf(); + serv_printf("OIMG _userpic_|%s", who); + StrBuf_ServGetln(Buf); + if (GetServerStatus(Buf, NULL) != 2) { + r = 1; + } + else { + r = 0; + } + serv_puts("CLOS"); + StrBuf_ServGetln(Buf); + GetServerStatus(Buf, NULL); + FreeStrBuf(&Buf); + return(r); +} + + /* * Locate the message number of a user's vCard in the current room * Returns the message id of his vcard */ -long locate_user_vcard_in_this_room(message_summary **VCMsg, - wc_mime_attachment **VCAtt) +long locate_user_vcard_in_this_room(message_summary **VCMsg, wc_mime_attachment **VCAtt) { wcsession *WCC = WC; HashPos *at; @@ -402,21 +510,22 @@ long locate_user_vcard_in_this_room(message_summary **VCMsg, void *vMsg; message_summary *Msg; wc_mime_attachment *Att; - - - int Done; StrBuf *Buf; long vcard_msgnum = (-1L); int already_tried_creating_one = 0; StrBuf *FoundCharset = NewStrBuf(); StrBuf *Error = NULL; + SharedMessageStatus Stat; + - Buf = NewStrBuf(); TRYAGAIN: - Done = 0; - /** Search for the user's vCard */ - if (load_msg_ptrs("MSGS ALL||||1", 1) > 0) { + memset(&Stat, 0, sizeof(SharedMessageStatus)); + Stat.maxload = 10000; + Stat.lowest_found = (-1); + Stat.highest_found = (-1); + /* Search for the user's vCard */ + if (load_msg_ptrs("MSGS ALL||||1", NULL, &Stat, NULL) > 0) { at = GetNewHashPos(WCC->summ, 0); while (GetNextHashPos(WCC->summ, at, &HKLen, &HashKey, &vMsg)) { Msg = (message_summary*) vMsg; @@ -424,48 +533,58 @@ TRYAGAIN: memset(Msg->MsgBody, 0, sizeof(wc_mime_attachment)); Msg->MsgBody->msgnum = Msg->msgnum; - load_message(Msg, - FoundCharset, - &Error); + load_message(Msg, FoundCharset, &Error); if (Msg->AllAttach != NULL) { att = GetNewHashPos(Msg->AllAttach, 0); - while (GetNextHashPos(Msg->AllAttach, att, &HKLen, &HashKey, &vMsg)) { + while (GetNextHashPos(Msg->AllAttach, att, &HKLen, &HashKey, &vMsg) && + (vcard_msgnum == -1)) { Att = (wc_mime_attachment*) vMsg; - if ( (strcasecmp(ChrPtr(Att->ContentType), "text/x-vcard") == 0) || - (strcasecmp(ChrPtr(Att->ContentType), "text/vcard") == 0) ) { + if ( + (strcasecmp(ChrPtr(Att->ContentType), "text/x-vcard") == 0) + || (strcasecmp(ChrPtr(Att->ContentType), "text/vcard") == 0) + ) { *VCAtt = Att; *VCMsg = Msg; - if (Att->Data == NULL) + vcard_msgnum = Msg->msgnum; + if (Att->Data == NULL) { MimeLoadData(Att); + } } } + DeleteHashPos(&att); } - FreeStrBuf(&Error); /*< don't care... */ + FreeStrBuf(&Error); /* don't care... */ } DeleteHashPos(&at); } - /** If there's no vcard, create one */ + + /* If there's no vcard, create one */ if ((*VCMsg == NULL) && (already_tried_creating_one == 0)) { + FlushStrBuf(Buf); already_tried_creating_one = 1; serv_puts("ENT0 1|||4"); - StrBuf_ServGetlnBuffered(Buf); - if (GetServerStatus(Buf, NULL) != 4) { + StrBuf_ServGetln(Buf); + if (GetServerStatus(Buf, NULL) == 4) { serv_puts("Content-type: text/x-vcard"); serv_puts(""); serv_puts("begin:vcard"); serv_puts("end:vcard"); serv_puts("000"); } + else + syslog(1, "Error while creating user vcard: %s\n", ChrPtr(Buf)); goto TRYAGAIN; } FreeStrBuf(&Buf); + FreeStrBuf(&FoundCharset); + return(vcard_msgnum); } -/** +/* * Display the form for editing a user's address book entry * username the name of the user * usernum the citadel-uid of the user @@ -473,28 +592,26 @@ TRYAGAIN: void display_edit_address_book_entry(const char *username, long usernum) { message_summary *VCMsg = NULL; wc_mime_attachment *VCAtt = NULL; - char roomname[SIZ]; + StrBuf *roomname; StrBuf *Buf; - char error_message[SIZ]; long vcard_msgnum = (-1L); - /** Locate the user's config room, creating it if necessary */ + /* Locate the user's config room, creating it if necessary */ Buf = NewStrBuf(); - serv_printf("GOTO %010ld.%s||1", usernum, USERCONFIGROOM); - StrBuf_ServGetlnBuffered(Buf); + roomname = NewStrBuf(); + StrBufPrintf(roomname, "%010ld.%s", usernum, USERCONFIGROOM); + serv_printf("GOTO %s||1", ChrPtr(roomname)); + StrBuf_ServGetln(Buf); if (GetServerStatus(Buf, NULL) != 2) { - serv_printf("CRE8 1|%010ld.%s|5|||1|", usernum, USERCONFIGROOM); - StrBuf_ServGetlnBuffered(Buf); + serv_printf("CRE8 1|%s|5|||1|", ChrPtr(roomname)); + StrBuf_ServGetln(Buf); GetServerStatus(Buf, NULL); - serv_printf("GOTO %010ld.%s||1", usernum, USERCONFIGROOM); - StrBuf_ServGetlnBuffered(Buf); - if (GetServerStatus(Buf, NULL) != 2) { - StrBufCutLeft(Buf, 4); - sprintf(error_message, - "" - "%s

\n", ChrPtr(Buf)); - select_user_to_edit(error_message, username); + serv_printf("GOTO %s||1", ChrPtr(roomname)); + StrBuf_ServGetln(Buf); + if (GetServerStatusMsg(Buf, NULL, 1, 2) != 2) { + select_user_to_edit(username); FreeStrBuf(&Buf); + FreeStrBuf(&roomname); return; } } @@ -503,11 +620,9 @@ void display_edit_address_book_entry(const char *username, long usernum) { locate_user_vcard_in_this_room(&VCMsg, &VCAtt); if (VCMsg == NULL) { - sprintf(error_message, - "%s

\n", - _("An error occurred while trying to create or edit this address book entry.") - ); - select_user_to_edit(error_message, username); + AppendImportantMessage(_("An error occurred while trying to create or edit this address book entry."), -1); + select_user_to_edit(username); + FreeStrBuf(&roomname); return; } @@ -515,14 +630,31 @@ void display_edit_address_book_entry(const char *username, long usernum) { VCMsg, VCAtt, "select_user_to_edit", - roomname); + ChrPtr(roomname)); + FreeStrBuf(&roomname); } +/* + * burge a user + * username the name of the user to remove + */ +void delete_user(char *username) { + StrBuf *Buf; + + Buf = NewStrBuf(); + serv_printf("ASUP %s|0|0|0|0|0|", username); + StrBuf_ServGetln(Buf); + GetServerStatusMsg(Buf, NULL, 1, 2); + + select_user_to_edit( bstr("username")); + FreeStrBuf(&Buf); +} + void display_edituser(const char *supplied_username, int is_new) { + const char *Pos; UserListEntry* UL; StrBuf *Buf; - char error_message[1024]; char username[256]; if (supplied_username != NULL) { @@ -534,20 +666,15 @@ void display_edituser(const char *supplied_username, int is_new) { Buf = NewStrBuf(); serv_printf("AGUP %s", username); - StrBuf_ServGetlnBuffered(Buf); - if (GetServerStatus(Buf, NULL) != 2) { - StrBufCutLeft(Buf, 4); - /*TODO ImportantMessage */ - sprintf(error_message, - "" - "%s

\n", ChrPtr(Buf)); - select_user_to_edit(error_message, username); + StrBuf_ServGetln(Buf); + if (GetServerStatusMsg(Buf, NULL, 1, 2) != 2) { + select_user_to_edit(username); FreeStrBuf(&Buf); return; } else { - StrBufCutLeft(Buf, 4); - UL = NewUserListOneEntry(Buf); + Pos = ChrPtr(Buf) + 4; + UL = NewUserListOneEntry(Buf, Pos); if ((UL != NULL) && havebstr("edit_abe_button")) { display_edit_address_book_entry(username, UL->UID); } @@ -560,7 +687,7 @@ void display_edituser(const char *supplied_username, int is_new) { SubTP.Filter.ContextType = CTX_USERLIST; SubTP.Context = UL; output_headers(1, 0, 0, 0, 1, 0); - DoTemplate(HKEY("userlist_detailview"), NULL, &SubTP); + DoTemplate(HKEY("aide_edituser_detailview"), NULL, &SubTP); end_burst(); } DeleteUserListEntry(UL); @@ -569,21 +696,19 @@ void display_edituser(const char *supplied_username, int is_new) { FreeStrBuf(&Buf); } -/** +/* * do the backend operation of the user edit on the server */ void edituser(void) { - char message[SIZ]; int is_new = 0; unsigned int flags = 0; const char *username; is_new = ibstr("is_new"); - safestrncpy(message, "", sizeof message); username = bstr("username"); if (!havebstr("ok_button")) { - safestrncpy(message, _("Changes were not saved."), sizeof message); + AppendImportantMessage(_("Changes were not saved."), -1); } else { StrBuf *Buf = NewStrBuf(); @@ -598,14 +723,8 @@ void edituser(void) { if ((havebstr("newname")) && (strcasecmp(bstr("username"), bstr("newname")))) { serv_printf("RENU %s|%s", bstr("username"), bstr("newname")); - StrBuf_ServGetlnBuffered(Buf); - if (GetServerStatus(Buf, NULL) == 2) { - StrBufCutLeft(Buf, 4); - sprintf(&message[strlen(message)], - "" - "%s

\n", ChrPtr(Buf)); - } - else { + StrBuf_ServGetln(Buf); + if (GetServerStatusMsg(Buf, NULL, 1, 2) != 2) { username = bstr("newname"); } } @@ -621,17 +740,12 @@ void edituser(void) { bstr("lastcall"), bstr("purgedays") ); - StrBuf_ServGetlnBuffered(Buf); - if (GetServerStatus(Buf, NULL) == 2) { - StrBufCutLeft(Buf, 4); - sprintf(&message[strlen(message)], - "" - "%s

\n", ChrPtr(Buf)); - } + StrBuf_ServGetln(Buf); + GetServerStatusMsg(Buf, NULL, 1, 2); FreeStrBuf(&Buf); } - /** + /* * If we are in the middle of creating a new user, move on to * the vCard edit screen. */ @@ -639,103 +753,92 @@ void edituser(void) { display_edit_address_book_entry(username, lbstr("usernum") ); } else { - select_user_to_edit(message, username); + select_user_to_edit(username); } } -/* - * burge a user - * username the name of the user to remove - */ -void delete_user(char *username) { - StrBuf *Buf; - char message[SIZ]; - - Buf = NewStrBuf(); - serv_printf("ASUP %s|0|0|0|0|0|", username); - StrBuf_ServGetlnBuffered(Buf); - if (GetServerStatus(Buf, NULL) == 2) { - StrBufCutLeft(Buf, 4); - sprintf(message, - "" - "%s

\n", ChrPtr(Buf)); - } - else { - safestrncpy(message, "", sizeof message); - } - select_user_to_edit(message, bstr("username")); - FreeStrBuf(&Buf); -} - -/** +/* * create a new user * take the web environment username and create it on the citadel server */ void create_user(void) { long FullState; StrBuf *Buf; - char error_message[SIZ]; const char *username; Buf = NewStrBuf(); username = bstr("username"); serv_printf("CREU %s", username); - StrBuf_ServGetlnBuffered(Buf); + StrBuf_ServGetln(Buf); if (GetServerStatus(Buf, &FullState) == 2) { - sprintf(WC->ImportantMessage, _("A new user has been created.")); + AppendImportantMessage(_("A new user has been created."), -1); display_edituser(username, 1); } else if (FullState == 570) { - sprintf(error_message, - "" - "%s

\n", - _("You are attempting to create a new user from within Citadel " - "while running in host based authentication mode. In this mode, " - "you must create new users on the host system, not within Citadel.") - ); - select_user_to_edit(error_message, NULL); + AppendImportantMessage(_("You are attempting to create a new user from within Citadel " + "while running in host based authentication mode. In this mode, " + "you must create new users on the host system, not within Citadel."), + -1); + select_user_to_edit(NULL); } else { - StrBufCutLeft(Buf, 4); - sprintf(error_message, - "" - "%s

\n", ChrPtr(Buf)); - select_user_to_edit(error_message, NULL); + AppendImportantMessage(ChrPtr(Buf) + 4, StrLength(Buf) - 4); + select_user_to_edit(NULL); } FreeStrBuf(&Buf); } -void _select_user_to_edit(void){select_user_to_edit(NULL, NULL);} -void _display_edituser(void) {display_edituser(NULL, 0);} +void _select_user_to_edit(void) { + select_user_to_edit(NULL); +} + + +void _display_edituser(void) { + display_edituser(NULL, 0); +} + +void showuser(void) +{ + output_headers(1, 0, 0, 0, 1, 0); + do_template("user_show"); + end_burst(); +} + void InitModule_USEREDIT (void) { - WebcitAddUrlHandler(HKEY("select_user_to_edit"), _select_user_to_edit, 0); - WebcitAddUrlHandler(HKEY("display_edituser"), _display_edituser, 0); - WebcitAddUrlHandler(HKEY("edituser"), edituser, 0); - WebcitAddUrlHandler(HKEY("create_user"), create_user, 0); - - RegisterNamespace("USERLIST:USERNAME", 0, 1, tmplput_USERLIST_UserName, CTX_USERLIST); - RegisterNamespace("USERLIST:PASSWD", 0, 1, tmplput_USERLIST_Password, CTX_USERLIST); - RegisterNamespace("USERLIST:ACCLVLNO", 0, 0, tmplput_USERLIST_AccessLevelNo, CTX_USERLIST); - RegisterNamespace("USERLIST:ACCLVLSTR", 0, 0, tmplput_USERLIST_AccessLevelStr, CTX_USERLIST); - RegisterNamespace("USERLIST:UID", 0, 0, tmplput_USERLIST_UID, CTX_USERLIST); - RegisterNamespace("USERLIST:LASTLOGON:STR", 0, 0, tmplput_USERLIST_LastLogonStr, CTX_USERLIST); - RegisterNamespace("USERLIST:LASTLOGON:NO", 0, 0, tmplput_USERLIST_LastLogonNo, CTX_USERLIST); - RegisterNamespace("USERLIST:NLOGONS", 0, 0, tmplput_USERLIST_nLogons, CTX_USERLIST); - RegisterNamespace("USERLIST:NPOSTS", 0, 0, tmplput_USERLIST_nPosts, CTX_USERLIST); + WebcitAddUrlHandler(HKEY("showuser"), "", 0, showuser, 0); + WebcitAddUrlHandler(HKEY("select_user_to_edit"), "", 0, _select_user_to_edit, 0); + WebcitAddUrlHandler(HKEY("display_edituser"), "", 0, _display_edituser, 0); + WebcitAddUrlHandler(HKEY("edituser"), "", 0, edituser, 0); + WebcitAddUrlHandler(HKEY("create_user"), "", 0, create_user, 0); + + RegisterNamespace("USERLIST:USERNAME", 0, 1, tmplput_USERLIST_UserName, NULL, CTX_USERLIST); + RegisterNamespace("USERLIST:PASSWD", 0, 1, tmplput_USERLIST_Password, NULL, CTX_USERLIST); + RegisterNamespace("USERLIST:ACCLVLNO", 0, 0, tmplput_USERLIST_AccessLevelNo, NULL, CTX_USERLIST); + RegisterNamespace("USERLIST:ACCLVLSTR", 0, 0, tmplput_USERLIST_AccessLevelStr, NULL, CTX_USERLIST); + RegisterNamespace("USERLIST:UID", 0, 0, tmplput_USERLIST_UID, NULL, CTX_USERLIST); + RegisterNamespace("USERLIST:LASTLOGON:STR", 0, 0, tmplput_USERLIST_LastLogonStr, NULL, CTX_USERLIST); + RegisterNamespace("USERLIST:LASTLOGON:NO", 0, 0, tmplput_USERLIST_LastLogonNo, NULL, CTX_USERLIST); + RegisterNamespace("USERLIST:NLOGONS", 0, 0, tmplput_USERLIST_nLogons, NULL, CTX_USERLIST); + RegisterNamespace("USERLIST:NPOSTS", 0, 0, tmplput_USERLIST_nPosts, NULL, CTX_USERLIST); - RegisterNamespace("USERLIST:FLAGS", 0, 0, tmplput_USERLIST_Flags, CTX_USERLIST); - RegisterNamespace("USERLIST:DAYSTILLPURGE", 0, 0, tmplput_USERLIST_DaysTillPurge, CTX_USERLIST); + RegisterNamespace("USERLIST:FLAGS", 0, 0, tmplput_USERLIST_Flags, NULL, CTX_USERLIST); + RegisterNamespace("USERLIST:DAYSTILLPURGE", 0, 0, tmplput_USERLIST_DaysTillPurge, NULL, CTX_USERLIST); + + RegisterNamespace("USER:BIO", 1, 2, tmplput_USER_BIO, NULL, CTX_NONE); RegisterConditional(HKEY("COND:USERNAME"), 0, ConditionalUser, CTX_USERLIST); RegisterConditional(HKEY("COND:USERACCESS"), 0, ConditionalUserAccess, CTX_USERLIST); RegisterConditional(HKEY("COND:USERLIST:FLAG:USE_INTERNET"), 0, ConditionalFlagINetEmail, CTX_USERLIST); + RegisterConditional(HKEY("COND:USERLIST:HAVEBIO"), 0, ConditionalHaveBIO, CTX_USERLIST); + + RegisterConditional(HKEY("COND:USER:PIC"), 1, Conditional_USER_HAS_PIC, CTX_NONE); RegisterIterator("USERLIST", 0, NULL, iterate_load_userlist, NULL, DeleteHash, CTX_USERLIST, CTX_NONE, IT_FLAG_DETECT_GROUPCHANGE); @@ -782,4 +885,12 @@ InitModule_USEREDIT GroupchangenPosts, CTX_USERLIST); + REGISTERTokenParamDefine(AxDeleted); + REGISTERTokenParamDefine(AxNewU); + REGISTERTokenParamDefine(AxProbU); + REGISTERTokenParamDefine(AxLocU); + REGISTERTokenParamDefine(AxNetU); + REGISTERTokenParamDefine(AxPrefU); + REGISTERTokenParamDefine(AxAideU); } +