tls: add Client Key Exchange message
[siplcs.git] / src / api / sipe-core.h
blob2203f2785d1dc0d185fe9b733416a11075947b06
1 /**
2 * @file sipe-core.h
4 * pidgin-sipe
6 * Copyright (C) 2010-11 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 /**
25 * Backend -> SIPE Core API - functions called by backend code
27 ***************** !!! IMPORTANT NOTE FOR BACKEND CODERS !!! *****************
29 * The SIPE core assumes atomicity and is *NOT* thread-safe.
31 * It *does not* protect any of its data structures or code paths with locks!
33 * In no circumstances it must be interrupted by another thread calling
34 * sipe_core_xxx() while the first thread has entered the SIPE core through
35 * a sipe_core_xxx() function.
37 ***************** !!! IMPORTANT NOTE FOR BACKEND CODERS !!! *****************
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
44 /**
45 * Activity
46 * - core: maps this to OCS protocol values
47 * - backend: maps this to backend status values
49 typedef enum
51 SIPE_ACTIVITY_UNSET = 0,
52 SIPE_ACTIVITY_ONLINE,
53 SIPE_ACTIVITY_INACTIVE,
54 SIPE_ACTIVITY_BUSY,
55 SIPE_ACTIVITY_BUSYIDLE,
56 SIPE_ACTIVITY_DND,
57 SIPE_ACTIVITY_BRB,
58 SIPE_ACTIVITY_AWAY,
59 SIPE_ACTIVITY_LUNCH,
60 SIPE_ACTIVITY_OFFLINE,
61 SIPE_ACTIVITY_ON_PHONE,
62 SIPE_ACTIVITY_IN_CONF,
63 SIPE_ACTIVITY_IN_MEETING,
64 SIPE_ACTIVITY_OOF,
65 SIPE_ACTIVITY_URGENT_ONLY,
66 SIPE_ACTIVITY_NUM_TYPES
67 } sipe_activity;
69 /**
70 * Transport type
72 #define SIPE_TRANSPORT_AUTO 0
73 #define SIPE_TRANSPORT_TLS 1
74 #define SIPE_TRANSPORT_TCP 2
76 /**
77 * Transport connection (public part)
79 * The receiver in the backend fills "buffer". The backend has to zero
80 * terminate the buffer before calling the processing function in the core.
82 * The processing function in the core can remove content from the buffer.
83 * It has to update buffer_used accordingly.
86 struct sipe_transport_connection {
87 gpointer user_data;
88 gchar *buffer;
89 gsize buffer_used; /* 0 < buffer_used < buffer_length */
90 gsize buffer_length; /* read-only */
91 guint type; /* read-only */
92 guint client_port; /* read-only */
95 /**
96 * Opaque data type for chat session
98 struct sipe_chat_session;
101 * File transport (public part)
103 struct sipe_file_transfer {
104 struct sipe_backend_file_transfer *backend_private;
108 * Opaque data type for backend private data.
109 * The backend is responsible to allocate and free it.
111 struct sipe_backend_private;
114 * Flags
116 #define SIPE_CORE_FLAG_KRB5 0x00000001 /* user enabled Kerberos 5 */
117 #define SIPE_CORE_FLAG_SSO 0x00000002 /* user enabled Single-Sign On */
118 #define SIPE_CORE_FLAG_TLS_DSK 0x00000004 /* user enabled TLS-DSK */
120 #define SIPE_CORE_FLAG_IS(flag) \
121 ((sipe_public->flags & SIPE_CORE_FLAG_ ## flag) == SIPE_CORE_FLAG_ ## flag)
122 #define SIPE_CORE_FLAG_SET(flag) \
123 (sipe_public->flags |= SIPE_CORE_FLAG_ ## flag)
124 #define SIPE_CORE_FLAG_UNSET(flag) \
125 (sipe_public->flags &= ~SIPE_CORE_FLAG_ ## flag)
128 * Public part of the Sipe data structure
130 * This part contains the information needed by the core and the backend.
132 struct sipe_core_public {
134 * This points to the private data for the backend.
135 * The backend is responsible to allocate and free it.
137 struct sipe_backend_private *backend_private;
139 /* flags (see above) */
140 guint32 flags;
142 /* user information */
143 gchar *sip_name;
144 gchar *sip_domain;
146 /* server information */
147 guint keepalive_timeout;
151 * Initialize & destroy functions for the SIPE core
152 * Should be called on loading and unloading of the plugin.
154 void sipe_core_init(const char *locale_dir);
155 void sipe_core_destroy(void);
157 /** Utility functions exported by the core to backends ***********************/
158 gboolean sipe_strequal(const gchar *left, const gchar *right);
160 GSList *
161 sipe_utils_nameval_add(GSList *list, const gchar *name, const gchar *value);
163 const gchar *
164 sipe_utils_nameval_find(const GSList *list, const gchar *name);
166 const gchar *
167 sipe_utils_nameval_find_instance(const GSList *list, const gchar *name, int which);
169 void
170 sipe_utils_nameval_free(GSList *list);
172 gboolean sipe_utils_is_avconf_uri(const gchar *uri);
174 /*****************************************************************************/
177 * Other functions (need to be sorted once structure becomes clear.
180 /* Get translated about string. Must be g_free'd(). */
181 gchar *sipe_core_about(void);
183 /* Execute a scheduled action */
184 void sipe_core_schedule_execute(gpointer data);
186 /* menu actions */
187 void sipe_core_update_calendar(struct sipe_core_public *sipe_public);
188 void sipe_core_reset_status(struct sipe_core_public *sipe_public);
190 /* buddy actions */
192 * Get status text for buddy.
194 * @param sipe_public Sipe core public data structure.
195 * @param name backend-specific buddy name.
196 * @param activity activity value for buddy
197 * @param status_text backend-specific buddy status text for activity.
199 * @return HTML status text for the buddy or NULL. Must be g_free()'d.
201 gchar *sipe_core_buddy_status(struct sipe_core_public *sipe_public,
202 const gchar *name,
203 const sipe_activity activity,
204 const gchar *status_text);
206 void sipe_core_buddy_got_status(struct sipe_core_public *sipe_public,
207 const gchar* uri,
208 const gchar *status_id);
211 * Return a list with buddy information label/text pairs
213 * @param sipe_public Sipe core public data structure.
214 * @param name backend-specific buddy name.
215 * @param status_text backend-specific buddy status text for ID.
216 * @param is_online backend considers buddy to be online.
218 * @return GSList of struct sipe_buddy_info or NULL. Must be freed by caller.
220 struct sipe_buddy_info { /* must be g_free()'d */
221 const gchar *label;
222 gchar *text; /* must be g_free()'d */
224 GSList *sipe_core_buddy_info(struct sipe_core_public *sipe_public,
225 const gchar *name,
226 const gchar *status_name,
227 gboolean is_online);
229 void sipe_core_contact_allow_deny(struct sipe_core_public *sipe_public,
230 const gchar *who, gboolean allow);
231 void sipe_core_group_set_user(struct sipe_core_public *sipe_public,
232 const gchar * who);
235 * Setup core data
237 struct sipe_core_public *sipe_core_allocate(const gchar *signin_name,
238 const gchar *login_domain,
239 const gchar *login_account,
240 const gchar *password,
241 const gchar *email,
242 const gchar *email_url,
243 const gchar **errmsg);
244 void sipe_core_deallocate(struct sipe_core_public *sipe_public);
247 * Connect to SIP server
249 void sipe_core_transport_sip_connect(struct sipe_core_public *sipe_public,
250 guint transport,
251 const gchar *server,
252 const gchar *port);
253 void sipe_core_transport_sip_keepalive(struct sipe_core_public *sipe_public);
256 * Invite to chat
258 void sipe_core_chat_invite(struct sipe_core_public *sipe_public,
259 struct sipe_chat_session *chat_session,
260 const char *name);
263 * Rejoin a chat after connection re-establishment
265 void sipe_core_chat_rejoin(struct sipe_core_public *sipe_public,
266 struct sipe_chat_session *chat_session);
269 * Leave a chat
271 void sipe_core_chat_leave(struct sipe_core_public *sipe_public,
272 struct sipe_chat_session *chat_session);
275 * Send message to chat
277 void sipe_core_chat_send(struct sipe_core_public *sipe_public,
278 struct sipe_chat_session *chat_session,
279 const char *what);
282 * Check chat lock status
284 typedef enum {
285 SIPE_CHAT_LOCK_STATUS_NOT_ALLOWED = 0,
286 SIPE_CHAT_LOCK_STATUS_UNLOCKED,
287 SIPE_CHAT_LOCK_STATUS_LOCKED
288 } sipe_chat_lock_status;
289 sipe_chat_lock_status sipe_core_chat_lock_status(struct sipe_core_public *sipe_public,
290 struct sipe_chat_session *chat_session);
293 * Lock chat
295 void sipe_core_chat_modify_lock(struct sipe_core_public *sipe_public,
296 struct sipe_chat_session *chat_session,
297 const gboolean locked);
300 * Create new session with Focus URI
302 * @param sipe_public (in) SIPE core data.
303 * @param focus_uri (in) focus URI string
305 * @return new SIP session
307 struct sip_session *
308 sipe_core_conf_create(struct sipe_core_public *sipe_public,
309 const gchar *focus_uri);
311 /* media */
312 void sipe_core_media_initiate_call(struct sipe_core_public *sipe_public,
313 const char *participant,
314 gboolean with_video);
316 * Connects to a conference call specified by given chat session
318 * @param sipe_public (in) SIPE core data.
319 * @param chat_session (in) chat session structure
321 void sipe_core_media_connect_conference(struct sipe_core_public *sipe_public,
322 struct sipe_chat_session *chat_session);
325 * Checks whether there is a media call in progress
327 * @param sipe_public (in) SIPE core data.
329 * @return @c TRUE if media call is in progress
331 gboolean sipe_core_media_in_call(struct sipe_core_public *sipe_public);
333 /* file transfer */
334 struct sipe_file_transfer *sipe_core_ft_allocate(struct sipe_core_public *sipe_public);
335 void sipe_core_ft_deallocate(struct sipe_file_transfer *ft);
336 void sipe_core_ft_cancel(struct sipe_file_transfer *ft);
337 void sipe_core_ft_incoming_init(struct sipe_file_transfer *ft);
338 void sipe_core_ft_outgoing_init(struct sipe_file_transfer *ft,
339 const gchar *filename, gsize size,
340 const gchar *who);
342 void sipe_core_tftp_incoming_start(struct sipe_file_transfer *ft,
343 gsize total_size);
344 gboolean sipe_core_tftp_incoming_stop(struct sipe_file_transfer *ft);
345 void sipe_core_tftp_outgoing_start(struct sipe_file_transfer *ft,
346 gsize total_size);
347 gboolean sipe_core_tftp_outgoing_stop(struct sipe_file_transfer *ft);
348 gssize sipe_core_tftp_read(struct sipe_file_transfer *ft, guchar **buffer,
349 gsize bytes_remaining, gsize bytes_available);
350 gssize sipe_core_tftp_write(struct sipe_file_transfer *ft, const guchar *buffer,
351 gsize size);
352 /* group chat */
353 gboolean sipe_core_groupchat_query_rooms(struct sipe_core_public *sipe_public);
354 void sipe_core_groupchat_join(struct sipe_core_public *sipe_public,
355 const gchar *uri);
357 /* IM */
358 void sipe_core_im_send(struct sipe_core_public *sipe_public,
359 const gchar *who,
360 const gchar *what);
362 /* user */
363 void sipe_core_user_feedback_typing(struct sipe_core_public *sipe_public,
364 const gchar *to);
366 void sipe_core_user_ask_cb(gpointer key, gboolean accepted);
368 /* groups */
369 void sipe_core_group_rename(struct sipe_core_public *sipe_public,
370 const gchar *old_name,
371 const gchar *new_name);
373 void sipe_core_group_remove(struct sipe_core_public *sipe_public,
374 const gchar *name);
376 /* buddies */
377 void sipe_core_buddy_group(struct sipe_core_public *sipe_public,
378 const gchar *who,
379 const gchar *old_group_name,
380 const gchar *new_group_name);
382 #ifdef __cplusplus
384 #endif
387 Local Variables:
388 mode: c
389 c-file-style: "bsd"
390 indent-tabs-mode: t
391 tab-width: 8
392 End: