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