source: protocols/nogaim.h @ e62762b

Last change on this file since e62762b was 703f0f7, checked in by Jelmer Vernooij <jelmer@…>, at 2005-12-14T01:17:25Z

Merge my pluginable branch

  • Property mode set to 100644
File size: 11.3 KB
RevLine 
[b7d3cc34]1  /********************************************************************\
2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
4  * Copyright 2002-2004 Wilmer van der Gaast and others                *
5  \********************************************************************/
6
7/*
8 * nogaim
9 *
10 * Gaim without gaim - for BitlBee
11 *
12 * This file contains functions called by the Gaim IM-modules. It contains
13 * some struct and type definitions from Gaim.
14 *
15 * Copyright (C) 1998-1999, Mark Spencer <markster@marko.net>
16 *                          (and possibly other members of the Gaim team)
17 * Copyright 2002-2004 Wilmer van der Gaast <lintux@lintux.cx>
18 */
19
20/*
21  This program is free software; you can redistribute it and/or modify
22  it under the terms of the GNU General Public License as published by
23  the Free Software Foundation; either version 2 of the License, or
24  (at your option) any later version.
25
26  This program is distributed in the hope that it will be useful,
27  but WITHOUT ANY WARRANTY; without even the implied warranty of
28  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29  GNU General Public License for more details.
30
31  You should have received a copy of the GNU General Public License with
32  the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL;
33  if not, write to the Free Software Foundation, Inc., 59 Temple Place,
34  Suite 330, Boston, MA  02111-1307  USA
35*/
36
37#ifndef _NOGAIM_H
38#define _NOGAIM_H
39
40#include "bitlbee.h"
41#include "proxy.h"
42#include "md5.h"
43#include "sha.h"
44
45
46#define BUF_LEN MSG_LEN
47#define BUF_LONG ( BUF_LEN * 2 )
48#define MSG_LEN 2048
49#define BUF_LEN MSG_LEN
50
51#define SELF_ALIAS_LEN 400
52#define BUDDY_ALIAS_MAXLEN 388   /* because MSN names can be 387 characters */
53
54#define PERMIT_ALL      1
55#define PERMIT_NONE     2
56#define PERMIT_SOME     3
57#define DENY_SOME       4
58
59#define WEBSITE "http://www.bitlee.org/"
60#define IM_FLAG_AWAY 0x0020
61#define OPT_CONN_HTML 0x00000001
62#define OPT_LOGGED_IN 0x00010000
63#define GAIM_AWAY_CUSTOM "Custom"
64
65#define GAIM_LOGO       0
66#define GAIM_ERROR      1
67#define GAIM_WARNING    2
68#define GAIM_INFO       3
69
70/* ok. now the fun begins. first we create a connection structure */
71struct gaim_connection {
72        /* we need to do either oscar or TOC */
73        /* we make this as an int in case if we want to add more protocols later */
74        struct prpl *prpl;
75        guint32 flags;
76       
77        /* all connections need an input watcher */
78        int inpa;
79       
80        /* buddy list stuff. there is still a global groups for the buddy list, but
81         * we need to maintain our own set of buddies, and our own permit/deny lists */
82        GSList *permit;
83        GSList *deny;
84        int permdeny;
85       
86        /* all connections need a list of chats, even if they don't have chat */
87        GSList *buddy_chats;
88       
89        /* each connection then can have its own protocol-specific data */
90        void *proto_data;
91       
92        struct aim_user *user;
93       
94        char username[64];
95        char displayname[128];
96        char password[32];
97        guint keepalive;
98        /* stuff needed for per-connection idle times */
99        guint idle_timer;
100        time_t login_time;
101        time_t lastsent;
102        int is_idle;
103       
104        char *away;
105        int is_auto_away;
106       
107        int evil;
108        gboolean wants_to_die; /* defaults to FALSE */
109       
110        /* BitlBee */
111        irc_t *irc;
112        int lstitems;  /* added for msnP8 */
113       
114        struct conversation *conversations;
115};
116
117/* struct buddy_chat went away and got merged with this. */
118struct conversation {
119        struct gaim_connection *gc;
120
121        /* stuff used just for chat */
122        GList *in_room;
123        GList *ignored;
124        int id;
125       
126        /* BitlBee */
127        struct conversation *next;
128        char *channel;
129        char *title;
130        char joined;
131        void *data;
132};
133
134struct buddy {
135        char name[80];
136        char show[BUDDY_ALIAS_MAXLEN];
137        int present;
138        int evil;
139        time_t signon;
140        time_t idle;
141        int uc;
142        guint caps; /* woohoo! */
143        void *proto_data; /* what a hack */
144        struct gaim_connection *gc; /* the connection it belongs to */
145};
146
147struct aim_user {
148        char username[64];
149        char alias[SELF_ALIAS_LEN]; 
150        char password[32];
151        char user_info[2048];
152        int options;
[7b23afd]153        struct prpl *prpl;
[b7d3cc34]154        /* prpls can use this to save information about the user,
155         * like which server to connect to, etc */
156        char proto_opt[7][256];
157
158        struct gaim_connection *gc;
159        irc_t *irc;
160};
161
162struct prpl {
163        int options;
[7b23afd]164        const char *name;
[b7d3cc34]165
166        /* for ICQ and Yahoo, who have off/on per-conversation options */
167        /* char *checkbox; this should be per-connection */
168
169        GList *(* away_states)(struct gaim_connection *gc);
170        GList *(* actions)();
171        void   (* do_action)(struct gaim_connection *, char *);
172        /* user_opts returns a GList* of g_malloc'd struct proto_user_opts */
173        GList *(* user_opts)();
174        GList *(* chat_info)(struct gaim_connection *);
175
176        /* all the server-related functions */
177
178        /* a lot of these (like get_dir) are protocol-dependent and should be removed. ones like
179         * set_dir (which is also protocol-dependent) can stay though because there's a dialog
180         * (i.e. the prpl says you can set your dir info, the ui shows a dialog and needs to call
181         * set_dir in order to set it) */
182
183        void (* login)          (struct aim_user *);
184        void (* close)          (struct gaim_connection *);
185        int  (* send_im)        (struct gaim_connection *, char *who, char *message, int len, int away);
186        int  (* send_typing)    (struct gaim_connection *, char *who, int typing);
187        void (* set_info)       (struct gaim_connection *, char *info);
188        void (* get_info)       (struct gaim_connection *, char *who);
189        void (* set_away)       (struct gaim_connection *, char *state, char *message);
190        void (* get_away)       (struct gaim_connection *, char *who);
191        void (* set_idle)       (struct gaim_connection *, int idletime);
192        void (* add_buddy)      (struct gaim_connection *, char *name);
193        void (* remove_buddy)   (struct gaim_connection *, char *name, char *group);
194        void (* add_permit)     (struct gaim_connection *, char *name);
195        void (* add_deny)       (struct gaim_connection *, char *name);
196        void (* rem_permit)     (struct gaim_connection *, char *name);
197        void (* rem_deny)       (struct gaim_connection *, char *name);
198        void (* set_permit_deny)(struct gaim_connection *);
199        void (* join_chat)      (struct gaim_connection *, GList *data);
200        void (* chat_invite)    (struct gaim_connection *, int id, char *who, char *message);
201        void (* chat_leave)     (struct gaim_connection *, int id);
202        void (* chat_whisper)   (struct gaim_connection *, int id, char *who, char *message);
203        int  (* chat_send)      (struct gaim_connection *, int id, char *message);
204        int  (* chat_open)      (struct gaim_connection *, char *who);
205        void (* keepalive)      (struct gaim_connection *);
206
207        /* get "chat buddy" info and away message */
208        void (* get_cb_info)    (struct gaim_connection *, int, char *who);
209        void (* get_cb_away)    (struct gaim_connection *, int, char *who);
210
211        /* save/store buddy's alias on server list/roster */
212        void (* alias_buddy)    (struct gaim_connection *, char *who);
213
214        /* change a buddy's group on a server list/roster */
215        void (* group_buddy)    (struct gaim_connection *, char *who, char *old_group, char *new_group);
216
217        void (* buddy_free)     (struct buddy *);
218
219        char *(* get_status_string) (struct gaim_connection *gc, int stat);
[9cb9868]220
221        int (* cmp_buddynames) (const char *who1, const char *who2);
[b7d3cc34]222};
223
224#define UC_UNAVAILABLE  1
225
226/* JABBER */
227#define UC_AWAY (0x02 | UC_UNAVAILABLE)
228#define UC_CHAT  0x04
229#define UC_XA   (0x08 | UC_UNAVAILABLE)
230#define UC_DND  (0x10 | UC_UNAVAILABLE)
231
232G_MODULE_EXPORT GSList *get_connections();
[7b23afd]233G_MODULE_EXPORT struct prpl *find_protocol(const char *name);
234G_MODULE_EXPORT void register_protocol(struct prpl *);
[b7d3cc34]235
236/* nogaim.c */
237int serv_send_im(irc_t *irc, user_t *u, char *msg, int flags);
238int serv_send_chat(irc_t *irc, struct gaim_connection *gc, int id, char *msg );
239
240G_MODULE_EXPORT signed int do_iconv( char *from_cs, char *to_cs, char *src, char *dst, size_t size, size_t maxbuf );
241char *set_eval_charset( irc_t *irc, set_t *set, char *value );
242
243void nogaim_init();
244int proto_away( struct gaim_connection *gc, char *away );
245char *set_eval_away_devoice( irc_t *irc, set_t *set, char *value );
246
247gboolean auto_reconnect( gpointer data );
248void cancel_auto_reconnect( struct account *a );
249
250/* multi.c */
251G_MODULE_EXPORT struct gaim_connection *new_gaim_conn( struct aim_user *user );
252G_MODULE_EXPORT void destroy_gaim_conn( struct gaim_connection *gc );
253G_MODULE_EXPORT void set_login_progress( struct gaim_connection *gc, int step, char *msg );
254G_MODULE_EXPORT void hide_login_progress( struct gaim_connection *gc, char *msg );
255G_MODULE_EXPORT void hide_login_progress_error( struct gaim_connection *gc, char *msg );
256G_MODULE_EXPORT void serv_got_crap( struct gaim_connection *gc, char *format, ... );
257G_MODULE_EXPORT void account_online( struct gaim_connection *gc );
258G_MODULE_EXPORT void account_offline( struct gaim_connection *gc );
259G_MODULE_EXPORT void signoff( struct gaim_connection *gc );
260
261/* dialogs.c */
262G_MODULE_EXPORT void do_error_dialog( struct gaim_connection *gc, char *msg, char *title );
263G_MODULE_EXPORT void do_ask_dialog( struct gaim_connection *gc, char *msg, void *data, void *doit, void *dont );
264
265/* list.c */
266G_MODULE_EXPORT int bud_list_cache_exists( struct gaim_connection *gc );
267G_MODULE_EXPORT void do_import( struct gaim_connection *gc, void *null );
268G_MODULE_EXPORT void add_buddy( struct gaim_connection *gc, char *group, char *handle, char *realname );
269G_MODULE_EXPORT struct buddy *find_buddy( struct gaim_connection *gc, char *handle );
270G_MODULE_EXPORT void do_export( struct gaim_connection *gc );
271G_MODULE_EXPORT void signoff_blocked( struct gaim_connection *gc );
272
273G_MODULE_EXPORT void serv_buddy_rename( struct gaim_connection *gc, char *handle, char *realname );
274
275/* buddy_chat.c */
276G_MODULE_EXPORT void add_chat_buddy( struct conversation *b, char *handle );
277G_MODULE_EXPORT void remove_chat_buddy( struct conversation *b, char *handle, char *reason );
278
279/* prpl.c */
280G_MODULE_EXPORT void show_got_added( struct gaim_connection *gc, char *id, char *handle, const char *realname, const char *msg );
281
282/* server.c */                   
283G_MODULE_EXPORT void serv_got_update( struct gaim_connection *gc, char *handle, int loggedin, int evil, time_t signon, time_t idle, int type, guint caps );
284G_MODULE_EXPORT void serv_got_im( struct gaim_connection *gc, char *handle, char *msg, guint32 flags, time_t mtime, gint len );
[e7f46c5]285G_MODULE_EXPORT void serv_got_typing( struct gaim_connection *gc, char *handle, int timeout, int type );
[b7d3cc34]286G_MODULE_EXPORT void serv_got_chat_invite( struct gaim_connection *gc, char *handle, char *who, char *msg, GList *data );
287G_MODULE_EXPORT struct conversation *serv_got_joined_chat( struct gaim_connection *gc, int id, char *handle );
288G_MODULE_EXPORT void serv_got_chat_in( struct gaim_connection *gc, int id, char *who, int whisper, char *msg, time_t mtime );
289G_MODULE_EXPORT void serv_got_chat_left( struct gaim_connection *gc, int id );
290/* void serv_finish_login( struct gaim_connection *gc ); */
291
292/* util.c */
293G_MODULE_EXPORT char *utf8_to_str( const char *in );
294G_MODULE_EXPORT char *str_to_utf8( const char *in );
295G_MODULE_EXPORT void strip_linefeed( gchar *text );
296G_MODULE_EXPORT char *add_cr( char *text );
297G_MODULE_EXPORT char *tobase64( const char *text );
298G_MODULE_EXPORT char *normalize( const char *s );
299G_MODULE_EXPORT time_t get_time( int year, int month, int day, int hour, int min, int sec );
300G_MODULE_EXPORT void strip_html( char *msg );
301G_MODULE_EXPORT char * escape_html(const char *html);
302G_MODULE_EXPORT void info_string_append(GString *str, char *newline, char *name, char *value);
303
304/* prefs.c */
305G_MODULE_EXPORT void build_block_list();
306G_MODULE_EXPORT void build_allow_list();
307
308struct conversation *conv_findchannel( char *channel );
309
310
311#endif
Note: See TracBrowser for help on using the repository browser.