Class: DTK::Network::Client::Command::Push

Inherits:
DTK::Network::Client::Command show all
Defined in:
lib/client/command/push.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DTK::Network::Client::Command

wrap_command

Methods included from RestWrapper

#rest_delete, #rest_get, #rest_post

Methods included from Client::PermissionsUtil

#validate_permissions!

Methods included from Util::Tar

#gzip, #tar, #ungzip, #untar

Constructor Details

#initialize(module_ref, dependency_tree, options = {}) ⇒ Push

Returns a new instance of Push.



4
5
6
7
8
9
10
# File 'lib/client/command/push.rb', line 4

def initialize(module_ref, dependency_tree, options = {})
  @module_ref       = module_ref
  @dependency_tree  = dependency_tree
  @module_directory = module_ref.repo_dir
  @options          = options
  @parsed_module    = options[:parsed_module]
end

Class Method Details

.run(module_info, opts = {}) ⇒ Object



12
13
14
15
16
# File 'lib/client/command/push.rb', line 12

def self.run(module_info, opts = {})
  module_ref      = ModuleRef.new(module_info)
  dependency_tree = DependencyTree.get_or_create(module_ref, opts.merge(save_to_file: true))
  new(module_ref, dependency_tree, opts).push
end

Instance Method Details

#construct_remote_url(module_info) ⇒ Object

TODO: move construct_remote_url to helper or mixin and use for all commands when needed



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/client/command/push.rb', line 47

def construct_remote_url(module_info)
  require 'open-uri'

  if clone_url_http = module_info['meta']['aws']['codecommit']['repository_metadata']['clone_url_http']
    public_user_meta  = module_info['public_user_meta']
    codecommit_data   = public_user_meta || Session.get_codecommit_data
    # codecommit_data   = Session.get_codecommit_data
    service_user_name = codecommit_data['service_specific_credential']['service_user_name']
    service_password  = codecommit_data['service_specific_credential']['service_password']
    encoded_password  = URI.encode_www_form_component(service_password)
    url = nil
    if match = clone_url_http.match(/^(https:\/\/)(.*)$/)
      url = "#{match[1]}#{service_user_name}:#{encoded_password}@#{match[2]}"
    end
    url
  else
    raise "Unable to find codecommit https url"
  end
end

#pushObject



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
# File 'lib/client/command/push.rb', line 18

def push
  module_info = rest_get('modules/module_info', { name: @module_ref.name, namespace: @module_ref.namespace, version: @module_ref.version.str_version, module_action: 'push' })
  remote_url = construct_remote_url(module_info)
  git_args = Args.new({
    repo_dir:   @module_directory,
    branch:     @module_ref.version.str_version,
    remote_url: remote_url,
    force:      @options[:force]
  })
  
  begin
    diffs = GitRepo.push_to_remote(git_args)
  rescue Git::GitExecuteError => e
    raise e.message if @options[:force]
    raise "Unable to do fast-forward push. You can use '--force' option to force push you changes to remote!"
  end

  dependencies = []
  if @parsed_module
    (@parsed_module.val(:DependentModules) || []).map do |parsed_mr|
      dependencies << { 'namespace' => parsed_mr.req(:Namespace), 'module' => parsed_mr.req(:ModuleName), 'version' => parsed_mr.val(:ModuleVersion) }
    end
  end

  rest_post("modules/#{module_info['id']}/dependencies", { version: @module_ref.version.str_version, dependencies: dependencies.to_json })
  diffs
end