##// END OF EJS Templates
Refactoring of changeset_file_comments for more generic usage. In both It enables sharing code between changeset, and pull requests discussions
Refactoring of changeset_file_comments for more generic usage. In both It enables sharing code between changeset, and pull requests discussions

File last commit:

r2432:d3ac7491 codereview
r2439:ad19dfcd codereview
Show More
changeset_status.py
94 lines | 2.9 KiB | text/x-python | PythonLexer
dummy ChangesetStatus model
r2216 # -*- coding: utf-8 -*-
"""
rhodecode.model.changeset_status
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
:created_on: Apr 30, 2012
:author: marcink
:copyright: (C) 2011-2012 Marcin Kuzminski <marcin@python-works.com>
:license: GPLv3, see COPYING for more details.
"""
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import logging
from rhodecode.model import BaseModel
Share common getter functions in base model, and remove duplicated functions from other models
r2432 from rhodecode.model.db import ChangesetStatus
dummy ChangesetStatus model
r2216
log = logging.getLogger(__name__)
class ChangesetStatusModel(BaseModel):
def __get_changeset_status(self, changeset_status):
return self._get_instance(ChangesetStatus, changeset_status)
def get_status(self, repo, revision):
Implemented initial code-review status of changesets
r2217 """
Added simple versioning for changeset status
r2287 Returns status of changeset for given revision and version 0
versioning makes a history of statuses, and version == 0 is always the
current one
Implemented initial code-review status of changesets
r2217
:param repo:
:type repo:
:param revision: 40char hash
:type revision: str
"""
Share common getter functions in base model, and remove duplicated functions from other models
r2432 repo = self._get_repo(repo)
Implemented initial code-review status of changesets
r2217
status = ChangesetStatus.query()\
.filter(ChangesetStatus.repo == repo)\
Added simple versioning for changeset status
r2287 .filter(ChangesetStatus.revision == revision)\
.filter(ChangesetStatus.version == 0).scalar()
Implemented initial code-review status of changesets
r2217 status = status.status if status else status
st = status or ChangesetStatus.DEFAULT
return str(st)
Show changes of status inside comments...
r2286 def set_status(self, repo, revision, status, user, comment):
Implemented initial code-review status of changesets
r2217 """
Added simple versioning for changeset status
r2287 Creates new status for changeset or updates the old ones bumping their
version, leaving the current status at
Implemented initial code-review status of changesets
r2217
:param repo:
:type repo:
:param revision:
:type revision:
:param status:
:type status:
:param user:
:type user:
Show changes of status inside comments...
r2286 :param comment:
:type comment:
Implemented initial code-review status of changesets
r2217 """
Share common getter functions in base model, and remove duplicated functions from other models
r2432 repo = self._get_repo(repo)
Implemented initial code-review status of changesets
r2217
Added simple versioning for changeset status
r2287 cur_statuses = ChangesetStatus.query()\
Implemented initial code-review status of changesets
r2217 .filter(ChangesetStatus.repo == repo)\
.filter(ChangesetStatus.revision == revision)\
Added simple versioning for changeset status
r2287 .all()
if cur_statuses:
for st in cur_statuses:
st.version += 1
self.sa.add(st)
new_status = ChangesetStatus()
Share common getter functions in base model, and remove duplicated functions from other models
r2432 new_status.author = self._get_user(user)
new_status.repo = self._get_repo(repo)
Implemented initial code-review status of changesets
r2217 new_status.status = status
new_status.revision = revision
Show changes of status inside comments...
r2286 new_status.comment = comment
Implemented initial code-review status of changesets
r2217 self.sa.add(new_status)
return new_status