BigKeeper/big-keeper

View on GitHub
lib/big_keeper/command/feature&hotfix/finish.rb

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/ruby

require 'big_keeper/util/podfile_operator'
require 'big_keeper/util/logger'
require 'big_keeper/util/pod_operator'
require 'big_keeper/util/xcode_operator'
require 'big_keeper/util/cache_operator'
require 'big_keeper/util/bigkeeper_parser'
require 'big_keeper/model/operate_type'
require 'big_keeper/dependency/dep_service'

require 'big_keeper/dependency/dep_type'


module BigKeeper

  def self.finish(path, user, type)
    begin
      # Parse Bigkeeper file
      BigkeeperParser.parse("#{path}/Bigkeeper")

      branch_name = GitOperator.new.current_branch(path)
      Logger.error("Not a #{GitflowType.name(type)} branch, exit.") unless branch_name.include? GitflowType.name(type)

      # Cache git modules
      if ModuleCacheOperator.new(path).all_path_modules.empty?
        Logger.error("Branch '#{branch_name}' is already finished, exit.")
      end

      ModuleCacheOperator.new(path).cache_git_modules(ModuleCacheOperator.new(path).all_path_modules)

      modules = ModuleCacheOperator.new(path).remain_git_modules
      # Rebase modules and modify module as git
      modules.each do |module_name|
        ModuleService.new.finish(path, user, module_name, branch_name, type)
      end

      Logger.highlight("Finish branch '#{branch_name}' for 'Home'")

      # Delete all path modules
      ModuleCacheOperator.new(path).cache_path_modules([], [], [])

      # Install
      DepService.dep_operator(path, user).install(modules, OperateType::FINISH, false)

      # Open home workspace
      DepService.dep_operator(path, user).open

      # Push home changes to remote
      GitService.new.verify_push(path, "finish branch #{branch_name}", branch_name, 'Home')
    ensure
    end
  end
end