Class: WWDCDownloader

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

Constant Summary collapse

BASE_URI =
'https://devimages-cdn.apple.com/wwdc-services/j06970e2/296E57DA-8CE8-4526-9A3E-F0D0E8BD6543/contents.json'

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(dl_dir, min_date) ⇒ WWDCDownloader

Returns a new instance of WWDCDownloader.



30
31
32
33
34
35
36
37
38
39
40
# File 'lib/wwdcdownloader.rb', line 30

def initialize(dl_dir, min_date)
  self.dl_dir = dl_dir
  self.min_date = min_date
  self.downloaded_files = []
  self.proxy_uri = nil

  if ENV['http_proxy'] || ENV['HTTP_PROXY']
    uri = (ENV['http_proxy']) ? ENV['http_proxy'] : ENV['HTTP_PROXY']
    self.proxy_uri = URI.parse(uri)
  end
end

Instance Attribute Details

#dl_dirObject

Returns the value of attribute dl_dir.



28
29
30
# File 'lib/wwdcdownloader.rb', line 28

def dl_dir
  @dl_dir
end

#downloaded_filesObject

Returns the value of attribute downloaded_files.



28
29
30
# File 'lib/wwdcdownloader.rb', line 28

def downloaded_files
  @downloaded_files
end

#min_dateObject

Returns the value of attribute min_date.



28
29
30
# File 'lib/wwdcdownloader.rb', line 28

def min_date
  @min_date
end

#proxy_uriObject

Returns the value of attribute proxy_uri.



28
29
30
# File 'lib/wwdcdownloader.rb', line 28

def proxy_uri
  @proxy_uri
end

Class Method Details

.run!(*args) ⇒ Object



182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# File 'lib/wwdcdownloader.rb', line 182

def self.run!(*args)
  puts "WWDC 2018 Session Material Downloader"
  puts "by Johannes Fahrenkrug, @jfahrenkrug, springenwerk.com"
  puts "See you next year!"
  puts
  puts "Usage: wwdcdownloader [<target-dir>]"
  puts

  dl_dir = if args.size == 1
    args.last
  else
    'wwdc2018-assets'
  end

  w = WWDCDownloader.new(dl_dir, '2018-06-01')
  w.load
  return 0
end

Instance Method Details

#download_file(url, filename, dest_dir, duplicates_ok = true) ⇒ Object



92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# File 'lib/wwdcdownloader.rb', line 92

def download_file(url, filename, dest_dir, duplicates_ok = true)
  did_download = false
  outfilename = dest_dir + "/" + filename
  if duplicates_ok or (!File.exists?(outfilename) and !self.downloaded_files.include?(url))
    # remember what we downloaded
    self.downloaded_files << url

    puts "  Downloading #{url}"
    begin
      self.read_url(url) do |downloaded_file|
        open(outfilename, 'wb') do |file|
          file.write(downloaded_file)
        end
        did_download = true
      end
    rescue Exception => e
      puts "  Download failed #{e}"
    end
  elsif !duplicates_ok
    puts "  Already downloaded this file, skipping."
  end

  did_download
end

#download_sample_code_from_book_json(book_json_url, code_base_url, dest_dir, duplicates_ok) ⇒ Object



75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/wwdcdownloader.rb', line 75

def download_sample_code_from_book_json(book_json_url, code_base_url, dest_dir, duplicates_ok)
  did_download = false
  self.read_url(book_json_url) do |book_json|
    if book_json[0,1] == '<'
      puts " Sorry, this samplecode apparently isn't available yet: #{code_base_url}/book.json"
    else
      book_res = JSON.parse(book_json)
      filename = book_res["sampleCode"]
      url = "#{code_base_url}/#{filename}"

      did_download = download_file(url, filename, dest_dir, duplicates_ok)
    end
  end

  did_download
end

#loadObject



117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# File 'lib/wwdcdownloader.rb', line 117

def load
  mkdir(dl_dir)

  # get the sessions JSON
  self.read_url(BASE_URI) do |body|
    res = JSON.parse(body)

    sessions = res['contents']
    resources = res['resources']

    if sessions.size > 0
      sessions.each do |session|
        if session['type'] == 'Session' && session['eventId'] == 'wwdc2018'
          title = session['title']
          session_id = session['id'].gsub('wwdc2018-', '')
          puts "Session #{session_id} '#{title}'..."

          if session['related'] && session['related']['resources']
            # Iterate over the resources
            related_resource_ids = session['related']['resources']
            did_download = false

            # get the files
            dirname = "#{dl_dir}/#{session_id}-#{title.gsub(/\/|&|!/, '')}"
            puts "  Creating #{dirname}"
            did_create_dir = mkdir(dirname)

            resources.each do |resource|
              if resource['resource_type'] == 'samplecode' && related_resource_ids.include?(resource['id'])
                puts "  Found related resource #{resource['url']}"

                # Zip file? download right away
                if resource['url'] =~ /(\w+\.zip)$/
                  uri = URI.parse(resource['url'])
                  filename = File.basename(uri.path)

                  if download_file(resource['url'], filename, dirname, true)
                    did_download = true
                  end
                # Sample code landing page?
                else
                  # Sanitize URL
                  url = resource['url'].split('/Introduction/Intro.html')[0]

                  if download_sample_code_from_book_json("#{url}/book.json", url, dirname, false)
                    did_download = true
                  end
                end
              end
            end

            if !did_download and did_create_dir
              Dir.delete(dirname)
            end
          end
        end
      end
    else
      print "No sessions :(.\n"
    end
  end

  puts "Done."
end

#mkdir(dir) ⇒ Object

Creates the given directory if it doesn’t exist already.



43
44
45
46
47
48
49
50
# File 'lib/wwdcdownloader.rb', line 43

def mkdir(dir)
  if File.directory?(dir)
    false
  else
    Dir.mkdir dir
    true
  end
end

#read_url(url) ⇒ Object



52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/wwdcdownloader.rb', line 52

def read_url(url)
  uri = URI.parse(url)

  http = nil

  if self.proxy_uri
    http = Net::HTTP.new(uri.host, uri.port, self.proxy_uri.host, self.proxy_uri.port, self.proxy_uri.user, self.proxy_uri.password)
  else
    http = Net::HTTP.new(uri.host, uri.port)
  end

  http.use_ssl = true

  http.start do |http|
   request = Net::HTTP::Get.new(uri.request_uri)
   response = http.request(request)

   if response.code == '200'
     yield(response.body)
   end
 end
end