website/tapuz.lua: Add tapuz flix support
[libquvi-scripts.git] / share / lua / website / tapuz.lua
blob8cc855d44e0172a0c23b2147dad44ec6e2b67d25
2 -- libquvi-scripts
3 -- Copyright (C) 2012 Tzafrir Cohen <tzafrir@cohens.org.il>
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 -- Identify the script.
24 function ident(self)
25 package.path = self.script_dir .. '/?.lua'
26 local C = require 'quvi/const'
27 local r = {}
28 --- http://flix.tapuz.co.il/v/watch-4158845-.html
29 r.domain = "flix%.tapuz%.co%.il"
30 r.formats = "default"
31 r.categories = C.proto_http
32 local U = require 'quvi/util'
33 r.handles = U.handles(self.page_url, {r.domain},
34 {"/v/watch-.*.html", "/showVideo%.asp"})
35 return r
36 end
38 -- Query available formats.
39 function query_formats(self)
40 self.formats = 'default'
41 return self
42 end
44 -- Parse media URL.
45 function parse(self)
46 self.host_id = 'tapuz-flix'
48 self.id = self.page_url:match('/v/watch%-(%d+)%-.*%.html')
49 if not self.id then
50 self.id = self.page_url:match('/showVideo%.asp%?m=(%d+)')
51 or error("no match: media ID")
52 end
54 local xml_url_base = 'v/Handlers/XmlForPlayer.ashx' -- Variable?
55 local mako = 0 -- Does it matter?
56 local playerOptions = '0|1|grey|large|0' -- Does it matter? Format?
58 local p = quvi.fetch(self.page_url)
59 self.title = p:match('<meta name="item%-title" content="([^"]*)" />')
61 local s_fmt =
62 'http://flix.tapuz.co.il/%s?mediaid=%d&autoplay=0&mako=%d'
63 .. '&playerOptions=%s'
65 local xml_url =
66 string.format(s_fmt, xml_url_base, self.id, mako, playerOptions)
68 local xml_page = quvi.fetch(xml_url)
69 self.url = { xml_page:match('<videoUrl>.*(http://.*%.flv).*</videoUrl>') }
71 return self
72 end
74 -- vim: set ts=4 sw=4 tw=72 expandtab: