summaryrefslogtreecommitdiff
path: root/script/generate_bearer_token
blob: 7614f37b561324c039a42273d52d940ca7c3754d (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/env ruby

require "net/http"
require "uri"
require "json"
require "base64"
require "optparse"
require "yaml"

options = {}

option_parser = OptionParser.new do |opts|
  opts.banner = "Create your bearer_token for twitter by including following two [options], feel free to have your secrets-file created/filled giving the other information as well:"

  opts.on("--key KEY", "consumer_key of your twitter application") do |key|
    options[:conkey] = key
  end

  opts.on("--secret SECRET", "consumer_secret of your twitter application") do |secret|
    options[:consec] = secret
  end

  opts.on("--projectroot DIR", "directory where leapweb is") do |projectroot|
    options[:projectroot] = projectroot
  end

  opts.on("--twitterhandle TWI", "twitterhandle without @ which will be passed into secrets-file") do |twitterhandle|
    options[:twitterhandle] = twitterhandle
  end

end

option_parser.parse!

if options[:conkey].nil? || options[:consec].nil? then
  puts option_parser
  exit
else
  consumer_key = options[:conkey]
  consumer_secret = options[:consec]
end

uri = URI("https://api.twitter.com/oauth2/token")
data = "grant_type=client_credentials"
cre   = Base64.strict_encode64("#{consumer_key}:#{consumer_secret}")
authorization_headers = { "Authorization" => "Basic #{cre}"}

Net::HTTP.start(uri.host, uri.port, use_ssl: true) do |http|
  response = http.request_post(uri, data, authorization_headers)
  token_hash = JSON.parse(response.body)
  $bearer_token = token_hash["access_token"]
end

if options[:projectroot].nil? then
  puts "You didn't tell us the directory to have your secrets-file created or being filled. Feel free to copy/paste your bearer_token:"
  puts $bearer_token
else
  if File.exist?("#{options[:projectroot]}/config/secrets.yml")
    secrets = YAML.load_file("#{options[:projectroot]}/config/secrets.yml")
  else
    puts "Please make sure that you created a secrets-file as described in the documentation or have given the correct directory. No secrets-file could be found."
    exit
  end

  if options[:twitterhandle].nil? then
    if secrets["development"]["twitter"]["twitter_handle"] == "" then
      puts "You didn't put your twitter-handle neither in the secrets-file nor passed it as a flag. Don't forget that you can't use the twitter-feature without your twitter-handle."
    end
  else
    secrets["development"]["twitter"]["twitter_handle"] = options[:twitterhandle]
    secrets["test"]["twitter"]["twitter_handle"] = options[:twitterhandle]
    secrets["production"]["twitter"]["twitter_handle"] = options[:twitterhandle]
  end

  secrets["development"]["twitter"]["bearer_token"] = $bearer_token
  secrets["test"]["twitter"]["bearer_token"] = $bearer_token
  secrets["production"]["twitter"]["bearer_token"] = $bearer_token

  File.open("#{options[:projectroot]}/config/secrets.yml", "r+") do |file|
    file.write(secrets.to_yaml)
  end
end