unrhodecode/rhodecode/lib/vcs/backends/svn/inmemory.py
2025-11-04 14:40:54 +01:00

86 lines
2.9 KiB
Python

# Copyright (C) 2014-2024 RhodeCode GmbH
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License, version 3
# (only), as published by the Free Software Foundation.
#
# 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 Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# This program is dual-licensed. If you wish to learn more about the
# RhodeCode Enterprise Edition, including its added features, Support services,
# and proprietary license terms, please see https://rhodecode.com/licenses/
"""
SVN inmemory module
"""
import logging
from rhodecode.lib.datelib import date_astimestamp
from rhodecode.lib.str_utils import safe_str, safe_bytes
from rhodecode.lib.vcs.backends import base
log = logging.getLogger(__name__)
class SubversionInMemoryCommit(base.BaseInMemoryCommit):
def commit(self, message, author, parents=None, branch=None, date=None, **kwargs):
if branch not in (None, self.repository.DEFAULT_BRANCH_NAME):
log.debug(
"SVN does not support branches in inmemory commits. "
"Ignoring branch parameter: %s (treating as default)",
branch,
)
self.check_integrity(parents)
message = safe_str(message)
author = safe_str(author)
updated = []
for node in self.added:
node_data = {
"path": safe_bytes(node.path),
"content": node.content,
"mode": node.mode,
}
if node.is_binary:
node_data["properties"] = {"svn:mime-type": "application/octet-stream"}
updated.append(node_data)
for node in self.changed:
updated.append(
{
"path": safe_bytes(node.path),
"content": node.content,
"mode": node.mode,
}
)
removed = []
for node in self.removed:
removed.append(
{
"path": safe_bytes(node.path),
}
)
timestamp = date_astimestamp(date) if date else None
svn_rev = self.repository._remote.commit(
message=message, author=author, timestamp=timestamp, updated=updated, removed=removed
)
# TODO: Find a nicer way. If commit_ids is not yet evaluated, then
# we should not add the commit_id, if it is already evaluated, it
# will not be evaluated again.
commit_id = str(svn_rev)
self.repository.append_commit_id(commit_id)
tip = self.repository.get_commit()
self.reset()
return tip