6422913e5b5bb6e7a29c2db1708435fc6e9031cc
[libquvi-scripts.git] / share / media / break.lua
blob6422913e5b5bb6e7a29c2db1708435fc6e9031cc
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 Break = {} -- Utility functions unique to this script
23 -- Identify the media script.
24 function ident(qargs)
25 return {
26 can_parse_url = Break.can_parse_url(qargs),
27 domains = table.concat({'break.com'}, ',')
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 ''
36 qargs.title = p:match("sVidTitle:%s+['\"](.-)['\"]") or ''
37 qargs.id = p:match("iContentID:%s+'(.-)'") or ''
39 local n = p:match("videoPath:%s+['\"](.-)['\"]")
40 or error("no match: file path")
42 local h = p:match("icon:%s+['\"](.-)['\"]")
43 or error("no match: file hash")
45 qargs.streams = Break.iter_streams(n, h)
47 return qargs
48 end
51 -- Utility functions.
54 function Break.can_parse_url(qargs)
55 local U = require 'socket.url'
56 local t = U.parse(qargs.input_url)
57 if t and t.scheme and t.scheme:lower():match('^http$')
58 and t.host and t.host:lower():match('break%.com$')
59 and t.path and t.path:lower():match('^/index/')
60 then
61 return true
62 else
63 return false
64 end
65 end
67 function Break.iter_streams(n, h)
68 local u = string.format("%s?%s", n, h)
69 local S = require 'quvi/stream'
70 return {S.stream_new(u)}
71 end
73 -- vim: set ts=2 sw=2 tw=72 expandtab: