2 # Copyright Michael Orlitzky
4 # http://michael.orlitzky.com/
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (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 General Public License for more details.
16 # http://www.fsf.org/licensing/licenses/gpl.html
22 class Redtube
< Website
24 VALID_REDTUBE_URL_REGEX
= /^(http:\/\
/)?(www\.)?redtube\.com\/(\d+
)$/
26 def self.owns_url
?(url
)
27 return url
=~ VALID_REDTUBE_URL_REGEX
32 page_data
= self.get_page_data(@url)
34 # We prefer to parse the HTML5 version because it can come in a
35 # nicer container format.
36 return parse_html5_src(page_data
)
38 return self.parse_hashlink(page_data
)
46 return /\d+/.match(@url)[0]
50 def parse_html5_src(page_data
)
51 html5_src_regex
= /\"<source src='([^']+?)'/
53 matches
= html5_src_regex
.match(page_data
)
55 if matches
.nil? or matches
.length
< 2
56 raise StandardError
.new("Could not parse the HTML5 source src.")
64 def parse_hashlink(page_data
)
65 hashlink_regex
= /hashlink=([^&]+)&/
67 matches
= hashlink_regex
.match(page_data
)
69 if matches
.nil? or matches
.length
< 2
70 raise StandardError
.new("Could not parse the 'hashlink' Flash variable.")
73 # The hashlink variable /is/ the video URL, but it's encoded.
74 return CGI
::unescape(matches
[1])