auth: add auth checks
[platform/upstream/gstreamer.git] / examples / test-auth.c
1 /* GStreamer
2  * Copyright (C) 2008 Wim Taymans <wim.taymans at gmail.com>
3  *
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.
8  *
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.
13  *
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.
18  */
19
20 #include <gst/gst.h>
21
22 #include <gst/rtsp-server/rtsp-server.h>
23
24 static gboolean
25 remove_func (GstRTSPSessionPool * pool, GstRTSPSession * session,
26     GstRTSPServer * server)
27 {
28   return GST_RTSP_FILTER_REMOVE;
29 }
30
31 static gboolean
32 remove_sessions (GstRTSPServer * server)
33 {
34   GstRTSPSessionPool *pool;
35
36   g_print ("removing all sessions\n");
37   pool = gst_rtsp_server_get_session_pool (server);
38   gst_rtsp_session_pool_filter (pool,
39       (GstRTSPSessionPoolFilterFunc) remove_func, server);
40   g_object_unref (pool);
41
42   return FALSE;
43 }
44
45 static gboolean
46 timeout (GstRTSPServer * server)
47 {
48   GstRTSPSessionPool *pool;
49
50   pool = gst_rtsp_server_get_session_pool (server);
51   gst_rtsp_session_pool_cleanup (pool);
52   g_object_unref (pool);
53
54   return TRUE;
55 }
56
57 int
58 main (int argc, char *argv[])
59 {
60   GMainLoop *loop;
61   GstRTSPServer *server;
62   GstRTSPMountPoints *mounts;
63   GstRTSPMediaFactory *factory;
64   GstRTSPAuth *auth;
65   GstRTSPToken *token;
66   gchar *basic;
67   GstStructure *s;
68   gchar *role_user[] = { "user", NULL };
69   gchar *role_admin[] = { "admin", NULL };
70
71   gst_init (&argc, &argv);
72
73   loop = g_main_loop_new (NULL, FALSE);
74
75   /* create a server instance */
76   server = gst_rtsp_server_new ();
77
78   /* get the mounts for this server, every server has a default mapper object
79    * that be used to map uri mount points to media factories */
80   mounts = gst_rtsp_server_get_mount_points (server);
81
82
83   /* make a media factory for a test stream. The default media factory can use
84    * gst-launch syntax to create pipelines. 
85    * any launch line works as long as it contains elements named pay%d. Each
86    * element with pay%d names will be a stream */
87   factory = gst_rtsp_media_factory_new ();
88   gst_rtsp_media_factory_set_launch (factory, "( "
89       "videotestsrc ! video/x-raw,width=352,height=288,framerate=15/1 ! "
90       "x264enc ! rtph264pay name=pay0 pt=96 "
91       "audiotestsrc ! audio/x-raw,rate=8000 ! "
92       "alawenc ! rtppcmapay name=pay1 pt=97 " ")");
93
94   /* attach the test factory to the /test url */
95   gst_rtsp_mount_points_add_factory (mounts, "/test", factory);
96
97   /* make another factory */
98   factory = gst_rtsp_media_factory_new ();
99   gst_rtsp_media_factory_set_launch (factory, "( "
100       "videotestsrc ! video/x-raw,width=352,height=288,framerate=30/1 ! "
101       "x264enc ! rtph264pay name=pay0 pt=96 )");
102   /* attach the test factory to the /test url */
103   gst_rtsp_mount_points_add_factory (mounts, "/test2", factory);
104
105   /* don't need the ref to the mapper anymore */
106   g_object_unref (mounts);
107
108   /* make a new authentication manager */
109   auth = gst_rtsp_auth_new ();
110
111   /* make user token */
112   token = gst_rtsp_token_new ();
113   s = gst_rtsp_token_writable_structure (token);
114   gst_structure_set (s, "manager.role", G_TYPE_STRING, "user", NULL);
115   gst_structure_set (s, "factory.media.roles", G_TYPE_STRV, role_user, NULL);
116   basic = gst_rtsp_auth_make_basic ("user", "password");
117   gst_rtsp_auth_add_basic (auth, basic, token);
118   g_free (basic);
119   gst_rtsp_token_unref (token);
120
121   /* make admin token */
122   token = gst_rtsp_token_new ();
123   s = gst_rtsp_token_writable_structure (token);
124   gst_structure_set (s, "manager.role", G_TYPE_STRING, "admin", NULL);
125   gst_structure_set (s, "factory.media.roles", G_TYPE_STRV, role_admin, NULL);
126   basic = gst_rtsp_auth_make_basic ("admin", "power");
127   gst_rtsp_auth_add_basic (auth, basic, token);
128   g_free (basic);
129   gst_rtsp_token_unref (token);
130
131   /* make admin2 token */
132   token = gst_rtsp_token_new ();
133   s = gst_rtsp_token_writable_structure (token);
134   gst_structure_set (s, "manager.role", G_TYPE_STRING, "admin", NULL);
135   gst_structure_set (s, "factory.media.roles", G_TYPE_STRV, role_admin, NULL);
136   basic = gst_rtsp_auth_make_basic ("admin2", "power2");
137   gst_rtsp_auth_add_basic (auth, basic, token);
138   g_free (basic);
139   gst_rtsp_token_unref (token);
140
141   /* set as the server authentication manager */
142   gst_rtsp_server_set_auth (server, auth);
143   g_object_unref (auth);
144
145   /* attach the server to the default maincontext */
146   if (gst_rtsp_server_attach (server, NULL) == 0)
147     goto failed;
148
149   g_timeout_add_seconds (2, (GSourceFunc) timeout, server);
150   g_timeout_add_seconds (10, (GSourceFunc) remove_sessions, server);
151
152   /* start serving */
153   g_print ("stream with user:password ready at rtsp://127.0.0.1:8554/test\n");
154   g_print ("stream with admin:power ready at rtsp://127.0.0.1:8554/test\n");
155   g_print ("stream with admin2:power2 ready at rtsp://127.0.0.1:8554/test2\n");
156   g_main_loop_run (loop);
157
158   return 0;
159
160   /* ERRORS */
161 failed:
162   {
163     g_print ("failed to attach the server\n");
164     return -1;
165   }
166 }