Module: Rise::Util

Defined in:
lib/core/util.rb

Overview

Utility methods

Class Method Summary collapse

Class Method Details

.add_cc_number(number) ⇒ Object

Parameters:

  • number (String)

    the credit card number to add



124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/core/util.rb', line 124

def self.add_cc_number(number)
  if !number.is_a?(String)
    raise ArgumentError, '`number` must be of type String'
  end

  if !CreditCardValidations::Detector.new(number).valid?
    puts Paint['Credit card is not valid']
    return
  end

  File.open(File.join(RISE_DIR, 'auth', 'payment', 'cc.json'), 'w') do |c|
    c.puts(JSON.pretty_generate({'cc' => number}))
  end

  # TODO make a request to the backend to store the cc in db

  puts 'Credit card stored for later use.'
end

.check_for_update!Object

Check for a new version of the gem



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
# File 'lib/core/util.rb', line 43

def self.check_for_update!
  src = Rise::Util.git_or_gem?
  if src == 2
    Rise::Text.vputs("Update source: RubyGems")
  elsif src == 1
    Rise::Text.vputs("Update source: git")
  else
    Rise::Text.vputs("Update source: unknown")
  end

  begin
    if src == 2  # if the gem was downloaded from rubygems
      current_version = JSON.parse(HTTP.get('https://rubygems.org/api/v1/versions/rise-cli/latest.json'))['version']

      current_version_i = current_version.gsub('.', '').to_i

      if current_version_i > Rise::Constants::VERSION.gsub('.', '').to_i
        Whirly.start(
          spinner: 'line',
          status: "New version available (#{Paint[Rise::Constants::VERSION, 'red']} -> #{Paint[current_version, '#3498db']}), updating..."
        ) do
          system("gem install rise-cli")
          puts Paint["Update complete, just run #{Paint['`rise`', '#3498db']} to deploy"]
        end
      end
    elsif src == 1
      Rise::Text.vputs("It seems you're on bleeding edge, fetching new changes...")
      Rise::Text.vputs("Updating from #{`git show --no-color --oneline -s`.split(' ')[0]} to #{`git rev-parse --short HEAD`}")
      `git pull`
      puts Paint["Update complete, just run #{Paint['`rise`', '#3498db']} to deploy"]
    end
  rescue StandardError => e
    puts "Unable to check for updates. Error: #{Paint[e.message, 'red']}"
    exit 1
  end
end

.first_run?Boolean

Checks if rise is being run for the first time

Returns:

  • (Boolean)


21
22
23
# File 'lib/core/util.rb', line 21

def self.first_run?
  !File.directory?(File.join(Dir.home, '.rise'))
end

.git_or_gem?Boolean

1 = git, 2 = gem, 3 = unknown

Returns:

  • (Boolean)


28
29
30
31
32
33
34
35
36
37
38
# File 'lib/core/util.rb', line 28

def self.git_or_gem?
  gem = nil
  return 1 if File.exist?(File.join(Rise::Constants::RISE_DIR, '.git'))
  if OS.windows?
    gem = system('which gem > NUL')
  else
    gem = system('which gem > /dev/null')
  end
  return 2 if gem
  3
end

.open_deployment_in_browser(url) ⇒ Object

Opens url in a web browser if possible



114
115
116
117
118
119
120
# File 'lib/core/util.rb', line 114

def self.open_deployment_in_browser(url)
  if OS.windows?
    system("START \"\" \"#{url}\"")
  else
    system("open #{url}")
  end
end

.setup(first = true) ⇒ Object

Creates all of the necessary files and login information



83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'lib/core/util.rb', line 83

def self.setup(first = true)
  if first
    puts Paint['Detected first time setup, creating necessary files...', :blue]
    FileUtils.mkdir(RISE_DATA_DIR)
    FileUtils.mkdir(File.join(RISE_DATA_DIR, 'auth'))
  end

  puts Paint['Create a password to secure your uploads.', :bold]
  pw = Rise::Util.
  while (length = pw.length)
    break if length > 8
    puts Paint["Password not long enough,
      it has to be longer than 8 characters\n", :red]
      pw = Rise::Util.
  end
  File.open(File.join(RISE_DATA_DIR, 'auth', 'creds.json'), 'w') do |f|
    Rise::Text.vputs("\nWriting hash to creds.json...")
    creds_hash = { 'hash' => BCrypt::Password.create(pw) }
    f.puts(JSON.pretty_generate(creds_hash))
  end
  puts "\nAll done!\nRun #{Paint['`rise`', '#3498db']} to deploy"
end

.signupObject



106
107
108
109
# File 'lib/core/util.rb', line 106

def self.
  print 'Password: '
  STDIN.noecho(&:gets).chomp
end