File: downloader.rb

package info (click to toggle)
ruby-compass 0.12.2~dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 8,308 kB
  • sloc: ruby: 10,474; makefile: 42; xml: 14
file content (58 lines) | stat: -rw-r--r-- 1,662 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
require 'net/http'
require 'fileutils'
require 'rubygems'
require 'zip/zip'


def fetch(uri_str, limit = 10)
  raise ArgumentError, 'HTTP redirect too deep' if limit == 0

  url = URI.parse(uri_str)
  http = Net::HTTP.new(url.host, url.port)
  http.open_timeout = 10
  http.read_timeout = 30
  http.use_ssl = true
  response = http.start do |http|
     puts "getting #{url.path}"
     http.request_get(url.path)
  end
  
  case response
  when Net::HTTPSuccess     then response
  when Net::HTTPRedirection then fetch(response['location'], limit - 1)
  else
    response.error!
  end
end

def install_from_github(user, project, ext_name, branch = "master", working_directory = Dir.pwd)
  download_link = "https://github.com/#{user}/#{project}/zipball/#{branch}"
  extdir = File.join(working_directory,'extensions')
  
  if !File.exists?("#{extdir}/#{ext_name}")
    begin
      puts "Downloading the #{ext_name} plugin into #{extdir}."
      FileUtils.mkdir_p("#{extdir}")
      zipfile = File.join(extdir, "#{ext_name}.zip")
      open(zipfile, "wb") do |tgz|
        tgz << fetch(download_link).body
      end
      puts "Unzipping the #{ext_name} plugin."
      Zip::ZipFile::open(zipfile) { |zf|
         zf.each { |e|
           fpath = File.join(extdir, e.name)
           FileUtils.mkdir_p(File.dirname(fpath))
           zf.extract(e, fpath)
         }
      }
      File.unlink(zipfile)
      funky_directory = Dir.glob(File.join(extdir,"#{user}-#{project}-*"))[0]
      FileUtils.mv(funky_directory, File.join(extdir, ext_name))
      puts "#{ext_name} installed."
    rescue Exception => e
      FileUtils.rm_rf(extdir)
      raise
    end
  end

end