Class: Fuel::CLI::Gerrit
- Includes:
- GerritCommon
- Defined in:
- lib/fuel/cli/gerrit.rb
Instance Method Summary collapse
- #abandon ⇒ Object
- #alias(email, alias_name = nil) ⇒ Object
- #auth(user) ⇒ Object
- #checkout(email_or_alias) ⇒ Object
- #comments(file) ⇒ Object
- #cr(vote) ⇒ Object
- #open ⇒ Object
- #qa(vote) ⇒ Object
- #rebase ⇒ Object
- #respond(file) ⇒ Object
- #restore ⇒ Object
- #review_add(*emails_or_aliases) ⇒ Object
- #status ⇒ Object
- #submit ⇒ Object
Methods included from GerritCommon
#changes_endpoint, #gerrit_ref, #gerrit_url
Instance Method Details
#abandon ⇒ Object
90 91 92 93 94 95 |
# File 'lib/fuel/cli/gerrit.rb', line 90 def abandon change_id = fetch_change_id_or_fail params = ['message'] ? { body: { message: ['message'] }.to_json } : {} result = self.class.post(changes_endpoint(change_id, 'abandon'), params).parsed_response puts result.inspect end |
#alias(email, alias_name = nil) ⇒ Object
61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/fuel/cli/gerrit.rb', line 61 def alias(email, alias_name = nil) if alias_name Config.set('gerrit', 'aliases', alias_name, email) else aliases = Config.get('gerrit-aliases') || {} aliases_found = aliases.map { |k, v| v == email ? k : nil }.compact if aliases_found.empty? say "No aliases created for #{email}", :yellow else say "Aliases for #{email}: #{aliases_found.join("; ")}" end end end |
#auth(user) ⇒ Object
76 77 78 |
# File 'lib/fuel/cli/gerrit.rb', line 76 def auth(user) set_credentials(user, ['gerrit', 'user'], ['gerrit', 'password']) end |
#checkout(email_or_alias) ⇒ Object
118 119 120 121 122 123 124 125 126 |
# File 'lib/fuel/cli/gerrit.rb', line 118 def checkout(email_or_alias) email = to_email(email_or_alias) say "Group aliases are not supported", :red and return if email.is_a?(Array) result = self.class.get(changes_endpoint(nil, "?q=status:open+owner:#{email}&n=1&o=CURRENT_REVISION&o=DOWNLOAD_COMMANDS")).parsed_response say "No open changes found for #{email_or_alias}", :yellow and return if result.empty? current_rev = result[0]['current_revision'] command = result[0]['revisions'][current_rev]['fetch']['ssh']['commands']['Checkout'] `#{command}` end |
#comments(file) ⇒ Object
141 142 143 144 145 146 147 148 149 150 151 |
# File 'lib/fuel/cli/gerrit.rb', line 141 def comments(file) comments, lines = comments_for_file(file) extra_lines = 0 comments.each do |c| line = c['line'] + extra_lines comment_lines = format_comment(c) lines.insert(line, *comment_lines) extra_lines += comment_lines.size end exec("printf #{lines.join('\n').inspect} | less -F -X -R") end |
#cr(vote) ⇒ Object
136 137 138 |
# File 'lib/fuel/cli/gerrit.rb', line 136 def cr(vote) submit_review('Code-Review', vote) end |
#open ⇒ Object
41 42 43 |
# File 'lib/fuel/cli/gerrit.rb', line 41 def open `open #{gerrit_change_url}` end |
#qa(vote) ⇒ Object
130 131 132 |
# File 'lib/fuel/cli/gerrit.rb', line 130 def qa(vote) submit_review('QA-Test-Passed', vote) end |
#rebase ⇒ Object
107 108 109 110 111 112 113 114 115 |
# File 'lib/fuel/cli/gerrit.rb', line 107 def rebase change_id = fetch_change_id_or_fail result = self.class.post(changes_endpoint(change_id, "rebase")) if result.response.code == "409" say "Rebase failed, conflicts found", :red else say "Rebased successfully", :green end end |
#respond(file) ⇒ Object
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'lib/fuel/cli/gerrit.rb', line 154 def respond(file) comments, lines, change_id, revision_id = comments_for_file(file) commented_on = {} comments_for_lines = comments.inject({}) do |h, c| h[c['line']] ||= [] h[c['line']] << c h end comments_to_post = comments_for_lines.map do |line, cc| next if cc.all? { |c| c['author']['username'] != gerrit_user } system 'tput smcup' line_in_array = line - 1 first_line = [0, line_in_array - 4].max if first_line == line_in_array say "Line #{line}:", :bold else say "Lines #{first_line + 1}-#{line}:", :bold end say lines[first_line..line_in_array].join("\n") cc.each do |c| say format_comment(c).join("\n") end reply = ask "Reply on this line (press enter to skip):" system 'tput rmcup' next if reply.strip.empty? { line: line, message: reply } end.compact say 'No comments to respond to!', :green and return if comments_to_post.empty? puts comments_to_post.inspect result = self.class.post(revisions_endpoint(change_id, revision_id, 'review'), body: { comments: { file => comments_to_post } }.to_json).parsed_response puts result.inspect end |
#restore ⇒ Object
99 100 101 102 103 104 |
# File 'lib/fuel/cli/gerrit.rb', line 99 def restore change_id = fetch_change_id_or_fail params = ['message'] ? { body: { message: ['message'] }.to_json } : {} result = self.class.post(changes_endpoint(change_id, 'restore'), params).parsed_response puts result.inspect end |
#review_add(*emails_or_aliases) ⇒ Object
46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/fuel/cli/gerrit.rb', line 46 def review_add(*emails_or_aliases) change_id = fetch_change_id_or_fail emails_or_aliases.each do |value| emails = Array(to_email(value)) if emails.empty? say "No email found for alias #{value}; reviewer not added", :yellow next end emails.each do |email| result = self.class.post(reviewers_endpoint(change_id), body: { reviewer: email }.to_json).parsed_response end end end |
#status ⇒ Object
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/fuel/cli/gerrit.rb', line 18 def status change_id = 'Ia8b172edcedcef7856b4d5fa7aee9e58649abe75'#fetch_change_id_or_fail result = self.class.get(changes_endpoint(change_id, "?o=CURRENT_REVISION")).parsed_response current_rev = result['current_revision'] say result["subject"], :bold table = [["Owner", result["owner"]["name"]]] table << ["Updated", format_time(result["updated"])] table << ["Status", result["status"]] table << ["Ref", gerrit_ref(result)] print_table table result = fetch_comments(change_id, current_rev) print_comments_info(result) puts result = self.class.get(reviewers_endpoint(change_id)).parsed_response table = result.map { |row| format_row(row) } table.unshift(["Reviewer", "CR", "QA", "V"]) print_table table end |
#submit ⇒ Object
81 82 83 84 85 86 |
# File 'lib/fuel/cli/gerrit.rb', line 81 def submit change_id = fetch_change_id_or_fail result = self.class.post(changes_endpoint(change_id, 'submit'), body: { wait_for_merge: true }.to_json) puts result.code puts result.parsed_response.inspect end |