core cleanup: the big status/activity revamp
[siplcs.git] / src / api / sipe-backend.h
blob4b81f16fd4efe5b030078e72849635ccf2a1aaa4
1 /**
2 * @file sipe-backend.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 * SIPE Core -> Backend API - functions called by SIPE core 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 possible that a sipe_core_xxx() function can
34 * be entered through another thread while the first thread has entered the
35 * backend specific code through a sipe_backend_xxx() function.
37 ***************** !!! IMPORTANT NOTE FOR BACKEND CODERS !!! *****************
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
44 /* Forward declarations */
45 struct sipe_backend_chat_session;
46 struct sipe_chat_session;
47 struct sipe_core_public;
48 struct sipe_transport_connection;
49 struct sipe_file_transfer;
50 struct sipe_media_call;
51 struct sipe_media;
53 /** MISC. STUFF **************************************************************/
54 /**
55 * Get the version of the backend suitable for e.g. UserAgent
57 * @return backend version string. Will be g_free()'d.by the core.
59 gchar *sipe_backend_version(void);
61 /** DEBUGGING ****************************************************************/
63 typedef enum {
64 SIPE_DEBUG_LEVEL_INFO,
65 SIPE_DEBUG_LEVEL_WARNING,
66 SIPE_DEBUG_LEVEL_ERROR,
67 SIPE_DEBUG_LEVEL_FATAL,
68 } sipe_debug_level;
70 /**
71 * Output debug information without formatting
73 * Shouldn't be used directly. Instead use SIPE_DEBUG_xxx() macros
75 * @param level debug level
76 * @param msg debug message "\n" will be automatically appended.
78 void sipe_backend_debug_literal(sipe_debug_level level,
79 const gchar *msg);
81 /**
82 * Output debug information
84 * Shouldn't be used directly. Instead use SIPE_DEBUG_xxx() macros
86 * @param level debug level
87 * @param format format string. "\n" will be automatically appended.
89 void sipe_backend_debug(sipe_debug_level level,
90 const gchar *format,
91 ...) G_GNUC_PRINTF(2, 3);
93 /* Convenience macros */
94 #define SIPE_DEBUG_INFO(fmt, ...) sipe_backend_debug(SIPE_DEBUG_LEVEL_INFO, fmt, __VA_ARGS__)
95 #define SIPE_DEBUG_INFO_NOFORMAT(msg) sipe_backend_debug_literal(SIPE_DEBUG_LEVEL_INFO, msg)
96 #define SIPE_DEBUG_WARNING(fmt, ...) sipe_backend_debug(SIPE_DEBUG_LEVEL_WARNING, fmt, __VA_ARGS__)
97 #define SIPE_DEBUG_WARNING_NOFORMAT(msg) sipe_backend_debug_literal(SIPE_DEBUG_LEVEL_WARNING, msg)
98 #define SIPE_DEBUG_ERROR(fmt, ...) sipe_backend_debug(SIPE_DEBUG_LEVEL_ERROR, fmt, __VA_ARGS__)
99 #define SIPE_DEBUG_ERROR_NOFORMAT(msg) sipe_backend_debug_literal(SIPE_DEBUG_LEVEL_ERROR, msg)
100 #define SIPE_DEBUG_FATAL(fmt, ...) sipe_backend_debug(SIPE_DEBUG_LEVEL_FATAL, fmt, __VA_ARGS__)
101 #define SIPE_DEBUG_FATAL_NOFORMAT(msg) sipe_backend_debug_literal(SIPE_DEBUG_LEVEL_FATAL, msg)
104 * Check backend debugging status
106 * @return TRUE if debugging is enabled
108 gboolean sipe_backend_debug_enabled(void);
110 /** CHAT *********************************************************************/
112 void sipe_backend_chat_session_destroy(struct sipe_backend_chat_session *session);
113 void sipe_backend_chat_add(struct sipe_backend_chat_session *backend_session,
114 const gchar *uri,
115 gboolean is_new);
116 void sipe_backend_chat_close(struct sipe_backend_chat_session *backend_session);
119 * Joined a new chat
121 struct sipe_backend_chat_session *sipe_backend_chat_create(struct sipe_core_public *sipe_public,
122 struct sipe_chat_session *session,
123 const gchar *title,
124 const gchar *nick);
125 gboolean sipe_backend_chat_find(struct sipe_backend_chat_session *backend_session,
126 const gchar *uri);
127 gboolean sipe_backend_chat_is_operator(struct sipe_backend_chat_session *backend_session,
128 const gchar *uri);
129 void sipe_backend_chat_message(struct sipe_core_public *sipe_public,
130 struct sipe_backend_chat_session *backend_session,
131 const gchar *from,
132 const gchar *html);
133 void sipe_backend_chat_operator(struct sipe_backend_chat_session *backend_session,
134 const gchar *uri);
137 * Rejoin an existing chat window after connection re-establishment
139 void sipe_backend_chat_rejoin(struct sipe_core_public *sipe_public,
140 struct sipe_backend_chat_session *backend_session,
141 const gchar *nick,
142 const gchar *title);
145 * Core has completed connection re-establishment.
146 * Should call sipe_core_chat_rejoin() for existing chats.
148 void sipe_backend_chat_rejoin_all(struct sipe_core_public *sipe_public);
149 void sipe_backend_chat_remove(struct sipe_backend_chat_session *backend_session,
150 const gchar *uri);
153 * Move chat window to the front. Will be called when
154 * a user tries to join an already joined chat again.
156 void sipe_backend_chat_show(struct sipe_backend_chat_session *backend_session);
157 void sipe_backend_chat_topic(struct sipe_backend_chat_session *backend_session,
158 const gchar *topic);
160 /** CONNECTION ***************************************************************/
162 void sipe_backend_connection_completed(struct sipe_core_public *sipe_public);
164 typedef enum {
165 SIPE_CONNECTION_ERROR_NETWORK = 0,
166 SIPE_CONNECTION_ERROR_INVALID_USERNAME,
167 SIPE_CONNECTION_ERROR_INVALID_SETTINGS,
168 SIPE_CONNECTION_ERROR_AUTHENTICATION_FAILED,
169 SIPE_CONNECTION_ERROR_AUTHENTICATION_IMPOSSIBLE,
170 SIPE_CONNECTION_ERROR_LAST
171 } sipe_connection_error;
172 void sipe_backend_connection_error(struct sipe_core_public *sipe_public,
173 sipe_connection_error error,
174 const gchar *msg);
176 gboolean sipe_backend_connection_is_disconnecting(struct sipe_core_public *sipe_public);
177 gboolean sipe_backend_connection_is_valid(struct sipe_core_public *sipe_public);
179 /** DNS QUERY ****************************************************************/
181 typedef void (*sipe_dns_resolved_cb)(gpointer data, const gchar *hostname, guint port);
183 struct sipe_dns_query *sipe_backend_dns_query_srv(const gchar *protocol,
184 const gchar *transport,
185 const gchar *domain,
186 sipe_dns_resolved_cb callback,
187 gpointer data);
189 struct sipe_dns_query *sipe_backend_dns_query_a(const gchar *hostname,
190 int port,
191 sipe_dns_resolved_cb callback,
192 gpointer data);
194 void sipe_backend_dns_query_cancel(struct sipe_dns_query *query);
196 /** FILE TRANSFER ************************************************************/
198 struct sipe_backend_fd;
200 void sipe_backend_ft_error(struct sipe_file_transfer *ft,
201 const gchar *errmsg);
202 const gchar *sipe_backend_ft_get_error(struct sipe_file_transfer *ft);
203 void sipe_backend_ft_deallocate(struct sipe_file_transfer *ft);
206 * Try to read up to @c size bytes from file transfer connection
208 * @param ft file transfer data.
209 * @param data buffer to read data into.
210 * @param size buffer size in bytes.
212 * @return number of bytes read or negative on failure.
213 * EAGAIN should return 0 bytes read.
215 gssize sipe_backend_ft_read(struct sipe_file_transfer *ft,
216 guchar *data,
217 gsize size);
220 * Try to write up to @c size bytes to file transfer connection
222 * @param ft file transfer data.
223 * @param data data to write
224 * @param size buffer size in bytes.
226 * @return number of bytes read or negative on failure.
227 * EAGAIN should return 0 bytes written.
229 gssize sipe_backend_ft_write(struct sipe_file_transfer *ft,
230 const guchar *data,
231 gsize size);
234 void sipe_backend_ft_cancel_local(struct sipe_file_transfer *ft);
235 void sipe_backend_ft_cancel_remote(struct sipe_file_transfer *ft);
237 void sipe_backend_ft_incoming(struct sipe_core_public *sipe_public,
238 struct sipe_file_transfer *ft,
239 const gchar *who,
240 const gchar *file_name,
241 gsize file_size);
243 * Begins file transfer with remote peer.
245 * You can provide either opened file descriptor to use for read/write operations
246 * or ip address and port where the backend should connect.
248 * @param ft file transfer data
249 * @param fd opaque file descriptor pointer or NULL if ip and port are used
250 * @param ip ip address to connect of NULL when file descriptor is used
251 * @param port port to connect or 0 when file descriptor is used
253 void sipe_backend_ft_start(struct sipe_file_transfer *ft,
254 struct sipe_backend_fd *fd,
255 const char* ip, unsigned port);
258 * Check whether file transfer is incoming or outgoing
260 * @param ft file transfer data
261 * @return @c TRUE if @c ft is incoming, otherwise @c FALSE
263 gboolean sipe_backend_ft_is_incoming(struct sipe_file_transfer *ft);
265 /** GROUP CHAT ***************************************************************/
267 #define SIPE_GROUPCHAT_ROOM_FILEPOST 0x00000001
268 #define SIPE_GROUPCHAT_ROOM_INVITE 0x00000002
269 #define SIPE_GROUPCHAT_ROOM_LOGGED 0x00000004
270 #define SIPE_GROUPCHAT_ROOM_PRIVATE 0x00000008
273 * Add a room found through room query
275 * @param uri room URI
276 * @param name human readable name for room
277 * @param description room description
278 * @param users number of users in the room
279 * @param flags SIPE_GROUPCHAT_ROOM_* flags
281 void sipe_backend_groupchat_room_add(struct sipe_core_public *sipe_public,
282 const gchar *uri,
283 const gchar *name,
284 const gchar *description,
285 guint users,
286 guint32 flags);
289 * Terminate room query
291 void sipe_backend_groupchat_room_terminate(struct sipe_core_public *sipe_public);
293 /** IM ***********************************************************************/
295 void sipe_backend_im_message(struct sipe_core_public *sipe_public,
296 const gchar *from,
297 const gchar *html);
298 void sipe_backend_im_topic(struct sipe_core_public *sipe_public,
299 const gchar *with,
300 const gchar *topic);
302 /** MARKUP *******************************************************************/
304 gchar *sipe_backend_markup_css_property(const gchar *style,
305 const gchar *option);
306 gchar *sipe_backend_markup_strip_html(const gchar *html);
308 /** MEDIA ********************************************************************/
310 typedef enum {
311 SIPE_ICE_NO_ICE,
312 SIPE_ICE_DRAFT_6,
313 SIPE_ICE_RFC_5245
314 } SipeIceVersion;
316 typedef enum {
317 SIPE_CANDIDATE_TYPE_ANY,
318 SIPE_CANDIDATE_TYPE_HOST,
319 SIPE_CANDIDATE_TYPE_RELAY,
320 SIPE_CANDIDATE_TYPE_SRFLX,
321 SIPE_CANDIDATE_TYPE_PRFLX
322 } SipeCandidateType;
324 typedef enum {
325 SIPE_COMPONENT_NONE = 0,
326 SIPE_COMPONENT_RTP = 1,
327 SIPE_COMPONENT_RTCP = 2
328 } SipeComponentType;
330 typedef enum {
331 SIPE_MEDIA_AUDIO,
332 SIPE_MEDIA_VIDEO
333 } SipeMediaType;
335 typedef enum {
336 SIPE_NETWORK_PROTOCOL_TCP_ACTIVE,
337 SIPE_NETWORK_PROTOCOL_TCP_PASSIVE,
338 SIPE_NETWORK_PROTOCOL_UDP
339 } SipeNetworkProtocol;
341 struct sipe_media_call;
342 struct sipe_backend_media;
343 struct sipe_backend_codec;
344 struct sipe_backend_candidate;
345 struct sipe_backend_stream;
346 struct sipe_backend_media_relays;
348 struct sipe_media_call {
349 struct sipe_backend_media *backend_private;
351 void (*candidates_prepared_cb)(struct sipe_media_call *,
352 struct sipe_backend_stream *);
353 void (*media_end_cb)(struct sipe_media_call *);
354 void (*call_accept_cb)(struct sipe_media_call *, gboolean local);
355 void (*call_reject_cb)(struct sipe_media_call *, gboolean local);
356 void (*call_hold_cb) (struct sipe_media_call *, gboolean local,
357 gboolean state);
358 void (*call_hangup_cb)(struct sipe_media_call *, gboolean local);
359 void (*error_cb)(struct sipe_media_call *, gchar *message);
362 struct sipe_media_relay {
363 gchar *hostname;
364 guint udp_port;
365 guint tcp_port;
366 struct sipe_dns_query *dns_query;
369 /* Media handling */
370 struct sipe_backend_media *sipe_backend_media_new(struct sipe_core_public *sipe_public,
371 struct sipe_media_call *call,
372 const gchar *participant,
373 gboolean initiator);
374 void sipe_backend_media_free(struct sipe_backend_media *media);
376 void sipe_backend_media_set_cname(struct sipe_backend_media *media, gchar *cname);
378 struct sipe_backend_media_relays * sipe_backend_media_relays_convert(GSList *media_relays,
379 gchar *username,
380 gchar *password);
381 void sipe_backend_media_relays_free(struct sipe_backend_media_relays *media_relays);
383 struct sipe_backend_stream *sipe_backend_media_add_stream(struct sipe_backend_media *media,
384 const gchar *id,
385 const gchar *participant,
386 SipeMediaType type,
387 SipeIceVersion ice_version,
388 gboolean initiator,
389 struct sipe_backend_media_relays *media_relays);
390 void sipe_backend_media_remove_stream(struct sipe_backend_media *media,
391 struct sipe_backend_stream *stream);
392 GSList *sipe_backend_media_get_streams(struct sipe_backend_media *media);
393 struct sipe_backend_stream *sipe_backend_media_get_stream_by_id(struct sipe_backend_media *media,
394 const gchar *id);
395 void sipe_backend_media_add_remote_candidates(struct sipe_backend_media *media,
396 struct sipe_backend_stream *stream,
397 GList *candidates);
398 gboolean sipe_backend_media_is_initiator(struct sipe_backend_media *media,
399 struct sipe_backend_stream *stream);
400 gboolean sipe_backend_media_accepted(struct sipe_backend_media *media);
401 gboolean sipe_backend_candidates_prepared(struct sipe_backend_media *media);
402 GList *sipe_backend_media_get_active_local_candidates(struct sipe_backend_media *media,
403 struct sipe_backend_stream *stream);
404 GList *sipe_backend_media_get_active_remote_candidates(struct sipe_backend_media *media,
405 struct sipe_backend_stream *stream);
407 /* Stream handling */
408 gchar *sipe_backend_stream_get_id(struct sipe_backend_stream *stream);
409 SipeMediaType sipe_backend_stream_get_type(struct sipe_backend_stream *stream);
410 void sipe_backend_stream_hold(struct sipe_backend_media *media,
411 struct sipe_backend_stream *stream,
412 gboolean local);
413 void sipe_backend_stream_unhold(struct sipe_backend_media *media,
414 struct sipe_backend_stream *stream,
415 gboolean local);
416 gboolean sipe_backend_stream_is_held(struct sipe_backend_stream *stream);
418 /* Codec handling */
419 struct sipe_backend_codec *sipe_backend_codec_new(int id,
420 const char *name,
421 SipeMediaType type, guint clock_rate);
422 void sipe_backend_codec_free(struct sipe_backend_codec *codec);
423 int sipe_backend_codec_get_id(struct sipe_backend_codec *codec);
425 * @return codec name. Will be g_free'd() by the core.
427 gchar *sipe_backend_codec_get_name(struct sipe_backend_codec *codec);
428 guint sipe_backend_codec_get_clock_rate(struct sipe_backend_codec *codec);
429 void sipe_backend_codec_add_optional_parameter(struct sipe_backend_codec *codec,
430 const gchar *name,
431 const gchar *value);
432 GList *sipe_backend_codec_get_optional_parameters(struct sipe_backend_codec *codec);
433 gboolean sipe_backend_set_remote_codecs(struct sipe_backend_media *media,
434 struct sipe_backend_stream *stream,
435 GList *codecs);
436 GList* sipe_backend_get_local_codecs(struct sipe_backend_media *media,
437 struct sipe_backend_stream *stream);
439 /* Candidate handling */
440 struct sipe_backend_candidate * sipe_backend_candidate_new(const gchar *foundation,
441 SipeComponentType component,
442 SipeCandidateType type,
443 SipeNetworkProtocol proto,
444 const gchar *ip, guint port,
445 const gchar *username,
446 const gchar *password);
447 void sipe_backend_candidate_free(struct sipe_backend_candidate *candidate);
449 * @return user name. Will be g_free'd() by the core.
451 gchar *sipe_backend_candidate_get_username(struct sipe_backend_candidate *candidate);
453 * @return password. Will be g_free'd() by the core.
455 gchar *sipe_backend_candidate_get_password(struct sipe_backend_candidate *candidate);
457 * @return foundation. Will be g_free'd() by the core.
459 gchar *sipe_backend_candidate_get_foundation(struct sipe_backend_candidate *candidate);
461 * @return IP address string. Will be g_free'd() by the core.
463 gchar *sipe_backend_candidate_get_ip(struct sipe_backend_candidate *candidate);
464 guint sipe_backend_candidate_get_port(struct sipe_backend_candidate *candidate);
466 * @return IP address string. Will be g_free'd() by the core.
468 gchar *sipe_backend_candidate_get_base_ip(struct sipe_backend_candidate *candidate);
469 guint sipe_backend_candidate_get_base_port(struct sipe_backend_candidate *candidate);
470 guint32 sipe_backend_candidate_get_priority(struct sipe_backend_candidate *candidate);
471 void sipe_backend_candidate_set_priority(struct sipe_backend_candidate *candidate, guint32 priority);
472 SipeComponentType sipe_backend_candidate_get_component_type(struct sipe_backend_candidate *candidate);
473 SipeCandidateType sipe_backend_candidate_get_type(struct sipe_backend_candidate *candidate);
474 SipeNetworkProtocol sipe_backend_candidate_get_protocol(struct sipe_backend_candidate *candidate);
475 GList* sipe_backend_get_local_candidates(struct sipe_backend_media *media,
476 struct sipe_backend_stream *stream);
477 void sipe_backend_media_accept(struct sipe_backend_media *media, gboolean local);
478 void sipe_backend_media_hangup(struct sipe_backend_media *media, gboolean local);
479 void sipe_backend_media_reject(struct sipe_backend_media *media, gboolean local);
481 /** NETWORK ******************************************************************/
483 const gchar *sipe_backend_network_ip_address(void);
485 struct sipe_backend_listendata;
487 typedef void (*sipe_listen_start_cb)(unsigned short port, gpointer data);
488 typedef void (*sipe_client_connected_cb)(struct sipe_backend_fd *fd, gpointer data);
490 struct sipe_backend_listendata *
491 sipe_backend_network_listen_range(unsigned short port_min,
492 unsigned short port_max,
493 sipe_listen_start_cb listen_cb,
494 sipe_client_connected_cb connect_cb,
495 gpointer data);
496 void sipe_backend_network_listen_cancel(struct sipe_backend_listendata *ldata);
498 gboolean sipe_backend_fd_is_valid(struct sipe_backend_fd *fd);
499 void sipe_backend_fd_free(struct sipe_backend_fd *fd);
501 /** NOTIFICATIONS *************************************************************/
503 void sipe_backend_notify_message_error(struct sipe_core_public *sipe_public,
504 struct sipe_backend_chat_session *backend_session,
505 const gchar *who,
506 const gchar *message);
507 void sipe_backend_notify_message_info(struct sipe_core_public *sipe_public,
508 struct sipe_backend_chat_session *backend_session,
509 const gchar *who,
510 const gchar *message);
513 * @param msg error message. Maybe @NULL
515 void sipe_backend_notify_error(struct sipe_core_public *sipe_public,
516 const gchar *title,
517 const gchar *msg);
519 /** SCHEDULE *****************************************************************/
521 gpointer sipe_backend_schedule_seconds(struct sipe_core_public *sipe_public,
522 guint timeout,
523 gpointer data);
524 gpointer sipe_backend_schedule_mseconds(struct sipe_core_public *sipe_public,
525 guint timeout,
526 gpointer data);
527 void sipe_backend_schedule_cancel(struct sipe_core_public *sipe_public,
528 gpointer data);
530 /** SEARCH *******************************************************************/
532 struct sipe_backend_search_results;
534 struct sipe_backend_search_results *sipe_backend_search_results_start(struct sipe_core_public *sipe_public);
535 void sipe_backend_search_results_add(struct sipe_core_public *sipe_public,
536 struct sipe_backend_search_results *results,
537 const gchar *uri,
538 const gchar *name,
539 const gchar *company,
540 const gchar *country,
541 const gchar *email);
542 void sipe_backend_search_results_finalize(struct sipe_core_public *sipe_public,
543 struct sipe_backend_search_results *results,
544 const gchar *description,
545 gboolean more);
547 /** SETTINGS *****************************************************************/
549 typedef enum {
550 SIPE_SETTING_EMAIL_URL = 0,
551 SIPE_SETTING_EMAIL_LOGIN,
552 SIPE_SETTING_EMAIL_PASSWORD,
553 SIPE_SETTING_GROUPCHAT_USER,
554 SIPE_SETTING_USER_AGENT,
555 SIPE_SETTING_LAST
556 } sipe_setting;
557 const gchar *sipe_backend_setting(struct sipe_core_public *sipe_public,
558 sipe_setting type);
560 /** STATUS *******************************************************************/
562 /* type == SIPE_ACTIVITY_xxx (see sipe-core.h) */
563 const gchar *sipe_backend_activity_to_token(guint type);
564 guint sipe_backend_token_to_activity(const gchar *token);
566 gboolean sipe_backend_status_and_note(struct sipe_core_public *sipe_public,
567 const gchar *status_id,
568 const gchar *message);
570 /** TRANSPORT ****************************************************************/
572 typedef void transport_connected_cb(struct sipe_transport_connection *conn);
573 typedef void transport_input_cb(struct sipe_transport_connection *conn);
574 typedef void transport_error_cb(struct sipe_transport_connection *conn,
575 const gchar *msg);
577 typedef struct {
578 guint type;
579 const gchar *server_name;
580 guint server_port;
581 gpointer user_data;
582 transport_connected_cb *connected;
583 transport_input_cb *input;
584 transport_error_cb *error;
585 } sipe_connect_setup;
586 struct sipe_transport_connection *sipe_backend_transport_connect(struct sipe_core_public *sipe_public,
587 const sipe_connect_setup *setup);
588 void sipe_backend_transport_disconnect(struct sipe_transport_connection *conn);
589 void sipe_backend_transport_message(struct sipe_transport_connection *conn,
590 const gchar *buffer);
591 void sipe_backend_transport_flush(struct sipe_transport_connection *conn);
593 /** USER *********************************************************************/
595 void sipe_backend_user_feedback_typing(struct sipe_core_public *sipe_public,
596 const gchar *from);
597 void sipe_backend_user_feedback_typing_stop(struct sipe_core_public *sipe_public,
598 const gchar *from);
601 * Present a query that is to be accepted or declined by the user
603 * @param sipe_public The handle representing the protocol instance
604 * @param message Text of the query to be shown to user
605 * @param accept_label Label to be displayed on UI control that accepts query
606 * @param decline_label Label to be displayed on UI control that declines query
607 * @param key Opaque handle uniquely identifying the query. Backend
608 * should store it for the case SIPE core requests the
609 * query to be closed prematurely.
611 void sipe_backend_user_ask(struct sipe_core_public *sipe_public,
612 const gchar *message,
613 const gchar *accept_label,
614 const gchar *decline_label,
615 gpointer key);
618 * Closes the pending user query
620 * @param key Opaque handle uniquely identifying the query.
622 void sipe_backend_user_close_ask(gpointer key);
624 /** BUDDIES ******************************************************************/
626 /* The list of properties a buddy can have */
627 typedef enum
629 SIPE_BUDDY_INFO_DISPLAY_NAME,
630 SIPE_BUDDY_INFO_JOB_TITLE,
631 SIPE_BUDDY_INFO_CITY,
632 SIPE_BUDDY_INFO_STATE,
633 SIPE_BUDDY_INFO_OFFICE,
634 SIPE_BUDDY_INFO_DEPARTMENT,
635 SIPE_BUDDY_INFO_COUNTRY,
636 SIPE_BUDDY_INFO_WORK_PHONE,
637 SIPE_BUDDY_INFO_WORK_PHONE_DISPLAY,
638 SIPE_BUDDY_INFO_COMPANY,
639 SIPE_BUDDY_INFO_EMAIL,
640 SIPE_BUDDY_INFO_DEVICE,
641 SIPE_BUDDY_INFO_SITE,
642 SIPE_BUDDY_INFO_ZIPCODE,
643 SIPE_BUDDY_INFO_STREET,
644 SIPE_BUDDY_INFO_MOBILE_PHONE,
645 SIPE_BUDDY_INFO_MOBILE_PHONE_DISPLAY,
646 SIPE_BUDDY_INFO_HOME_PHONE,
647 SIPE_BUDDY_INFO_HOME_PHONE_DISPLAY,
648 SIPE_BUDDY_INFO_OTHER_PHONE,
649 SIPE_BUDDY_INFO_OTHER_PHONE_DISPLAY,
650 SIPE_BUDDY_INFO_CUSTOM1_PHONE,
651 SIPE_BUDDY_INFO_CUSTOM1_PHONE_DISPLAY,
652 } sipe_buddy_info_fields;
654 /* Opaque token */
655 typedef void* sipe_backend_buddy;
658 * Find a buddy in the given group of the buddy list, or anywhere on the
659 * list if @group_name is empty
661 * @param sipe_public The handle representing the protocol instance making the call
662 * @param buddy_name The name of the buddy
663 * @param group_name The name of the group to look in, or NULL for any group
664 * @return opaque handle to the buddy, or NULL if no buddy found
666 sipe_backend_buddy sipe_backend_buddy_find(struct sipe_core_public *sipe_public,
667 const gchar *buddy_name,
668 const gchar *group_name);
671 * Find all named buddies in the given group of the buddy list, or anywhere on the
672 * list if @group_name is empty; or all buddies if @name is empty
674 * @param sipe_public The handle representing the protocol instance making the call
675 * @param name The name of the buddy
676 * @param group_name The name of the group to look in, or NULL for any group
677 * @return GSList of opaque handles to the buddies
679 GSList* sipe_backend_buddy_find_all(struct sipe_core_public *sipe_public,
680 const gchar *buddy_name,
681 const gchar *group_name);
684 * Gets the name of a contact.
686 * @param sipe_public The handle representing the protocol instance making the call
687 * @param who The opaque handle to the contact as found by find_buddy
688 * @return The name. Must be freed.
690 gchar* sipe_backend_buddy_get_name(struct sipe_core_public *sipe_public,
691 const sipe_backend_buddy who);
694 * Gets the alias for a contact.
696 * @param sipe_public The handle representing the protocol instance making the call
697 * @param who The opaque handle to the contact as found by find_buddy
698 * @return The alias. Must be gfree'd.
700 gchar* sipe_backend_buddy_get_alias(struct sipe_core_public *sipe_public,
701 const sipe_backend_buddy who);
704 * Gets the server alias for a contact.
706 * @param sipe_public The handle representing the protocol instance making the call
707 * @param who The opaque handle to the contact as found by find_buddy
708 * @return The alias. Must be freed.
710 gchar* sipe_backend_buddy_get_server_alias(struct sipe_core_public *sipe_public,
711 const sipe_backend_buddy who);
714 * Gets the local alias for a contact
716 * @param sipe_public The handle representing the protocol instance making the call
717 * @param uri the budyy name
719 * @return the alias. Must be @g_free()'d.
721 gchar *sipe_backend_buddy_get_local_alias(struct sipe_core_public *sipe_public,
722 const sipe_backend_buddy who);
725 * Gets the name of the group a contact belongs to.
727 * @param sipe_public The handle representing the protocol instance making the call
728 * @param who The opaque handle to the contact as found by find_buddy
729 * @return The name. Must be freed.
731 gchar* sipe_backend_buddy_get_group_name(struct sipe_core_public *sipe_public,
732 const sipe_backend_buddy who);
735 * Called to retrieve a buddy-specific setting.
737 * @param sipe_public The handle representing the protocol instance making the call
738 * @param buddy The handle representing the buddy
739 * @param key The name of the setting
740 * @return The value of the setting. Must be freed.
742 gchar* sipe_backend_buddy_get_string(struct sipe_core_public *sipe_public,
743 sipe_backend_buddy buddy,
744 const sipe_buddy_info_fields key);
747 * Called to retrieve a buddy-specific setting.
749 * @param sipe_public The handle representing the protocol instance making the call
750 * @param buddy The handle representing the buddy
751 * @param key The name of the setting
752 * @param val The value to set
754 void sipe_backend_buddy_set_string(struct sipe_core_public *sipe_public,
755 sipe_backend_buddy buddy,
756 const sipe_buddy_info_fields key,
757 const gchar *val);
760 * Sets the alias for a contact.
762 * @param sipe_public The handle representing the protocol instance making the call
763 * @param who The opaque handle to the contact as found by find_buddy
764 * @param alias The location where the alias will be put
765 * case. FALSE if the buddy was not found. The value of alias will not be changed.
767 void sipe_backend_buddy_set_alias(struct sipe_core_public *sipe_public,
768 const sipe_backend_buddy who,
769 const gchar *alias);
772 * Sets the server alias for a contact.
774 * @param sipe_public The handle representing the protocol instance making the call
775 * @param who The opaque handle to the contact as found by find_buddy
776 * @param alias The server alias of the contact
778 void sipe_backend_buddy_set_server_alias(struct sipe_core_public *sipe_public,
779 const sipe_backend_buddy who,
780 const gchar *alias);
783 * Add a contact to the buddy list
785 * @param sipe_public The handle representing the protocol instance making the call
786 * @param name The name of the contact
787 * @param alias The alias of the contact
788 * @param groupname The name of the group to add this contact to
789 * @return A handle to the newly created buddy
791 sipe_backend_buddy sipe_backend_buddy_add(struct sipe_core_public *sipe_public,
792 const gchar *name,
793 const gchar *alias,
794 const gchar *groupname);
797 * Remove a contact from the buddy list
799 * @param sipe_public The handle representing the protocol instance making the call
800 * @param who The opaque handle to the contact as found by find_buddy
802 void sipe_backend_buddy_remove(struct sipe_core_public *sipe_public,
803 const sipe_backend_buddy who);
806 * Notifies the user that a remote user has wants to add the local user to his
807 * or her buddy list and requires authorization to do so.
809 * @param sipe_public The handle representing the protocol instance making the call
810 * @param who The name of the user that added this account
811 * @param alias The optional alias of the remote user
812 * @param on_list True if the user is already in our list
813 * @param auth_cb The callback called when the local user accepts
814 * @param deny_cb The callback called when the local user rejects
815 * @param data Data to be passed back to the above callbacks
817 typedef void (*sipe_backend_buddy_request_authorization_cb)(void *);
819 void sipe_backend_buddy_request_add(struct sipe_core_public *sipe_public,
820 const gchar *who,
821 const gchar *alias);
823 void sipe_backend_buddy_request_authorization(struct sipe_core_public *sipe_public,
824 const gchar *who,
825 const gchar *alias,
826 gboolean on_list,
827 sipe_backend_buddy_request_authorization_cb auth_cb,
828 sipe_backend_buddy_request_authorization_cb deny_cb,
829 gpointer data);
831 gboolean sipe_backend_buddy_is_blocked(struct sipe_core_public *sipe_public,
832 const gchar *who);
834 void sipe_backend_buddy_set_blocked_status(struct sipe_core_public *sipe_public,
835 const gchar *who,
836 gboolean blocked);
838 void sipe_backend_buddy_set_status(struct sipe_core_public *sipe_public,
839 const gchar *who,
840 const gchar *status_id);
843 * Called when a new internal group is about to be added. If this returns FALSE,
844 * the group will not be added.
846 * @param sipe_public The handle representing the protocol instance making the call
847 * @param group The group being added
848 * @return TRUE if everything is ok, FALSE if the group should not be added
850 gboolean sipe_backend_buddy_group_add(struct sipe_core_public *sipe_public,
851 const gchar *group_name);
854 * Present requested buddy information to the user
856 struct sipe_backend_buddy_info;
857 struct sipe_backend_buddy_info *sipe_backend_buddy_info_start(struct sipe_core_public *sipe_public);
858 void sipe_backend_buddy_info_add(struct sipe_core_public *sipe_public,
859 struct sipe_backend_buddy_info *info,
860 const gchar *description,
861 const gchar *value);
862 void sipe_backend_buddy_info_break(struct sipe_core_public *sipe_public,
863 struct sipe_backend_buddy_info *info);
864 void sipe_backend_buddy_info_finalize(struct sipe_core_public *sipe_public,
865 struct sipe_backend_buddy_info *info,
866 const gchar *uri);
868 struct sipe_backend_buddy_tooltip;
869 void sipe_backend_buddy_tooltip_add(struct sipe_core_public *sipe_public,
870 struct sipe_backend_buddy_tooltip *tooltip,
871 const gchar *description,
872 const gchar *value);
874 #ifdef __cplusplus
876 #endif
879 Local Variables:
880 mode: c
881 c-file-style: "bsd"
882 indent-tabs-mode: t
883 tab-width: 8
884 End: