2 * Copyright (C) 2010 Wim Taymans <wim.taymans at gmail.com>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
22 #ifndef __GST_RTSP_AUTH_H__
23 #define __GST_RTSP_AUTH_H__
25 typedef struct _GstRTSPAuth GstRTSPAuth;
26 typedef struct _GstRTSPAuthClass GstRTSPAuthClass;
27 typedef struct _GstRTSPAuthPrivate GstRTSPAuthPrivate;
29 #include "rtsp-client.h"
30 #include "rtsp-token.h"
34 #define GST_TYPE_RTSP_AUTH (gst_rtsp_auth_get_type ())
35 #define GST_IS_RTSP_AUTH(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_RTSP_AUTH))
36 #define GST_IS_RTSP_AUTH_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_RTSP_AUTH))
37 #define GST_RTSP_AUTH_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_RTSP_AUTH, GstRTSPAuthClass))
38 #define GST_RTSP_AUTH(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_RTSP_AUTH, GstRTSPAuth))
39 #define GST_RTSP_AUTH_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_RTSP_AUTH, GstRTSPAuthClass))
40 #define GST_RTSP_AUTH_CAST(obj) ((GstRTSPAuth*)(obj))
41 #define GST_RTSP_AUTH_CLASS_CAST(klass) ((GstRTSPAuthClass*)(klass))
46 * The authentication structure.
52 GstRTSPAuthPrivate *priv;
53 gpointer _gst_reserved[GST_PADDING];
58 * @authenticate: check the authentication of a client. The default implementation
59 * checks if the authentication in the header matches one of the basic
60 * authentication tokens. This function should set the authgroup field
62 * @check: check if a resource can be accessed. this function should
63 * call authenticate to authenticate the client when needed. The method
64 * should also construct and send an appropriate response message on
67 * The authentication class.
69 struct _GstRTSPAuthClass {
70 GObjectClass parent_class;
72 gboolean (*authenticate) (GstRTSPAuth *auth, GstRTSPContext *ctx);
73 gboolean (*check) (GstRTSPAuth *auth, GstRTSPContext *ctx,
76 gpointer _gst_reserved[GST_PADDING];
79 GType gst_rtsp_auth_get_type (void);
81 GstRTSPAuth * gst_rtsp_auth_new (void);
83 void gst_rtsp_auth_set_tls_certificate (GstRTSPAuth *auth, GTlsCertificate *cert);
84 GTlsCertificate * gst_rtsp_auth_get_tls_certificate (GstRTSPAuth *auth);
86 void gst_rtsp_auth_set_default_token (GstRTSPAuth *auth, GstRTSPToken *token);
87 GstRTSPToken * gst_rtsp_auth_get_default_token (GstRTSPAuth *auth);
89 void gst_rtsp_auth_add_basic (GstRTSPAuth *auth, const gchar * basic,
91 void gst_rtsp_auth_remove_basic (GstRTSPAuth *auth, const gchar * basic);
93 gboolean gst_rtsp_auth_check (const gchar *check);
97 gchar * gst_rtsp_auth_make_basic (const gchar * user, const gchar * pass);
101 * GST_RTSP_AUTH_CHECK_CONNECT:
103 * Check a new connection
105 #define GST_RTSP_AUTH_CHECK_CONNECT "auth.check.connect"
107 * GST_RTSP_AUTH_CHECK_URL:
109 * Check the URL and methods
111 #define GST_RTSP_AUTH_CHECK_URL "auth.check.url"
113 * GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_ACCESS:
115 * Check if access is allowed to a factory.
116 * When access is not allowed an 404 Not Found is sent in the response.
118 #define GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_ACCESS "auth.check.media.factory.access"
120 * GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_CONSTRUCT:
122 * Check if media can be constructed from a media factory
123 * A response should be sent on error.
125 #define GST_RTSP_AUTH_CHECK_MEDIA_FACTORY_CONSTRUCT "auth.check.media.factory.construct"
127 * GST_RTSP_AUTH_CHECK_TRANSPORT_CLIENT_SETTINGS:
129 * Check if the client can specify TTL, destination and
130 * port pair in multicast. No response is sent when the check returns
133 #define GST_RTSP_AUTH_CHECK_TRANSPORT_CLIENT_SETTINGS "auth.check.transport.client-settings"
138 * GST_RTSP_TOKEN_MEDIA_FACTORY_ROLE:
140 * G_TYPE_STRING, the role to use when dealing with media factories
142 * The default #GstRTSPAuth object uses this string in the token to find the
143 * role of the media factory. It will then retrieve the #GstRTSPPermissions of
144 * the media factory and retrieve the role with the same name.
146 #define GST_RTSP_TOKEN_MEDIA_FACTORY_ROLE "media.factory.role"
148 * GST_RTSP_TOKEN_TRANSPORT_CLIENT_SETTINGS:
150 * G_TYPE_BOOLEAN, %TRUE if the client can specify TTL, destination and
151 * port pair in multicast.
153 #define GST_RTSP_TOKEN_TRANSPORT_CLIENT_SETTINGS "transport.client-settings"
157 * GST_RTSP_PERM_MEDIA_FACTORY_ACCESS:
159 * G_TYPE_BOOLEAN, %TRUE if the media can be accessed, %FALSE will
160 * return a 404 Not Found error when trying to access the media.
162 #define GST_RTSP_PERM_MEDIA_FACTORY_ACCESS "media.factory.access"
164 * GST_RTSP_PERM_MEDIA_FACTORY_CONSTRUCT:
166 * G_TYPE_BOOLEAN, %TRUE if the media can be constructed, %FALSE will
167 * return a 404 Not Found error when trying to access the media.
169 #define GST_RTSP_PERM_MEDIA_FACTORY_CONSTRUCT "media.factory.construct"
173 #endif /* __GST_RTSP_AUTH_H__ */