davew: clean ups, addition to documentation of API and addition of an event to clean...
[citadel.git] / citadel / techdoc / citadelapi.txt
1  Citadel Server Extension API Documentation
2  ---------------------------------------------
3  
4   This is a VERY INCOMPLETE documentation of the API for extending the
5 Citadel server using dynamically loaded modules.  It really isn't an API at
6 all, but rather a list of some of the functions available in the server which
7 are likely to be of use to module writers.
8  
9   The current trend is to move as much stuff as possible out of the server
10 proper and into loadable modules.  This makes the code much easier to read and
11 understand.
12   
13   Expect this document to become more complete over time, as both the API and
14 the person documenting it have a chance to mature a bit.  :)
15   
16   
17    
18   USER RELATED FUNCTIONS
19   ----------------------
20  
21  The fundamental user data is stored in "struct ctdluser" which is defined
22 in citadel.h.  The following functions are available:
23   
24  
25  int getuser(struct ctdluser *usbuf, char name[])
26  
27  Given the name of a requested user and a buffer to store the user
28 record in, getuser() will search the userlog for the named user and load its
29 data into the buffer.  getuser() returns 0 upon success or a nonzero error
30 code if the requested operation could not be performed.
31  
32  
33  void putuser(struct ctdluser *usbuf, char *name)
34  
35  After reading in a user record with getuser() and perhaps modifying the data
36 in some way, a program may use putuser() to write it back to disk.
37  
38  
39  int lgetuser(struct ctdluser *usbuf, char *name)
40  void lputuser(struct ctdluser *usbuf, char *name)
41  
42  If critical-section operation is required, this pair of calls may be used.
43 They function the same as getuser() and putuser(), except that lgetuser()
44 locks the user file immediately after retrieving the record and lputuser()
45 unlocks it.  This will guarantee that no other threads manipulate the same
46 user record at the same time.
47  
48  NOTE: do NOT attempt to combine the locking lgetuser/lputuser calls with any
49 other locking calls in this API.  Attempting to obtain concurrent locks on
50 multiple files may result in a deadlock condition which would freeze the
51 entire server.
52  
53    
54  void ForEachUser(void (*CallBack)(struct ctdluser *EachUser))
55  
56  This allows a user-supplied function to be called once for each user on
57 the system.  The user-supplied function will be called with a pointer to a
58 user structure as its only argument.
59   
60  
61  int getuserbynumber(struct ctdluser *usbuf, long int number)
62  
63  getuserbynumber() functions similarly to getuser(), except that it is
64 supplied with a user number rather than a name.  Calling this function
65 results in a sequential search of the user file, so use it sparingly if at
66 all.
67  
68  
69  int purge_user(char *pname)
70  
71  This function deletes the named user off the system and erases all related
72 objects: bio, photo, etc.  It returns 0 upon success or a nonzero error code
73 if the requested operation could not be performed.
74  
75
76
77  HOW TO REGISTER FUNCTION HOOKS
78  ------------------------------
79  
80  The truly powerful part of the Citadel API is the ability for extensions to
81 register "hooks" -- user-supplied functions will be called while the server
82 is performing various tasks.  Here are the API calls to register hooks:
83  
84    
85  void CtdlRegisterProtoHook(void (*handler)(char *), char *cmd, char *desc)
86  void CtdlUnregisterProtoHook(void (*handler)(char *), char *cmd)
87   
88  CtdlRegisterProtoHook() adds a new server command to the system.  The
89 handler function should accept a single string parameter, which will be set
90 to a string containing any parameters the client software sent along with
91 the server command.  "cmd" should be the four-character mnemonic the server
92 command is known by, and "desc" is a description of the new command.
93
94  CtdlUnregisterProtoHook() removes a server command from the system.  It
95 must be called with the same handler and cmd which were previously registered.
96  
97
98  void CtdlRegisterCleanupHook(void *fcn_ptr) 
99  void CtdlUnregisterCleanupHook(void *fcn_ptr) 
100  
101  CtdlRegisterCleanupHook() registers a new function to be called whenever the
102 server is shutting down.  Cleanup functions accept no parameters.
103
104  CtdlUnregsiterCleanupHook() removes a cleanup function from the system.  It
105 must be called with the same fcn_ptr which was previously registered.
106
107  
108 void CtdlRegisterSessionHook(void *fcn_ptr, int EventType) 
109 void CtdlUnregisterSessionHook(void *fcn_ptr, int EventType) 
110   
111  CtdlRegisterSessionHook() registers a session hook.  Session hooks accept
112 no parameters.  There are multiple types of session hooks; the server
113 extension registers which one it is interested in by setting the value of
114 EventType.  The available session hook types are:
115
116 #define EVT_STOP        0       /* Session is terminating */
117 #define EVT_START       1       /* Session is starting */
118 #define EVT_LOGIN       2       /* A user is logging in */
119 #define EVT_NEWROOM     3       /* Changing rooms */
120 #define EVT_LOGOUT      4       /* A user is logging out */
121 #define EVT_SETPASS     5       /* Setting or changing password */
122
123  CtdlUnregisterSessionHook() removes a session hook.  It must be called with
124 the same fcn_ptr and EventTYpe which were previously registered.
125  
126
127 void CtdlRegisterUserHook(void *fcn_ptr, int EventType) 
128 void CtdlUnregisterUserHook(void *fcn_ptr, int EventType) 
129  
130  CtdlRegisterUserHook() registers a user hook.  User hooks accept two
131 parameters: a string pointer containing the user name, and a long which *may*
132 contain a user number (only applicable for certain types of hooks).  The
133 available user hook types are:
134
135 #define EVT_PURGEUSER   100     /* Deleting a user */
136 #define EVT_OUTPUTMSG   101     /* Outputting a message */
137
138  CtdlUnregisterUserHook() removes a user hook from the system.  It must be
139 called with the same fcn_ptr and EventType which were previously registered.
140
141
142  void CtdlRegisterLogHook(void (*fcn_ptr) (char *), int loglevel)
143  void CtdlUnregisterLogHook(void (*fcn_ptr) (char *), int loglevel)
144
145  CtdlRegisterLogHook() adds a new logging function to the system.  The
146 handler function should accept a single string as a parameter.  Logging
147 functions can be used to implement additional logging facilities in
148 addition to the Citadel trace file, which is output on stderr, or
149 redirected to a file with the -t command line option.  The handler
150 function will be called if the loglevel is greater than or equal to
151 loglevel.
152
153  Security considerations:  Logs may contain plain text passwords and
154 other sensitive information.  It is your responsibility to ensure that
155 your logs have appropriate access protection.  The Citadel trace file
156 is readable only by the superuser when the -t option is used.
157
158  CtdlUnregisterLogHook() removes a logging function from the system.  It
159 must be called with the same fcn_ptr and loglevel which were previously
160 registered.
161
162
163  void CtdlRegisterMessageHook(int (*handler) (struct CtdlMessage *),
164                                 int EventType)
165  void CtdlUnregisterMessageHook(int (*handler) (struct CtdlMessage *),
166                                 int EventType)
167
168
169  CtdlRegisterMessageHook() registers a function with the message
170 handling subsystem. This function will be called with one parameter, 
171 a pointer to a CtdlMessage structure, when the message triggers an event 
172 of type EventType. The registered function should return non zero if it 
173 has handled the event to prevent other hook functions from also processing 
174 the event.
175
176  CtdlUnregisterMessageHook() removes a function from the list of registered 
177 message handlers. To successfully remove a function registered with 
178 CtdlRegisterMessageHook() CtdlUnregisterMessageHook() must be called with 
179 the same parameters.
180
181  Possible values for EventType are:
182     EVT_BEFOREREAD   Called after a message is loaded from disk but before
183 it is presented for reading.
184     EVT_BEFORESAVE   Called before the message is saved to disk. returning 
185 non zero for this event will prevent the message being saved to disk in the
186 normal manner.
187     EVT_AFTERSAVE    Called after the message is saved to disk but before
188 any IGnet spooling is carried out.
189     EVT_SMTPSCAN     Called during the SMTP reception of a message after the 
190 message is received and before the response is sent to the sender. This is
191 intended for spam filters and virus checkers. A positive return code will
192 cause the message to be rejected by the SMTP server.
193
194
195  void CtdlRegisterRoomHook(int (*fcn_ptr) (char *))
196  void CtdlUnregisterRoomHook(int (*fcn_ptr) (char *))
197
198  Register or remove a function with the room processing system.
199 Registered functions are called in the order they are registered when a message
200 is added to a room. This allows modules such as Sieve to process new messages
201 appearing in a room.
202
203
204  void CtdlRegisterXmsgHook(int (*fcn_ptr) (char *, char *, char *), int order)
205  void CtdlUnregisterXmsgHook(int (*fcn_ptr) (char *, char *, char *), int order)
206
207  Please write documentation for me!
208
209
210  void CtdlRegisterServiceHook(int tcp_port, char *sockpath,
211                                 void (*h_greeting_function) (void),
212                                 void (*h_command_function) (void))
213  void CtdlUnregisterServiceHook(int tcp_port, char *sockpath,
214                                 void (*h_greeting_function) (void),
215                                 void (*h_command_function) (void))
216
217  Please write documentation for me!
218
219
220   FUNCTIONS WHICH MANIPULATE USER/ROOM RELATIONSHIPS
221
222  void CtdlGetRelationship(struct visit *vbuf,
223                         struct ctdluser *rel_user,
224                         struct ctdlroom *rel_room);
225  void CtdlSetRelationship(struct visit *newvisit,
226                         struct ctdluser *rel_user,
227                         struct ctdlroom *rel_room);
228  
229  These functions get/set a "struct visit" structure which may contain
230 information about the relationship between a user and a room.  Specifically:
231
232 struct visit {
233         char v_roomname[20];
234         long v_generation;
235         long v_lastseen;
236         unsigned int v_flags;
237         };
238
239 #define V_FORGET        1               /* User has zapped this room        */
240 #define V_LOCKOUT       2               /* User is locked out of this room  */
241 #define V_ACCESS        4               /* Access is granted to this room   */
242  
243  Don't change v_roomname or v_generation; they're used to identify the room
244 being referred to.  A room is unique to the system by its combination of room
245 name and generation number.  If a new room is created with the same name as
246 a recently deleted room, it will have a new generation number, and therefore
247 stale "visit" records will not be applied (and will eventually be purged).
248  
249  v_lastseen contains the number of the newest message the user has read in
250 this room.  Any existing messages higher than this number can be considered
251 as "new messages."
252  
253  v_flags contains information regarding access to the room.
254  
255   
256  
257  int CtdlRoomAccess(struct ctdlroom *roombuf, struct ctdluser *userbuf)
258  
259  This is a convenience function which uses CtdlGetRelationship() to determine
260 whether a user has access to a room.  It returns a bucket of bits which may
261 contain:
262  
263 #define UA_INUSE                1       /* Room exists */
264 #define UA_KNOWN                2       /* Room is in user's Known list */
265 #define UA_GOTOALLOWED          4       /* User may <.G>oto this room */
266 #define UA_HASNEWMSGS           8       /* Room contains new messages */
267 #define UA_ZAPPED               16      /* User has forgotten this room */
268
269
270
271
272    ROOM RELATED FUNCTIONS
273    ----------------------
274  
275  
276 unsigned create_room(char *new_room_name,
277                      int new_room_type,
278                      char *new_room_pass,
279                      int new_room_floor,
280                      int really_create)
281  
282  This function is used to create a new room.  new_room_name should be set to
283 the desired name for the new room.
284   
285  new_room_type should be set to one of the following values:
286         0 = public room
287         1 = guess-name room
288         2 = passworded room
289         3 = invitation-only room
290         4 = personal (mailbox) room
291         5 = personal (mailbox) room, and new_room_name already contains
292             the namespace prefix (use with caution!)
293  
294  new_room_pass should be set to the desired password for the room (obviously
295 this is only valid for passworded rooms).
296  
297  If the room is really to be created, set really_create to 1.  Otherwise, the
298 caller may merely check to see if it's possible to create the room without
299 actually creating it by setting really_create to 0.
300   
301  create_room() returns the flags associated with the new room (as in the
302 data structure item room.QRflags).  If the room cannot be created (for
303 example, a room with the name already exists), it returns 0.
304  
305