]> git.sesse.net Git - vlc/blob - share/lua/sd/fmc.lua
7be1c8ea0ad5fa69f22baee7b8ede333e0997da8
[vlc] / share / lua / sd / fmc.lua
1 --[[
2  $Id$
3
4  Copyright © 2010 VideoLAN and AUTHORS
5
6  Authors: Fabio Ritrovato <sephiroth87 at videolan dot org>
7
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.
12
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.
17
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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21 --]]
22 require "simplexml"
23
24 function descriptor()
25     return { title="Free Music Charts" }
26 end
27
28 function main()
29     local loading = vlc.sd.add_item( {path="vlc://nop",title="Loading..."} )
30     local tree = simplexml.parse_url("http://www.archive.org/download/freemusiccharts.songs/fmc.xml")
31     for _, show_node in ipairs( tree.children ) do
32         simplexml.add_name_maps( show_node )
33         local node = vlc.sd.add_node( {title=show_node.children_map["description"][1].children[1]} )
34         if tonumber( show_node.children_map["songcount"][1].children[1] ) > 0 then
35             local songs_node = node:add_node( {title="Songs"} )
36             for _, song_node in ipairs( show_node.children_map["songs"][1].children ) do
37                 _, _, artist, title = string.find( song_node.children_map["name"][1].children[1], "(.+)%s*-%s*(.+)" )
38                 local rank = song_node.children_map["rank"][1].children[1]
39                 if rank ~= nil then
40                     rank = "Rank: " .. rank
41                 else
42                     rank = "Rank: N/A"
43                 end
44                 local votes = song_node.children_map["votes"][1].children[1]
45                 if votes ~= nil then
46                     votes = "Votes: " .. votes
47                 else
48                     votes = "Votes: N/A"
49                 end
50                 songs_node:add_subitem( {path=song_node.children_map["url"][1].children[1],title=title,artist=artist,description=rank .. ", " .. votes} )
51             end
52         end
53         node:add_subitem( {title=show_node.children_map["date"][1].children[1] .. " MP3 Podcast",path=show_node.children_map["podcastmp3"][1].children[1]} )
54         node:add_subitem( {title=show_node.children_map["date"][1].children[1] .. " OGG Podcast",path=show_node.children_map["podcastogg"][1].children[1]} )
55     end
56     vlc.sd.remove_item( loading )
57 end