3 -- Copyright (C) 2011 Lionel Elie Mamane <lionel@mamane.lu>
5 -- This file is part of libquvi-scripts <http://quvi.sourceforge.net/>.
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
23 local Metacafe
= {} -- Utility functions unique to this script.
25 -- Identify the script.
27 package
.path
= self
.script_dir
.. '/?.lua'
28 local C
= require
'quvi/const'
30 r
.domain
= "metacafe%.com"
32 r
.categories
= C
.proto_http
33 local U
= require
'quvi/util'
34 r
.handles
= U
.handles(self
.page_url
, {r
.domain
},
35 {"/watch/%d+/", "/watch/yt-[^/]+/"})
39 -- Query available formats.
40 function query_formats(self
)
41 if not Metacafe
.redirectp(self
) then
42 self
.formats
= 'default'
49 self
.host_id
= "metacafe"
51 if Metacafe
.redirectp(self
) then
55 local U
= require
'quvi/util'
56 local page
= Metacafe
.fetch_page(self
, U
)
58 local _
,_
,s
= page
:find('"title":"(.-)"')
59 self
.title
= U
.unescape(s
or error("no match: media title"))
61 local _
,_
,s
= page
:find('"itemID":"(.-)"')
62 self
.id
= s
or error("no match: media id")
64 local _
,_
,s
= page
:find('<link rel="image_src" href="(.-)"')
65 self
.thumbnail_url
= s
or ''
67 local _
,_
,s
= page
:find('"mediaData":"(.-)"')
68 local media_data
= U
.unescape(s
or error("no match: media data"))
69 local _
,_
,s
= media_data
:find('"mediaURL":"(.-)"')
70 self
.url
= U
.slash_unescape(s
or error("no match: media url"))
71 local _
,_
,s
= media_data
:find('"key":"(.-)"')
72 self
.url
= { self
.url
.. "?__gda__=" .. s
or error("no match: gda key") }
81 function Metacafe
.redirectp(self
)
82 local _
,_
,s
= self
.page_url
:find('/watch/yt%-([^/]+)/')
84 -- Hand over to youtube.lua
85 self
.redirect_url
= 'http://youtube.com/watch?v=' .. s
91 function Metacafe
.fetch_page(self
, U
)
92 self
.page_url
= Metacafe
.normalize(self
.page_url
)
94 return quvi
.fetch(self
.page_url
)
97 function Metacafe
.normalize(page_url
) -- "Normalize" embedded URLs
101 -- vim: set ts=4 sw=4 tw=72 expandtab: