summaryrefslogtreecommitdiffstats
path: root/src/update_assets.rb
blob: c849f9ecdb4cf5b5060225c20f357dc36eaefc0a (plain)
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
#!/usr/bin/env ruby

# http://www.rubydoc.info/github/rest-client/rest-client/RestClient
require 'rest_client'

if ARGV.length < 3
  puts "usage: #$0 <token> <version> <files...>"
  exit 1
end

token, version, *files = ARGV
base = "https://api.github.com/repos/junegunn/fzf-bin/releases"

# List releases
rels = JSON.parse(RestClient.get(base, :authorization => "token #{token}"))
rel = rels.find { |r| r['tag_name'] == version }
unless rel
  puts "#{version} not found"
  exit 1
end

# List assets
assets = Hash[rel['assets'].map { |a| a.values_at *%w[name id] }]

files.select { |f| File.exists? f }.each do |file|
  name = File.basename file

  if asset_id = assets[name]
    puts "#{name} found. Deleting asset id #{asset_id}."
    RestClient.delete "#{base}/assets/#{asset_id}",
      :authorization => "token #{token}"
  else
    puts "#{name} not found"
  end

  puts "Uploading #{name}"
  RestClient.post(
    "#{base.sub 'api', 'uploads'}/#{rel['id']}/assets?name=#{name}",
    File.read(file),
    :authorization => "token #{token}",
    :content_type  => "application/octet-stream")
end