Class: DropSync::Mecha

Inherits:
Object
  • Object
show all
Defined in:
lib/dropsync/mecha.rb

Class Method Summary collapse

Class Method Details

.automatic_download(filename, url) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/dropsync/mecha.rb', line 7

def self.automatic_download(filename, url)
    agent = Mechanize.new do |agent|
      agent.user_agent_alias = 'Mac Safari'
    end

    page = agent.get(url)
    link = page.uri.to_s.gsub('dl=0', 'dl=1')
    download_path = "#{File.expand_path('~')}/Downloads"
    FileUtils.cd(download_path)
    FileUtils.mkdir(filename)
    FileUtils.cd(filename)
    system("curl -L -s -o #{download_path}/#{filename}/#{filename}.zip #{link}")
    system("unzip #{download_path}/#{filename}/#{filename}.zip > /dev/null 2>&1")
    FileUtils.rm_rf("__MACOSX")
    system("rm #{filename}.zip")
end