user: allow ask dialogs without "decline" button
[siplcs.git] / src / api / sipe-backend.h
blobab062afe4d33b13b7a5a63cd3e83659aac9ca9b1
1 /**
2 * @file sipe-backend.h
4 * pidgin-sipe
6 * Copyright (C) 2010-2018 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_LOG_LEVEL_INFO,
65 SIPE_LOG_LEVEL_WARNING,
66 SIPE_LOG_LEVEL_ERROR,
67 SIPE_DEBUG_LEVEL_INFO,
68 SIPE_DEBUG_LEVEL_WARNING,
69 SIPE_DEBUG_LEVEL_ERROR,
70 } sipe_debug_level;
71 #define SIPE_DEBUG_LEVEL_LOWEST SIPE_DEBUG_LEVEL_INFO
73 /**
74 * Output debug information without formatting
76 * Shouldn't be used directly. Instead use SIPE_DEBUG_xxx() macros
78 * @param level debug level
79 * @param msg debug message "\n" will be automatically appended.
81 void sipe_backend_debug_literal(sipe_debug_level level,
82 const gchar *msg);
84 /**
85 * Output debug information
87 * Shouldn't be used directly. Instead use SIPE_DEBUG_xxx() macros
89 * @param level debug level
90 * @param format format string. "\n" will be automatically appended.
92 void sipe_backend_debug(sipe_debug_level level,
93 const gchar *format,
94 ...) G_GNUC_PRINTF(2, 3);
96 /* Convenience macros */
97 #define SIPE_LOG_INFO(fmt, ...) sipe_backend_debug(SIPE_LOG_LEVEL_INFO, fmt, __VA_ARGS__)
98 #define SIPE_LOG_INFO_NOFORMAT(msg) sipe_backend_debug_literal(SIPE_LOG_LEVEL_INFO, msg)
99 #define SIPE_LOG_WARNING(fmt, ...) sipe_backend_debug(SIPE_LOG_LEVEL_WARNING, fmt, __VA_ARGS__)
100 #define SIPE_LOG_WARNING_NOFORMAT(msg) sipe_backend_debug_literal(SIPE_LOG_LEVEL_WARNING, msg)
101 #define SIPE_LOG_ERROR(fmt, ...) sipe_backend_debug(SIPE_LOG_LEVEL_ERROR, fmt, __VA_ARGS__)
102 #define SIPE_LOG_ERROR_NOFORMAT(msg) sipe_backend_debug_literal(SIPE_LOG_LEVEL_ERROR, msg)
103 #define SIPE_DEBUG_INFO(fmt, ...) sipe_backend_debug(SIPE_DEBUG_LEVEL_INFO, fmt, __VA_ARGS__)
104 #define SIPE_DEBUG_INFO_NOFORMAT(msg) sipe_backend_debug_literal(SIPE_DEBUG_LEVEL_INFO, msg)
105 #define SIPE_DEBUG_WARNING(fmt, ...) sipe_backend_debug(SIPE_DEBUG_LEVEL_WARNING, fmt, __VA_ARGS__)
106 #define SIPE_DEBUG_WARNING_NOFORMAT(msg) sipe_backend_debug_literal(SIPE_DEBUG_LEVEL_WARNING, msg)
107 #define SIPE_DEBUG_ERROR(fmt, ...) sipe_backend_debug(SIPE_DEBUG_LEVEL_ERROR, fmt, __VA_ARGS__)
108 #define SIPE_DEBUG_ERROR_NOFORMAT(msg) sipe_backend_debug_literal(SIPE_DEBUG_LEVEL_ERROR, msg)
111 * Check backend debugging status
113 * @return TRUE if debugging is enabled
115 gboolean sipe_backend_debug_enabled(void);
117 /** CHAT *********************************************************************/
119 void sipe_backend_chat_session_destroy(struct sipe_backend_chat_session *session);
120 void sipe_backend_chat_add(struct sipe_backend_chat_session *backend_session,
121 const gchar *uri,
122 gboolean is_new);
123 void sipe_backend_chat_close(struct sipe_backend_chat_session *backend_session);
126 * Joined a new chat
128 struct sipe_backend_chat_session *sipe_backend_chat_create(struct sipe_core_public *sipe_public,
129 struct sipe_chat_session *session,
130 const gchar *title,
131 const gchar *nick);
132 gboolean sipe_backend_chat_find(struct sipe_backend_chat_session *backend_session,
133 const gchar *uri);
134 gboolean sipe_backend_chat_is_operator(struct sipe_backend_chat_session *backend_session,
135 const gchar *uri);
136 void sipe_backend_chat_message(struct sipe_core_public *sipe_public,
137 struct sipe_backend_chat_session *backend_session,
138 const gchar *from,
139 time_t when,
140 const gchar *html);
141 void sipe_backend_chat_operator(struct sipe_backend_chat_session *backend_session,
142 const gchar *uri);
145 * Rejoin an existing chat window after connection re-establishment
147 void sipe_backend_chat_rejoin(struct sipe_core_public *sipe_public,
148 struct sipe_backend_chat_session *backend_session,
149 const gchar *nick,
150 const gchar *title);
153 * Core has completed connection re-establishment.
154 * Should call sipe_core_chat_rejoin() for existing chats.
156 void sipe_backend_chat_rejoin_all(struct sipe_core_public *sipe_public);
157 void sipe_backend_chat_remove(struct sipe_backend_chat_session *backend_session,
158 const gchar *uri);
161 * Move chat window to the front. Will be called when
162 * a user tries to join an already joined chat again.
164 void sipe_backend_chat_show(struct sipe_backend_chat_session *backend_session);
165 void sipe_backend_chat_topic(struct sipe_backend_chat_session *backend_session,
166 const gchar *topic);
168 /** CONNECTION ***************************************************************/
170 void sipe_backend_connection_completed(struct sipe_core_public *sipe_public);
172 typedef enum {
173 SIPE_CONNECTION_ERROR_NETWORK = 0,
174 SIPE_CONNECTION_ERROR_INVALID_USERNAME,
175 SIPE_CONNECTION_ERROR_INVALID_SETTINGS,
176 SIPE_CONNECTION_ERROR_AUTHENTICATION_FAILED,
177 SIPE_CONNECTION_ERROR_AUTHENTICATION_IMPOSSIBLE,
178 SIPE_CONNECTION_ERROR_LAST
179 } sipe_connection_error;
180 void sipe_backend_connection_error(struct sipe_core_public *sipe_public,
181 sipe_connection_error error,
182 const gchar *msg);
184 gboolean sipe_backend_connection_is_disconnecting(struct sipe_core_public *sipe_public);
185 gboolean sipe_backend_connection_is_valid(struct sipe_core_public *sipe_public);
187 /** DNS QUERY ****************************************************************/
189 typedef void (*sipe_dns_resolved_cb)(gpointer data, const gchar *hostname, guint port);
191 struct sipe_dns_query *sipe_backend_dns_query_srv(struct sipe_core_public *sipe_public,
192 const gchar *protocol,
193 const gchar *transport,
194 const gchar *domain,
195 sipe_dns_resolved_cb callback,
196 gpointer data);
198 struct sipe_dns_query *sipe_backend_dns_query_a(struct sipe_core_public *sipe_public,
199 const gchar *hostname,
200 guint port,
201 sipe_dns_resolved_cb callback,
202 gpointer data);
204 void sipe_backend_dns_query_cancel(struct sipe_dns_query *query);
206 /** FILE TRANSFER ************************************************************/
208 struct sipe_backend_fd;
210 void sipe_backend_ft_error(struct sipe_file_transfer *ft,
211 const gchar *errmsg);
212 const gchar *sipe_backend_ft_get_error(struct sipe_file_transfer *ft);
213 void sipe_backend_ft_deallocate(struct sipe_file_transfer *ft);
216 * Try to read up to @c size bytes from file transfer connection
218 * @param ft file transfer data.
219 * @param data buffer to read data into.
220 * @param size buffer size in bytes.
222 * @return number of bytes read or negative on failure.
223 * EAGAIN should return 0 bytes read.
225 gssize sipe_backend_ft_read(struct sipe_file_transfer *ft,
226 guchar *data,
227 gsize size);
230 * Try to write up to @c size bytes to file transfer connection
232 * @param ft file transfer data.
233 * @param data data to write
234 * @param size buffer size in bytes.
236 * @return number of bytes read or negative on failure.
237 * EAGAIN should return 0 bytes written.
239 gssize sipe_backend_ft_write(struct sipe_file_transfer *ft,
240 const guchar *data,
241 gsize size);
243 void sipe_backend_ft_set_completed(struct sipe_file_transfer *ft);
245 void sipe_backend_ft_cancel_local(struct sipe_file_transfer *ft);
246 void sipe_backend_ft_cancel_remote(struct sipe_file_transfer *ft);
248 void sipe_backend_ft_incoming(struct sipe_core_public *sipe_public,
249 struct sipe_file_transfer *ft,
250 const gchar *who,
251 const gchar *file_name,
252 gsize file_size);
254 * Allocates and initializes backend file transfer structure for sending a file.
256 * @param sipe_public (in) the handle representing the protocol instance
257 * @param ft (in) sipe core file transfer structure
258 * @param who (in) SIP URI of the file recipient
259 * @param file_name (in) filesystem path of the file being sent
261 void sipe_backend_ft_outgoing(struct sipe_core_public *sipe_public,
262 struct sipe_file_transfer *ft,
263 const gchar *who,
264 const gchar *file_name);
266 * Begins file transfer with remote peer.
268 * You can provide either opened file descriptor to use for read/write operations
269 * or ip address and port where the backend should connect.
271 * @param ft file transfer data
272 * @param fd opaque file descriptor pointer or NULL if ip and port are used
273 * @param ip ip address to connect of NULL when file descriptor is used
274 * @param port port to connect or 0 when file descriptor is used
276 void sipe_backend_ft_start(struct sipe_file_transfer *ft,
277 struct sipe_backend_fd *fd,
278 const char* ip, unsigned port);
281 * Check whether file transfer is incoming or outgoing
283 * @param ft file transfer data
284 * @return @c TRUE if @c ft is incoming, otherwise @c FALSE
286 gboolean sipe_backend_ft_is_incoming(struct sipe_file_transfer *ft);
288 /** GROUP CHAT ***************************************************************/
290 #define SIPE_GROUPCHAT_ROOM_FILEPOST 0x00000001
291 #define SIPE_GROUPCHAT_ROOM_INVITE 0x00000002
292 #define SIPE_GROUPCHAT_ROOM_LOGGED 0x00000004
293 #define SIPE_GROUPCHAT_ROOM_PRIVATE 0x00000008
296 * Add a room found through room query
298 * @param uri room URI
299 * @param name human readable name for room
300 * @param description room description
301 * @param users number of users in the room
302 * @param flags SIPE_GROUPCHAT_ROOM_* flags
304 void sipe_backend_groupchat_room_add(struct sipe_core_public *sipe_public,
305 const gchar *uri,
306 const gchar *name,
307 const gchar *description,
308 guint users,
309 guint32 flags);
312 * Terminate room query
314 void sipe_backend_groupchat_room_terminate(struct sipe_core_public *sipe_public);
316 /** IM ***********************************************************************/
318 void sipe_backend_im_message(struct sipe_core_public *sipe_public,
319 const gchar *from,
320 const gchar *html);
321 void sipe_backend_im_topic(struct sipe_core_public *sipe_public,
322 const gchar *with,
323 const gchar *topic);
325 /** MARKUP *******************************************************************/
327 gchar *sipe_backend_markup_css_property(const gchar *style,
328 const gchar *option);
329 gchar *sipe_backend_markup_strip_html(const gchar *html);
331 /** MEDIA ********************************************************************/
333 typedef enum {
334 /* This client is the one who invites other participant to the call. */
335 SIPE_MEDIA_CALL_INITIATOR = 1,
336 /* Don't show any user interface elements for the call. */
337 SIPE_MEDIA_CALL_NO_UI = 2
338 } SipeMediaCallFlags;
340 typedef enum {
341 SIPE_ICE_NO_ICE,
342 SIPE_ICE_DRAFT_6,
343 SIPE_ICE_RFC_5245
344 } SipeIceVersion;
346 typedef enum {
347 SIPE_CANDIDATE_TYPE_ANY,
348 SIPE_CANDIDATE_TYPE_HOST,
349 SIPE_CANDIDATE_TYPE_RELAY,
350 SIPE_CANDIDATE_TYPE_SRFLX,
351 SIPE_CANDIDATE_TYPE_PRFLX
352 } SipeCandidateType;
354 typedef enum {
355 SIPE_COMPONENT_NONE = 0,
356 SIPE_COMPONENT_RTP = 1,
357 SIPE_COMPONENT_RTCP = 2
358 } SipeComponentType;
360 typedef enum {
361 SIPE_MEDIA_AUDIO,
362 SIPE_MEDIA_VIDEO,
363 SIPE_MEDIA_APPLICATION
364 } SipeMediaType;
366 typedef enum {
367 SIPE_NETWORK_PROTOCOL_UDP,
368 SIPE_NETWORK_PROTOCOL_TCP_ACTIVE,
369 SIPE_NETWORK_PROTOCOL_TCP_PASSIVE,
370 SIPE_NETWORK_PROTOCOL_TCP_SO,
371 } SipeNetworkProtocol;
373 typedef enum {
374 SIPE_ENCRYPTION_POLICY_REJECTED,
375 SIPE_ENCRYPTION_POLICY_OPTIONAL,
376 SIPE_ENCRYPTION_POLICY_REQUIRED,
377 SIPE_ENCRYPTION_POLICY_OBEY_SERVER
378 } SipeEncryptionPolicy;
380 struct sipe_media_call;
381 struct sipe_backend_media;
382 struct sipe_backend_codec;
383 struct sipe_backend_candidate;
384 struct sipe_backend_media_stream;
385 struct sipe_backend_media_relays;
387 struct ssrc_range {
388 guint32 begin;
389 guint32 end;
392 struct sipe_media_stream {
393 struct sipe_backend_media_stream *backend_private;
395 struct sipe_media_call *call;
396 gchar *id;
397 struct ssrc_range *ssrc_range;
399 void (*candidate_pairs_established_cb)(struct sipe_media_stream *);
400 void (*read_cb)(struct sipe_media_stream *);
401 void (*writable_cb)(struct sipe_media_stream *);
402 void (*mute_cb)(struct sipe_media_stream *, gboolean is_muted);
405 struct sipe_media_call {
406 struct sipe_backend_media *backend_private;
408 gchar *with;
410 void (*stream_initialized_cb)(struct sipe_media_call *,
411 struct sipe_media_stream *);
412 void (*media_end_cb)(struct sipe_media_call *);
413 void (*call_accept_cb)(struct sipe_media_call *, gboolean local);
414 void (*call_reject_cb)(struct sipe_media_call *, gboolean local);
415 void (*call_hold_cb) (struct sipe_media_call *, gboolean local,
416 gboolean state);
417 void (*call_hangup_cb)(struct sipe_media_call *, gboolean local);
418 void (*error_cb)(struct sipe_media_call *, gchar *message);
421 struct sipe_media_relay {
422 gchar *hostname;
423 guint udp_port;
424 guint tcp_port;
425 struct sipe_dns_query *dns_query;
428 /* Media handling */
429 struct sipe_backend_media *sipe_backend_media_new(struct sipe_core_public *sipe_public,
430 struct sipe_media_call *call,
431 const gchar *participant,
432 SipeMediaCallFlags flags);
433 void sipe_backend_media_free(struct sipe_backend_media *media);
435 void sipe_backend_media_set_cname(struct sipe_backend_media *media, gchar *cname);
437 struct sipe_backend_media_relays * sipe_backend_media_relays_convert(GSList *media_relays,
438 gchar *username,
439 gchar *password);
440 void sipe_backend_media_relays_free(struct sipe_backend_media_relays *media_relays);
442 struct sipe_backend_media_stream *sipe_backend_media_add_stream(struct sipe_media_stream *stream,
443 SipeMediaType type,
444 SipeIceVersion ice_version,
445 gboolean initiator,
446 struct sipe_backend_media_relays *media_relays,
447 guint min_port, guint max_port);
448 void sipe_backend_media_add_remote_candidates(struct sipe_media_call *media,
449 struct sipe_media_stream *stream,
450 GList *candidates);
451 gboolean sipe_backend_media_is_initiator(struct sipe_media_call *media,
452 struct sipe_media_stream *stream);
453 gboolean sipe_backend_media_accepted(struct sipe_backend_media *media);
454 gboolean sipe_backend_stream_initialized(struct sipe_media_call *media,
455 struct sipe_media_stream *stream);
456 void sipe_backend_media_set_encryption_keys(struct sipe_media_call *media,
457 struct sipe_media_stream *stream,
458 const guchar *encryption_key,
459 const guchar *decryption_key);
461 /* Stream handling */
462 void sipe_backend_stream_hold(struct sipe_media_call *media,
463 struct sipe_media_stream *stream,
464 gboolean local);
465 void sipe_backend_stream_unhold(struct sipe_media_call *media,
466 struct sipe_media_stream *stream,
467 gboolean local);
468 gboolean sipe_backend_stream_is_held(struct sipe_media_stream *stream);
470 GList *sipe_backend_media_stream_get_active_local_candidates(struct sipe_media_stream *stream);
471 GList *sipe_backend_media_stream_get_active_remote_candidates(struct sipe_media_stream *stream);
473 gssize sipe_backend_media_stream_read(struct sipe_media_stream *stream,
474 guint8 *buffer, gsize len);
475 gssize sipe_backend_media_stream_write(struct sipe_media_stream *stream,
476 guint8 *buffer, gsize len);
478 void sipe_backend_media_stream_end(struct sipe_media_call *media,
479 struct sipe_media_stream *stream);
480 void sipe_backend_media_stream_free(struct sipe_backend_media_stream *stream);
482 /* Codec handling */
483 struct sipe_backend_codec *sipe_backend_codec_new(int id,
484 const char *name,
485 SipeMediaType type,
486 guint clock_rate,
487 guint channels);
488 void sipe_backend_codec_free(struct sipe_backend_codec *codec);
489 int sipe_backend_codec_get_id(struct sipe_backend_codec *codec);
491 * @return codec name. Will be g_free'd() by the core.
493 gchar *sipe_backend_codec_get_name(struct sipe_backend_codec *codec);
494 guint sipe_backend_codec_get_clock_rate(struct sipe_backend_codec *codec);
495 void sipe_backend_codec_add_optional_parameter(struct sipe_backend_codec *codec,
496 const gchar *name,
497 const gchar *value);
498 GList *sipe_backend_codec_get_optional_parameters(struct sipe_backend_codec *codec);
499 gboolean sipe_backend_set_remote_codecs(struct sipe_media_call *media,
500 struct sipe_media_stream *stream,
501 GList *codecs);
502 GList* sipe_backend_get_local_codecs(struct sipe_media_call *media,
503 struct sipe_media_stream *stream);
505 /* Candidate handling */
506 struct sipe_backend_candidate * sipe_backend_candidate_new(const gchar *foundation,
507 SipeComponentType component,
508 SipeCandidateType type,
509 SipeNetworkProtocol proto,
510 const gchar *ip, guint port,
511 const gchar *username,
512 const gchar *password);
513 void sipe_backend_candidate_free(struct sipe_backend_candidate *candidate);
515 * @return user name. Will be g_free'd() by the core.
517 gchar *sipe_backend_candidate_get_username(struct sipe_backend_candidate *candidate);
519 * @return password. Will be g_free'd() by the core.
521 gchar *sipe_backend_candidate_get_password(struct sipe_backend_candidate *candidate);
523 * @return foundation. Will be g_free'd() by the core.
525 gchar *sipe_backend_candidate_get_foundation(struct sipe_backend_candidate *candidate);
527 * @return IP address string. Will be g_free'd() by the core.
529 gchar *sipe_backend_candidate_get_ip(struct sipe_backend_candidate *candidate);
530 guint sipe_backend_candidate_get_port(struct sipe_backend_candidate *candidate);
532 * @return IP address string. Will be g_free'd() by the core.
534 gchar *sipe_backend_candidate_get_base_ip(struct sipe_backend_candidate *candidate);
535 guint sipe_backend_candidate_get_base_port(struct sipe_backend_candidate *candidate);
536 guint32 sipe_backend_candidate_get_priority(struct sipe_backend_candidate *candidate);
537 void sipe_backend_candidate_set_priority(struct sipe_backend_candidate *candidate, guint32 priority);
538 SipeComponentType sipe_backend_candidate_get_component_type(struct sipe_backend_candidate *candidate);
539 SipeCandidateType sipe_backend_candidate_get_type(struct sipe_backend_candidate *candidate);
540 SipeNetworkProtocol sipe_backend_candidate_get_protocol(struct sipe_backend_candidate *candidate);
541 GList* sipe_backend_get_local_candidates(struct sipe_media_call *media,
542 struct sipe_media_stream *stream);
543 void sipe_backend_media_accept(struct sipe_backend_media *media, gboolean local);
544 void sipe_backend_media_hangup(struct sipe_backend_media *media, gboolean local);
545 void sipe_backend_media_reject(struct sipe_backend_media *media, gboolean local);
547 /** NETWORK ******************************************************************/
549 struct sipe_backend_listendata;
551 typedef void (*sipe_listen_start_cb)(unsigned short port, gpointer data);
552 typedef void (*sipe_client_connected_cb)(struct sipe_backend_fd *fd, gpointer data);
554 struct sipe_backend_listendata *
555 sipe_backend_network_listen_range(unsigned short port_min,
556 unsigned short port_max,
557 sipe_listen_start_cb listen_cb,
558 sipe_client_connected_cb connect_cb,
559 gpointer data);
560 void sipe_backend_network_listen_cancel(struct sipe_backend_listendata *ldata);
562 struct sipe_backend_fd * sipe_backend_fd_from_int(int fd);
563 gboolean sipe_backend_fd_is_valid(struct sipe_backend_fd *fd);
564 void sipe_backend_fd_free(struct sipe_backend_fd *fd);
566 /** NOTIFICATIONS *************************************************************/
568 void sipe_backend_notify_message_error(struct sipe_core_public *sipe_public,
569 struct sipe_backend_chat_session *backend_session,
570 const gchar *who,
571 const gchar *message);
572 void sipe_backend_notify_message_info(struct sipe_core_public *sipe_public,
573 struct sipe_backend_chat_session *backend_session,
574 const gchar *who,
575 const gchar *message);
578 * @param msg error message. Maybe @NULL
580 void sipe_backend_notify_error(struct sipe_core_public *sipe_public,
581 const gchar *title,
582 const gchar *msg);
584 /** SCHEDULE *****************************************************************/
586 gpointer sipe_backend_schedule_seconds(struct sipe_core_public *sipe_public,
587 guint timeout,
588 gpointer data);
589 gpointer sipe_backend_schedule_mseconds(struct sipe_core_public *sipe_public,
590 guint timeout,
591 gpointer data);
592 void sipe_backend_schedule_cancel(struct sipe_core_public *sipe_public,
593 gpointer data);
595 /** SEARCH *******************************************************************/
597 struct sipe_backend_search_results;
598 struct sipe_backend_search_token;
600 void sipe_backend_search_failed(struct sipe_core_public *sipe_public,
601 struct sipe_backend_search_token *token,
602 const gchar *msg);
603 struct sipe_backend_search_results *sipe_backend_search_results_start(struct sipe_core_public *sipe_public,
604 struct sipe_backend_search_token *token);
605 void sipe_backend_search_results_add(struct sipe_core_public *sipe_public,
606 struct sipe_backend_search_results *results,
607 const gchar *uri,
608 const gchar *name,
609 const gchar *company,
610 const gchar *country,
611 const gchar *email);
612 void sipe_backend_search_results_finalize(struct sipe_core_public *sipe_public,
613 struct sipe_backend_search_results *results,
614 const gchar *description,
615 gboolean more);
617 /** SETTINGS *****************************************************************/
619 typedef enum {
620 SIPE_SETTING_EMAIL_URL = 0,
621 SIPE_SETTING_EMAIL_LOGIN,
622 SIPE_SETTING_EMAIL_PASSWORD,
623 SIPE_SETTING_GROUPCHAT_USER,
624 SIPE_SETTING_RDP_CLIENT,
625 SIPE_SETTING_USER_AGENT,
626 SIPE_SETTING_LAST
627 } sipe_setting;
628 const gchar *sipe_backend_setting(struct sipe_core_public *sipe_public,
629 sipe_setting type);
631 /** STATUS *******************************************************************/
633 guint sipe_backend_status(struct sipe_core_public *sipe_public);
634 gboolean sipe_backend_status_changed(struct sipe_core_public *sipe_public,
635 guint activity,
636 const gchar *message);
639 * Update user client with new status and note received from server
641 * NOTE: this must *NOT* trigger a call to @c sipe_core_status_set()!
643 * @param sipe_public The handle representing the protocol instance
644 * @param activity New activity
645 * @param message New note text
647 void sipe_backend_status_and_note(struct sipe_core_public *sipe_public,
648 guint activity,
649 const gchar *message);
651 /** TRANSPORT ****************************************************************/
653 typedef void transport_connected_cb(struct sipe_transport_connection *conn);
654 typedef void transport_input_cb(struct sipe_transport_connection *conn);
655 typedef void transport_error_cb(struct sipe_transport_connection *conn,
656 const gchar *msg);
658 typedef struct {
659 guint type;
660 const gchar *server_name;
661 guint server_port;
662 gpointer user_data;
663 transport_connected_cb *connected;
664 transport_input_cb *input;
665 transport_error_cb *error;
666 } sipe_connect_setup;
667 struct sipe_transport_connection *sipe_backend_transport_connect(struct sipe_core_public *sipe_public,
668 const sipe_connect_setup *setup);
669 void sipe_backend_transport_disconnect(struct sipe_transport_connection *conn);
670 gchar *sipe_backend_transport_ip_address(struct sipe_transport_connection *conn);
671 void sipe_backend_transport_message(struct sipe_transport_connection *conn,
672 const gchar *buffer);
673 void sipe_backend_transport_flush(struct sipe_transport_connection *conn);
675 /** USER *********************************************************************/
677 void sipe_backend_user_feedback_typing(struct sipe_core_public *sipe_public,
678 const gchar *from);
679 void sipe_backend_user_feedback_typing_stop(struct sipe_core_public *sipe_public,
680 const gchar *from);
683 * Present a query that is to be accepted or declined by the user
685 * @param sipe_public The handle representing the protocol instance
686 * @param message Text of the query to be shown to user
687 * @param accept_label Label to be displayed on UI control that accepts query
688 * @param decline_label Label to be displayed on UI control that declines query.
689 * When @c NULL, the control will not be shown.
690 * @param key Opaque handle uniquely identifying the query. Backend
691 * should store it for the case SIPE core requests the
692 * query to be closed prematurely.
694 void sipe_backend_user_ask(struct sipe_core_public *sipe_public,
695 const gchar *message,
696 const gchar *accept_label,
697 const gchar *decline_label,
698 gpointer key);
701 * Present a set of options to the user to choose from.
703 * @param sipe_public (in) The handle representing the protocol instance
704 * @param message (in) Text message to be shown to the user
705 * @param choices (in) List of choice options
706 * @param key (in) Opaque handle uniquely identifying the query. Backend
707 * should store it for the case SIPE core requests the query
708 * to be closed prematurely.
710 void sipe_backend_user_ask_choice(struct sipe_core_public *sipe_public,
711 const gchar *message,
712 GSList *choices,
713 gpointer key);
716 * Closes the pending user query
718 * @param key Opaque handle uniquely identifying the query.
720 void sipe_backend_user_close_ask(gpointer key);
722 /** BUDDIES ******************************************************************/
725 * sipe_backend_buddy_get/set_string(): properties a buddy can have
726 * sipe_backend_buddy_info_add(): mapped, e.g. to a string label
728 typedef enum
730 SIPE_BUDDY_INFO_DISPLAY_NAME = 0,
731 SIPE_BUDDY_INFO_JOB_TITLE,
732 SIPE_BUDDY_INFO_CITY,
733 SIPE_BUDDY_INFO_STATE,
734 SIPE_BUDDY_INFO_OFFICE,
735 SIPE_BUDDY_INFO_DEPARTMENT,
736 SIPE_BUDDY_INFO_COUNTRY,
737 SIPE_BUDDY_INFO_WORK_PHONE,
738 SIPE_BUDDY_INFO_WORK_PHONE_DISPLAY,
739 SIPE_BUDDY_INFO_COMPANY,
740 SIPE_BUDDY_INFO_EMAIL,
741 SIPE_BUDDY_INFO_SITE,
742 SIPE_BUDDY_INFO_ZIPCODE,
743 SIPE_BUDDY_INFO_STREET,
744 SIPE_BUDDY_INFO_MOBILE_PHONE,
745 SIPE_BUDDY_INFO_MOBILE_PHONE_DISPLAY,
746 SIPE_BUDDY_INFO_HOME_PHONE,
747 SIPE_BUDDY_INFO_HOME_PHONE_DISPLAY,
748 SIPE_BUDDY_INFO_OTHER_PHONE,
749 SIPE_BUDDY_INFO_OTHER_PHONE_DISPLAY,
750 SIPE_BUDDY_INFO_CUSTOM1_PHONE,
751 SIPE_BUDDY_INFO_CUSTOM1_PHONE_DISPLAY,
752 SIPE_BUDDY_INFO_ALIAS, /* only for sipe_backend_buddy_info_add() */
753 SIPE_BUDDY_INFO_DEVICE, /* only for sipe_backend_buddy_info_add() */
754 } sipe_buddy_info_fields;
756 /* Opaque token */
757 typedef void* sipe_backend_buddy;
760 * Find a buddy in the given group of the buddy list, or anywhere on the
761 * list if @group_name is empty
763 * @param sipe_public The handle representing the protocol instance making the call
764 * @param buddy_name The name of the buddy
765 * @param group_name The name of the group to look in, or NULL for any group
766 * @return opaque handle to the buddy, or NULL if no buddy found
768 sipe_backend_buddy sipe_backend_buddy_find(struct sipe_core_public *sipe_public,
769 const gchar *buddy_name,
770 const gchar *group_name);
773 * Find all named buddies in the given group of the buddy list, or anywhere on the
774 * list if @group_name is empty; or all buddies if @name is empty
776 * @param sipe_public The handle representing the protocol instance making the call
777 * @param name The name of the buddy
778 * @param group_name The name of the group to look in, or NULL for any group
779 * @return GSList of opaque handles to the buddies
781 GSList* sipe_backend_buddy_find_all(struct sipe_core_public *sipe_public,
782 const gchar *buddy_name,
783 const gchar *group_name);
786 * Gets the name of a contact.
788 * @param sipe_public The handle representing the protocol instance making the call
789 * @param who The opaque handle to the contact as found by find_buddy
790 * @return The name. Must be freed.
792 gchar* sipe_backend_buddy_get_name(struct sipe_core_public *sipe_public,
793 const sipe_backend_buddy who);
796 * Gets the alias for a contact.
798 * @param sipe_public The handle representing the protocol instance making the call
799 * @param who The opaque handle to the contact as found by find_buddy
800 * @return The alias. Must be gfree'd.
802 gchar* sipe_backend_buddy_get_alias(struct sipe_core_public *sipe_public,
803 const sipe_backend_buddy who);
806 * Gets the server alias for a contact.
808 * @param sipe_public The handle representing the protocol instance making the call
809 * @param who The opaque handle to the contact as found by find_buddy
810 * @return The alias. Must be freed.
812 gchar* sipe_backend_buddy_get_server_alias(struct sipe_core_public *sipe_public,
813 const sipe_backend_buddy who);
816 * Gets the local alias for a contact
818 * @param sipe_public The handle representing the protocol instance making the call
819 * @param uri the budyy name
821 * @return the alias. Must be @g_free()'d.
823 gchar *sipe_backend_buddy_get_local_alias(struct sipe_core_public *sipe_public,
824 const sipe_backend_buddy who);
827 * Gets the name of the group a contact belongs to.
829 * @param sipe_public The handle representing the protocol instance making the call
830 * @param who The opaque handle to the contact as found by find_buddy
831 * @return The name. Must be freed.
833 gchar* sipe_backend_buddy_get_group_name(struct sipe_core_public *sipe_public,
834 const sipe_backend_buddy who);
837 * Called to retrieve a buddy-specific setting.
839 * @param sipe_public The handle representing the protocol instance making the call
840 * @param buddy The handle representing the buddy
841 * @param key The name of the setting
842 * @return The value of the setting. Must be freed.
844 gchar* sipe_backend_buddy_get_string(struct sipe_core_public *sipe_public,
845 sipe_backend_buddy buddy,
846 const sipe_buddy_info_fields key);
849 * Called to set a buddy-specific setting.
851 * @param sipe_public The handle representing the protocol instance making the call
852 * @param buddy The handle representing the buddy
853 * @param key The name of the setting
854 * @param val The value to set
856 void sipe_backend_buddy_set_string(struct sipe_core_public *sipe_public,
857 sipe_backend_buddy buddy,
858 const sipe_buddy_info_fields key,
859 const gchar *val);
862 * Called after one ore more buddy-specific settings have been updated.
864 * Can be used by the backend to trigger an UI update event
866 * @param sipe_public The handle representing the protocol instance making the call
867 * @param uri SIP URI of the contact
869 void sipe_backend_buddy_refresh_properties(struct sipe_core_public *sipe_public,
870 const gchar *uri);
873 * Get the status token for a contact
875 * @param sipe_public The handle representing the protocol instance making the call
876 * @param uri SIP URI of the contact
878 * @return activity
880 guint sipe_backend_buddy_get_status(struct sipe_core_public *sipe_public,
881 const gchar *uri);
884 * Sets the alias for a contact.
886 * @param sipe_public The handle representing the protocol instance making the call
887 * @param who The opaque handle to the contact as found by find_buddy
888 * @param alias The location where the alias will be put
889 * case. FALSE if the buddy was not found. The value of alias will not be changed.
891 void sipe_backend_buddy_set_alias(struct sipe_core_public *sipe_public,
892 const sipe_backend_buddy who,
893 const gchar *alias);
896 * Sets the server alias for a contact.
898 * @param sipe_public The handle representing the protocol instance making the call
899 * @param who The opaque handle to the contact as found by find_buddy
900 * @param alias The server alias of the contact
902 void sipe_backend_buddy_set_server_alias(struct sipe_core_public *sipe_public,
903 const sipe_backend_buddy who,
904 const gchar *alias);
907 * Start processing buddy list
909 * Will be called every time we receive a buddy list in roaming contacts
911 * @param sipe_public The handle representing the protocol instance making the call
913 void sipe_backend_buddy_list_processing_start(struct sipe_core_public *sipe_public);
916 * Finished processing buddy list
918 * Will be called every time we receive a buddy list in roaming contacts
920 * @param sipe_public The handle representing the protocol instance making the call
922 void sipe_backend_buddy_list_processing_finish(struct sipe_core_public *sipe_public);
925 * Add a contact to the buddy list
927 * @param sipe_public The handle representing the protocol instance making the call
928 * @param name The name of the contact
929 * @param alias The alias of the contact
930 * @param groupname The name of the group to add this contact to
931 * @return A handle to the newly created buddy
933 sipe_backend_buddy sipe_backend_buddy_add(struct sipe_core_public *sipe_public,
934 const gchar *name,
935 const gchar *alias,
936 const gchar *groupname);
939 * Remove a contact from the buddy list
941 * @param sipe_public The handle representing the protocol instance making the call
942 * @param who The opaque handle to the contact as found by find_buddy
944 void sipe_backend_buddy_remove(struct sipe_core_public *sipe_public,
945 const sipe_backend_buddy who);
948 * Notifies the user that a remote user has wants to add the local user to his
949 * or her buddy list and requires authorization to do so.
951 * @param sipe_public The handle representing the protocol instance making the call
952 * @param who The name of the user that added this account
953 * @param alias The optional alias of the remote user
954 * @param on_list True if the user is already in our list
955 * @param auth_cb The callback called when the local user accepts
956 * @param deny_cb The callback called when the local user rejects
957 * @param data Data to be passed back to the above callbacks
959 typedef void (*sipe_backend_buddy_request_authorization_cb)(void *);
961 void sipe_backend_buddy_request_add(struct sipe_core_public *sipe_public,
962 const gchar *who,
963 const gchar *alias);
965 void sipe_backend_buddy_request_authorization(struct sipe_core_public *sipe_public,
966 const gchar *who,
967 const gchar *alias,
968 gboolean on_list,
969 sipe_backend_buddy_request_authorization_cb auth_cb,
970 sipe_backend_buddy_request_authorization_cb deny_cb,
971 gpointer data);
973 gboolean sipe_backend_buddy_is_blocked(struct sipe_core_public *sipe_public,
974 const gchar *who);
976 void sipe_backend_buddy_set_blocked_status(struct sipe_core_public *sipe_public,
977 const gchar *who,
978 gboolean blocked);
980 void sipe_backend_buddy_set_status(struct sipe_core_public *sipe_public,
981 const gchar *who,
982 guint activity);
985 * Checks whether backend has a capability to use buddy photos. If this function
986 * returns @c FALSE, SIPE core will not attempt to download the photos from
987 * server to save bandwidth.
989 * @return @c TRUE if backend is photo capable, otherwise @FALSE
991 gboolean sipe_backend_uses_photo(void);
994 * Gives backend a photo image associated with a SIP URI. Backend has ownership
995 * of the data and must free it when not needed.
997 * @param sipe_public The handle representing the protocol instance making the call
998 * @param who The name of the user whose photo is being set
999 * @param image_data The photo image data, must be g_free()'d by backend
1000 * @param image_len Size of the image in Bytes
1001 * @param photo_hash A data checksum provided by the server
1003 void sipe_backend_buddy_set_photo(struct sipe_core_public *sipe_public,
1004 const gchar *who,
1005 gpointer image_data,
1006 gsize image_len,
1007 const gchar *photo_hash);
1010 * Retrieves a photo hash stored together with image data by
1011 * @c sipe_backend_buddy_set_photo. Value is used by the core to detect photo
1012 * file changes on server.
1014 * @param sipe_public The handle representing the protocol instance making the call
1015 * @param who The name of the user whose photo hash to retrieve
1016 * @return a photo hash (may be NULL)
1018 const gchar *sipe_backend_buddy_get_photo_hash(struct sipe_core_public *sipe_public,
1019 const gchar *who);
1022 * Called when a new internal group is about to be added. If this returns FALSE,
1023 * the group will not be added.
1025 * @param sipe_public The handle representing the protocol instance making the call
1026 * @param group_name The group being added
1027 * @return TRUE if everything is ok, FALSE if the group should not be added
1029 gboolean sipe_backend_buddy_group_add(struct sipe_core_public *sipe_public,
1030 const gchar *group_name);
1033 * Called when a new internal group has been renamed
1035 * @param sipe_public The handle representing the protocol instance making the call
1036 * @param old_name old name of the group
1037 * @param new_name new name of the group
1038 * @return TRUE if the group was found and renamed
1040 gboolean sipe_backend_buddy_group_rename(struct sipe_core_public *sipe_public,
1041 const gchar *old_name,
1042 const gchar *new_name);
1045 * Called when a new internal group should be deleted
1047 * NOTE: this will only be called on empty groups.
1049 * @param sipe_public The handle representing the protocol instance making the call
1050 * @param group_name The group that should be removed
1052 void sipe_backend_buddy_group_remove(struct sipe_core_public *sipe_public,
1053 const gchar *group_name);
1056 * Present requested buddy information to the user
1058 struct sipe_backend_buddy_info;
1059 struct sipe_backend_buddy_info *sipe_backend_buddy_info_start(struct sipe_core_public *sipe_public);
1060 void sipe_backend_buddy_info_add(struct sipe_core_public *sipe_public,
1061 struct sipe_backend_buddy_info *info,
1062 sipe_buddy_info_fields key,
1063 const gchar *value);
1064 void sipe_backend_buddy_info_break(struct sipe_core_public *sipe_public,
1065 struct sipe_backend_buddy_info *info);
1066 void sipe_backend_buddy_info_finalize(struct sipe_core_public *sipe_public,
1067 struct sipe_backend_buddy_info *info,
1068 const gchar *uri);
1070 struct sipe_backend_buddy_tooltip;
1071 void sipe_backend_buddy_tooltip_add(struct sipe_core_public *sipe_public,
1072 struct sipe_backend_buddy_tooltip *tooltip,
1073 const gchar *description,
1074 const gchar *value);
1077 * Buddy menu creation
1079 enum sipe_buddy_menu_type {
1080 SIPE_BUDDY_MENU_MAKE_CHAT_LEADER = 0,
1081 SIPE_BUDDY_MENU_REMOVE_FROM_CHAT,
1082 SIPE_BUDDY_MENU_INVITE_TO_CHAT,
1083 SIPE_BUDDY_MENU_NEW_CHAT,
1084 SIPE_BUDDY_MENU_MAKE_CALL,
1085 SIPE_BUDDY_MENU_SEND_EMAIL,
1086 SIPE_BUDDY_MENU_ACCESS_LEVEL_HELP,
1087 SIPE_BUDDY_MENU_CHANGE_ACCESS_LEVEL,
1088 SIPE_BUDDY_MENU_ADD_NEW_DOMAIN,
1089 SIPE_BUDDY_MENU_SHARE_DESKTOP,
1090 SIPE_BUDDY_MENU_TYPES
1093 struct sipe_backend_buddy_menu *sipe_backend_buddy_menu_start(struct sipe_core_public *sipe_public);
1094 struct sipe_backend_buddy_menu *sipe_backend_buddy_menu_add(struct sipe_core_public *sipe_public,
1095 struct sipe_backend_buddy_menu *menu,
1096 const gchar *label,
1097 enum sipe_buddy_menu_type type,
1098 gpointer parameter);
1099 struct sipe_backend_buddy_menu *sipe_backend_buddy_menu_separator(struct sipe_core_public *sipe_public,
1100 struct sipe_backend_buddy_menu *menu,
1101 const gchar *label);
1102 struct sipe_backend_buddy_menu *sipe_backend_buddy_sub_menu_add(struct sipe_core_public *sipe_public,
1103 struct sipe_backend_buddy_menu *menu,
1104 const gchar *label,
1105 struct sipe_backend_buddy_menu *sub);
1107 SipeEncryptionPolicy sipe_backend_media_get_encryption_policy(struct sipe_core_public *sipe_public);
1109 #ifdef __cplusplus
1111 #endif
1114 Local Variables:
1115 mode: c
1116 c-file-style: "bsd"
1117 indent-tabs-mode: t
1118 tab-width: 8
1119 End: