]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blob - src/open_uri_downloader.rb
44ea03776a95cf3da19e0b4e2303a1fa7b5a572b
[dead/whatever-dl.git] / src / open_uri_downloader.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/uri_utilities'
20
21 class OpenUriDownloader < Downloader
22
23 def download(url, outfile)
24 uri = URI.parse(url)
25
26 uu = UriUtilities.new()
27 puts "Fetching #{url}"
28 puts "Saving as #{outfile}."
29 puts ''
30 uu.download_with_progress_bar(uri, outfile)
31 end
32
33 end