]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - src/websites/tnaflix.rb
Fix all Ruby 1.9 errors and warnings.
[dead/whatever-dl.git] / src / websites / tnaflix.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 'src/website'
20
21
22 class Tnaflix < Website
23
24 VALID_TNAFLIX_URL_REGEX = /^(http:\/\/)?(www\.)?tnaflix\.com\/view_video\.php\?viewkey=([[:alnum:]]+)(&player=old)?$/
25
26 def self.owns_url?(url)
27 return url =~ VALID_TNAFLIX_URL_REGEX
28 end
29
30
31 def get_video_url()
32 # The old player page has the video URL conveniently
33 # stored in one variable.
34 old_player_url = @url + '&player=old'
35 old_player_page_data = get_page_data(old_player_url)
36 video_url = parse_video_url(old_player_page_data)
37
38 return video_url
39 end
40
41
42 def get_video_filename()
43 return (self.parse_video_id() + '.flv')
44 end
45
46 protected;
47
48 def parse_video_id()
49 video_id_regex = /([[:alnum:]]+)(&player=old)?$/
50 matches = video_id_regex.match(@url)
51 video_id = matches[1] if not matches.nil? || matches.length < 2
52
53 return video_id
54 end
55
56
57 # The old player page has the video URL stored in a Flash
58 # variable called 'videoURL'.
59 def parse_video_url(page_data)
60 video_url_regex = /addVariable\(\'videoUrl\',\'([^\']+)/
61 matches = video_url_regex.match(page_data)
62 video_url = matches[1] if not matches.nil? || matches.length < 1
63
64 return video_url
65 end
66
67
68 end