files.py
253 lines
| 9.0 KiB
| text/x-python
|
PythonLexer
r812 | # -*- coding: utf-8 -*- | |||
""" | ||||
rhodecode.controllers.files | ||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||||
r547 | ||||
r812 | Files controller for RhodeCode | |||
:created_on: Apr 21, 2010 | ||||
:author: marcink | ||||
:copyright: (C) 2009-2010 Marcin Kuzminski <marcin@python-works.com> | ||||
:license: GPLv3, see COPYING for more details. | ||||
""" | ||||
r547 | # 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; version 2 | ||||
# of the License or (at your opinion) any later version of the license. | ||||
# | ||||
# 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, write to the Free Software | ||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||||
# MA 02110-1301, USA. | ||||
r812 | import tempfile | |||
import logging | ||||
import rhodecode.lib.helpers as h | ||||
r547 | from mercurial import archival | |||
r812 | ||||
r547 | from pylons import request, response, session, tmpl_context as c, url | |||
from pylons.i18n.translation import _ | ||||
from pylons.controllers.util import redirect | ||||
r812 | ||||
r547 | from rhodecode.lib.auth import LoginRequired, HasRepoPermissionAnyDecorator | |||
from rhodecode.lib.base import BaseController, render | ||||
from rhodecode.lib.utils import EmptyChangeset | ||||
r691 | from rhodecode.model.scm import ScmModel | |||
r812 | ||||
r547 | from vcs.exceptions import RepositoryError, ChangesetError | |||
from vcs.nodes import FileNode | ||||
from vcs.utils import diffs as differ | ||||
r636 | ||||
r547 | log = logging.getLogger(__name__) | |||
class FilesController(BaseController): | ||||
r636 | ||||
r547 | @LoginRequired() | |||
@HasRepoPermissionAnyDecorator('repository.read', 'repository.write', | ||||
r636 | 'repository.admin') | |||
r547 | def __before__(self): | |||
super(FilesController, self).__before__() | ||||
r813 | c.cut_off_limit = self.cut_off_limit | |||
r547 | ||||
def index(self, repo_name, revision, f_path): | ||||
r691 | hg_model = ScmModel() | |||
r662 | c.repo = hg_model.get_repo(c.repo_name) | |||
r547 | revision = request.POST.get('at_rev', None) or revision | |||
r636 | ||||
r547 | def get_next_rev(cur): | |||
max_rev = len(c.repo.revisions) - 1 | ||||
r = cur + 1 | ||||
if r > max_rev: | ||||
r = max_rev | ||||
return r | ||||
r636 | ||||
r547 | def get_prev_rev(cur): | |||
r = cur - 1 | ||||
return r | ||||
c.f_path = f_path | ||||
r636 | ||||
r547 | try: | |||
r662 | c.changeset = c.repo.get_changeset(revision) | |||
r644 | cur_rev = c.changeset.revision | |||
r662 | prev_rev = c.repo.get_changeset(get_prev_rev(cur_rev)).raw_id | |||
next_rev = c.repo.get_changeset(get_next_rev(cur_rev)).raw_id | ||||
r636 | ||||
r547 | c.url_prev = url('files_home', repo_name=c.repo_name, | |||
r636 | revision=prev_rev, f_path=f_path) | |||
r547 | c.url_next = url('files_home', repo_name=c.repo_name, | |||
r644 | revision=next_rev, f_path=f_path) | |||
r636 | ||||
r644 | try: | |||
c.files_list = c.changeset.get_node(f_path) | ||||
r662 | c.file_history = self._get_history(c.repo, c.files_list, f_path) | |||
r644 | except RepositoryError, e: | |||
h.flash(str(e), category='warning') | ||||
redirect(h.url('files_home', repo_name=repo_name, revision=revision)) | ||||
r636 | ||||
r644 | except RepositoryError, e: | |||
h.flash(str(e), category='warning') | ||||
redirect(h.url('files_home', repo_name=repo_name, revision='tip')) | ||||
r636 | ||||
r547 | return render('files/files.html') | |||
def rawfile(self, repo_name, revision, f_path): | ||||
r691 | hg_model = ScmModel() | |||
r547 | c.repo = hg_model.get_repo(c.repo_name) | |||
file_node = c.repo.get_changeset(revision).get_node(f_path) | ||||
response.content_type = file_node.mimetype | ||||
response.content_disposition = 'attachment; filename=%s' \ | ||||
r636 | % f_path.split('/')[-1] | |||
r547 | return file_node.content | |||
def raw(self, repo_name, revision, f_path): | ||||
r691 | hg_model = ScmModel() | |||
r547 | c.repo = hg_model.get_repo(c.repo_name) | |||
file_node = c.repo.get_changeset(revision).get_node(f_path) | ||||
response.content_type = 'text/plain' | ||||
r636 | ||||
r547 | return file_node.content | |||
r636 | ||||
r547 | def annotate(self, repo_name, revision, f_path): | |||
r691 | hg_model = ScmModel() | |||
r547 | c.repo = hg_model.get_repo(c.repo_name) | |||
r774 | ||||
try: | ||||
c.cs = c.repo.get_changeset(revision) | ||||
c.file = c.cs.get_node(f_path) | ||||
except RepositoryError, e: | ||||
h.flash(str(e), category='warning') | ||||
redirect(h.url('files_home', repo_name=repo_name, revision=revision)) | ||||
r662 | c.file_history = self._get_history(c.repo, c.file, f_path) | |||
r547 | c.f_path = f_path | |||
return render('files/files_annotate.html') | ||||
r636 | ||||
r547 | def archivefile(self, repo_name, revision, fileformat): | |||
archive_specs = { | ||||
'.tar.bz2': ('application/x-tar', 'tbz2'), | ||||
'.tar.gz': ('application/x-tar', 'tgz'), | ||||
'.zip': ('application/zip', 'zip'), | ||||
} | ||||
if not archive_specs.has_key(fileformat): | ||||
return 'Unknown archive type %s' % fileformat | ||||
r636 | ||||
r547 | def read_in_chunks(file_object, chunk_size=1024 * 40): | |||
"""Lazy function (generator) to read a file piece by piece. | ||||
Default chunk size: 40k.""" | ||||
while True: | ||||
data = file_object.read(chunk_size) | ||||
if not data: | ||||
break | ||||
r636 | yield data | |||
r547 | archive = tempfile.TemporaryFile() | |||
r691 | repo = ScmModel().get_repo(repo_name).repo | |||
r547 | fname = '%s-%s%s' % (repo_name, revision, fileformat) | |||
archival.archive(repo, archive, revision, archive_specs[fileformat][1], | ||||
prefix='%s-%s' % (repo_name, revision)) | ||||
response.content_type = archive_specs[fileformat][0] | ||||
response.content_disposition = 'attachment; filename=%s' % fname | ||||
archive.seek(0) | ||||
return read_in_chunks(archive) | ||||
r636 | ||||
r547 | def diff(self, repo_name, f_path): | |||
r691 | hg_model = ScmModel() | |||
r547 | diff1 = request.GET.get('diff1') | |||
diff2 = request.GET.get('diff2') | ||||
c.action = request.GET.get('diff') | ||||
c.no_changes = diff1 == diff2 | ||||
c.f_path = f_path | ||||
c.repo = hg_model.get_repo(c.repo_name) | ||||
try: | ||||
if diff1 not in ['', None, 'None', '0' * 12, '0' * 40]: | ||||
c.changeset_1 = c.repo.get_changeset(diff1) | ||||
node1 = c.changeset_1.get_node(f_path) | ||||
else: | ||||
c.changeset_1 = EmptyChangeset() | ||||
node1 = FileNode('.', '', changeset=c.changeset_1) | ||||
r636 | ||||
r547 | if diff2 not in ['', None, 'None', '0' * 12, '0' * 40]: | |||
c.changeset_2 = c.repo.get_changeset(diff2) | ||||
node2 = c.changeset_2.get_node(f_path) | ||||
else: | ||||
c.changeset_2 = EmptyChangeset() | ||||
node2 = FileNode('.', '', changeset=c.changeset_2) | ||||
except RepositoryError: | ||||
return redirect(url('files_home', | ||||
repo_name=c.repo_name, f_path=f_path)) | ||||
f_udiff = differ.get_udiff(node1, node2) | ||||
diff = differ.DiffProcessor(f_udiff) | ||||
r636 | ||||
r547 | if c.action == 'download': | |||
diff_name = '%s_vs_%s.diff' % (diff1, diff2) | ||||
response.content_type = 'text/plain' | ||||
response.content_disposition = 'attachment; filename=%s' \ | ||||
r636 | % diff_name | |||
r547 | return diff.raw_diff() | |||
r636 | ||||
r547 | elif c.action == 'raw': | |||
r649 | response.content_type = 'text/plain' | |||
return diff.raw_diff() | ||||
r662 | ||||
r547 | elif c.action == 'diff': | |||
r812 | if node1.size > self.cut_off_limit or node2.size > self.cut_off_limit: | |||
r547 | c.cur_diff = _('Diff is to big to display') | |||
else: | ||||
c.cur_diff = diff.as_html() | ||||
else: | ||||
#default option | ||||
r812 | if node1.size > self.cut_off_limit or node2.size > self.cut_off_limit: | |||
r547 | c.cur_diff = _('Diff is to big to display') | |||
else: | ||||
c.cur_diff = diff.as_html() | ||||
r636 | ||||
if not c.cur_diff: c.no_changes = True | ||||
r547 | return render('files/file_diff.html') | |||
r636 | ||||
r547 | def _get_history(self, repo, node, f_path): | |||
from vcs.nodes import NodeKind | ||||
if not node.kind is NodeKind.FILE: | ||||
return [] | ||||
changesets = node.history | ||||
hist_l = [] | ||||
r774 | ||||
changesets_group = ([], _("Changesets")) | ||||
branches_group = ([], _("Branches")) | ||||
tags_group = ([], _("Tags")) | ||||
r547 | for chs in changesets: | |||
n_desc = 'r%s:%s' % (chs.revision, chs.short_id) | ||||
r774 | changesets_group[0].append((chs.raw_id, n_desc,)) | |||
hist_l.append(changesets_group) | ||||
for name, chs in c.repository_branches.items(): | ||||
#chs = chs.split(':')[-1] | ||||
branches_group[0].append((chs, name),) | ||||
hist_l.append(branches_group) | ||||
for name, chs in c.repository_tags.items(): | ||||
#chs = chs.split(':')[-1] | ||||
tags_group[0].append((chs, name),) | ||||
hist_l.append(tags_group) | ||||
r547 | return hist_l | |||
r774 | ||||
# [ | ||||
# ([("u1", "User1"), ("u2", "User2")], "Users"), | ||||
# ([("g1", "Group1"), ("g2", "Group2")], "Groups") | ||||
# ] | ||||