Files
@ d3ac7491a5c8
Branch filter:
Location: kallithea/rhodecode/model/changeset_status.py - annotation
d3ac7491a5c8
2.9 KiB
text/x-python
Share common getter functions in base model, and remove duplicated functions from other models
a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 d3ac7491a5c8 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 a2987fa580d9 76947224bf27 8447d35b674e 8447d35b674e 8447d35b674e 76947224bf27 76947224bf27 76947224bf27 76947224bf27 76947224bf27 76947224bf27 d3ac7491a5c8 76947224bf27 76947224bf27 76947224bf27 8447d35b674e 8447d35b674e 76947224bf27 76947224bf27 76947224bf27 76947224bf27 9265958e33bb 76947224bf27 8447d35b674e 8447d35b674e 76947224bf27 76947224bf27 76947224bf27 76947224bf27 76947224bf27 76947224bf27 76947224bf27 76947224bf27 76947224bf27 9265958e33bb 9265958e33bb 76947224bf27 d3ac7491a5c8 76947224bf27 8447d35b674e 76947224bf27 76947224bf27 8447d35b674e 8447d35b674e 8447d35b674e 8447d35b674e 8447d35b674e 8447d35b674e d3ac7491a5c8 d3ac7491a5c8 76947224bf27 76947224bf27 9265958e33bb 76947224bf27 76947224bf27 76947224bf27 | # -*- 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
from rhodecode.model.db import ChangesetStatus
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):
"""
Returns status of changeset for given revision and version 0
versioning makes a history of statuses, and version == 0 is always the
current one
:param repo:
:type repo:
:param revision: 40char hash
:type revision: str
"""
repo = self._get_repo(repo)
status = ChangesetStatus.query()\
.filter(ChangesetStatus.repo == repo)\
.filter(ChangesetStatus.revision == revision)\
.filter(ChangesetStatus.version == 0).scalar()
status = status.status if status else status
st = status or ChangesetStatus.DEFAULT
return str(st)
def set_status(self, repo, revision, status, user, comment):
"""
Creates new status for changeset or updates the old ones bumping their
version, leaving the current status at
:param repo:
:type repo:
:param revision:
:type revision:
:param status:
:type status:
:param user:
:type user:
:param comment:
:type comment:
"""
repo = self._get_repo(repo)
cur_statuses = ChangesetStatus.query()\
.filter(ChangesetStatus.repo == repo)\
.filter(ChangesetStatus.revision == revision)\
.all()
if cur_statuses:
for st in cur_statuses:
st.version += 1
self.sa.add(st)
new_status = ChangesetStatus()
new_status.author = self._get_user(user)
new_status.repo = self._get_repo(repo)
new_status.status = status
new_status.revision = revision
new_status.comment = comment
self.sa.add(new_status)
return new_status
|