2010-10-11 20:25:05 +02:00
|
|
|
/*
|
2013-01-27 17:38:09 +01:00
|
|
|
* Copyright (C) 2003-2013 The Music Player Daemon Project
|
2010-10-11 20:25:05 +02:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
2013-01-27 17:38:09 +01:00
|
|
|
#include "RssPlaylistPlugin.hxx"
|
2013-09-05 09:37:54 +02:00
|
|
|
#include "PlaylistPlugin.hxx"
|
|
|
|
#include "MemorySongEnumerator.hxx"
|
2013-09-05 00:06:31 +02:00
|
|
|
#include "InputStream.hxx"
|
2013-07-28 13:25:12 +02:00
|
|
|
#include "Song.hxx"
|
2013-09-05 18:22:02 +02:00
|
|
|
#include "tag/Tag.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
2010-10-11 20:25:05 +02:00
|
|
|
|
|
|
|
#include <glib.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "rss"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is the state object for the GLib XML parser.
|
|
|
|
*/
|
2013-01-27 17:38:09 +01:00
|
|
|
struct RssParser {
|
2010-10-11 20:25:05 +02:00
|
|
|
/**
|
|
|
|
* The list of songs (in reverse order because that's faster
|
|
|
|
* while adding).
|
|
|
|
*/
|
2013-01-29 18:51:40 +01:00
|
|
|
std::forward_list<SongPointer> songs;
|
2010-10-11 20:25:05 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The current position in the XML file.
|
|
|
|
*/
|
|
|
|
enum {
|
|
|
|
ROOT, ITEM,
|
|
|
|
} state;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The current tag within the "entry" element. This is only
|
|
|
|
* valid if state==ITEM. TAG_NUM_OF_ITEM_TYPES means there
|
|
|
|
* is no (known) tag.
|
|
|
|
*/
|
|
|
|
enum tag_type tag;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The current song. It is allocated after the "location"
|
|
|
|
* element.
|
|
|
|
*/
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *song;
|
2013-01-27 17:38:09 +01:00
|
|
|
|
|
|
|
RssParser()
|
2013-01-29 18:51:40 +01:00
|
|
|
:state(ROOT) {}
|
2010-10-11 20:25:05 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static const gchar *
|
|
|
|
get_attribute(const gchar **attribute_names, const gchar **attribute_values,
|
|
|
|
const gchar *name)
|
|
|
|
{
|
|
|
|
for (unsigned i = 0; attribute_names[i] != NULL; ++i)
|
|
|
|
if (g_ascii_strcasecmp(attribute_names[i], name) == 0)
|
|
|
|
return attribute_values[i];
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-08-04 23:48:01 +02:00
|
|
|
rss_start_element(gcc_unused GMarkupParseContext *context,
|
2010-10-11 20:25:05 +02:00
|
|
|
const gchar *element_name,
|
|
|
|
const gchar **attribute_names,
|
|
|
|
const gchar **attribute_values,
|
2013-08-04 23:48:01 +02:00
|
|
|
gpointer user_data, gcc_unused GError **error)
|
2010-10-11 20:25:05 +02:00
|
|
|
{
|
2013-01-27 17:38:09 +01:00
|
|
|
RssParser *parser = (RssParser *)user_data;
|
2010-10-11 20:25:05 +02:00
|
|
|
|
|
|
|
switch (parser->state) {
|
2013-01-27 17:38:09 +01:00
|
|
|
case RssParser::ROOT:
|
2010-10-11 20:25:05 +02:00
|
|
|
if (g_ascii_strcasecmp(element_name, "item") == 0) {
|
2013-01-27 17:38:09 +01:00
|
|
|
parser->state = RssParser::ITEM;
|
2013-07-28 13:25:12 +02:00
|
|
|
parser->song = Song::NewRemote("rss:");
|
2010-10-11 20:25:05 +02:00
|
|
|
parser->tag = TAG_NUM_OF_ITEM_TYPES;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
2013-01-27 17:38:09 +01:00
|
|
|
case RssParser::ITEM:
|
2010-10-11 20:25:05 +02:00
|
|
|
if (g_ascii_strcasecmp(element_name, "enclosure") == 0) {
|
|
|
|
const gchar *href = get_attribute(attribute_names,
|
|
|
|
attribute_values,
|
|
|
|
"url");
|
|
|
|
if (href != NULL) {
|
|
|
|
/* create new song object, and copy
|
|
|
|
the existing tag over; we cannot
|
|
|
|
replace the existing song's URI,
|
|
|
|
because that attribute is
|
|
|
|
immutable */
|
2013-07-28 13:25:12 +02:00
|
|
|
Song *song = Song::NewRemote(href);
|
2010-10-11 20:25:05 +02:00
|
|
|
|
|
|
|
if (parser->song != NULL) {
|
|
|
|
song->tag = parser->song->tag;
|
|
|
|
parser->song->tag = NULL;
|
2013-07-28 13:25:12 +02:00
|
|
|
parser->song->Free();
|
2010-10-11 20:25:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
parser->song = song;
|
|
|
|
}
|
|
|
|
} else if (g_ascii_strcasecmp(element_name, "title") == 0)
|
|
|
|
parser->tag = TAG_TITLE;
|
|
|
|
else if (g_ascii_strcasecmp(element_name, "itunes:author") == 0)
|
|
|
|
parser->tag = TAG_ARTIST;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-08-04 23:48:01 +02:00
|
|
|
rss_end_element(gcc_unused GMarkupParseContext *context,
|
2010-10-11 20:25:05 +02:00
|
|
|
const gchar *element_name,
|
2013-08-04 23:48:01 +02:00
|
|
|
gpointer user_data, gcc_unused GError **error)
|
2010-10-11 20:25:05 +02:00
|
|
|
{
|
2013-01-27 17:38:09 +01:00
|
|
|
RssParser *parser = (RssParser *)user_data;
|
2010-10-11 20:25:05 +02:00
|
|
|
|
|
|
|
switch (parser->state) {
|
2013-01-27 17:38:09 +01:00
|
|
|
case RssParser::ROOT:
|
2010-10-11 20:25:05 +02:00
|
|
|
break;
|
|
|
|
|
2013-01-27 17:38:09 +01:00
|
|
|
case RssParser::ITEM:
|
2010-10-11 20:25:05 +02:00
|
|
|
if (g_ascii_strcasecmp(element_name, "item") == 0) {
|
|
|
|
if (strcmp(parser->song->uri, "rss:") != 0)
|
2013-01-29 18:51:40 +01:00
|
|
|
parser->songs.emplace_front(parser->song);
|
2010-10-11 20:25:05 +02:00
|
|
|
else
|
2013-07-28 13:25:12 +02:00
|
|
|
parser->song->Free();
|
2010-10-11 20:25:05 +02:00
|
|
|
|
2013-01-27 17:38:09 +01:00
|
|
|
parser->state = RssParser::ROOT;
|
2010-10-11 20:25:05 +02:00
|
|
|
} else
|
|
|
|
parser->tag = TAG_NUM_OF_ITEM_TYPES;
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-08-04 23:48:01 +02:00
|
|
|
rss_text(gcc_unused GMarkupParseContext *context,
|
2010-10-11 20:25:05 +02:00
|
|
|
const gchar *text, gsize text_len,
|
2013-08-04 23:48:01 +02:00
|
|
|
gpointer user_data, gcc_unused GError **error)
|
2010-10-11 20:25:05 +02:00
|
|
|
{
|
2013-01-27 17:38:09 +01:00
|
|
|
RssParser *parser = (RssParser *)user_data;
|
2010-10-11 20:25:05 +02:00
|
|
|
|
|
|
|
switch (parser->state) {
|
2013-01-27 17:38:09 +01:00
|
|
|
case RssParser::ROOT:
|
2010-10-11 20:25:05 +02:00
|
|
|
break;
|
|
|
|
|
2013-01-27 17:38:09 +01:00
|
|
|
case RssParser::ITEM:
|
2010-10-11 20:25:05 +02:00
|
|
|
if (parser->tag != TAG_NUM_OF_ITEM_TYPES) {
|
|
|
|
if (parser->song->tag == NULL)
|
2013-07-30 20:11:57 +02:00
|
|
|
parser->song->tag = new Tag();
|
|
|
|
parser->song->tag->AddItem(parser->tag,
|
|
|
|
text, text_len);
|
2010-10-11 20:25:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const GMarkupParser rss_parser = {
|
2013-01-27 17:38:09 +01:00
|
|
|
rss_start_element,
|
|
|
|
rss_end_element,
|
|
|
|
rss_text,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2010-10-11 20:25:05 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
rss_parser_destroy(gpointer data)
|
|
|
|
{
|
2013-01-27 17:38:09 +01:00
|
|
|
RssParser *parser = (RssParser *)data;
|
2010-10-11 20:25:05 +02:00
|
|
|
|
2013-01-27 17:38:09 +01:00
|
|
|
if (parser->state >= RssParser::ITEM)
|
2013-07-28 13:25:12 +02:00
|
|
|
parser->song->Free();
|
2010-10-11 20:25:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The playlist object
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-09-05 09:37:54 +02:00
|
|
|
static SongEnumerator *
|
2010-10-11 20:25:05 +02:00
|
|
|
rss_open_stream(struct input_stream *is)
|
|
|
|
{
|
2013-01-27 17:38:09 +01:00
|
|
|
RssParser parser;
|
2010-10-11 20:25:05 +02:00
|
|
|
GMarkupParseContext *context;
|
|
|
|
char buffer[1024];
|
|
|
|
size_t nbytes;
|
|
|
|
bool success;
|
2013-08-10 18:02:44 +02:00
|
|
|
Error error2;
|
2010-10-11 20:25:05 +02:00
|
|
|
GError *error = NULL;
|
|
|
|
|
|
|
|
/* parse the RSS XML file */
|
|
|
|
|
|
|
|
context = g_markup_parse_context_new(&rss_parser,
|
|
|
|
G_MARKUP_TREAT_CDATA_AS_TEXT,
|
|
|
|
&parser, rss_parser_destroy);
|
|
|
|
|
|
|
|
while (true) {
|
2013-09-05 00:06:31 +02:00
|
|
|
nbytes = is->LockRead(buffer, sizeof(buffer), error2);
|
2010-10-11 20:25:05 +02:00
|
|
|
if (nbytes == 0) {
|
2013-08-10 18:02:44 +02:00
|
|
|
if (error2.IsDefined()) {
|
2010-10-11 20:25:05 +02:00
|
|
|
g_markup_parse_context_free(context);
|
2013-08-10 18:02:44 +02:00
|
|
|
g_warning("%s", error2.GetMessage());
|
2010-10-11 20:25:05 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
success = g_markup_parse_context_parse(context, buffer, nbytes,
|
|
|
|
&error);
|
|
|
|
if (!success) {
|
|
|
|
g_warning("XML parser failed: %s", error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
g_markup_parse_context_free(context);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
success = g_markup_parse_context_end_parse(context, &error);
|
|
|
|
if (!success) {
|
|
|
|
g_warning("XML parser failed: %s", error->message);
|
|
|
|
g_error_free(error);
|
|
|
|
g_markup_parse_context_free(context);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-01-29 18:51:40 +01:00
|
|
|
parser.songs.reverse();
|
2013-09-05 09:37:54 +02:00
|
|
|
MemorySongEnumerator *playlist =
|
|
|
|
new MemorySongEnumerator(std::move(parser.songs));
|
2010-10-11 20:25:05 +02:00
|
|
|
|
|
|
|
g_markup_parse_context_free(context);
|
|
|
|
|
2013-01-29 18:56:35 +01:00
|
|
|
return playlist;
|
2010-10-11 20:25:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static const char *const rss_suffixes[] = {
|
|
|
|
"rss",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char *const rss_mime_types[] = {
|
|
|
|
"application/rss+xml",
|
|
|
|
"text/xml",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct playlist_plugin rss_playlist_plugin = {
|
2013-01-27 17:38:09 +01:00
|
|
|
"rss",
|
2010-10-11 20:25:05 +02:00
|
|
|
|
2013-01-27 17:38:09 +01:00
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
rss_open_stream,
|
2010-10-11 20:25:05 +02:00
|
|
|
|
2013-01-27 17:38:09 +01:00
|
|
|
nullptr,
|
|
|
|
rss_suffixes,
|
|
|
|
rss_mime_types,
|
2010-10-11 20:25:05 +02:00
|
|
|
};
|