Split from git://repo.or.cz/quvi.git
[libquvi-scripts.git] / share / lua / website / pluzz.lua
blob46c8557fb926a403618c764cb7447d3c2c82ee1d
2 -- libquvi-scripts
3 -- Copyright (C) 2011 Toni Gundogdu <legatvs@gmail.com>
4 --
5 -- This file is part of libquvi-scripts <http://quvi.sourceforge.net/>.
6 --
7 -- This library is free software; you can redistribute it and/or
8 -- modify it under the terms of the GNU Lesser General Public
9 -- License as published by the Free Software Foundation; either
10 -- version 2.1 of the License, or (at your option) any later version.
12 -- This library is distributed in the hope that it will be useful,
13 -- but WITHOUT ANY WARRANTY; without even the implied warranty of
14 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 -- Lesser General Public License for more details.
17 -- You should have received a copy of the GNU Lesser General Public
18 -- License along with this library; if not, write to the Free Software
19 -- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 -- 02110-1301 USA
23 -- NOTE: pluzz.fr videos expire 7 days after their original broadcast
24 -- on France Televisions
26 -- Identify the script.
27 function ident(self)
28 package.path = self.script_dir .. '/?.lua'
29 local C = require 'quvi/const'
30 local r = {}
31 r.domain = "pluzz%.fr"
32 r.formats = "default"
33 r.categories = C.proto_mms
34 local U = require 'quvi/util'
35 r.handles = U.handles(self.page_url,
36 {r.domain}, {"/.-%d+-%d+-%d+-%d+h-%d+%.html"})
37 -- http://www.pluzz.fr/sale-temps-pour-la-planete-2011-08-16-20h39.html
38 return r
39 end
41 -- Query available formats.
42 function query_formats(self)
43 self.formats = 'default'
44 return self
45 end
47 -- Parse media URL.
48 function parse(self)
49 local page = quvi.fetch(self.page_url)
51 local s = page:match('class="alert">(.-)<')
52 if s then
53 local H = require 'quvi/html'
54 error(s:gsub('&#(%d+);', H.to_utf8))
55 end
57 self.redirect_url = page:match('<div id="playerCtnr">.-<a href="(.-)"')
58 or error("no match: redirect url")
60 return self
61 end
63 -- vim: set ts=4 sw=4 tw=72 expandtab: