class Project

Public Class Methods

new(url) click to toggle source
# File lib/gito/project.rb, line 9
def initialize(url)
  @base_url = sanitize_url(url)
  @destination_dir = nil
  @destination = destination
  @detector_json_path = 'https://raw.githubusercontent.com/cesarferreira/gito/master/detector.json'
end

Public Instance Methods

change_directory() click to toggle source
# File lib/gito/project.rb, line 49
def change_directory
  short_path = @destination_dir.to_s.gsub(Dir.home, '~')

  puts "\n-------------------------------------------"
  puts "Please change directory"
  puts "cd #{short_path.yellow}"
  puts "-------------------------------------------\n\n"
end
clone(is_temp_folder=false, shell_copy=true) click to toggle source

CLONE THE REPOSITORY

# File lib/gito/project.rb, line 94
def clone(is_temp_folder=false, shell_copy=true)
  url = retrieve_cloneable_url

  unless is_temp_folder
    prefix = Dir.pwd + '/'
  else
    prefix = Dir.tmpdir + '/gito/'
  end

  @destination_dir = prefix + "#{@destination}"

  if File.directory?(@destination_dir)
    puts "🤔  The folder #{@destination_dir.green} is not empty..."
    go_inside_and_run "git reset --hard HEAD"
    go_inside_and_run "git pull"
  else
    puts "😙  Cloning #{url.green}..."
    shell_copy_string = shell_copy ? '--depth 1' : ''
    puts shell_copy_string
    AppUtils.execute("git clone #{shell_copy_string} --recursive #{url} #{@destination_dir}")
  end

  @destination_dir
end
destination() click to toggle source
# File lib/gito/project.rb, line 35
def destination
  stripped_url = @base_url.gsub('.git', '')

  if stripped_url.start_with?('http')
    stripped_url = stripped_url.split('/').last
  end

  if stripped_url.include?(':') && stripped_url.start_with?('git@')
    stripped_url = stripped_url.split(':').last.split('/').last
  end

  stripped_url
end
go_inside_and_run(command) click to toggle source
# File lib/gito/project.rb, line 129
def go_inside_and_run(command)
  Dir.chdir(@destination_dir) do
    AppUtils::execute command, false
  end
end
install_dependencies() click to toggle source
# File lib/gito/project.rb, line 58
def install_dependencies
  file  = open(@detector_json_path) {|f| f.read }
  types = JSON.parse(file)
  chosen = nil

  Dir.chdir(@destination_dir)

  types.each do |item|
    if File.exists? (item['file_requirement'])
      puts "😎  #{item['type']} detected...".yellow
      go_inside_and_run item['installation_command']
    end
  end
end
open_editor(app) click to toggle source
# File lib/gito/project.rb, line 119
def open_editor(app)
  puts "😁‍  Opening editor...".yellow
  go_inside_and_run "#{app} ."
end
open_folder() click to toggle source
# File lib/gito/project.rb, line 124
def open_folder
  puts "😳  Opening folder...".yellow
  go_inside_and_run 'open .'
end
retrieve_cloneable_url() click to toggle source
# File lib/gito/project.rb, line 73
def retrieve_cloneable_url
  starts_with_git = @base_url.split(//).first(4).join.eql? 'git@'
  ends_with_git = @base_url.split(//).last(4).join.eql? '.git'

  return "git@github.com:#{@base_url}.git" if @base_url.split('/').length == 2 && !@base_url.include?("@")

  # ends with git but doesnt start with git
  return @base_url if ends_with_git && !starts_with_git

  user_repo_pair = @base_url.split('https://github.com/').last

  # ends with git but doesnt start with git
  return "git@github.com:#{user_repo_pair}.git" if !ends_with_git && !starts_with_git

  # git@github.com:sky-uk/uma-skyq-android.git
  @base_url
end
sanitize_url(url) click to toggle source
# File lib/gito/project.rb, line 16
def sanitize_url(url)
  url = url.split('?').first
  url.chop! if url.end_with? '/'

  is_valid_url = url =~ /\A#{URI::regexp(['http', 'https'])}\z/ || url.include?('git@')

  unless is_valid_url

    valid_shortcut = url.split('/').size == 2

    if valid_shortcut
      url = 'https://github.com/' + url
    else
      url = nil
    end
  end
  url
end