* Renamed "struct user" to "struct ctdluser"
[citadel.git] / citadel / serv_bio.c
1 /*
2  * $Id$
3  *
4  * This module implementsserver commands related to the display and
5  * manipulation of user "bio" files.
6  *
7  */
8
9 #include "sysdep.h"
10 #include <stdlib.h>
11 #include <unistd.h>
12 #include <stdio.h>
13 #include <fcntl.h>
14 #include <signal.h>
15 #include <pwd.h>
16 #include <errno.h>
17 #include <sys/types.h>
18
19 #if TIME_WITH_SYS_TIME
20 # include <sys/time.h>
21 # include <time.h>
22 #else
23 # if HAVE_SYS_TIME_H
24 #  include <sys/time.h>
25 # else
26 #  include <time.h>
27 # endif
28 #endif
29
30 #include <sys/wait.h>
31 #include <string.h>
32 #include <limits.h>
33 #include "citadel.h"
34 #include "server.h"
35 #include "sysdep_decls.h"
36 #include "citserver.h"
37 #include "support.h"
38 #include "config.h"
39 #include "control.h"
40 #include "serv_extensions.h"
41 #include "room_ops.h"
42 #include "user_ops.h"
43 #include "policy.h"
44 #include "database.h"
45 #include "msgbase.h"
46 #include "tools.h"
47
48
49
50
51 /*
52  * enter user bio
53  */
54 void cmd_ebio(char *cmdbuf) {
55         char buf[SIZ];
56         FILE *fp;
57
58         if (!(CC->logged_in)) {
59                 cprintf("%d Not logged in.\n",ERROR+NOT_LOGGED_IN);
60                 return;
61         }
62
63         snprintf(buf, sizeof buf, "./bio/%ld",CC->user.usernum);
64         fp = fopen(buf,"w");
65         if (fp == NULL) {
66                 cprintf("%d Cannot create file\n",ERROR);
67                 return;
68         }
69         cprintf("%d  \n",SEND_LISTING);
70         while(client_gets(buf), strcmp(buf,"000")) {
71                 fprintf(fp,"%s\n",buf);
72         }
73         fclose(fp);
74 }
75
76 /*
77  * read user bio
78  */
79 void cmd_rbio(char *cmdbuf)
80 {
81         struct ctdluser ruser;
82         char buf[SIZ];
83         FILE *fp;
84
85         extract(buf,cmdbuf,0);
86         if (getuser(&ruser,buf)!=0) {
87                 cprintf("%d No such user.\n",ERROR+NO_SUCH_USER);
88                 return;
89         }
90         snprintf(buf, sizeof buf, "./bio/%ld",ruser.usernum);
91         
92         cprintf("%d OK|%s|%ld|%d|%ld|%ld|%ld\n", LISTING_FOLLOWS,
93                 ruser.fullname, ruser.usernum, ruser.axlevel,
94                 (long)ruser.lastcall, ruser.timescalled, ruser.posted);
95         fp = fopen(buf,"r");
96         if (fp == NULL)
97                 cprintf("%s has no bio on file.\n", ruser.fullname);
98         else {
99                 while (fgets(buf,256,fp)!=NULL) cprintf("%s",buf);
100                 fclose(fp);
101         }
102         cprintf("000\n");
103 }
104
105 /*
106  * list of users who have entered bios
107  */
108 void cmd_lbio(char *cmdbuf) {
109         char buf[SIZ];
110         FILE *ls;
111         struct ctdluser usbuf;
112
113         ls=popen("cd ./bio; ls","r");
114         if (ls==NULL) {
115                 cprintf("%d Cannot open listing.\n",ERROR+FILE_NOT_FOUND);
116                 return;
117         }
118
119         cprintf("%d\n",LISTING_FOLLOWS);
120         while (fgets(buf,sizeof buf,ls)!=NULL)
121                 if (getuserbynumber(&usbuf,atol(buf))==0)
122                         cprintf("%s\n",usbuf.fullname);
123         pclose(ls);
124         cprintf("000\n");
125 }
126
127
128
129
130 char *serv_bio_init(void)
131 {
132         CtdlRegisterProtoHook(cmd_ebio, "EBIO", "Enter your bio");
133         CtdlRegisterProtoHook(cmd_rbio, "RBIO", "Read a user's bio");
134         CtdlRegisterProtoHook(cmd_lbio, "LBIO", "List users with bios");
135         return "$Id$";
136 }
137
138