]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - lib/whatever-dl/websites/motherless.rb
Fix the motherless video URL regex.
[dead/whatever-dl.git] / lib / whatever-dl / websites / motherless.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
21 class Motherless < Website
22
23 VALID_MOTHERLESS_URL_REGEX = /^(http:\/\/)?(www\.)?motherless\.com\/[[:alnum:]]+$/
24
25 def self.owns_url?(url)
26 return url =~ VALID_MOTHERLESS_URL_REGEX
27 end
28
29
30 def get_video_url()
31 page_data = self.get_page_data(@url)
32 filepath = parse_video_url(page_data)
33
34 # Some videos 403 without this parameter.
35 get_params = "?start=0"
36 video_url = filepath + get_params
37
38 return video_url
39 end
40
41
42 protected;
43
44
45 def parse_video_url(page_data)
46 video_url_regex = /file: \'(http.*?\.flv)\'/i
47 matches = video_url_regex.match(page_data)
48
49 if matches.nil?
50 raise StandardError.new("Couldn't parse the video URL from flashvars.")
51 end
52
53 return matches[1]
54 end
55
56 end