OLD | NEW |
1 # coding: utf-8 | 1 # coding: utf-8 |
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 """Defines class Rietveld to easily access a rietveld instance. | 5 """Defines class Rietveld to easily access a rietveld instance. |
6 | 6 |
7 Security implications: | 7 Security implications: |
8 | 8 |
9 The following hypothesis are made: | 9 The following hypothesis are made: |
10 - Rietveld enforces: | 10 - Rietveld enforces: |
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 if not messages: | 438 if not messages: |
439 # Assumes self._lookup uses deepcopy. | 439 # Assumes self._lookup uses deepcopy. |
440 del data['messages'] | 440 del data['messages'] |
441 return data | 441 return data |
442 | 442 |
443 def get_patchset_properties(self, issue, patchset): | 443 def get_patchset_properties(self, issue, patchset): |
444 return self._lookup( | 444 return self._lookup( |
445 'get_patchset_properties', | 445 'get_patchset_properties', |
446 (issue, patchset), | 446 (issue, patchset), |
447 super(CachingRietveld, self).get_patchset_properties) | 447 super(CachingRietveld, self).get_patchset_properties) |
| 448 |
| 449 |
| 450 class ReadOnlyRietveld(object): |
| 451 """ |
| 452 Only provides read operations, and simulates writes locally. |
| 453 |
| 454 Intentionally do not inherit from Rietveld to avoid any write-issuing |
| 455 logic to be invoked accidentally. |
| 456 """ |
| 457 |
| 458 # Dictionary of local changes, indexed by issue number as int. |
| 459 _local_changes = {} |
| 460 |
| 461 def __init__(self, *args, **kwargs): |
| 462 # We still need an actual Rietveld instance to issue reads, just keep |
| 463 # it hidden. |
| 464 self._rietveld = Rietveld(*args, **kwargs) |
| 465 |
| 466 @classmethod |
| 467 def _get_local_changes(cls, issue): |
| 468 """Returns dictionary of local changes for |issue|, if any.""" |
| 469 return cls._local_changes.get(issue, {}) |
| 470 |
| 471 @property |
| 472 def url(self): |
| 473 return self._rietveld.url |
| 474 |
| 475 @property |
| 476 def email(self): |
| 477 return self._rietveld.email |
| 478 |
| 479 def get_pending_issues(self): |
| 480 pending_issues = self._rietveld.get_pending_issues() |
| 481 |
| 482 # Filter out issues we've closed or unchecked the commit checkbox. |
| 483 return [issue for issue in pending_issues |
| 484 if not self._get_local_changes(issue).get('closed', False) and |
| 485 self._get_local_changes(issue).get('commit', True)] |
| 486 |
| 487 def close_issue(self, issue): # pylint:disable=R0201 |
| 488 logging.info('ReadOnlyRietveld: closing issue %d' % issue) |
| 489 ReadOnlyRietveld._local_changes.setdefault(issue, {})['closed'] = True |
| 490 |
| 491 def get_issue_properties(self, issue, messages): |
| 492 data = self._rietveld.get_issue_properties(issue, messages) |
| 493 data.update(self._get_local_changes(issue)) |
| 494 return data |
| 495 |
| 496 def get_patchset_properties(self, issue, patchset): |
| 497 return self._rietveld.get_patchset_properties(issue, patchset) |
| 498 |
| 499 def get_patch(self, issue, patchset): |
| 500 return self._rietveld.get_patch(issue, patchset) |
| 501 |
| 502 def update_description(self, issue, description): # pylint:disable=R0201 |
| 503 logging.info('ReadOnlyRietveld: new description for issue %d: %s' % |
| 504 (issue, description)) |
| 505 |
| 506 def add_comment(self, # pylint:disable=R0201 |
| 507 issue, |
| 508 message, |
| 509 add_as_reviewer=False): |
| 510 logging.info('ReadOnlyRietveld: posting comment "%s" to issue %d' % |
| 511 (message, issue)) |
| 512 |
| 513 def set_flag(self, issue, patchset, flag, value): # pylint:disable=R0201 |
| 514 logging.info('ReadOnlyRietveld: setting flag "%s" to "%s" for issue %d' % |
| 515 (flag, value, issue)) |
| 516 ReadOnlyRietveld._local_changes.setdefault(issue, {})[flag] = value |
| 517 |
| 518 def trigger_try_jobs( # pylint:disable=R0201 |
| 519 self, issue, patchset, reason, clobber, revision, builders_and_tests): |
| 520 logging.info('ReadOnlyRietveld: triggering try jobs %r for issue %d' % |
| 521 (builders_and_tests, issue)) |
OLD | NEW |