Use renamed quvi.http.fetch
[libquvi-scripts.git] / share / media / gaskrank.lua
blob0da449d0e8d8db255a0a5319f36c6b574217275d
1 -- libquvi-scripts
2 -- Copyright (C) 2010-2013 Toni Gundogdu <legatvs@gmail.com>
3 --
4 -- This file is part of libquvi-scripts <http://quvi.sourceforge.net/>.
5 --
6 -- This program is free software: you can redistribute it and/or
7 -- modify it under the terms of the GNU Affero General Public
8 -- License as published by the Free Software Foundation, either
9 -- version 3 of the License, or (at your option) any later version.
11 -- This program is distributed in the hope that it will be useful,
12 -- but WITHOUT ANY WARRANTY; without even the implied warranty of
13 -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 -- GNU Affero General Public License for more details.
16 -- You should have received a copy of the GNU Affero General
17 -- Public License along with this program. If not, see
18 -- <http://www.gnu.org/licenses/>.
21 local Gaskrank = {} -- Utility functions unique to this script
23 -- Identify the media script.
24 function ident(qargs)
25 return {
26 can_parse_url = Gaskrank.can_parse_url(qargs),
27 domains = table.concat({'gaskrank.tv'}, ',')
29 end
31 -- Parse media properties.
32 function parse(qargs)
33 local p = quvi.http.fetch(qargs.input_url).data
35 qargs.thumb_url = p:match('"og:image" content="(.-)"') or ''
37 qargs.title = p:match('"og:title" content="(.-)"') or ''
39 qargs.streams = Gaskrank.iter_streams(p)
41 qargs.id = qargs.streams[1].url:match("/%d+/(%d+)%.%w+") or ''
43 return qargs
44 end
47 -- Utility functions.
50 function Gaskrank.can_parse_url(qargs)
51 local U = require 'socket.url'
52 local t = U.parse(qargs.input_url)
53 if t and t.scheme and t.scheme:lower():match('^http$')
54 and t.host and t.host:lower():match('gaskrank%.tv$')
55 and t.path and t.path:lower():match('^/tv/')
56 then
57 return true
58 else
59 return false
60 end
61 end
63 function Gaskrank.iter_streams(p)
64 local u = p:match("(http://movies.-%.flv)")
65 or error("no match: media stream URL")
66 local S = require 'quvi/stream'
67 return {S.stream_new(u)}
68 end
70 -- vim: set ts=2 sw=2 tw=72 expandtab: