]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - lib/whatever-dl/websites/deviantclip.rb
Move all of the 'src' code under the more-standard 'lib'.
[dead/whatever-dl.git] / lib / whatever-dl / websites / deviantclip.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 require 'cgi'
21
22 class Deviantclip < Website
23
24 VALID_DEVIANTCLIP_URL_REGEX = /^(http:\/\/)?(www.)?deviantclip\.com\/[a-z0-9\-_\.]+$/i
25
26 def self.owns_url?(url)
27 return url =~ VALID_DEVIANTCLIP_URL_REGEX
28 end
29
30
31 def get_video_url()
32 page_data = get_page_data(@url)
33 filepath = parse_video_url(page_data)
34
35 return CGI::unescape(filepath)
36 end
37
38
39 protected;
40
41 def parse_video_url(page_data)
42 video_url_regex = /"file":"([^"]+)"/i
43 matches = video_url_regex.match(page_data)
44
45 if matches.nil? or (matches.length < 2)
46 raise StandardError.new("Couldn't parse the 'file' JSON parameter.")
47 else
48 return matches[1]
49 end
50 end
51
52 end