Skip to content
Snippets Groups Projects
Select Git revision
  • ff8b2635c308d45ec38fd4eed257db7da9b3c4b0
  • master default protected
  • ci-test-ruby-2.5
  • drop/ruby-2.1
  • version/0.9
  • feat/drop-signup
  • version/0.8
  • version/0.7.1
  • version/0.7
  • version/0.6.1
  • version/0.6
  • 0.9.3
  • 0.9.2
  • 0.9.1
  • 0.9.0
  • 0.8.0
  • 0.7.1
  • 0.7.0
  • 0.6.0
  • 0.5.3
  • 0.5.2
  • 0.5.2-rc
  • 0.5.1
  • 0.5.1-rc2
  • 0.5.1-rc
  • 0.5.0
  • 0.5.0.rc
  • 0.2.8
  • 0.2.8.rc
  • 0.2.7
  • 0.2.6
31 results

generate_bearer_token

Blame
  • generate_bearer_token 2.84 KiB
    #!/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