Sha256: 92520161053f066fb94c26370fcdff32cf8c8e8b1cec545d4cecdc0a8597c348

Contents?: true

Size: 1.99 KB

Versions: 115

Compression:

Stored size: 1.99 KB

Contents

require "colored"
require "credentials_manager"
require 'yaml'

module Spaceship
  class SpaceauthRunner
    def initialize(username: nil)
      @username = username
      @username ||= CredentialsManager::AppfileConfig.try_fetch_value(:apple_id)
      @username ||= ask("Username: ")
    end

    def run
      begin
        puts "Logging into to iTunes Connect (#{@username})..."
        Spaceship::Tunes.login(@username)
        puts "Successfully logged in to iTunes Connect".green
        puts ""
      rescue
        puts "Could not login to iTunes Connect".red
        puts "Please check your credentials and try again.".yellow
        puts "This could be an issue with iTunes Connect,".yellow
        puts "Please try unsetting the FASTLANE_SESSION environment variable".yellow
        puts "and re-run `fastlane spaceauth`".yellow
        UI.crash!("Problem connecting to iTunes Connect")
      end

      itc_cookie_content = Spaceship::Tunes.client.store_cookie

      # The only value we actually need is the "DES5c148586daa451e55afb017aa62418f91" cookie
      # We're not sure if the key changes
      #
      # Example:
      # name: DES5c148586daa451e55afb017aa62418f91
      # value: HSARMTKNSRVTWFlaF/ek8asaa9lymMA0dN8JQ6pY7B3F5kdqTxJvMT19EVEFX8EQudB/uNwBHOHzaa30KYTU/eCP/UF7vGTgxs6PAnlVWKscWssOVHfP2IKWUPaa4Dn+I6ilA7eAFQsiaaVT
      cookies = YAML.safe_load(
        itc_cookie_content,
        [HTTP::Cookie, Time], # classes whitelist
        [],                   # symbols whitelist
        true                  # allow YAML aliases
      )

      # We remove all the un-needed cookies
      cookies.select! do |cookie|
        cookie.name.start_with?("DES5") || cookie.name == 'dqsid'
      end

      yaml = cookies.to_yaml.gsub("\n", "\\n")

      puts "---"
      puts ""
      puts "Pass the following via the FASTLANE_SESSION environment variable:"
      puts yaml.cyan.underline
      puts ""
      puts ""
      puts "Example:"
      puts "export FASTLANE_SESSION='#{yaml}'".cyan.underline
    end
  end
end

Version data entries

115 entries across 115 versions & 1 rubygems

Version Path
fastlane-2.18.0.beta.20170219010032 spaceship/lib/spaceship/spaceauth_runner.rb
fastlane-2.18.0.beta.20170218010103 spaceship/lib/spaceship/spaceauth_runner.rb
fastlane-2.18.0.beta.20170217010035 spaceship/lib/spaceship/spaceauth_runner.rb
fastlane-2.18.0.beta.20170216184940 spaceship/lib/spaceship/spaceauth_runner.rb
fastlane-2.17.1 spaceship/lib/spaceship/spaceauth_runner.rb
fastlane-2.17.0 spaceship/lib/spaceship/spaceauth_runner.rb
fastlane-2.16.0 spaceship/lib/spaceship/spaceauth_runner.rb
fastlane-2.15.1 spaceship/lib/spaceship/spaceauth_runner.rb
fastlane-2.16.0.beta.20170214010051 spaceship/lib/spaceship/spaceauth_runner.rb
fastlane-2.15.0 spaceship/lib/spaceship/spaceauth_runner.rb
fastlane-2.15.0.beta.20170213032052 spaceship/lib/spaceship/spaceauth_runner.rb
fastlane-2.14.2 spaceship/lib/spaceship/spaceauth_runner.rb
fastlane-2.14.0 spaceship/lib/spaceship/spaceauth_runner.rb
fastlane-2.13.0 spaceship/lib/spaceship/spaceauth_runner.rb
fastlane-2.12.0 spaceship/lib/spaceship/spaceauth_runner.rb