Class: FlashFlow::Deploy
- Inherits:
-
Object
show all
- Defined in:
- lib/flash_flow/deploy.rb
Defined Under Namespace
Classes: OutOfSyncWithRemote
Instance Method Summary
collapse
Constructor Details
#initialize(opts = {}) ⇒ Deploy
Returns a new instance of Deploy.
16
17
18
19
20
21
22
23
24
25
26
27
|
# File 'lib/flash_flow/deploy.rb', line 16
def initialize(opts={})
@do_not_merge = opts[:do_not_merge]
@force = opts[:force]
@rerere_forget = opts[:rerere_forget]
@stories = [opts[:stories]].flatten.compact
@local_git = Git.new(Config.configuration.git, logger)
@git = ShadowGit.new(Config.configuration.git, logger)
@lock = Lock::Base.new(Config.configuration.lock)
@notifier = Notifier::Base.new(Config.configuration.notifier)
@data = Data::Base.new(Config.configuration.branches, Config.configuration.branch_info_file, @git, logger: logger)
end
|
Instance Method Details
#check_repo ⇒ Object
70
71
72
73
74
|
# File 'lib/flash_flow/deploy.rb', line 70
def check_repo
if @local_git.staged_and_working_dir_files.any?
raise RuntimeError.new('You have changes in your working directory. Please stash and try again')
end
end
|
#check_version ⇒ Object
76
77
78
79
80
81
82
83
84
85
86
87
|
# File 'lib/flash_flow/deploy.rb', line 76
def check_version
data_version = @data.version
return if data_version.nil?
written_version = data_version.split(".").map(&:to_i)
running_version = FlashFlow::VERSION.split(".").map(&:to_i)
unless written_version[0] < running_version[0] ||
(written_version[0] == running_version[0] && written_version[1] <= running_version[1])
raise RuntimeError.new("Your version of flash flow (#{FlashFlow::VERSION}) is behind the version that was last used (#{data_version}) by a member of your team. Please upgrade to at least #{written_version[0]}.#{written_version[1]}.0 and try again.")
end
end
|
#commit_branch_info ⇒ Object
89
90
91
92
93
94
|
# File 'lib/flash_flow/deploy.rb', line 89
def commit_branch_info
@stories.each do |story_id|
@data.add_story(@git.merge_remote, @git.working_branch, story_id)
end
@data.save!
end
|
#commit_message ⇒ Object
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
|
# File 'lib/flash_flow/deploy.rb', line 184
def commit_message
message ="Flash Flow run from branch: \#{@local_git.working_branch}\n\nMerged branches:\n\#{@data.successes.empty? ? 'None' : @data.successes.sort_by(&:merge_order).map(&:ref).join(\"\\n\")}\n\nFailed branches:\n\#{@data.failures.empty? ? 'None' : @data.failures.map(&:ref).join(\"\\n\")}\n\nRemoved branches:\n\#{@data.removals.empty? ? 'None' : @data.removals.map(&:ref).join(\"\\n\")}\n EOS\n message.gsub(/'/, '')\nend\n"
|
#commit_rerere ⇒ Object
96
97
98
99
100
101
|
# File 'lib/flash_flow/deploy.rb', line 96
def commit_rerere
current_branches = @data.merged_branches.to_a.select { |branch| !@git.master_branch_contains?(branch.sha) && (Time.now - branch.updated_at < two_weeks) }
current_rereres = current_branches.map { |branch| branch.resolutions.to_h.values }.flatten
@git.commit_rerere(current_rereres)
end
|
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
|
# File 'lib/flash_flow/deploy.rb', line 165
def format_errors
errors = []
branch_not_merged = nil
@data.failures.each do |branch|
if branch.ref == @local_git.working_branch
branch_not_merged = "ERROR: Your branch did not merge to #{@local_git.merge_branch}. Run 'flash_flow --resolve', fix the merge conflict(s) and then re-run this script\n"
else
errors << "WARNING: Unable to merge branch #{branch.remote}/#{branch.ref} to #{@local_git.merge_branch} due to conflicts."
end
end
errors << branch_not_merged if branch_not_merged
if errors.empty?
"Success!"
else
errors.join("\n")
end
end
|
#git_merge(branch, is_working_branch) ⇒ Object
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
# File 'lib/flash_flow/deploy.rb', line 122
def git_merge(branch, is_working_branch)
merger = BranchMerger.new(@git, branch)
forget_rerere = is_working_branch && @rerere_forget
case merger.do_merge(forget_rerere)
when :deleted
@data.mark_deleted(branch)
@notifier.deleted_branch(branch) unless is_working_branch
when :success
branch.sha = merger.sha
@data.mark_success(branch)
@data.set_resolutions(branch, merger.resolutions)
when :conflict
if is_working_branch
@data.mark_failure(branch, merger.conflict_sha)
else
@data.mark_failure(branch, nil)
@notifier.merge_conflict(branch)
end
end
end
|
#logger ⇒ Object
29
30
31
|
# File 'lib/flash_flow/deploy.rb', line 29
def logger
@logger ||= FlashFlow::Config.configuration.logger
end
|
#merge_branches ⇒ Object
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
# File 'lib/flash_flow/deploy.rb', line 107
def merge_branches
ordered_branches = MergeOrder.new(@git, @data.merged_branches.mergeable).get_order
ordered_branches.each_with_index do |branch, index|
branch.merge_order = index + 1
remote = @git.fetch_remote_for_url(branch.remote_url)
if remote.nil?
raise RuntimeError.new("No remote found for #{branch.remote_url}. Please run 'git remote add *your_remote_name* #{branch.remote_url}' and try again.")
end
@git.fetch(branch.remote)
git_merge(branch, branch.ref == @git.working_branch)
end
end
|
#open_pull_request ⇒ Object
146
147
148
149
150
151
152
153
154
155
156
157
158
159
|
# File 'lib/flash_flow/deploy.rb', line 146
def open_pull_request
return false if [@local_git.master_branch, @local_git.merge_branch].include?(@local_git.working_branch)
@local_git.push(@local_git.working_branch, force: @force)
raise OutOfSyncWithRemote.new("Your branch is out of sync with the remote. If you want to force push, run 'flash_flow -f'") unless @local_git.last_success?
if @do_not_merge
@data.remove_from_merge(@local_git.merge_remote, @local_git.working_branch)
else
@data.add_to_merge(@local_git.merge_remote, @local_git.working_branch)
end
end
|
#print_errors ⇒ Object
161
162
163
|
# File 'lib/flash_flow/deploy.rb', line 161
def print_errors
puts format_errors
end
|
#run ⇒ Object
33
34
35
36
37
38
39
40
41
42
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
|
# File 'lib/flash_flow/deploy.rb', line 33
def run
check_version
check_repo
puts "Building #{@local_git.merge_branch}... Log can be found in #{FlashFlow::Config.configuration.log_file}"
logger.info "\n\n### Beginning #{@local_git.merge_branch} merge ###\n\n"
begin
open_pull_request
@lock.with_lock do
@git.fetch(@git.merge_remote)
@git.in_original_merge_branch do
@git.initialize_rerere
end
@git.reset_temp_merge_branch
@git.in_temp_merge_branch do
merge_branches
commit_branch_info
commit_rerere
end
@git.copy_temp_to_merge_branch(commit_message)
@git.delete_temp_merge_branch
@git.push_merge_branch
end
print_errors
logger.info "### Finished #{@local_git.merge_branch} merge ###"
rescue Lock::Error, OutOfSyncWithRemote => e
puts 'Failure!'
puts e.message
ensure
@local_git.run("checkout #{@local_git.working_branch}")
end
end
|
#two_weeks ⇒ Object
103
104
105
|
# File 'lib/flash_flow/deploy.rb', line 103
def two_weeks
60 * 60 * 24 * 14
end
|