]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - lib/whatever-dl/websites/pornhd.rb
b841f5ad7607b51ad0fd7737793ce10f535cb15c
[dead/whatever-dl.git] / lib / whatever-dl / websites / pornhd.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
19 require 'whatever-dl/website'
20 require 'cgi'
21
22 class Pornhd < Website
23
24 VALID_PORNHD_URL_REGEX = /^(http:\/\/)?(www\.)?pornhd\.com\/videos\/\d+\/(.+)$/
25
26 def self.owns_url?(url)
27 return url =~ VALID_PORNHD_URL_REGEX
28 end
29
30
31 def get_video_url()
32 page_data = self.get_page_data(@url)
33 video_url = self.parse_video_url(page_data)
34 return CGI::unescape(video_url)
35 end
36
37 def get_video_filename()
38 # Use whatever comes after the final frontslash in the main URL,
39 # not the video URL. Assume it's an FLV.
40 filename = @url.split('/').pop() + '.flv'
41 end
42
43 protected;
44
45 # Get the FLV file URL from the HTML page for this movie.
46 # It's stored in some Flash variable.
47 def parse_video_url(page_data)
48 video_url_regex = /&hd=(http.+?)&/
49 matches = video_url_regex.match(page_data)
50
51 puts matches
52 if (matches.nil? || matches.length < 2)
53 raise StandardError.new('Could not find the "flashvars" object param on the page.');
54 end
55
56 return matches[1]
57 end
58
59 end