root/modules/demux/playlist/podcast.c

Revision db6404e51faf77f3bb3f1c32677be55465ef961b, 12.9 kB (checked in by Antoine Cellerier <dionoea@videolan.org>, 2 months ago)

Fix opening of some podcasts.

Fixes opening podcasts like http://feeds.feedburner.com/Terravideos

  • Property mode set to 100644
Line 
1 /*****************************************************************************
2  * podcast.c : podcast playlist imports
3  *****************************************************************************
4  * Copyright (C) 2005 the VideoLAN team
5  * $Id$
6  *
7  * Authors: Antoine Cellerier <dionoea -at- videolan -dot- org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #ifdef HAVE_CONFIG_H
28 # include "config.h"
29 #endif
30
31 #include <vlc_common.h>
32 #include <vlc_demux.h>
33
34 #include "playlist.h"
35 #include "vlc_xml.h"
36
37 struct demux_sys_t
38 {
39     char *psz_prefix;
40     xml_t *p_xml;
41     xml_reader_t *p_xml_reader;
42 };
43
44 /*****************************************************************************
45  * Local prototypes
46  *****************************************************************************/
47 static int Demux( demux_t *p_demux);
48 static int Control( demux_t *p_demux, int i_query, va_list args );
49
50 /*****************************************************************************
51  * Import_podcast: main import function
52  *****************************************************************************/
53 int Import_podcast( vlc_object_t *p_this )
54 {
55     demux_t *p_demux = (demux_t *)p_this;
56
57     if( !demux_IsForced( p_demux, "podcast" ) )
58         return VLC_EGENERIC;
59
60     STANDARD_DEMUX_INIT_MSG( "using podcast reader" );
61     p_demux->p_sys->psz_prefix = FindPrefix( p_demux );
62     p_demux->p_sys->p_xml = NULL;
63     p_demux->p_sys->p_xml_reader = NULL;
64
65     return VLC_SUCCESS;
66 }
67
68 /*****************************************************************************
69  * Deactivate: frees unused data
70  *****************************************************************************/
71 void Close_podcast( vlc_object_t *p_this )
72 {
73     demux_t *p_demux = (demux_t *)p_this;
74     demux_sys_t *p_sys = p_demux->p_sys;
75
76     free( p_sys->psz_prefix );
77     if( p_sys->p_xml_reader ) xml_ReaderDelete( p_sys->p_xml, p_sys->p_xml_reader );
78     if( p_sys->p_xml ) xml_Delete( p_sys->p_xml );
79     free( p_sys );
80 }
81
82 /* "specs" : http://phobos.apple.com/static/iTunesRSS.html */
83 static int Demux( demux_t *p_demux )
84 {
85     demux_sys_t *p_sys = p_demux->p_sys;
86
87     bool b_item = false;
88     bool b_image = false;
89     int i_ret;
90
91     xml_t *p_xml;
92     xml_reader_t *p_xml_reader;
93     char *psz_elname = NULL;
94     char *psz_item_mrl = NULL;
95     char *psz_item_size = NULL;
96     char *psz_item_type = NULL;
97     char *psz_item_name = NULL;
98     char *psz_item_date = NULL;
99     char *psz_item_author = NULL;
100     char *psz_item_category = NULL;
101     char *psz_item_duration = NULL;
102     char *psz_item_keywords = NULL;
103     char *psz_item_subtitle = NULL;
104     char *psz_item_summary = NULL;
105     int i_type;
106     input_item_t *p_input;
107
108     INIT_PLAYLIST_STUFF;
109
110     p_xml = p_sys->p_xml = xml_Create( p_demux );
111     if( !p_xml ) return -1;
112
113 /*    psz_elname = stream_ReadLine( p_demux->s );
114     if( psz_elname ) free( psz_elname );
115     psz_elname = 0;*/
116
117     p_xml_reader = xml_ReaderCreate( p_xml, p_demux->s );
118     if( !p_xml_reader ) return -1;
119     p_sys->p_xml_reader = p_xml_reader;
120
121     /* xml */
122     /* check root node */
123     if( xml_ReaderRead( p_xml_reader ) != 1 )
124     {
125         msg_Err( p_demux, "invalid file (no root node)" );
126         return -1;
127     }
128
129     while( xml_ReaderNodeType( p_xml_reader ) == XML_READER_NONE )
130         if( xml_ReaderRead( p_xml_reader ) != 1 )
131         {
132             msg_Err( p_demux, "invalid file (no root node)" );
133             return -1;
134         }
135
136     if( xml_ReaderNodeType( p_xml_reader ) != XML_READER_STARTELEM ||
137         ( psz_elname = xml_ReaderName( p_xml_reader ) ) == NULL ||
138         strcmp( psz_elname, "rss" ) )
139     {
140         msg_Err( p_demux, "invalid root node %i, %s",
141                  xml_ReaderNodeType( p_xml_reader ), psz_elname );
142         free( psz_elname );
143         return -1;
144     }
145     free( psz_elname ); psz_elname = NULL;
146
147     while( (i_ret = xml_ReaderRead( p_xml_reader )) == 1 )
148     {
149         // Get the node type
150         i_type = xml_ReaderNodeType( p_xml_reader );
151         switch( i_type )
152         {
153             // Error
154             case -1:
155                 return -1;
156                 break;
157
158             case XML_READER_STARTELEM:
159             {
160                 // Read the element name
161                 free( psz_elname );
162                 psz_elname = xml_ReaderName( p_xml_reader );
163                 if( !psz_elname ) return -1;
164
165                 if( !strcmp( psz_elname, "item" ) )
166                 {
167                     b_item = true;
168                 }
169                 else if( !strcmp( psz_elname, "image" ) )
170                 {
171                     b_item = true;
172                 }
173
174                 // Read the attributes
175                 while( xml_ReaderNextAttr( p_xml_reader ) == VLC_SUCCESS )
176                 {
177                     char *psz_name = xml_ReaderName( p_xml_reader );
178                     char *psz_value = xml_ReaderValue( p_xml_reader );
179                     if( !psz_name || !psz_value )
180                     {
181                         free( psz_name );
182                         free( psz_value );
183                         return -1;
184                     }
185                     if( !strcmp( psz_elname, "enclosure" ) &&
186                         !strcmp( psz_name, "url" ) )
187                     {
188                         psz_item_mrl = strdup( psz_value );
189                     }
190                     else if( !strcmp( psz_elname, "enclosure" ) &&
191                         !strcmp( psz_name, "length" ) )
192                     {
193                         psz_item_size = strdup( psz_value );
194                     }
195                     else if( !strcmp( psz_elname, "enclosure" ) &&
196                         !strcmp( psz_name, "type" ) )
197                     {
198                         psz_item_type = strdup( psz_value );
199                     }
200                     else
201                     {
202                         msg_Dbg( p_demux,"unhandled attribure %s in element %s",
203                                   psz_name, psz_elname );
204                     }
205                     free( psz_name );
206                     free( psz_value );
207                 }
208                 break;
209             }
210             case XML_READER_TEXT:
211             {
212 #define SET_DATA( field, name ) else if( b_item == true \
213                 && !strcmp( psz_elname, name ) ) \
214                 { \
215                     field = strdup( psz_text ); \
216                 }
217                 char *psz_text = xml_ReaderValue( p_xml_reader );
218                 /* item specific meta data */
219                 if( b_item == true && !strcmp( psz_elname, "title" ) )
220                 {
221                     psz_item_name = strdup( psz_text );
222                 }
223                 else if( b_item == true
224                          && ( !strcmp( psz_elname, "itunes:author" )
225                             ||!strcmp( psz_elname, "author" ) ) )
226                 { /* <author> isn't standard iTunes podcast stuff */
227                     psz_item_author = strdup( psz_text );
228                 }
229                 else if( b_item == true
230                          && ( !strcmp( psz_elname, "itunes:summary" )
231                             ||!strcmp( psz_elname, "description" ) ) )
232                 { /* <description> isn't standard iTunes podcast stuff */
233                     psz_item_summary = strdup( psz_text );
234                 }
235                 SET_DATA( psz_item_date, "pubDate" )
236                 SET_DATA( psz_item_category, "itunes:category" )
237                 SET_DATA( psz_item_duration, "itunes:duration" )
238                 SET_DATA( psz_item_keywords, "itunes:keywords" )
239                 SET_DATA( psz_item_subtitle, "itunes:subtitle" )
240                 /* toplevel meta data */
241                 else if( b_item == false && b_image == false
242                          && !strcmp( psz_elname, "title" ) )
243                 {
244                     input_item_SetName( p_current_input, psz_text );
245                 }
246 #define ADD_GINFO( info, name ) \
247     else if( !b_item && !b_image && !strcmp( psz_elname, name ) ) \
248     { \
249         input_item_AddInfo( p_current_input, _("Podcast Info"), \
250                                 _( info ), "%s", psz_text ); \
251     }
252                 ADD_GINFO( "Podcast Link", "link" )
253                 ADD_GINFO( "Podcast Copyright", "copyright" )
254                 ADD_GINFO( "Podcast Category", "itunes:category" )
255                 ADD_GINFO( "Podcast Keywords", "itunes:keywords" )
256                 ADD_GINFO( "Podcast Subtitle", "itunes:subtitle" )
257 #undef ADD_GINFO
258                 else if( b_item == false && b_image == false
259                          && ( !strcmp( psz_elname, "itunes:summary" )
260                             ||!strcmp( psz_elname, "description" ) ) )
261                 { /* <description> isn't standard iTunes podcast stuff */
262                     input_item_AddInfo( p_current_input,
263                              _( "Podcast Info" ), _( "Podcast Summary" ),
264                              "%s", psz_text );
265                 }
266                 else
267                 {
268                     msg_Dbg( p_demux, "unhandled text in element '%s'",
269                               psz_elname );
270                 }
271                 free( psz_text );
272                 break;
273             }
274             // End element
275             case XML_READER_ENDELEM:
276             {
277                 // Read the element name
278                 free( psz_elname );
279                 psz_elname = xml_ReaderName( p_xml_reader );
280                 if( !psz_elname ) return -1;
281                 if( !strcmp( psz_elname, "item" ) )
282                 {
283                     if( psz_item_mrl == NULL )
284                     {
285                         msg_Err( p_demux, "invalid XML (no enclosure markup)" );
286                         return -1;
287                     }
288                     p_input = input_item_NewExt( p_demux, psz_item_mrl,
289                                                 psz_item_name, 0, NULL, -1 );
290                     if( p_input == NULL ) break;
291 #define ADD_INFO( info, field ) \
292     if( field ) { input_item_AddInfo( p_input, \
293                             _( "Podcast Info" ),  _( info ), "%s", field ); }
294                     ADD_INFO( "Podcast Publication Date", psz_item_date  );
295                     ADD_INFO( "Podcast Author", psz_item_author );
296                     ADD_INFO( "Podcast Subcategory", psz_item_category );
297                     ADD_INFO( "Podcast Duration", psz_item_duration );
298                     ADD_INFO( "Podcast Keywords", psz_item_keywords );
299                     ADD_INFO( "Podcast Subtitle", psz_item_subtitle );
300                     ADD_INFO( "Podcast Summary", psz_item_summary );
301                     ADD_INFO( "Podcast Type", psz_item_type );
302                     if( psz_item_size )
303                     {
304                         input_item_AddInfo( p_input,
305                                                 _( "Podcast Info" ),
306                                                 _( "Podcast Size" ),
307                                                 "%s bytes",
308                                                 psz_item_size );
309                     }
310                     input_item_AddSubItem( p_current_input, p_input );
311                     vlc_gc_decref( p_input );
312                     FREENULL( psz_item_name );
313                     FREENULL( psz_item_mrl );
314                     FREENULL( psz_item_size );
315                     FREENULL( psz_item_type );
316                     FREENULL( psz_item_date );
317                     FREENULL( psz_item_author );
318                     FREENULL( psz_item_category );
319                     FREENULL( psz_item_duration );
320                     FREENULL( psz_item_keywords );
321                     FREENULL( psz_item_subtitle );
322                     FREENULL( psz_item_summary );
323                     b_item = false;
324                 }
325                 else if( !strcmp( psz_elname, "image" ) )
326                 {
327                     b_image = false;
328                 }
329                 free( psz_elname );
330                 psz_elname = strdup("");
331
332                 break;
333             }
334         }
335     }
336
337     if( i_ret != 0 )
338     {
339         msg_Warn( p_demux, "error while parsing data" );
340     }
341
342     HANDLE_PLAY_AND_RELEASE;
343     return 0; /* Needed for correct operation of go back */
344 }
345
346 static int Control( demux_t *p_demux, int i_query, va_list args )
347 {
348     VLC_UNUSED(p_demux); VLC_UNUSED(i_query); VLC_UNUSED(args);
349     return VLC_EGENERIC;
350 }
Note: See TracBrowser for help on using the browser.