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 Youporn
< Website
24 VALID_YOUPORN_URL_REGEX
= /^(http:\/\
/)?(www\.)?youporn\.com\/watch\
/(\d+)(\/.*)?$/
26 def self.owns_url
?(url
)
27 return url
=~ VALID_YOUPORN_URL_REGEX
32 page_data
= self.get_page_data(@url)
33 video_url
= self.parse_video_url(page_data
)
40 # Get the FLV file URL from the HTML page for this movie.
41 # They don't obfuscate it or anything, so we assume here
42 # that the first "download" url ending in ".flv" is the
44 def parse_video_url(page_data
)
45 flv_regex
= /http:\/\
/download\.youporn\.com\/.*?\
.flv
/
46 matches
= flv_regex
.match(page_data
)
47 flv_url
= matches
[0] if not matches
.nil?
53 def get_page_data(url
)
56 response
= Net
::HTTP.start(uri
.host
, uri
.port
) do |http
|
57 # Bypass the stupid age verification.
58 form_data
= 'user_choice=Enter'
59 http
.post(uri
.path
, form_data
, self.get_headers())
65 # Build the header hash from the URL we're requesting.
67 headers
= { 'Referer' => @url,
68 'Content-Type' => 'application/x-www-form-urlencoded' }