conf: factor out session URI formation
[siplcs.git] / src / core / sipe-conf.h
blob106bddd40cdc03db2c5a1bd31bb0a5f2d6753b7a
1 /**
2 * @file sipe-conf.h
4 * pidgin-sipe
6 * Copyright (C) 2009-10 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 /* Forward declarations */
24 struct sipmsg;
25 struct sip_session;
26 struct sipe_core_private;
28 /**
29 * Obtains conferencing capabilities enabled on the server.
31 * @param sipe_private SIPE core data
33 void
34 sipe_conf_get_capabilities(struct sipe_core_private *sipe_private);
36 /**
37 * Checks whether given Multipoint Control Unit type is supported by the server.
39 gboolean
40 sipe_conf_supports_mcu_type(struct sipe_core_private *sipe_private,
41 const gchar *type);
43 /**
44 * Creates conference.
46 void
47 sipe_conf_add(struct sipe_core_private *sipe_private,
48 const gchar* who);
50 /**
51 * Processes incoming INVITE with
52 * Content-Type: application/ms-conf-invite+xml
53 * i.e. invitation to join conference.
55 * Server 2007+ functionality.
57 void
58 process_incoming_invite_conf(struct sipe_core_private *sipe_private,
59 struct sipmsg *msg);
61 /**
62 * Create new session with Focus URI
64 * @param chat_session non-NULL if we rejoin a conference
65 * @param focus_uri non-NULL if we create a new conference
67 * @return new SIP session
69 struct sip_session *
70 sipe_conf_create(struct sipe_core_private *sipe_private,
71 struct sipe_chat_session *chat_session,
72 const gchar *focus_uri);
74 /**
75 * Process of conference state
76 * Content-Type: application/conference-info+xml
78 void
79 sipe_process_conference(struct sipe_core_private *sipe_private,
80 struct sipmsg * msg);
82 /**
83 * Invites counterparty to join conference.
85 void
86 sipe_invite_conf(struct sipe_core_private *sipe_private,
87 struct sip_session *session,
88 const gchar* who);
90 /**
91 * Modify User Role.
92 * Sends request to Focus.
93 * INFO method is a carrier of application/cccp+xml
95 void
96 sipe_conf_modify_user_role(struct sipe_core_private *sipe_private,
97 struct sip_session *session,
98 const gchar* who);
101 * Ejects user from conference.
102 * Sends request to Focus.
103 * INFO method is a carrier of application/cccp+xml
105 void
106 sipe_conf_delete_user(struct sipe_core_private *sipe_private,
107 struct sip_session *session,
108 const gchar* who);
111 * Invokes when we are ejected from conference
112 * for example or conference has been timed out.
114 void
115 sipe_conf_immcu_closed(struct sipe_core_private *sipe_private,
116 struct sip_session *session);
119 * Removes a session waiting to be accepted or declined by the user.
121 * @param sipe_private SIPE core data
122 * @param msg SIP CANCEL message. If NULL is passed, all sessions not accepted
123 * will be canceled
125 void
126 sipe_conf_cancel_unaccepted(struct sipe_core_private *sipe_private,
127 struct sipmsg *msg);
130 * Creates URI for given session type within a conference specified by its
131 * focus URI.
133 * @param focus_uri conference focus URI
134 * @param session_type type of session for which to build the URI,
135 * e.g. "audio-video"
137 gchar *
138 sipe_conf_build_uri(const gchar *focus_uri, const gchar *session_type);
141 * Invokes when we leave conversation.
142 * Usually by closing chat wingow.
144 void
145 conf_session_close(struct sipe_core_private *sipe_private,
146 struct sip_session *session);
149 * Invoked to process message delivery notification
150 * in conference.
152 void
153 sipe_process_imdn(struct sipe_core_private *sipe_private,
154 struct sipmsg *msg);