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 Xvideos
< Website
24 VALID_XVIDEOS_URL_REGEX
= /^(http:\/\
/)?(www.)?xvideos\.com\/video
[0-9]+\
/[a-z0-9_\-]+$/i
26 def self.owns_url
?(url
)
27 return url
=~ VALID_XVIDEOS_URL_REGEX
32 page_data
= get_page_data(@url)
33 filepath
= parse_video_url(page_data
)
35 return CGI
::unescape(filepath
)
39 def get_video_filename()
40 # Override the default since a nice human-readable name is right
42 file_and_params
= @url.split('/').pop()
44 filename
= file_and_params
45 # Unless it contains URL parameters. We don't want those.
46 if file_and_params
.include?('?')
47 # There must be some parameters. Strip them off.
48 param_start_idx
= file_and_params
.index('?')
49 filename
= file_and_params
[0...(param_start_idx
)]
52 # Use the Website method to get the real extension of the file
53 # (the file /name/ we get back will be useless, but we can ignore
55 extension
= super().split('.').pop()
56 filename +
= '.' + extension
64 def parse_video_url(page_data
)
65 video_url_regex
= /flv_url=([^&]+)&/i
66 matches
= video_url_regex
.match(page_data
)
68 if matches
.nil? or (matches
.length
< 2)
69 raise StandardError
.new("Couldn't parse the 'flv_url' parameter.")