OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """\ | 6 """\ |
7 Wrapper script around Rietveld's upload.py that simplifies working with groups | 7 Wrapper script around Rietveld's upload.py that simplifies working with groups |
8 of files. | 8 of files. |
9 """ | 9 """ |
10 | 10 |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 def force_description(self, new_description): | 292 def force_description(self, new_description): |
293 self._desc = git_cl.ChangeDescription(new_description) | 293 self._desc = git_cl.ChangeDescription(new_description) |
294 self.needs_upload = True | 294 self.needs_upload = True |
295 | 295 |
296 def append_line(self, line): | 296 def append_line(self, line): |
297 self._desc.append_line(line) | 297 self._desc.append_line(line) |
298 | 298 |
299 def get_reviewers(self): | 299 def get_reviewers(self): |
300 return self._desc.get_reviewers() | 300 return self._desc.get_reviewers() |
301 | 301 |
| 302 def update_reviewers(self, reviewers): |
| 303 self._desc.update_reviewers(reviewers) |
| 304 |
302 def NeedsUpload(self): | 305 def NeedsUpload(self): |
303 return self.needs_upload | 306 return self.needs_upload |
304 | 307 |
305 def GetFileNames(self): | 308 def GetFileNames(self): |
306 """Returns the list of file names included in this change.""" | 309 """Returns the list of file names included in this change.""" |
307 return [f[1] for f in self._files] | 310 return [f[1] for f in self._files] |
308 | 311 |
309 def GetFiles(self): | 312 def GetFiles(self): |
310 """Returns the list of files included in this change with their status.""" | 313 """Returns the list of files included in this change with their status.""" |
311 return self._files | 314 return self._files |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 ctype, body = upload.EncodeMultipartFormData(data, []) | 375 ctype, body = upload.EncodeMultipartFormData(data, []) |
373 self.SendToRietveld('/%d/description' % self.issue, payload=body, | 376 self.SendToRietveld('/%d/description' % self.issue, payload=body, |
374 content_type=ctype) | 377 content_type=ctype) |
375 self.needs_upload = False | 378 self.needs_upload = False |
376 | 379 |
377 def UpdateDescriptionFromIssue(self): | 380 def UpdateDescriptionFromIssue(self): |
378 """Updates self.description with the issue description from Rietveld.""" | 381 """Updates self.description with the issue description from Rietveld.""" |
379 self._desc = git_cl.ChangeDescription( | 382 self._desc = git_cl.ChangeDescription( |
380 self.SendToRietveld('/%d/description' % self.issue)) | 383 self.SendToRietveld('/%d/description' % self.issue)) |
381 | 384 |
| 385 def GetIssueReviewers(self): |
| 386 """Returns the issue reviewers list from Rietveld.""" |
| 387 return git_cl.get_real_reviewers( |
| 388 self.rietveld.get_issue_properties(self.issue, False)) |
| 389 |
382 def AddComment(self, comment): | 390 def AddComment(self, comment): |
383 """Adds a comment for an issue on Rietveld. | 391 """Adds a comment for an issue on Rietveld. |
384 As a side effect, this will email everyone associated with the issue.""" | 392 As a side effect, this will email everyone associated with the issue.""" |
385 return self.RpcServer().add_comment(self.issue, comment) | 393 return self.RpcServer().add_comment(self.issue, comment) |
386 | 394 |
387 def PrimeLint(self): | 395 def PrimeLint(self): |
388 """Do background work on Rietveld to lint the file so that the results are | 396 """Do background work on Rietveld to lint the file so that the results are |
389 ready when the issue is viewed.""" | 397 ready when the issue is viewed.""" |
390 if self.issue and self.patchset: | 398 if self.issue and self.patchset: |
391 self.SendToRietveld('/lint/issue%s_%s' % (self.issue, self.patchset), | 399 self.SendToRietveld('/lint/issue%s_%s' % (self.issue, self.patchset), |
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
984 # dir1\foo.cc. When the user `gcl commit bleh`, foo.cc is *also committed*. | 992 # dir1\foo.cc. When the user `gcl commit bleh`, foo.cc is *also committed*. |
985 # The only fix is to use --non-recursive but that has its issues too: | 993 # The only fix is to use --non-recursive but that has its issues too: |
986 # Let's say if dir1 is deleted, --non-recursive must *not* be used otherwise | 994 # Let's say if dir1 is deleted, --non-recursive must *not* be used otherwise |
987 # you'll get "svn: Cannot non-recursively commit a directory deletion of a | 995 # you'll get "svn: Cannot non-recursively commit a directory deletion of a |
988 # directory with child nodes". Yay... | 996 # directory with child nodes". Yay... |
989 commit_cmd = ["svn", "commit"] | 997 commit_cmd = ["svn", "commit"] |
990 if change_info.issue: | 998 if change_info.issue: |
991 # Get the latest description from Rietveld. | 999 # Get the latest description from Rietveld. |
992 change_info.UpdateDescriptionFromIssue() | 1000 change_info.UpdateDescriptionFromIssue() |
993 | 1001 |
| 1002 actual_reviewers = ','.join(change_info.GetIssueReviewers()) |
| 1003 change_info.update_reviewers(actual_reviewers) |
| 1004 |
994 commit_desc = git_cl.ChangeDescription(change_info.description) | 1005 commit_desc = git_cl.ChangeDescription(change_info.description) |
995 if change_info.issue: | 1006 if change_info.issue: |
996 server = change_info.rietveld | 1007 server = change_info.rietveld |
997 if not server.startswith("http://") and not server.startswith("https://"): | 1008 if not server.startswith("http://") and not server.startswith("https://"): |
998 server = "http://" + server | 1009 server = "http://" + server |
999 commit_desc.append_line('Review URL: %s/%d' % (server, change_info.issue)) | 1010 commit_desc.append_line('Review URL: %s/%d' % (server, change_info.issue)) |
1000 | 1011 |
1001 handle, commit_filename = tempfile.mkstemp(text=True) | 1012 handle, commit_filename = tempfile.mkstemp(text=True) |
1002 os.write(handle, commit_desc.description) | 1013 os.write(handle, commit_desc.description) |
1003 os.close(handle) | 1014 os.close(handle) |
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1453 raise | 1464 raise |
1454 print >> sys.stderr, ( | 1465 print >> sys.stderr, ( |
1455 'AppEngine is misbehaving and returned HTTP %d, again. Keep faith ' | 1466 'AppEngine is misbehaving and returned HTTP %d, again. Keep faith ' |
1456 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e)) | 1467 'and retry or visit go/isgaeup.\n%s') % (e.code, str(e)) |
1457 return 1 | 1468 return 1 |
1458 | 1469 |
1459 | 1470 |
1460 if __name__ == "__main__": | 1471 if __name__ == "__main__": |
1461 fix_encoding.fix_encoding() | 1472 fix_encoding.fix_encoding() |
1462 sys.exit(main(sys.argv[1:])) | 1473 sys.exit(main(sys.argv[1:])) |
OLD | NEW |