]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - src/websites/redtube.rb
825a4ea727c9d476b20925cb18a855dfa328302f
[dead/whatever-dl.git] / src / websites / redtube.rb
1 #
2 # Copyright Michael Orlitzky
3 #
4 # http://michael.orlitzky.com/
5 #
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.
10 #
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.
15 #
16 # http://www.fsf.org/licensing/licenses/gpl.html
17
18 require 'src/website'
19 require 'cgi'
20
21
22 class Redtube < Website
23
24 VALID_REDTUBE_URL_REGEX = /^(http:\/\/)?(www\.)?redtube\.com\/(\d+)$/
25
26 def self.owns_url?(url)
27 return url =~ VALID_REDTUBE_URL_REGEX
28 end
29
30
31 def get_video_url()
32 page_data = self.get_page_data(@url)
33 return self.parse_hashlink(page_data)
34 end
35
36
37 protected;
38
39 def parse_video_id()
40 return /\d+/.match(@url)[0]
41 end
42
43
44 def parse_hashlink(page_data)
45 hashlink_regex = /hashlink=([^&]+)&/
46
47 matches = hashlink_regex.match(page_data)
48
49 if matches.nil?
50 raise StandardError.new("Could not parse the 'hashlink' Flash variable.")
51 end
52
53 # The hashlink variable /is/ the video URL, but it's encoded.
54 return CGI::unescape(matches[1])
55 end
56
57 end