|
@@
-1,1715
+1,1716
b''
|
|
1
|
# Copyright (C) 2011-2023 RhodeCode GmbH
|
|
1
|
# Copyright (C) 2011-2023 RhodeCode GmbH
|
|
2
|
#
|
|
2
|
#
|
|
3
|
# This program is free software: you can redistribute it and/or modify
|
|
3
|
# This program is free software: you can redistribute it and/or modify
|
|
4
|
# it under the terms of the GNU Affero General Public License, version 3
|
|
4
|
# it under the terms of the GNU Affero General Public License, version 3
|
|
5
|
# (only), as published by the Free Software Foundation.
|
|
5
|
# (only), as published by the Free Software Foundation.
|
|
6
|
#
|
|
6
|
#
|
|
7
|
# This program is distributed in the hope that it will be useful,
|
|
7
|
# This program is distributed in the hope that it will be useful,
|
|
8
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
8
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
9
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
9
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
10
|
# GNU General Public License for more details.
|
|
10
|
# GNU General Public License for more details.
|
|
11
|
#
|
|
11
|
#
|
|
12
|
# You should have received a copy of the GNU Affero General Public License
|
|
12
|
# You should have received a copy of the GNU Affero General Public License
|
|
13
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
13
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
14
|
#
|
|
14
|
#
|
|
15
|
# This program is dual-licensed. If you wish to learn more about the
|
|
15
|
# This program is dual-licensed. If you wish to learn more about the
|
|
16
|
# RhodeCode Enterprise Edition, including its added features, Support services,
|
|
16
|
# RhodeCode Enterprise Edition, including its added features, Support services,
|
|
17
|
# and proprietary license terms, please see https://rhodecode.com/licenses/
|
|
17
|
# and proprietary license terms, please see https://rhodecode.com/licenses/
|
|
18
|
|
|
18
|
|
|
19
|
import itertools
|
|
19
|
import itertools
|
|
20
|
import logging
|
|
20
|
import logging
|
|
21
|
import os
|
|
21
|
import os
|
|
22
|
import collections
|
|
22
|
import collections
|
|
23
|
import urllib.request
|
|
23
|
import urllib.request
|
|
24
|
import urllib.parse
|
|
24
|
import urllib.parse
|
|
25
|
import urllib.error
|
|
25
|
import urllib.error
|
|
26
|
import pathlib
|
|
26
|
import pathlib
|
|
27
|
import time
|
|
27
|
import time
|
|
28
|
import random
|
|
28
|
import random
|
|
29
|
|
|
29
|
|
|
30
|
from pyramid.httpexceptions import HTTPNotFound, HTTPBadRequest, HTTPFound
|
|
30
|
from pyramid.httpexceptions import HTTPNotFound, HTTPBadRequest, HTTPFound
|
|
31
|
|
|
31
|
|
|
32
|
from pyramid.renderers import render
|
|
32
|
from pyramid.renderers import render
|
|
33
|
from pyramid.response import Response
|
|
33
|
from pyramid.response import Response
|
|
34
|
|
|
34
|
|
|
35
|
import rhodecode
|
|
35
|
import rhodecode
|
|
36
|
from rhodecode.apps._base import RepoAppView
|
|
36
|
from rhodecode.apps._base import RepoAppView
|
|
37
|
|
|
37
|
|
|
38
|
|
|
38
|
|
|
39
|
from rhodecode.lib import diffs, helpers as h, rc_cache
|
|
39
|
from rhodecode.lib import diffs, helpers as h, rc_cache
|
|
40
|
from rhodecode.lib import audit_logger
|
|
40
|
from rhodecode.lib import audit_logger
|
|
41
|
from rhodecode.lib.hash_utils import sha1_safe
|
|
41
|
from rhodecode.lib.hash_utils import sha1_safe
|
|
42
|
from rhodecode.lib.rc_cache.archive_cache import (
|
|
42
|
from rhodecode.lib.rc_cache.archive_cache import (
|
|
43
|
get_archival_cache_store, get_archival_config, ArchiveCacheLock, archive_iterator)
|
|
43
|
get_archival_cache_store, get_archival_config, ArchiveCacheGenerationLock, archive_iterator)
|
|
44
|
from rhodecode.lib.str_utils import safe_bytes, convert_special_chars
|
|
44
|
from rhodecode.lib.str_utils import safe_bytes, convert_special_chars
|
|
45
|
from rhodecode.lib.view_utils import parse_path_ref
|
|
45
|
from rhodecode.lib.view_utils import parse_path_ref
|
|
46
|
from rhodecode.lib.exceptions import NonRelativePathError
|
|
46
|
from rhodecode.lib.exceptions import NonRelativePathError
|
|
47
|
from rhodecode.lib.codeblocks import (
|
|
47
|
from rhodecode.lib.codeblocks import (
|
|
48
|
filenode_as_lines_tokens, filenode_as_annotated_lines_tokens)
|
|
48
|
filenode_as_lines_tokens, filenode_as_annotated_lines_tokens)
|
|
49
|
from rhodecode.lib.utils2 import convert_line_endings, detect_mode
|
|
49
|
from rhodecode.lib.utils2 import convert_line_endings, detect_mode
|
|
50
|
from rhodecode.lib.type_utils import str2bool
|
|
50
|
from rhodecode.lib.type_utils import str2bool
|
|
51
|
from rhodecode.lib.str_utils import safe_str, safe_int
|
|
51
|
from rhodecode.lib.str_utils import safe_str, safe_int
|
|
52
|
from rhodecode.lib.auth import (
|
|
52
|
from rhodecode.lib.auth import (
|
|
53
|
LoginRequired, HasRepoPermissionAnyDecorator, CSRFRequired)
|
|
53
|
LoginRequired, HasRepoPermissionAnyDecorator, CSRFRequired)
|
|
54
|
from rhodecode.lib.vcs import path as vcspath
|
|
54
|
from rhodecode.lib.vcs import path as vcspath
|
|
55
|
from rhodecode.lib.vcs.backends.base import EmptyCommit
|
|
55
|
from rhodecode.lib.vcs.backends.base import EmptyCommit
|
|
56
|
from rhodecode.lib.vcs.conf import settings
|
|
56
|
from rhodecode.lib.vcs.conf import settings
|
|
57
|
from rhodecode.lib.vcs.nodes import FileNode
|
|
57
|
from rhodecode.lib.vcs.nodes import FileNode
|
|
58
|
from rhodecode.lib.vcs.exceptions import (
|
|
58
|
from rhodecode.lib.vcs.exceptions import (
|
|
59
|
RepositoryError, CommitDoesNotExistError, EmptyRepositoryError,
|
|
59
|
RepositoryError, CommitDoesNotExistError, EmptyRepositoryError,
|
|
60
|
ImproperArchiveTypeError, VCSError, NodeAlreadyExistsError,
|
|
60
|
ImproperArchiveTypeError, VCSError, NodeAlreadyExistsError,
|
|
61
|
NodeDoesNotExistError, CommitError, NodeError)
|
|
61
|
NodeDoesNotExistError, CommitError, NodeError)
|
|
62
|
|
|
62
|
|
|
63
|
from rhodecode.model.scm import ScmModel
|
|
63
|
from rhodecode.model.scm import ScmModel
|
|
64
|
from rhodecode.model.db import Repository
|
|
64
|
from rhodecode.model.db import Repository
|
|
65
|
|
|
65
|
|
|
66
|
log = logging.getLogger(__name__)
|
|
66
|
log = logging.getLogger(__name__)
|
|
67
|
|
|
67
|
|
|
68
|
|
|
68
|
|
|
69
|
def get_archive_name(db_repo_id, db_repo_name, commit_sha, ext, subrepos=False, path_sha='', with_hash=True):
|
|
69
|
def get_archive_name(db_repo_id, db_repo_name, commit_sha, ext, subrepos=False, path_sha='', with_hash=True):
|
|
70
|
# original backward compat name of archive
|
|
70
|
# original backward compat name of archive
|
|
71
|
clean_name = safe_str(convert_special_chars(db_repo_name).replace('/', '_'))
|
|
71
|
clean_name = safe_str(convert_special_chars(db_repo_name).replace('/', '_'))
|
|
72
|
|
|
72
|
|
|
73
|
# e.g vcsserver-id-abcd-sub-1-abcfdef-archive-all.zip
|
|
73
|
# e.g vcsserver-id-abcd-sub-1-abcfdef-archive-all.zip
|
|
74
|
# vcsserver-id-abcd-sub-0-abcfdef-COMMIT_SHA-PATH_SHA.zip
|
|
74
|
# vcsserver-id-abcd-sub-0-abcfdef-COMMIT_SHA-PATH_SHA.zip
|
|
75
|
id_sha = sha1_safe(str(db_repo_id))[:4]
|
|
75
|
id_sha = sha1_safe(str(db_repo_id))[:4]
|
|
76
|
sub_repo = 'sub-1' if subrepos else 'sub-0'
|
|
76
|
sub_repo = 'sub-1' if subrepos else 'sub-0'
|
|
77
|
commit = commit_sha if with_hash else 'archive'
|
|
77
|
commit = commit_sha if with_hash else 'archive'
|
|
78
|
path_marker = (path_sha if with_hash else '') or 'all'
|
|
78
|
path_marker = (path_sha if with_hash else '') or 'all'
|
|
79
|
archive_name = f'{clean_name}-id-{id_sha}-{sub_repo}-{commit}-{path_marker}{ext}'
|
|
79
|
archive_name = f'{clean_name}-id-{id_sha}-{sub_repo}-{commit}-{path_marker}{ext}'
|
|
80
|
|
|
80
|
|
|
81
|
return archive_name
|
|
81
|
return archive_name
|
|
82
|
|
|
82
|
|
|
83
|
|
|
83
|
|
|
84
|
def get_path_sha(at_path):
|
|
84
|
def get_path_sha(at_path):
|
|
85
|
return safe_str(sha1_safe(at_path)[:8])
|
|
85
|
return safe_str(sha1_safe(at_path)[:8])
|
|
86
|
|
|
86
|
|
|
87
|
|
|
87
|
|
|
88
|
def _get_archive_spec(fname):
|
|
88
|
def _get_archive_spec(fname):
|
|
89
|
log.debug('Detecting archive spec for: `%s`', fname)
|
|
89
|
log.debug('Detecting archive spec for: `%s`', fname)
|
|
90
|
|
|
90
|
|
|
91
|
fileformat = None
|
|
91
|
fileformat = None
|
|
92
|
ext = None
|
|
92
|
ext = None
|
|
93
|
content_type = None
|
|
93
|
content_type = None
|
|
94
|
for a_type, content_type, extension in settings.ARCHIVE_SPECS:
|
|
94
|
for a_type, content_type, extension in settings.ARCHIVE_SPECS:
|
|
95
|
|
|
95
|
|
|
96
|
if fname.endswith(extension):
|
|
96
|
if fname.endswith(extension):
|
|
97
|
fileformat = a_type
|
|
97
|
fileformat = a_type
|
|
98
|
log.debug('archive is of type: %s', fileformat)
|
|
98
|
log.debug('archive is of type: %s', fileformat)
|
|
99
|
ext = extension
|
|
99
|
ext = extension
|
|
100
|
break
|
|
100
|
break
|
|
101
|
|
|
101
|
|
|
102
|
if not fileformat:
|
|
102
|
if not fileformat:
|
|
103
|
raise ValueError()
|
|
103
|
raise ValueError()
|
|
104
|
|
|
104
|
|
|
105
|
# left over part of whole fname is the commit
|
|
105
|
# left over part of whole fname is the commit
|
|
106
|
commit_id = fname[:-len(ext)]
|
|
106
|
commit_id = fname[:-len(ext)]
|
|
107
|
|
|
107
|
|
|
108
|
return commit_id, ext, fileformat, content_type
|
|
108
|
return commit_id, ext, fileformat, content_type
|
|
109
|
|
|
109
|
|
|
110
|
|
|
110
|
|
|
111
|
class RepoFilesView(RepoAppView):
|
|
111
|
class RepoFilesView(RepoAppView):
|
|
112
|
|
|
112
|
|
|
113
|
@staticmethod
|
|
113
|
@staticmethod
|
|
114
|
def adjust_file_path_for_svn(f_path, repo):
|
|
114
|
def adjust_file_path_for_svn(f_path, repo):
|
|
115
|
"""
|
|
115
|
"""
|
|
116
|
Computes the relative path of `f_path`.
|
|
116
|
Computes the relative path of `f_path`.
|
|
117
|
|
|
117
|
|
|
118
|
This is mainly based on prefix matching of the recognized tags and
|
|
118
|
This is mainly based on prefix matching of the recognized tags and
|
|
119
|
branches in the underlying repository.
|
|
119
|
branches in the underlying repository.
|
|
120
|
"""
|
|
120
|
"""
|
|
121
|
tags_and_branches = itertools.chain(
|
|
121
|
tags_and_branches = itertools.chain(
|
|
122
|
repo.branches.keys(),
|
|
122
|
repo.branches.keys(),
|
|
123
|
repo.tags.keys())
|
|
123
|
repo.tags.keys())
|
|
124
|
tags_and_branches = sorted(tags_and_branches, key=len, reverse=True)
|
|
124
|
tags_and_branches = sorted(tags_and_branches, key=len, reverse=True)
|
|
125
|
|
|
125
|
|
|
126
|
for name in tags_and_branches:
|
|
126
|
for name in tags_and_branches:
|
|
127
|
if f_path.startswith(f'{name}/'):
|
|
127
|
if f_path.startswith(f'{name}/'):
|
|
128
|
f_path = vcspath.relpath(f_path, name)
|
|
128
|
f_path = vcspath.relpath(f_path, name)
|
|
129
|
break
|
|
129
|
break
|
|
130
|
return f_path
|
|
130
|
return f_path
|
|
131
|
|
|
131
|
|
|
132
|
def load_default_context(self):
|
|
132
|
def load_default_context(self):
|
|
133
|
c = self._get_local_tmpl_context(include_app_defaults=True)
|
|
133
|
c = self._get_local_tmpl_context(include_app_defaults=True)
|
|
134
|
c.rhodecode_repo = self.rhodecode_vcs_repo
|
|
134
|
c.rhodecode_repo = self.rhodecode_vcs_repo
|
|
135
|
c.enable_downloads = self.db_repo.enable_downloads
|
|
135
|
c.enable_downloads = self.db_repo.enable_downloads
|
|
136
|
return c
|
|
136
|
return c
|
|
137
|
|
|
137
|
|
|
138
|
def _ensure_not_locked(self, commit_id='tip'):
|
|
138
|
def _ensure_not_locked(self, commit_id='tip'):
|
|
139
|
_ = self.request.translate
|
|
139
|
_ = self.request.translate
|
|
140
|
|
|
140
|
|
|
141
|
repo = self.db_repo
|
|
141
|
repo = self.db_repo
|
|
142
|
if repo.enable_locking and repo.locked[0]:
|
|
142
|
if repo.enable_locking and repo.locked[0]:
|
|
143
|
h.flash(_('This repository has been locked by %s on %s')
|
|
143
|
h.flash(_('This repository has been locked by %s on %s')
|
|
144
|
% (h.person_by_id(repo.locked[0]),
|
|
144
|
% (h.person_by_id(repo.locked[0]),
|
|
145
|
h.format_date(h.time_to_datetime(repo.locked[1]))),
|
|
145
|
h.format_date(h.time_to_datetime(repo.locked[1]))),
|
|
146
|
'warning')
|
|
146
|
'warning')
|
|
147
|
files_url = h.route_path(
|
|
147
|
files_url = h.route_path(
|
|
148
|
'repo_files:default_path',
|
|
148
|
'repo_files:default_path',
|
|
149
|
repo_name=self.db_repo_name, commit_id=commit_id)
|
|
149
|
repo_name=self.db_repo_name, commit_id=commit_id)
|
|
150
|
raise HTTPFound(files_url)
|
|
150
|
raise HTTPFound(files_url)
|
|
151
|
|
|
151
|
|
|
152
|
def forbid_non_head(self, is_head, f_path, commit_id='tip', json_mode=False):
|
|
152
|
def forbid_non_head(self, is_head, f_path, commit_id='tip', json_mode=False):
|
|
153
|
_ = self.request.translate
|
|
153
|
_ = self.request.translate
|
|
154
|
|
|
154
|
|
|
155
|
if not is_head:
|
|
155
|
if not is_head:
|
|
156
|
message = _('Cannot modify file. '
|
|
156
|
message = _('Cannot modify file. '
|
|
157
|
'Given commit `{}` is not head of a branch.').format(commit_id)
|
|
157
|
'Given commit `{}` is not head of a branch.').format(commit_id)
|
|
158
|
h.flash(message, category='warning')
|
|
158
|
h.flash(message, category='warning')
|
|
159
|
|
|
159
|
|
|
160
|
if json_mode:
|
|
160
|
if json_mode:
|
|
161
|
return message
|
|
161
|
return message
|
|
162
|
|
|
162
|
|
|
163
|
files_url = h.route_path(
|
|
163
|
files_url = h.route_path(
|
|
164
|
'repo_files', repo_name=self.db_repo_name, commit_id=commit_id,
|
|
164
|
'repo_files', repo_name=self.db_repo_name, commit_id=commit_id,
|
|
165
|
f_path=f_path)
|
|
165
|
f_path=f_path)
|
|
166
|
raise HTTPFound(files_url)
|
|
166
|
raise HTTPFound(files_url)
|
|
167
|
|
|
167
|
|
|
168
|
def check_branch_permission(self, branch_name, commit_id='tip', json_mode=False):
|
|
168
|
def check_branch_permission(self, branch_name, commit_id='tip', json_mode=False):
|
|
169
|
_ = self.request.translate
|
|
169
|
_ = self.request.translate
|
|
170
|
|
|
170
|
|
|
171
|
rule, branch_perm = self._rhodecode_user.get_rule_and_branch_permission(
|
|
171
|
rule, branch_perm = self._rhodecode_user.get_rule_and_branch_permission(
|
|
172
|
self.db_repo_name, branch_name)
|
|
172
|
self.db_repo_name, branch_name)
|
|
173
|
if branch_perm and branch_perm not in ['branch.push', 'branch.push_force']:
|
|
173
|
if branch_perm and branch_perm not in ['branch.push', 'branch.push_force']:
|
|
174
|
message = _('Branch `{}` changes forbidden by rule {}.').format(
|
|
174
|
message = _('Branch `{}` changes forbidden by rule {}.').format(
|
|
175
|
h.escape(branch_name), h.escape(rule))
|
|
175
|
h.escape(branch_name), h.escape(rule))
|
|
176
|
h.flash(message, 'warning')
|
|
176
|
h.flash(message, 'warning')
|
|
177
|
|
|
177
|
|
|
178
|
if json_mode:
|
|
178
|
if json_mode:
|
|
179
|
return message
|
|
179
|
return message
|
|
180
|
|
|
180
|
|
|
181
|
files_url = h.route_path(
|
|
181
|
files_url = h.route_path(
|
|
182
|
'repo_files:default_path', repo_name=self.db_repo_name, commit_id=commit_id)
|
|
182
|
'repo_files:default_path', repo_name=self.db_repo_name, commit_id=commit_id)
|
|
183
|
|
|
183
|
|
|
184
|
raise HTTPFound(files_url)
|
|
184
|
raise HTTPFound(files_url)
|
|
185
|
|
|
185
|
|
|
186
|
def _get_commit_and_path(self):
|
|
186
|
def _get_commit_and_path(self):
|
|
187
|
default_commit_id = self.db_repo.landing_ref_name
|
|
187
|
default_commit_id = self.db_repo.landing_ref_name
|
|
188
|
default_f_path = '/'
|
|
188
|
default_f_path = '/'
|
|
189
|
|
|
189
|
|
|
190
|
commit_id = self.request.matchdict.get(
|
|
190
|
commit_id = self.request.matchdict.get(
|
|
191
|
'commit_id', default_commit_id)
|
|
191
|
'commit_id', default_commit_id)
|
|
192
|
f_path = self._get_f_path(self.request.matchdict, default_f_path)
|
|
192
|
f_path = self._get_f_path(self.request.matchdict, default_f_path)
|
|
193
|
return commit_id, f_path
|
|
193
|
return commit_id, f_path
|
|
194
|
|
|
194
|
|
|
195
|
def _get_default_encoding(self, c):
|
|
195
|
def _get_default_encoding(self, c):
|
|
196
|
enc_list = getattr(c, 'default_encodings', [])
|
|
196
|
enc_list = getattr(c, 'default_encodings', [])
|
|
197
|
return enc_list[0] if enc_list else 'UTF-8'
|
|
197
|
return enc_list[0] if enc_list else 'UTF-8'
|
|
198
|
|
|
198
|
|
|
199
|
def _get_commit_or_redirect(self, commit_id, redirect_after=True):
|
|
199
|
def _get_commit_or_redirect(self, commit_id, redirect_after=True):
|
|
200
|
"""
|
|
200
|
"""
|
|
201
|
This is a safe way to get commit. If an error occurs it redirects to
|
|
201
|
This is a safe way to get commit. If an error occurs it redirects to
|
|
202
|
tip with proper message
|
|
202
|
tip with proper message
|
|
203
|
|
|
203
|
|
|
204
|
:param commit_id: id of commit to fetch
|
|
204
|
:param commit_id: id of commit to fetch
|
|
205
|
:param redirect_after: toggle redirection
|
|
205
|
:param redirect_after: toggle redirection
|
|
206
|
"""
|
|
206
|
"""
|
|
207
|
_ = self.request.translate
|
|
207
|
_ = self.request.translate
|
|
208
|
|
|
208
|
|
|
209
|
try:
|
|
209
|
try:
|
|
210
|
return self.rhodecode_vcs_repo.get_commit(commit_id)
|
|
210
|
return self.rhodecode_vcs_repo.get_commit(commit_id)
|
|
211
|
except EmptyRepositoryError:
|
|
211
|
except EmptyRepositoryError:
|
|
212
|
if not redirect_after:
|
|
212
|
if not redirect_after:
|
|
213
|
return None
|
|
213
|
return None
|
|
214
|
|
|
214
|
|
|
215
|
add_new = upload_new = ""
|
|
215
|
add_new = upload_new = ""
|
|
216
|
if h.HasRepoPermissionAny(
|
|
216
|
if h.HasRepoPermissionAny(
|
|
217
|
'repository.write', 'repository.admin')(self.db_repo_name):
|
|
217
|
'repository.write', 'repository.admin')(self.db_repo_name):
|
|
218
|
_url = h.route_path(
|
|
218
|
_url = h.route_path(
|
|
219
|
'repo_files_add_file',
|
|
219
|
'repo_files_add_file',
|
|
220
|
repo_name=self.db_repo_name, commit_id=0, f_path='')
|
|
220
|
repo_name=self.db_repo_name, commit_id=0, f_path='')
|
|
221
|
add_new = h.link_to(
|
|
221
|
add_new = h.link_to(
|
|
222
|
_('add a new file'), _url, class_="alert-link")
|
|
222
|
_('add a new file'), _url, class_="alert-link")
|
|
223
|
|
|
223
|
|
|
224
|
_url_upld = h.route_path(
|
|
224
|
_url_upld = h.route_path(
|
|
225
|
'repo_files_upload_file',
|
|
225
|
'repo_files_upload_file',
|
|
226
|
repo_name=self.db_repo_name, commit_id=0, f_path='')
|
|
226
|
repo_name=self.db_repo_name, commit_id=0, f_path='')
|
|
227
|
upload_new = h.link_to(
|
|
227
|
upload_new = h.link_to(
|
|
228
|
_('upload a new file'), _url_upld, class_="alert-link")
|
|
228
|
_('upload a new file'), _url_upld, class_="alert-link")
|
|
229
|
|
|
229
|
|
|
230
|
h.flash(h.literal(
|
|
230
|
h.flash(h.literal(
|
|
231
|
_('There are no files yet. Click here to %s or %s.') % (add_new, upload_new)), category='warning')
|
|
231
|
_('There are no files yet. Click here to %s or %s.') % (add_new, upload_new)), category='warning')
|
|
232
|
raise HTTPFound(
|
|
232
|
raise HTTPFound(
|
|
233
|
h.route_path('repo_summary', repo_name=self.db_repo_name))
|
|
233
|
h.route_path('repo_summary', repo_name=self.db_repo_name))
|
|
234
|
|
|
234
|
|
|
235
|
except (CommitDoesNotExistError, LookupError) as e:
|
|
235
|
except (CommitDoesNotExistError, LookupError) as e:
|
|
236
|
msg = _('No such commit exists for this repository. Commit: {}').format(commit_id)
|
|
236
|
msg = _('No such commit exists for this repository. Commit: {}').format(commit_id)
|
|
237
|
h.flash(msg, category='error')
|
|
237
|
h.flash(msg, category='error')
|
|
238
|
raise HTTPNotFound()
|
|
238
|
raise HTTPNotFound()
|
|
239
|
except RepositoryError as e:
|
|
239
|
except RepositoryError as e:
|
|
240
|
h.flash(h.escape(safe_str(e)), category='error')
|
|
240
|
h.flash(h.escape(safe_str(e)), category='error')
|
|
241
|
raise HTTPNotFound()
|
|
241
|
raise HTTPNotFound()
|
|
242
|
|
|
242
|
|
|
243
|
def _get_filenode_or_redirect(self, commit_obj, path, pre_load=None):
|
|
243
|
def _get_filenode_or_redirect(self, commit_obj, path, pre_load=None):
|
|
244
|
"""
|
|
244
|
"""
|
|
245
|
Returns file_node, if error occurs or given path is directory,
|
|
245
|
Returns file_node, if error occurs or given path is directory,
|
|
246
|
it'll redirect to top level path
|
|
246
|
it'll redirect to top level path
|
|
247
|
"""
|
|
247
|
"""
|
|
248
|
_ = self.request.translate
|
|
248
|
_ = self.request.translate
|
|
249
|
|
|
249
|
|
|
250
|
try:
|
|
250
|
try:
|
|
251
|
file_node = commit_obj.get_node(path, pre_load=pre_load)
|
|
251
|
file_node = commit_obj.get_node(path, pre_load=pre_load)
|
|
252
|
if file_node.is_dir():
|
|
252
|
if file_node.is_dir():
|
|
253
|
raise RepositoryError('The given path is a directory')
|
|
253
|
raise RepositoryError('The given path is a directory')
|
|
254
|
except CommitDoesNotExistError:
|
|
254
|
except CommitDoesNotExistError:
|
|
255
|
log.exception('No such commit exists for this repository')
|
|
255
|
log.exception('No such commit exists for this repository')
|
|
256
|
h.flash(_('No such commit exists for this repository'), category='error')
|
|
256
|
h.flash(_('No such commit exists for this repository'), category='error')
|
|
257
|
raise HTTPNotFound()
|
|
257
|
raise HTTPNotFound()
|
|
258
|
except RepositoryError as e:
|
|
258
|
except RepositoryError as e:
|
|
259
|
log.warning('Repository error while fetching filenode `%s`. Err:%s', path, e)
|
|
259
|
log.warning('Repository error while fetching filenode `%s`. Err:%s', path, e)
|
|
260
|
h.flash(h.escape(safe_str(e)), category='error')
|
|
260
|
h.flash(h.escape(safe_str(e)), category='error')
|
|
261
|
raise HTTPNotFound()
|
|
261
|
raise HTTPNotFound()
|
|
262
|
|
|
262
|
|
|
263
|
return file_node
|
|
263
|
return file_node
|
|
264
|
|
|
264
|
|
|
265
|
def _is_valid_head(self, commit_id, repo, landing_ref):
|
|
265
|
def _is_valid_head(self, commit_id, repo, landing_ref):
|
|
266
|
branch_name = sha_commit_id = ''
|
|
266
|
branch_name = sha_commit_id = ''
|
|
267
|
is_head = False
|
|
267
|
is_head = False
|
|
268
|
log.debug('Checking if commit_id `%s` is a head for %s.', commit_id, repo)
|
|
268
|
log.debug('Checking if commit_id `%s` is a head for %s.', commit_id, repo)
|
|
269
|
|
|
269
|
|
|
270
|
for _branch_name, branch_commit_id in repo.branches.items():
|
|
270
|
for _branch_name, branch_commit_id in repo.branches.items():
|
|
271
|
# simple case we pass in branch name, it's a HEAD
|
|
271
|
# simple case we pass in branch name, it's a HEAD
|
|
272
|
if commit_id == _branch_name:
|
|
272
|
if commit_id == _branch_name:
|
|
273
|
is_head = True
|
|
273
|
is_head = True
|
|
274
|
branch_name = _branch_name
|
|
274
|
branch_name = _branch_name
|
|
275
|
sha_commit_id = branch_commit_id
|
|
275
|
sha_commit_id = branch_commit_id
|
|
276
|
break
|
|
276
|
break
|
|
277
|
# case when we pass in full sha commit_id, which is a head
|
|
277
|
# case when we pass in full sha commit_id, which is a head
|
|
278
|
elif commit_id == branch_commit_id:
|
|
278
|
elif commit_id == branch_commit_id:
|
|
279
|
is_head = True
|
|
279
|
is_head = True
|
|
280
|
branch_name = _branch_name
|
|
280
|
branch_name = _branch_name
|
|
281
|
sha_commit_id = branch_commit_id
|
|
281
|
sha_commit_id = branch_commit_id
|
|
282
|
break
|
|
282
|
break
|
|
283
|
|
|
283
|
|
|
284
|
if h.is_svn(repo) and not repo.is_empty():
|
|
284
|
if h.is_svn(repo) and not repo.is_empty():
|
|
285
|
# Note: Subversion only has one head.
|
|
285
|
# Note: Subversion only has one head.
|
|
286
|
if commit_id == repo.get_commit(commit_idx=-1).raw_id:
|
|
286
|
if commit_id == repo.get_commit(commit_idx=-1).raw_id:
|
|
287
|
is_head = True
|
|
287
|
is_head = True
|
|
288
|
return branch_name, sha_commit_id, is_head
|
|
288
|
return branch_name, sha_commit_id, is_head
|
|
289
|
|
|
289
|
|
|
290
|
# checked branches, means we only need to try to get the branch/commit_sha
|
|
290
|
# checked branches, means we only need to try to get the branch/commit_sha
|
|
291
|
if repo.is_empty():
|
|
291
|
if repo.is_empty():
|
|
292
|
is_head = True
|
|
292
|
is_head = True
|
|
293
|
branch_name = landing_ref
|
|
293
|
branch_name = landing_ref
|
|
294
|
sha_commit_id = EmptyCommit().raw_id
|
|
294
|
sha_commit_id = EmptyCommit().raw_id
|
|
295
|
else:
|
|
295
|
else:
|
|
296
|
commit = repo.get_commit(commit_id=commit_id)
|
|
296
|
commit = repo.get_commit(commit_id=commit_id)
|
|
297
|
if commit:
|
|
297
|
if commit:
|
|
298
|
branch_name = commit.branch
|
|
298
|
branch_name = commit.branch
|
|
299
|
sha_commit_id = commit.raw_id
|
|
299
|
sha_commit_id = commit.raw_id
|
|
300
|
|
|
300
|
|
|
301
|
return branch_name, sha_commit_id, is_head
|
|
301
|
return branch_name, sha_commit_id, is_head
|
|
302
|
|
|
302
|
|
|
303
|
def _get_tree_at_commit(self, c, commit_id, f_path, full_load=False, at_rev=None):
|
|
303
|
def _get_tree_at_commit(self, c, commit_id, f_path, full_load=False, at_rev=None):
|
|
304
|
|
|
304
|
|
|
305
|
repo_id = self.db_repo.repo_id
|
|
305
|
repo_id = self.db_repo.repo_id
|
|
306
|
force_recache = self.get_recache_flag()
|
|
306
|
force_recache = self.get_recache_flag()
|
|
307
|
|
|
307
|
|
|
308
|
cache_seconds = safe_int(
|
|
308
|
cache_seconds = safe_int(
|
|
309
|
rhodecode.CONFIG.get('rc_cache.cache_repo.expiration_time'))
|
|
309
|
rhodecode.CONFIG.get('rc_cache.cache_repo.expiration_time'))
|
|
310
|
cache_on = not force_recache and cache_seconds > 0
|
|
310
|
cache_on = not force_recache and cache_seconds > 0
|
|
311
|
log.debug(
|
|
311
|
log.debug(
|
|
312
|
'Computing FILE TREE for repo_id %s commit_id `%s` and path `%s`'
|
|
312
|
'Computing FILE TREE for repo_id %s commit_id `%s` and path `%s`'
|
|
313
|
'with caching: %s[TTL: %ss]' % (
|
|
313
|
'with caching: %s[TTL: %ss]' % (
|
|
314
|
repo_id, commit_id, f_path, cache_on, cache_seconds or 0))
|
|
314
|
repo_id, commit_id, f_path, cache_on, cache_seconds or 0))
|
|
315
|
|
|
315
|
|
|
316
|
cache_namespace_uid = f'repo.{rc_cache.FILE_TREE_CACHE_VER}.{repo_id}'
|
|
316
|
cache_namespace_uid = f'repo.{rc_cache.FILE_TREE_CACHE_VER}.{repo_id}'
|
|
317
|
region = rc_cache.get_or_create_region('cache_repo', cache_namespace_uid)
|
|
317
|
region = rc_cache.get_or_create_region('cache_repo', cache_namespace_uid)
|
|
318
|
|
|
318
|
|
|
319
|
@region.conditional_cache_on_arguments(namespace=cache_namespace_uid, condition=cache_on)
|
|
319
|
@region.conditional_cache_on_arguments(namespace=cache_namespace_uid, condition=cache_on)
|
|
320
|
def compute_file_tree(_name_hash, _repo_id, _commit_id, _f_path, _full_load, _at_rev):
|
|
320
|
def compute_file_tree(_name_hash, _repo_id, _commit_id, _f_path, _full_load, _at_rev):
|
|
321
|
log.debug('Generating cached file tree at for repo_id: %s, %s, %s',
|
|
321
|
log.debug('Generating cached file tree at for repo_id: %s, %s, %s',
|
|
322
|
_repo_id, _commit_id, _f_path)
|
|
322
|
_repo_id, _commit_id, _f_path)
|
|
323
|
|
|
323
|
|
|
324
|
c.full_load = _full_load
|
|
324
|
c.full_load = _full_load
|
|
325
|
return render(
|
|
325
|
return render(
|
|
326
|
'rhodecode:templates/files/files_browser_tree.mako',
|
|
326
|
'rhodecode:templates/files/files_browser_tree.mako',
|
|
327
|
self._get_template_context(c), self.request, _at_rev)
|
|
327
|
self._get_template_context(c), self.request, _at_rev)
|
|
328
|
|
|
328
|
|
|
329
|
return compute_file_tree(
|
|
329
|
return compute_file_tree(
|
|
330
|
self.db_repo.repo_name_hash, self.db_repo.repo_id, commit_id, f_path, full_load, at_rev)
|
|
330
|
self.db_repo.repo_name_hash, self.db_repo.repo_id, commit_id, f_path, full_load, at_rev)
|
|
331
|
|
|
331
|
|
|
332
|
def create_pure_path(self, *parts):
|
|
332
|
def create_pure_path(self, *parts):
|
|
333
|
# Split paths and sanitize them, removing any ../ etc
|
|
333
|
# Split paths and sanitize them, removing any ../ etc
|
|
334
|
sanitized_path = [
|
|
334
|
sanitized_path = [
|
|
335
|
x for x in pathlib.PurePath(*parts).parts
|
|
335
|
x for x in pathlib.PurePath(*parts).parts
|
|
336
|
if x not in ['.', '..']]
|
|
336
|
if x not in ['.', '..']]
|
|
337
|
|
|
337
|
|
|
338
|
pure_path = pathlib.PurePath(*sanitized_path)
|
|
338
|
pure_path = pathlib.PurePath(*sanitized_path)
|
|
339
|
return pure_path
|
|
339
|
return pure_path
|
|
340
|
|
|
340
|
|
|
341
|
def _is_lf_enabled(self, target_repo):
|
|
341
|
def _is_lf_enabled(self, target_repo):
|
|
342
|
lf_enabled = False
|
|
342
|
lf_enabled = False
|
|
343
|
|
|
343
|
|
|
344
|
lf_key_for_vcs_map = {
|
|
344
|
lf_key_for_vcs_map = {
|
|
345
|
'hg': 'extensions_largefiles',
|
|
345
|
'hg': 'extensions_largefiles',
|
|
346
|
'git': 'vcs_git_lfs_enabled'
|
|
346
|
'git': 'vcs_git_lfs_enabled'
|
|
347
|
}
|
|
347
|
}
|
|
348
|
|
|
348
|
|
|
349
|
lf_key_for_vcs = lf_key_for_vcs_map.get(target_repo.repo_type)
|
|
349
|
lf_key_for_vcs = lf_key_for_vcs_map.get(target_repo.repo_type)
|
|
350
|
|
|
350
|
|
|
351
|
if lf_key_for_vcs:
|
|
351
|
if lf_key_for_vcs:
|
|
352
|
lf_enabled = self._get_repo_setting(target_repo, lf_key_for_vcs)
|
|
352
|
lf_enabled = self._get_repo_setting(target_repo, lf_key_for_vcs)
|
|
353
|
|
|
353
|
|
|
354
|
return lf_enabled
|
|
354
|
return lf_enabled
|
|
355
|
|
|
355
|
|
|
356
|
@LoginRequired()
|
|
356
|
@LoginRequired()
|
|
357
|
@HasRepoPermissionAnyDecorator(
|
|
357
|
@HasRepoPermissionAnyDecorator(
|
|
358
|
'repository.read', 'repository.write', 'repository.admin')
|
|
358
|
'repository.read', 'repository.write', 'repository.admin')
|
|
359
|
def repo_archivefile(self):
|
|
359
|
def repo_archivefile(self):
|
|
360
|
# archive cache config
|
|
360
|
# archive cache config
|
|
361
|
from rhodecode import CONFIG
|
|
361
|
from rhodecode import CONFIG
|
|
362
|
_ = self.request.translate
|
|
362
|
_ = self.request.translate
|
|
363
|
self.load_default_context()
|
|
363
|
self.load_default_context()
|
|
364
|
default_at_path = '/'
|
|
364
|
default_at_path = '/'
|
|
365
|
fname = self.request.matchdict['fname']
|
|
365
|
fname = self.request.matchdict['fname']
|
|
366
|
subrepos = self.request.GET.get('subrepos') == 'true'
|
|
366
|
subrepos = self.request.GET.get('subrepos') == 'true'
|
|
367
|
with_hash = str2bool(self.request.GET.get('with_hash', '1'))
|
|
367
|
with_hash = str2bool(self.request.GET.get('with_hash', '1'))
|
|
368
|
at_path = self.request.GET.get('at_path') or default_at_path
|
|
368
|
at_path = self.request.GET.get('at_path') or default_at_path
|
|
369
|
|
|
369
|
|
|
370
|
if not self.db_repo.enable_downloads:
|
|
370
|
if not self.db_repo.enable_downloads:
|
|
371
|
return Response(_('Downloads disabled'))
|
|
371
|
return Response(_('Downloads disabled'))
|
|
372
|
|
|
372
|
|
|
373
|
try:
|
|
373
|
try:
|
|
374
|
commit_id, ext, fileformat, content_type = \
|
|
374
|
commit_id, ext, fileformat, content_type = \
|
|
375
|
_get_archive_spec(fname)
|
|
375
|
_get_archive_spec(fname)
|
|
376
|
except ValueError:
|
|
376
|
except ValueError:
|
|
377
|
return Response(_('Unknown archive type for: `{}`').format(
|
|
377
|
return Response(_('Unknown archive type for: `{}`').format(
|
|
378
|
h.escape(fname)))
|
|
378
|
h.escape(fname)))
|
|
379
|
|
|
379
|
|
|
380
|
try:
|
|
380
|
try:
|
|
381
|
commit = self.rhodecode_vcs_repo.get_commit(commit_id)
|
|
381
|
commit = self.rhodecode_vcs_repo.get_commit(commit_id)
|
|
382
|
except CommitDoesNotExistError:
|
|
382
|
except CommitDoesNotExistError:
|
|
383
|
return Response(_('Unknown commit_id {}').format(
|
|
383
|
return Response(_('Unknown commit_id {}').format(
|
|
384
|
h.escape(commit_id)))
|
|
384
|
h.escape(commit_id)))
|
|
385
|
except EmptyRepositoryError:
|
|
385
|
except EmptyRepositoryError:
|
|
386
|
return Response(_('Empty repository'))
|
|
386
|
return Response(_('Empty repository'))
|
|
387
|
|
|
387
|
|
|
388
|
# we used a ref, or a shorter version, lets redirect client ot use explicit hash
|
|
388
|
# we used a ref, or a shorter version, lets redirect client ot use explicit hash
|
|
389
|
if commit_id != commit.raw_id:
|
|
389
|
if commit_id != commit.raw_id:
|
|
390
|
fname=f'{commit.raw_id}{ext}'
|
|
390
|
fname=f'{commit.raw_id}{ext}'
|
|
391
|
raise HTTPFound(self.request.current_route_path(fname=fname))
|
|
391
|
raise HTTPFound(self.request.current_route_path(fname=fname))
|
|
392
|
|
|
392
|
|
|
393
|
try:
|
|
393
|
try:
|
|
394
|
at_path = commit.get_node(at_path).path or default_at_path
|
|
394
|
at_path = commit.get_node(at_path).path or default_at_path
|
|
395
|
except Exception:
|
|
395
|
except Exception:
|
|
396
|
return Response(_('No node at path {} for this repository').format(h.escape(at_path)))
|
|
396
|
return Response(_('No node at path {} for this repository').format(h.escape(at_path)))
|
|
397
|
|
|
397
|
|
|
398
|
path_sha = get_path_sha(at_path)
|
|
398
|
path_sha = get_path_sha(at_path)
|
|
399
|
|
|
399
|
|
|
400
|
# used for cache etc, consistent unique archive name
|
|
400
|
# used for cache etc, consistent unique archive name
|
|
401
|
archive_name_key = get_archive_name(
|
|
401
|
archive_name_key = get_archive_name(
|
|
402
|
self.db_repo.repo_id, self.db_repo_name, commit_sha=commit.short_id, ext=ext, subrepos=subrepos,
|
|
402
|
self.db_repo.repo_id, self.db_repo_name, commit_sha=commit.short_id, ext=ext, subrepos=subrepos,
|
|
403
|
path_sha=path_sha, with_hash=True)
|
|
403
|
path_sha=path_sha, with_hash=True)
|
|
404
|
|
|
404
|
|
|
405
|
if not with_hash:
|
|
405
|
if not with_hash:
|
|
406
|
path_sha = ''
|
|
406
|
path_sha = ''
|
|
407
|
|
|
407
|
|
|
408
|
# what end client gets served
|
|
408
|
# what end client gets served
|
|
409
|
response_archive_name = get_archive_name(
|
|
409
|
response_archive_name = get_archive_name(
|
|
410
|
self.db_repo.repo_id, self.db_repo_name, commit_sha=commit.short_id, ext=ext, subrepos=subrepos,
|
|
410
|
self.db_repo.repo_id, self.db_repo_name, commit_sha=commit.short_id, ext=ext, subrepos=subrepos,
|
|
411
|
path_sha=path_sha, with_hash=with_hash)
|
|
411
|
path_sha=path_sha, with_hash=with_hash)
|
|
412
|
|
|
412
|
|
|
413
|
# remove extension from our archive directory name
|
|
413
|
# remove extension from our archive directory name
|
|
414
|
archive_dir_name = response_archive_name[:-len(ext)]
|
|
414
|
archive_dir_name = response_archive_name[:-len(ext)]
|
|
415
|
|
|
415
|
|
|
416
|
archive_cache_disable = self.request.GET.get('no_cache')
|
|
416
|
archive_cache_disable = self.request.GET.get('no_cache')
|
|
417
|
|
|
417
|
|
|
418
|
d_cache = get_archival_cache_store(config=CONFIG)
|
|
418
|
d_cache = get_archival_cache_store(config=CONFIG)
|
|
419
|
|
|
419
|
|
|
420
|
# NOTE: we get the config to pass to a call to lazy-init the SAME type of cache on vcsserver
|
|
420
|
# NOTE: we get the config to pass to a call to lazy-init the SAME type of cache on vcsserver
|
|
421
|
d_cache_conf = get_archival_config(config=CONFIG)
|
|
421
|
d_cache_conf = get_archival_config(config=CONFIG)
|
|
422
|
|
|
422
|
|
|
423
|
# This is also a cache key, and lock key
|
|
423
|
# This is also a cache key, and lock key
|
|
424
|
reentrant_lock_key = archive_name_key + '.lock'
|
|
424
|
reentrant_lock_key = archive_name_key + '.lock'
|
|
425
|
|
|
425
|
|
|
426
|
use_cached_archive = False
|
|
426
|
use_cached_archive = False
|
|
427
|
if not archive_cache_disable and archive_name_key in d_cache:
|
|
427
|
if not archive_cache_disable and archive_name_key in d_cache:
|
|
428
|
reader, metadata = d_cache.fetch(archive_name_key)
|
|
428
|
reader, metadata = d_cache.fetch(archive_name_key)
|
|
429
|
|
|
429
|
|
|
430
|
use_cached_archive = True
|
|
430
|
use_cached_archive = True
|
|
431
|
log.debug('Found cached archive as key=%s tag=%s, serving archive from cache reader=%s',
|
|
431
|
log.debug('Found cached archive as key=%s tag=%s, serving archive from cache reader=%s',
|
|
432
|
archive_name_key, metadata, reader.name)
|
|
432
|
archive_name_key, metadata, reader.name)
|
|
433
|
else:
|
|
433
|
else:
|
|
434
|
reader = None
|
|
434
|
reader = None
|
|
435
|
log.debug('Archive with key=%s is not yet cached, creating one now...', archive_name_key)
|
|
435
|
log.debug('Archive with key=%s is not yet cached, creating one now...', archive_name_key)
|
|
436
|
|
|
436
|
|
|
437
|
if not reader:
|
|
437
|
if not reader:
|
|
438
|
# generate new archive, as previous was not found in the cache
|
|
438
|
# generate new archive, as previous was not found in the cache
|
|
439
|
try:
|
|
439
|
try:
|
|
440
|
with d_cache.get_lock(reentrant_lock_key):
|
|
440
|
with d_cache.get_lock(reentrant_lock_key):
|
|
441
|
try:
|
|
441
|
try:
|
|
442
|
commit.archive_repo(archive_name_key, archive_dir_name=archive_dir_name,
|
|
442
|
commit.archive_repo(archive_name_key, archive_dir_name=archive_dir_name,
|
|
443
|
kind=fileformat, subrepos=subrepos,
|
|
443
|
kind=fileformat, subrepos=subrepos,
|
|
444
|
archive_at_path=at_path, cache_config=d_cache_conf)
|
|
444
|
archive_at_path=at_path, cache_config=d_cache_conf)
|
|
445
|
except ImproperArchiveTypeError:
|
|
445
|
except ImproperArchiveTypeError:
|
|
446
|
return _('Unknown archive type')
|
|
446
|
return _('Unknown archive type')
|
|
447
|
except ArchiveCacheLock:
|
|
447
|
|
|
|
|
|
448
|
except ArchiveCacheGenerationLock:
|
|
448
|
retry_after = round(random.uniform(0.3, 3.0), 1)
|
|
449
|
retry_after = round(random.uniform(0.3, 3.0), 1)
|
|
449
|
time.sleep(retry_after)
|
|
450
|
time.sleep(retry_after)
|
|
450
|
|
|
451
|
|
|
451
|
location = self.request.url
|
|
452
|
location = self.request.url
|
|
452
|
response = Response(
|
|
453
|
response = Response(
|
|
453
|
f"archive {archive_name_key} generation in progress, Retry-After={retry_after}, Location={location}"
|
|
454
|
f"archive {archive_name_key} generation in progress, Retry-After={retry_after}, Location={location}"
|
|
454
|
)
|
|
455
|
)
|
|
455
|
response.headers["Retry-After"] = str(retry_after)
|
|
456
|
response.headers["Retry-After"] = str(retry_after)
|
|
456
|
response.status_code = 307 # temporary redirect
|
|
457
|
response.status_code = 307 # temporary redirect
|
|
457
|
|
|
458
|
|
|
458
|
response.location = location
|
|
459
|
response.location = location
|
|
459
|
return response
|
|
460
|
return response
|
|
460
|
|
|
461
|
|
|
461
|
reader, metadata = d_cache.fetch(archive_name_key)
|
|
462
|
reader, metadata = d_cache.fetch(archive_name_key)
|
|
462
|
|
|
463
|
|
|
463
|
response = Response(app_iter=archive_iterator(reader))
|
|
464
|
response = Response(app_iter=archive_iterator(reader))
|
|
464
|
response.content_disposition = f'attachment; filename={response_archive_name}'
|
|
465
|
response.content_disposition = f'attachment; filename={response_archive_name}'
|
|
465
|
response.content_type = str(content_type)
|
|
466
|
response.content_type = str(content_type)
|
|
466
|
|
|
467
|
|
|
467
|
try:
|
|
468
|
try:
|
|
468
|
return response
|
|
469
|
return response
|
|
469
|
finally:
|
|
470
|
finally:
|
|
470
|
# store download action
|
|
471
|
# store download action
|
|
471
|
audit_logger.store_web(
|
|
472
|
audit_logger.store_web(
|
|
472
|
'repo.archive.download', action_data={
|
|
473
|
'repo.archive.download', action_data={
|
|
473
|
'user_agent': self.request.user_agent,
|
|
474
|
'user_agent': self.request.user_agent,
|
|
474
|
'archive_name': archive_name_key,
|
|
475
|
'archive_name': archive_name_key,
|
|
475
|
'archive_spec': fname,
|
|
476
|
'archive_spec': fname,
|
|
476
|
'archive_cached': use_cached_archive},
|
|
477
|
'archive_cached': use_cached_archive},
|
|
477
|
user=self._rhodecode_user,
|
|
478
|
user=self._rhodecode_user,
|
|
478
|
repo=self.db_repo,
|
|
479
|
repo=self.db_repo,
|
|
479
|
commit=True
|
|
480
|
commit=True
|
|
480
|
)
|
|
481
|
)
|
|
481
|
|
|
482
|
|
|
482
|
def _get_file_node(self, commit_id, f_path):
|
|
483
|
def _get_file_node(self, commit_id, f_path):
|
|
483
|
if commit_id not in ['', None, 'None', '0' * 12, '0' * 40]:
|
|
484
|
if commit_id not in ['', None, 'None', '0' * 12, '0' * 40]:
|
|
484
|
commit = self.rhodecode_vcs_repo.get_commit(commit_id=commit_id)
|
|
485
|
commit = self.rhodecode_vcs_repo.get_commit(commit_id=commit_id)
|
|
485
|
try:
|
|
486
|
try:
|
|
486
|
node = commit.get_node(f_path)
|
|
487
|
node = commit.get_node(f_path)
|
|
487
|
if node.is_dir():
|
|
488
|
if node.is_dir():
|
|
488
|
raise NodeError(f'{node} path is a {type(node)} not a file')
|
|
489
|
raise NodeError(f'{node} path is a {type(node)} not a file')
|
|
489
|
except NodeDoesNotExistError:
|
|
490
|
except NodeDoesNotExistError:
|
|
490
|
commit = EmptyCommit(
|
|
491
|
commit = EmptyCommit(
|
|
491
|
commit_id=commit_id,
|
|
492
|
commit_id=commit_id,
|
|
492
|
idx=commit.idx,
|
|
493
|
idx=commit.idx,
|
|
493
|
repo=commit.repository,
|
|
494
|
repo=commit.repository,
|
|
494
|
alias=commit.repository.alias,
|
|
495
|
alias=commit.repository.alias,
|
|
495
|
message=commit.message,
|
|
496
|
message=commit.message,
|
|
496
|
author=commit.author,
|
|
497
|
author=commit.author,
|
|
497
|
date=commit.date)
|
|
498
|
date=commit.date)
|
|
498
|
node = FileNode(safe_bytes(f_path), b'', commit=commit)
|
|
499
|
node = FileNode(safe_bytes(f_path), b'', commit=commit)
|
|
499
|
else:
|
|
500
|
else:
|
|
500
|
commit = EmptyCommit(
|
|
501
|
commit = EmptyCommit(
|
|
501
|
repo=self.rhodecode_vcs_repo,
|
|
502
|
repo=self.rhodecode_vcs_repo,
|
|
502
|
alias=self.rhodecode_vcs_repo.alias)
|
|
503
|
alias=self.rhodecode_vcs_repo.alias)
|
|
503
|
node = FileNode(safe_bytes(f_path), b'', commit=commit)
|
|
504
|
node = FileNode(safe_bytes(f_path), b'', commit=commit)
|
|
504
|
return node
|
|
505
|
return node
|
|
505
|
|
|
506
|
|
|
506
|
@LoginRequired()
|
|
507
|
@LoginRequired()
|
|
507
|
@HasRepoPermissionAnyDecorator(
|
|
508
|
@HasRepoPermissionAnyDecorator(
|
|
508
|
'repository.read', 'repository.write', 'repository.admin')
|
|
509
|
'repository.read', 'repository.write', 'repository.admin')
|
|
509
|
def repo_files_diff(self):
|
|
510
|
def repo_files_diff(self):
|
|
510
|
c = self.load_default_context()
|
|
511
|
c = self.load_default_context()
|
|
511
|
f_path = self._get_f_path(self.request.matchdict)
|
|
512
|
f_path = self._get_f_path(self.request.matchdict)
|
|
512
|
diff1 = self.request.GET.get('diff1', '')
|
|
513
|
diff1 = self.request.GET.get('diff1', '')
|
|
513
|
diff2 = self.request.GET.get('diff2', '')
|
|
514
|
diff2 = self.request.GET.get('diff2', '')
|
|
514
|
|
|
515
|
|
|
515
|
path1, diff1 = parse_path_ref(diff1, default_path=f_path)
|
|
516
|
path1, diff1 = parse_path_ref(diff1, default_path=f_path)
|
|
516
|
|
|
517
|
|
|
517
|
ignore_whitespace = str2bool(self.request.GET.get('ignorews'))
|
|
518
|
ignore_whitespace = str2bool(self.request.GET.get('ignorews'))
|
|
518
|
line_context = self.request.GET.get('context', 3)
|
|
519
|
line_context = self.request.GET.get('context', 3)
|
|
519
|
|
|
520
|
|
|
520
|
if not any((diff1, diff2)):
|
|
521
|
if not any((diff1, diff2)):
|
|
521
|
h.flash(
|
|
522
|
h.flash(
|
|
522
|
'Need query parameter "diff1" or "diff2" to generate a diff.',
|
|
523
|
'Need query parameter "diff1" or "diff2" to generate a diff.',
|
|
523
|
category='error')
|
|
524
|
category='error')
|
|
524
|
raise HTTPBadRequest()
|
|
525
|
raise HTTPBadRequest()
|
|
525
|
|
|
526
|
|
|
526
|
c.action = self.request.GET.get('diff')
|
|
527
|
c.action = self.request.GET.get('diff')
|
|
527
|
if c.action not in ['download', 'raw']:
|
|
528
|
if c.action not in ['download', 'raw']:
|
|
528
|
compare_url = h.route_path(
|
|
529
|
compare_url = h.route_path(
|
|
529
|
'repo_compare',
|
|
530
|
'repo_compare',
|
|
530
|
repo_name=self.db_repo_name,
|
|
531
|
repo_name=self.db_repo_name,
|
|
531
|
source_ref_type='rev',
|
|
532
|
source_ref_type='rev',
|
|
532
|
source_ref=diff1,
|
|
533
|
source_ref=diff1,
|
|
533
|
target_repo=self.db_repo_name,
|
|
534
|
target_repo=self.db_repo_name,
|
|
534
|
target_ref_type='rev',
|
|
535
|
target_ref_type='rev',
|
|
535
|
target_ref=diff2,
|
|
536
|
target_ref=diff2,
|
|
536
|
_query=dict(f_path=f_path))
|
|
537
|
_query=dict(f_path=f_path))
|
|
537
|
# redirect to new view if we render diff
|
|
538
|
# redirect to new view if we render diff
|
|
538
|
raise HTTPFound(compare_url)
|
|
539
|
raise HTTPFound(compare_url)
|
|
539
|
|
|
540
|
|
|
540
|
try:
|
|
541
|
try:
|
|
541
|
node1 = self._get_file_node(diff1, path1)
|
|
542
|
node1 = self._get_file_node(diff1, path1)
|
|
542
|
node2 = self._get_file_node(diff2, f_path)
|
|
543
|
node2 = self._get_file_node(diff2, f_path)
|
|
543
|
except (RepositoryError, NodeError):
|
|
544
|
except (RepositoryError, NodeError):
|
|
544
|
log.exception("Exception while trying to get node from repository")
|
|
545
|
log.exception("Exception while trying to get node from repository")
|
|
545
|
raise HTTPFound(
|
|
546
|
raise HTTPFound(
|
|
546
|
h.route_path('repo_files', repo_name=self.db_repo_name,
|
|
547
|
h.route_path('repo_files', repo_name=self.db_repo_name,
|
|
547
|
commit_id='tip', f_path=f_path))
|
|
548
|
commit_id='tip', f_path=f_path))
|
|
548
|
|
|
549
|
|
|
549
|
if all(isinstance(node.commit, EmptyCommit)
|
|
550
|
if all(isinstance(node.commit, EmptyCommit)
|
|
550
|
for node in (node1, node2)):
|
|
551
|
for node in (node1, node2)):
|
|
551
|
raise HTTPNotFound()
|
|
552
|
raise HTTPNotFound()
|
|
552
|
|
|
553
|
|
|
553
|
c.commit_1 = node1.commit
|
|
554
|
c.commit_1 = node1.commit
|
|
554
|
c.commit_2 = node2.commit
|
|
555
|
c.commit_2 = node2.commit
|
|
555
|
|
|
556
|
|
|
556
|
if c.action == 'download':
|
|
557
|
if c.action == 'download':
|
|
557
|
_diff = diffs.get_gitdiff(node1, node2,
|
|
558
|
_diff = diffs.get_gitdiff(node1, node2,
|
|
558
|
ignore_whitespace=ignore_whitespace,
|
|
559
|
ignore_whitespace=ignore_whitespace,
|
|
559
|
context=line_context)
|
|
560
|
context=line_context)
|
|
560
|
# NOTE: this was using diff_format='gitdiff'
|
|
561
|
# NOTE: this was using diff_format='gitdiff'
|
|
561
|
diff = diffs.DiffProcessor(_diff, diff_format='newdiff')
|
|
562
|
diff = diffs.DiffProcessor(_diff, diff_format='newdiff')
|
|
562
|
|
|
563
|
|
|
563
|
response = Response(self.path_filter.get_raw_patch(diff))
|
|
564
|
response = Response(self.path_filter.get_raw_patch(diff))
|
|
564
|
response.content_type = 'text/plain'
|
|
565
|
response.content_type = 'text/plain'
|
|
565
|
response.content_disposition = (
|
|
566
|
response.content_disposition = (
|
|
566
|
f'attachment; filename={f_path}_{diff1}_vs_{diff2}.diff'
|
|
567
|
f'attachment; filename={f_path}_{diff1}_vs_{diff2}.diff'
|
|
567
|
)
|
|
568
|
)
|
|
568
|
charset = self._get_default_encoding(c)
|
|
569
|
charset = self._get_default_encoding(c)
|
|
569
|
if charset:
|
|
570
|
if charset:
|
|
570
|
response.charset = charset
|
|
571
|
response.charset = charset
|
|
571
|
return response
|
|
572
|
return response
|
|
572
|
|
|
573
|
|
|
573
|
elif c.action == 'raw':
|
|
574
|
elif c.action == 'raw':
|
|
574
|
_diff = diffs.get_gitdiff(node1, node2,
|
|
575
|
_diff = diffs.get_gitdiff(node1, node2,
|
|
575
|
ignore_whitespace=ignore_whitespace,
|
|
576
|
ignore_whitespace=ignore_whitespace,
|
|
576
|
context=line_context)
|
|
577
|
context=line_context)
|
|
577
|
# NOTE: this was using diff_format='gitdiff'
|
|
578
|
# NOTE: this was using diff_format='gitdiff'
|
|
578
|
diff = diffs.DiffProcessor(_diff, diff_format='newdiff')
|
|
579
|
diff = diffs.DiffProcessor(_diff, diff_format='newdiff')
|
|
579
|
|
|
580
|
|
|
580
|
response = Response(self.path_filter.get_raw_patch(diff))
|
|
581
|
response = Response(self.path_filter.get_raw_patch(diff))
|
|
581
|
response.content_type = 'text/plain'
|
|
582
|
response.content_type = 'text/plain'
|
|
582
|
charset = self._get_default_encoding(c)
|
|
583
|
charset = self._get_default_encoding(c)
|
|
583
|
if charset:
|
|
584
|
if charset:
|
|
584
|
response.charset = charset
|
|
585
|
response.charset = charset
|
|
585
|
return response
|
|
586
|
return response
|
|
586
|
|
|
587
|
|
|
587
|
# in case we ever end up here
|
|
588
|
# in case we ever end up here
|
|
588
|
raise HTTPNotFound()
|
|
589
|
raise HTTPNotFound()
|
|
589
|
|
|
590
|
|
|
590
|
@LoginRequired()
|
|
591
|
@LoginRequired()
|
|
591
|
@HasRepoPermissionAnyDecorator(
|
|
592
|
@HasRepoPermissionAnyDecorator(
|
|
592
|
'repository.read', 'repository.write', 'repository.admin')
|
|
593
|
'repository.read', 'repository.write', 'repository.admin')
|
|
593
|
def repo_files_diff_2way_redirect(self):
|
|
594
|
def repo_files_diff_2way_redirect(self):
|
|
594
|
"""
|
|
595
|
"""
|
|
595
|
Kept only to make OLD links work
|
|
596
|
Kept only to make OLD links work
|
|
596
|
"""
|
|
597
|
"""
|
|
597
|
f_path = self._get_f_path_unchecked(self.request.matchdict)
|
|
598
|
f_path = self._get_f_path_unchecked(self.request.matchdict)
|
|
598
|
diff1 = self.request.GET.get('diff1', '')
|
|
599
|
diff1 = self.request.GET.get('diff1', '')
|
|
599
|
diff2 = self.request.GET.get('diff2', '')
|
|
600
|
diff2 = self.request.GET.get('diff2', '')
|
|
600
|
|
|
601
|
|
|
601
|
if not any((diff1, diff2)):
|
|
602
|
if not any((diff1, diff2)):
|
|
602
|
h.flash(
|
|
603
|
h.flash(
|
|
603
|
'Need query parameter "diff1" or "diff2" to generate a diff.',
|
|
604
|
'Need query parameter "diff1" or "diff2" to generate a diff.',
|
|
604
|
category='error')
|
|
605
|
category='error')
|
|
605
|
raise HTTPBadRequest()
|
|
606
|
raise HTTPBadRequest()
|
|
606
|
|
|
607
|
|
|
607
|
compare_url = h.route_path(
|
|
608
|
compare_url = h.route_path(
|
|
608
|
'repo_compare',
|
|
609
|
'repo_compare',
|
|
609
|
repo_name=self.db_repo_name,
|
|
610
|
repo_name=self.db_repo_name,
|
|
610
|
source_ref_type='rev',
|
|
611
|
source_ref_type='rev',
|
|
611
|
source_ref=diff1,
|
|
612
|
source_ref=diff1,
|
|
612
|
target_ref_type='rev',
|
|
613
|
target_ref_type='rev',
|
|
613
|
target_ref=diff2,
|
|
614
|
target_ref=diff2,
|
|
614
|
_query=dict(f_path=f_path, diffmode='sideside',
|
|
615
|
_query=dict(f_path=f_path, diffmode='sideside',
|
|
615
|
target_repo=self.db_repo_name,))
|
|
616
|
target_repo=self.db_repo_name,))
|
|
616
|
raise HTTPFound(compare_url)
|
|
617
|
raise HTTPFound(compare_url)
|
|
617
|
|
|
618
|
|
|
618
|
@LoginRequired()
|
|
619
|
@LoginRequired()
|
|
619
|
def repo_files_default_commit_redirect(self):
|
|
620
|
def repo_files_default_commit_redirect(self):
|
|
620
|
"""
|
|
621
|
"""
|
|
621
|
Special page that redirects to the landing page of files based on the default
|
|
622
|
Special page that redirects to the landing page of files based on the default
|
|
622
|
commit for repository
|
|
623
|
commit for repository
|
|
623
|
"""
|
|
624
|
"""
|
|
624
|
c = self.load_default_context()
|
|
625
|
c = self.load_default_context()
|
|
625
|
ref_name = c.rhodecode_db_repo.landing_ref_name
|
|
626
|
ref_name = c.rhodecode_db_repo.landing_ref_name
|
|
626
|
landing_url = h.repo_files_by_ref_url(
|
|
627
|
landing_url = h.repo_files_by_ref_url(
|
|
627
|
c.rhodecode_db_repo.repo_name,
|
|
628
|
c.rhodecode_db_repo.repo_name,
|
|
628
|
c.rhodecode_db_repo.repo_type,
|
|
629
|
c.rhodecode_db_repo.repo_type,
|
|
629
|
f_path='',
|
|
630
|
f_path='',
|
|
630
|
ref_name=ref_name,
|
|
631
|
ref_name=ref_name,
|
|
631
|
commit_id='tip',
|
|
632
|
commit_id='tip',
|
|
632
|
query=dict(at=ref_name)
|
|
633
|
query=dict(at=ref_name)
|
|
633
|
)
|
|
634
|
)
|
|
634
|
|
|
635
|
|
|
635
|
raise HTTPFound(landing_url)
|
|
636
|
raise HTTPFound(landing_url)
|
|
636
|
|
|
637
|
|
|
637
|
@LoginRequired()
|
|
638
|
@LoginRequired()
|
|
638
|
@HasRepoPermissionAnyDecorator(
|
|
639
|
@HasRepoPermissionAnyDecorator(
|
|
639
|
'repository.read', 'repository.write', 'repository.admin')
|
|
640
|
'repository.read', 'repository.write', 'repository.admin')
|
|
640
|
def repo_files(self):
|
|
641
|
def repo_files(self):
|
|
641
|
c = self.load_default_context()
|
|
642
|
c = self.load_default_context()
|
|
642
|
|
|
643
|
|
|
643
|
view_name = getattr(self.request.matched_route, 'name', None)
|
|
644
|
view_name = getattr(self.request.matched_route, 'name', None)
|
|
644
|
|
|
645
|
|
|
645
|
c.annotate = view_name == 'repo_files:annotated'
|
|
646
|
c.annotate = view_name == 'repo_files:annotated'
|
|
646
|
# default is false, but .rst/.md files later are auto rendered, we can
|
|
647
|
# default is false, but .rst/.md files later are auto rendered, we can
|
|
647
|
# overwrite auto rendering by setting this GET flag
|
|
648
|
# overwrite auto rendering by setting this GET flag
|
|
648
|
c.renderer = view_name == 'repo_files:rendered' or not self.request.GET.get('no-render', False)
|
|
649
|
c.renderer = view_name == 'repo_files:rendered' or not self.request.GET.get('no-render', False)
|
|
649
|
|
|
650
|
|
|
650
|
commit_id, f_path = self._get_commit_and_path()
|
|
651
|
commit_id, f_path = self._get_commit_and_path()
|
|
651
|
|
|
652
|
|
|
652
|
c.commit = self._get_commit_or_redirect(commit_id)
|
|
653
|
c.commit = self._get_commit_or_redirect(commit_id)
|
|
653
|
c.branch = self.request.GET.get('branch', None)
|
|
654
|
c.branch = self.request.GET.get('branch', None)
|
|
654
|
c.f_path = f_path
|
|
655
|
c.f_path = f_path
|
|
655
|
at_rev = self.request.GET.get('at')
|
|
656
|
at_rev = self.request.GET.get('at')
|
|
656
|
|
|
657
|
|
|
657
|
# files or dirs
|
|
658
|
# files or dirs
|
|
658
|
try:
|
|
659
|
try:
|
|
659
|
c.file = c.commit.get_node(f_path, pre_load=['is_binary', 'size', 'data'])
|
|
660
|
c.file = c.commit.get_node(f_path, pre_load=['is_binary', 'size', 'data'])
|
|
660
|
|
|
661
|
|
|
661
|
c.file_author = True
|
|
662
|
c.file_author = True
|
|
662
|
c.file_tree = ''
|
|
663
|
c.file_tree = ''
|
|
663
|
|
|
664
|
|
|
664
|
# prev link
|
|
665
|
# prev link
|
|
665
|
try:
|
|
666
|
try:
|
|
666
|
prev_commit = c.commit.prev(c.branch)
|
|
667
|
prev_commit = c.commit.prev(c.branch)
|
|
667
|
c.prev_commit = prev_commit
|
|
668
|
c.prev_commit = prev_commit
|
|
668
|
c.url_prev = h.route_path(
|
|
669
|
c.url_prev = h.route_path(
|
|
669
|
'repo_files', repo_name=self.db_repo_name,
|
|
670
|
'repo_files', repo_name=self.db_repo_name,
|
|
670
|
commit_id=prev_commit.raw_id, f_path=f_path)
|
|
671
|
commit_id=prev_commit.raw_id, f_path=f_path)
|
|
671
|
if c.branch:
|
|
672
|
if c.branch:
|
|
672
|
c.url_prev += '?branch=%s' % c.branch
|
|
673
|
c.url_prev += '?branch=%s' % c.branch
|
|
673
|
except (CommitDoesNotExistError, VCSError):
|
|
674
|
except (CommitDoesNotExistError, VCSError):
|
|
674
|
c.url_prev = '#'
|
|
675
|
c.url_prev = '#'
|
|
675
|
c.prev_commit = EmptyCommit()
|
|
676
|
c.prev_commit = EmptyCommit()
|
|
676
|
|
|
677
|
|
|
677
|
# next link
|
|
678
|
# next link
|
|
678
|
try:
|
|
679
|
try:
|
|
679
|
next_commit = c.commit.next(c.branch)
|
|
680
|
next_commit = c.commit.next(c.branch)
|
|
680
|
c.next_commit = next_commit
|
|
681
|
c.next_commit = next_commit
|
|
681
|
c.url_next = h.route_path(
|
|
682
|
c.url_next = h.route_path(
|
|
682
|
'repo_files', repo_name=self.db_repo_name,
|
|
683
|
'repo_files', repo_name=self.db_repo_name,
|
|
683
|
commit_id=next_commit.raw_id, f_path=f_path)
|
|
684
|
commit_id=next_commit.raw_id, f_path=f_path)
|
|
684
|
if c.branch:
|
|
685
|
if c.branch:
|
|
685
|
c.url_next += '?branch=%s' % c.branch
|
|
686
|
c.url_next += '?branch=%s' % c.branch
|
|
686
|
except (CommitDoesNotExistError, VCSError):
|
|
687
|
except (CommitDoesNotExistError, VCSError):
|
|
687
|
c.url_next = '#'
|
|
688
|
c.url_next = '#'
|
|
688
|
c.next_commit = EmptyCommit()
|
|
689
|
c.next_commit = EmptyCommit()
|
|
689
|
|
|
690
|
|
|
690
|
# load file content
|
|
691
|
# load file content
|
|
691
|
if c.file.is_file():
|
|
692
|
if c.file.is_file():
|
|
692
|
|
|
693
|
|
|
693
|
c.lf_node = {}
|
|
694
|
c.lf_node = {}
|
|
694
|
|
|
695
|
|
|
695
|
has_lf_enabled = self._is_lf_enabled(self.db_repo)
|
|
696
|
has_lf_enabled = self._is_lf_enabled(self.db_repo)
|
|
696
|
if has_lf_enabled:
|
|
697
|
if has_lf_enabled:
|
|
697
|
c.lf_node = c.file.get_largefile_node()
|
|
698
|
c.lf_node = c.file.get_largefile_node()
|
|
698
|
|
|
699
|
|
|
699
|
c.file_source_page = 'true'
|
|
700
|
c.file_source_page = 'true'
|
|
700
|
c.file_last_commit = c.file.last_commit
|
|
701
|
c.file_last_commit = c.file.last_commit
|
|
701
|
|
|
702
|
|
|
702
|
c.file_size_too_big = c.file.size > c.visual.cut_off_limit_file
|
|
703
|
c.file_size_too_big = c.file.size > c.visual.cut_off_limit_file
|
|
703
|
|
|
704
|
|
|
704
|
if not (c.file_size_too_big or c.file.is_binary):
|
|
705
|
if not (c.file_size_too_big or c.file.is_binary):
|
|
705
|
if c.annotate: # annotation has precedence over renderer
|
|
706
|
if c.annotate: # annotation has precedence over renderer
|
|
706
|
c.annotated_lines = filenode_as_annotated_lines_tokens(
|
|
707
|
c.annotated_lines = filenode_as_annotated_lines_tokens(
|
|
707
|
c.file
|
|
708
|
c.file
|
|
708
|
)
|
|
709
|
)
|
|
709
|
else:
|
|
710
|
else:
|
|
710
|
c.renderer = (
|
|
711
|
c.renderer = (
|
|
711
|
c.renderer and h.renderer_from_filename(c.file.path)
|
|
712
|
c.renderer and h.renderer_from_filename(c.file.path)
|
|
712
|
)
|
|
713
|
)
|
|
713
|
if not c.renderer:
|
|
714
|
if not c.renderer:
|
|
714
|
c.lines = filenode_as_lines_tokens(c.file)
|
|
715
|
c.lines = filenode_as_lines_tokens(c.file)
|
|
715
|
|
|
716
|
|
|
716
|
_branch_name, _sha_commit_id, is_head = \
|
|
717
|
_branch_name, _sha_commit_id, is_head = \
|
|
717
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
718
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
718
|
landing_ref=self.db_repo.landing_ref_name)
|
|
719
|
landing_ref=self.db_repo.landing_ref_name)
|
|
719
|
c.on_branch_head = is_head
|
|
720
|
c.on_branch_head = is_head
|
|
720
|
|
|
721
|
|
|
721
|
branch = c.commit.branch if (
|
|
722
|
branch = c.commit.branch if (
|
|
722
|
c.commit.branch and '/' not in c.commit.branch) else None
|
|
723
|
c.commit.branch and '/' not in c.commit.branch) else None
|
|
723
|
c.branch_or_raw_id = branch or c.commit.raw_id
|
|
724
|
c.branch_or_raw_id = branch or c.commit.raw_id
|
|
724
|
c.branch_name = c.commit.branch or h.short_id(c.commit.raw_id)
|
|
725
|
c.branch_name = c.commit.branch or h.short_id(c.commit.raw_id)
|
|
725
|
|
|
726
|
|
|
726
|
author = c.file_last_commit.author
|
|
727
|
author = c.file_last_commit.author
|
|
727
|
c.authors = [[
|
|
728
|
c.authors = [[
|
|
728
|
h.email(author),
|
|
729
|
h.email(author),
|
|
729
|
h.person(author, 'username_or_name_or_email'),
|
|
730
|
h.person(author, 'username_or_name_or_email'),
|
|
730
|
1
|
|
731
|
1
|
|
731
|
]]
|
|
732
|
]]
|
|
732
|
|
|
733
|
|
|
733
|
else: # load tree content at path
|
|
734
|
else: # load tree content at path
|
|
734
|
c.file_source_page = 'false'
|
|
735
|
c.file_source_page = 'false'
|
|
735
|
c.authors = []
|
|
736
|
c.authors = []
|
|
736
|
# this loads a simple tree without metadata to speed things up
|
|
737
|
# this loads a simple tree without metadata to speed things up
|
|
737
|
# later via ajax we call repo_nodetree_full and fetch whole
|
|
738
|
# later via ajax we call repo_nodetree_full and fetch whole
|
|
738
|
c.file_tree = self._get_tree_at_commit(c, c.commit.raw_id, f_path, at_rev=at_rev)
|
|
739
|
c.file_tree = self._get_tree_at_commit(c, c.commit.raw_id, f_path, at_rev=at_rev)
|
|
739
|
|
|
740
|
|
|
740
|
c.readme_data, c.readme_file = \
|
|
741
|
c.readme_data, c.readme_file = \
|
|
741
|
self._get_readme_data(self.db_repo, c.visual.default_renderer,
|
|
742
|
self._get_readme_data(self.db_repo, c.visual.default_renderer,
|
|
742
|
c.commit.raw_id, f_path)
|
|
743
|
c.commit.raw_id, f_path)
|
|
743
|
|
|
744
|
|
|
744
|
except RepositoryError as e:
|
|
745
|
except RepositoryError as e:
|
|
745
|
h.flash(h.escape(safe_str(e)), category='error')
|
|
746
|
h.flash(h.escape(safe_str(e)), category='error')
|
|
746
|
raise HTTPNotFound()
|
|
747
|
raise HTTPNotFound()
|
|
747
|
|
|
748
|
|
|
748
|
if self.request.environ.get('HTTP_X_PJAX'):
|
|
749
|
if self.request.environ.get('HTTP_X_PJAX'):
|
|
749
|
html = render('rhodecode:templates/files/files_pjax.mako',
|
|
750
|
html = render('rhodecode:templates/files/files_pjax.mako',
|
|
750
|
self._get_template_context(c), self.request)
|
|
751
|
self._get_template_context(c), self.request)
|
|
751
|
else:
|
|
752
|
else:
|
|
752
|
html = render('rhodecode:templates/files/files.mako',
|
|
753
|
html = render('rhodecode:templates/files/files.mako',
|
|
753
|
self._get_template_context(c), self.request)
|
|
754
|
self._get_template_context(c), self.request)
|
|
754
|
return Response(html)
|
|
755
|
return Response(html)
|
|
755
|
|
|
756
|
|
|
756
|
@HasRepoPermissionAnyDecorator(
|
|
757
|
@HasRepoPermissionAnyDecorator(
|
|
757
|
'repository.read', 'repository.write', 'repository.admin')
|
|
758
|
'repository.read', 'repository.write', 'repository.admin')
|
|
758
|
def repo_files_annotated_previous(self):
|
|
759
|
def repo_files_annotated_previous(self):
|
|
759
|
self.load_default_context()
|
|
760
|
self.load_default_context()
|
|
760
|
|
|
761
|
|
|
761
|
commit_id, f_path = self._get_commit_and_path()
|
|
762
|
commit_id, f_path = self._get_commit_and_path()
|
|
762
|
commit = self._get_commit_or_redirect(commit_id)
|
|
763
|
commit = self._get_commit_or_redirect(commit_id)
|
|
763
|
prev_commit_id = commit.raw_id
|
|
764
|
prev_commit_id = commit.raw_id
|
|
764
|
line_anchor = self.request.GET.get('line_anchor')
|
|
765
|
line_anchor = self.request.GET.get('line_anchor')
|
|
765
|
is_file = False
|
|
766
|
is_file = False
|
|
766
|
try:
|
|
767
|
try:
|
|
767
|
_file = commit.get_node(f_path)
|
|
768
|
_file = commit.get_node(f_path)
|
|
768
|
is_file = _file.is_file()
|
|
769
|
is_file = _file.is_file()
|
|
769
|
except (NodeDoesNotExistError, CommitDoesNotExistError, VCSError):
|
|
770
|
except (NodeDoesNotExistError, CommitDoesNotExistError, VCSError):
|
|
770
|
pass
|
|
771
|
pass
|
|
771
|
|
|
772
|
|
|
772
|
if is_file:
|
|
773
|
if is_file:
|
|
773
|
history = commit.get_path_history(f_path)
|
|
774
|
history = commit.get_path_history(f_path)
|
|
774
|
prev_commit_id = history[1].raw_id \
|
|
775
|
prev_commit_id = history[1].raw_id \
|
|
775
|
if len(history) > 1 else prev_commit_id
|
|
776
|
if len(history) > 1 else prev_commit_id
|
|
776
|
prev_url = h.route_path(
|
|
777
|
prev_url = h.route_path(
|
|
777
|
'repo_files:annotated', repo_name=self.db_repo_name,
|
|
778
|
'repo_files:annotated', repo_name=self.db_repo_name,
|
|
778
|
commit_id=prev_commit_id, f_path=f_path,
|
|
779
|
commit_id=prev_commit_id, f_path=f_path,
|
|
779
|
_anchor=f'L{line_anchor}')
|
|
780
|
_anchor=f'L{line_anchor}')
|
|
780
|
|
|
781
|
|
|
781
|
raise HTTPFound(prev_url)
|
|
782
|
raise HTTPFound(prev_url)
|
|
782
|
|
|
783
|
|
|
783
|
@LoginRequired()
|
|
784
|
@LoginRequired()
|
|
784
|
@HasRepoPermissionAnyDecorator(
|
|
785
|
@HasRepoPermissionAnyDecorator(
|
|
785
|
'repository.read', 'repository.write', 'repository.admin')
|
|
786
|
'repository.read', 'repository.write', 'repository.admin')
|
|
786
|
def repo_nodetree_full(self):
|
|
787
|
def repo_nodetree_full(self):
|
|
787
|
"""
|
|
788
|
"""
|
|
788
|
Returns rendered html of file tree that contains commit date,
|
|
789
|
Returns rendered html of file tree that contains commit date,
|
|
789
|
author, commit_id for the specified combination of
|
|
790
|
author, commit_id for the specified combination of
|
|
790
|
repo, commit_id and file path
|
|
791
|
repo, commit_id and file path
|
|
791
|
"""
|
|
792
|
"""
|
|
792
|
c = self.load_default_context()
|
|
793
|
c = self.load_default_context()
|
|
793
|
|
|
794
|
|
|
794
|
commit_id, f_path = self._get_commit_and_path()
|
|
795
|
commit_id, f_path = self._get_commit_and_path()
|
|
795
|
commit = self._get_commit_or_redirect(commit_id)
|
|
796
|
commit = self._get_commit_or_redirect(commit_id)
|
|
796
|
try:
|
|
797
|
try:
|
|
797
|
dir_node = commit.get_node(f_path)
|
|
798
|
dir_node = commit.get_node(f_path)
|
|
798
|
except RepositoryError as e:
|
|
799
|
except RepositoryError as e:
|
|
799
|
return Response(f'error: {h.escape(safe_str(e))}')
|
|
800
|
return Response(f'error: {h.escape(safe_str(e))}')
|
|
800
|
|
|
801
|
|
|
801
|
if dir_node.is_file():
|
|
802
|
if dir_node.is_file():
|
|
802
|
return Response('')
|
|
803
|
return Response('')
|
|
803
|
|
|
804
|
|
|
804
|
c.file = dir_node
|
|
805
|
c.file = dir_node
|
|
805
|
c.commit = commit
|
|
806
|
c.commit = commit
|
|
806
|
at_rev = self.request.GET.get('at')
|
|
807
|
at_rev = self.request.GET.get('at')
|
|
807
|
|
|
808
|
|
|
808
|
html = self._get_tree_at_commit(
|
|
809
|
html = self._get_tree_at_commit(
|
|
809
|
c, commit.raw_id, dir_node.path, full_load=True, at_rev=at_rev)
|
|
810
|
c, commit.raw_id, dir_node.path, full_load=True, at_rev=at_rev)
|
|
810
|
|
|
811
|
|
|
811
|
return Response(html)
|
|
812
|
return Response(html)
|
|
812
|
|
|
813
|
|
|
813
|
def _get_attachement_headers(self, f_path):
|
|
814
|
def _get_attachement_headers(self, f_path):
|
|
814
|
f_name = safe_str(f_path.split(Repository.NAME_SEP)[-1])
|
|
815
|
f_name = safe_str(f_path.split(Repository.NAME_SEP)[-1])
|
|
815
|
safe_path = f_name.replace('"', '\\"')
|
|
816
|
safe_path = f_name.replace('"', '\\"')
|
|
816
|
encoded_path = urllib.parse.quote(f_name)
|
|
817
|
encoded_path = urllib.parse.quote(f_name)
|
|
817
|
|
|
818
|
|
|
818
|
headers = "attachment; " \
|
|
819
|
headers = "attachment; " \
|
|
819
|
"filename=\"{}\"; " \
|
|
820
|
"filename=\"{}\"; " \
|
|
820
|
"filename*=UTF-8\'\'{}".format(safe_path, encoded_path)
|
|
821
|
"filename*=UTF-8\'\'{}".format(safe_path, encoded_path)
|
|
821
|
|
|
822
|
|
|
822
|
return safe_bytes(headers).decode('latin-1', errors='replace')
|
|
823
|
return safe_bytes(headers).decode('latin-1', errors='replace')
|
|
823
|
|
|
824
|
|
|
824
|
@LoginRequired()
|
|
825
|
@LoginRequired()
|
|
825
|
@HasRepoPermissionAnyDecorator(
|
|
826
|
@HasRepoPermissionAnyDecorator(
|
|
826
|
'repository.read', 'repository.write', 'repository.admin')
|
|
827
|
'repository.read', 'repository.write', 'repository.admin')
|
|
827
|
def repo_file_raw(self):
|
|
828
|
def repo_file_raw(self):
|
|
828
|
"""
|
|
829
|
"""
|
|
829
|
Action for show as raw, some mimetypes are "rendered",
|
|
830
|
Action for show as raw, some mimetypes are "rendered",
|
|
830
|
those include images, icons.
|
|
831
|
those include images, icons.
|
|
831
|
"""
|
|
832
|
"""
|
|
832
|
c = self.load_default_context()
|
|
833
|
c = self.load_default_context()
|
|
833
|
|
|
834
|
|
|
834
|
commit_id, f_path = self._get_commit_and_path()
|
|
835
|
commit_id, f_path = self._get_commit_and_path()
|
|
835
|
commit = self._get_commit_or_redirect(commit_id)
|
|
836
|
commit = self._get_commit_or_redirect(commit_id)
|
|
836
|
file_node = self._get_filenode_or_redirect(commit, f_path)
|
|
837
|
file_node = self._get_filenode_or_redirect(commit, f_path)
|
|
837
|
|
|
838
|
|
|
838
|
raw_mimetype_mapping = {
|
|
839
|
raw_mimetype_mapping = {
|
|
839
|
# map original mimetype to a mimetype used for "show as raw"
|
|
840
|
# map original mimetype to a mimetype used for "show as raw"
|
|
840
|
# you can also provide a content-disposition to override the
|
|
841
|
# you can also provide a content-disposition to override the
|
|
841
|
# default "attachment" disposition.
|
|
842
|
# default "attachment" disposition.
|
|
842
|
# orig_type: (new_type, new_dispo)
|
|
843
|
# orig_type: (new_type, new_dispo)
|
|
843
|
|
|
844
|
|
|
844
|
# show images inline:
|
|
845
|
# show images inline:
|
|
845
|
# Do not re-add SVG: it is unsafe and permits XSS attacks. One can
|
|
846
|
# Do not re-add SVG: it is unsafe and permits XSS attacks. One can
|
|
846
|
# for example render an SVG with javascript inside or even render
|
|
847
|
# for example render an SVG with javascript inside or even render
|
|
847
|
# HTML.
|
|
848
|
# HTML.
|
|
848
|
'image/x-icon': ('image/x-icon', 'inline'),
|
|
849
|
'image/x-icon': ('image/x-icon', 'inline'),
|
|
849
|
'image/png': ('image/png', 'inline'),
|
|
850
|
'image/png': ('image/png', 'inline'),
|
|
850
|
'image/gif': ('image/gif', 'inline'),
|
|
851
|
'image/gif': ('image/gif', 'inline'),
|
|
851
|
'image/jpeg': ('image/jpeg', 'inline'),
|
|
852
|
'image/jpeg': ('image/jpeg', 'inline'),
|
|
852
|
'application/pdf': ('application/pdf', 'inline'),
|
|
853
|
'application/pdf': ('application/pdf', 'inline'),
|
|
853
|
}
|
|
854
|
}
|
|
854
|
|
|
855
|
|
|
855
|
mimetype = file_node.mimetype
|
|
856
|
mimetype = file_node.mimetype
|
|
856
|
try:
|
|
857
|
try:
|
|
857
|
mimetype, disposition = raw_mimetype_mapping[mimetype]
|
|
858
|
mimetype, disposition = raw_mimetype_mapping[mimetype]
|
|
858
|
except KeyError:
|
|
859
|
except KeyError:
|
|
859
|
# we don't know anything special about this, handle it safely
|
|
860
|
# we don't know anything special about this, handle it safely
|
|
860
|
if file_node.is_binary:
|
|
861
|
if file_node.is_binary:
|
|
861
|
# do same as download raw for binary files
|
|
862
|
# do same as download raw for binary files
|
|
862
|
mimetype, disposition = 'application/octet-stream', 'attachment'
|
|
863
|
mimetype, disposition = 'application/octet-stream', 'attachment'
|
|
863
|
else:
|
|
864
|
else:
|
|
864
|
# do not just use the original mimetype, but force text/plain,
|
|
865
|
# do not just use the original mimetype, but force text/plain,
|
|
865
|
# otherwise it would serve text/html and that might be unsafe.
|
|
866
|
# otherwise it would serve text/html and that might be unsafe.
|
|
866
|
# Note: underlying vcs library fakes text/plain mimetype if the
|
|
867
|
# Note: underlying vcs library fakes text/plain mimetype if the
|
|
867
|
# mimetype can not be determined and it thinks it is not
|
|
868
|
# mimetype can not be determined and it thinks it is not
|
|
868
|
# binary.This might lead to erroneous text display in some
|
|
869
|
# binary.This might lead to erroneous text display in some
|
|
869
|
# cases, but helps in other cases, like with text files
|
|
870
|
# cases, but helps in other cases, like with text files
|
|
870
|
# without extension.
|
|
871
|
# without extension.
|
|
871
|
mimetype, disposition = 'text/plain', 'inline'
|
|
872
|
mimetype, disposition = 'text/plain', 'inline'
|
|
872
|
|
|
873
|
|
|
873
|
if disposition == 'attachment':
|
|
874
|
if disposition == 'attachment':
|
|
874
|
disposition = self._get_attachement_headers(f_path)
|
|
875
|
disposition = self._get_attachement_headers(f_path)
|
|
875
|
|
|
876
|
|
|
876
|
stream_content = file_node.stream_bytes()
|
|
877
|
stream_content = file_node.stream_bytes()
|
|
877
|
|
|
878
|
|
|
878
|
response = Response(app_iter=stream_content)
|
|
879
|
response = Response(app_iter=stream_content)
|
|
879
|
response.content_disposition = disposition
|
|
880
|
response.content_disposition = disposition
|
|
880
|
response.content_type = mimetype
|
|
881
|
response.content_type = mimetype
|
|
881
|
|
|
882
|
|
|
882
|
charset = self._get_default_encoding(c)
|
|
883
|
charset = self._get_default_encoding(c)
|
|
883
|
if charset:
|
|
884
|
if charset:
|
|
884
|
response.charset = charset
|
|
885
|
response.charset = charset
|
|
885
|
|
|
886
|
|
|
886
|
return response
|
|
887
|
return response
|
|
887
|
|
|
888
|
|
|
888
|
@LoginRequired()
|
|
889
|
@LoginRequired()
|
|
889
|
@HasRepoPermissionAnyDecorator(
|
|
890
|
@HasRepoPermissionAnyDecorator(
|
|
890
|
'repository.read', 'repository.write', 'repository.admin')
|
|
891
|
'repository.read', 'repository.write', 'repository.admin')
|
|
891
|
def repo_file_download(self):
|
|
892
|
def repo_file_download(self):
|
|
892
|
c = self.load_default_context()
|
|
893
|
c = self.load_default_context()
|
|
893
|
|
|
894
|
|
|
894
|
commit_id, f_path = self._get_commit_and_path()
|
|
895
|
commit_id, f_path = self._get_commit_and_path()
|
|
895
|
commit = self._get_commit_or_redirect(commit_id)
|
|
896
|
commit = self._get_commit_or_redirect(commit_id)
|
|
896
|
file_node = self._get_filenode_or_redirect(commit, f_path)
|
|
897
|
file_node = self._get_filenode_or_redirect(commit, f_path)
|
|
897
|
|
|
898
|
|
|
898
|
if self.request.GET.get('lf'):
|
|
899
|
if self.request.GET.get('lf'):
|
|
899
|
# only if lf get flag is passed, we download this file
|
|
900
|
# only if lf get flag is passed, we download this file
|
|
900
|
# as LFS/Largefile
|
|
901
|
# as LFS/Largefile
|
|
901
|
lf_node = file_node.get_largefile_node()
|
|
902
|
lf_node = file_node.get_largefile_node()
|
|
902
|
if lf_node:
|
|
903
|
if lf_node:
|
|
903
|
# overwrite our pointer with the REAL large-file
|
|
904
|
# overwrite our pointer with the REAL large-file
|
|
904
|
file_node = lf_node
|
|
905
|
file_node = lf_node
|
|
905
|
|
|
906
|
|
|
906
|
disposition = self._get_attachement_headers(f_path)
|
|
907
|
disposition = self._get_attachement_headers(f_path)
|
|
907
|
|
|
908
|
|
|
908
|
stream_content = file_node.stream_bytes()
|
|
909
|
stream_content = file_node.stream_bytes()
|
|
909
|
|
|
910
|
|
|
910
|
response = Response(app_iter=stream_content)
|
|
911
|
response = Response(app_iter=stream_content)
|
|
911
|
response.content_disposition = disposition
|
|
912
|
response.content_disposition = disposition
|
|
912
|
response.content_type = file_node.mimetype
|
|
913
|
response.content_type = file_node.mimetype
|
|
913
|
|
|
914
|
|
|
914
|
charset = self._get_default_encoding(c)
|
|
915
|
charset = self._get_default_encoding(c)
|
|
915
|
if charset:
|
|
916
|
if charset:
|
|
916
|
response.charset = charset
|
|
917
|
response.charset = charset
|
|
917
|
|
|
918
|
|
|
918
|
return response
|
|
919
|
return response
|
|
919
|
|
|
920
|
|
|
920
|
def _get_nodelist_at_commit(self, repo_name, repo_id, commit_id, f_path):
|
|
921
|
def _get_nodelist_at_commit(self, repo_name, repo_id, commit_id, f_path):
|
|
921
|
|
|
922
|
|
|
922
|
cache_seconds = safe_int(
|
|
923
|
cache_seconds = safe_int(
|
|
923
|
rhodecode.CONFIG.get('rc_cache.cache_repo.expiration_time'))
|
|
924
|
rhodecode.CONFIG.get('rc_cache.cache_repo.expiration_time'))
|
|
924
|
cache_on = cache_seconds > 0
|
|
925
|
cache_on = cache_seconds > 0
|
|
925
|
log.debug(
|
|
926
|
log.debug(
|
|
926
|
'Computing FILE SEARCH for repo_id %s commit_id `%s` and path `%s`'
|
|
927
|
'Computing FILE SEARCH for repo_id %s commit_id `%s` and path `%s`'
|
|
927
|
'with caching: %s[TTL: %ss]' % (
|
|
928
|
'with caching: %s[TTL: %ss]' % (
|
|
928
|
repo_id, commit_id, f_path, cache_on, cache_seconds or 0))
|
|
929
|
repo_id, commit_id, f_path, cache_on, cache_seconds or 0))
|
|
929
|
|
|
930
|
|
|
930
|
cache_namespace_uid = f'repo.{repo_id}'
|
|
931
|
cache_namespace_uid = f'repo.{repo_id}'
|
|
931
|
region = rc_cache.get_or_create_region('cache_repo', cache_namespace_uid)
|
|
932
|
region = rc_cache.get_or_create_region('cache_repo', cache_namespace_uid)
|
|
932
|
|
|
933
|
|
|
933
|
@region.conditional_cache_on_arguments(namespace=cache_namespace_uid, condition=cache_on)
|
|
934
|
@region.conditional_cache_on_arguments(namespace=cache_namespace_uid, condition=cache_on)
|
|
934
|
def compute_file_search(_name_hash, _repo_id, _commit_id, _f_path):
|
|
935
|
def compute_file_search(_name_hash, _repo_id, _commit_id, _f_path):
|
|
935
|
log.debug('Generating cached nodelist for repo_id:%s, %s, %s',
|
|
936
|
log.debug('Generating cached nodelist for repo_id:%s, %s, %s',
|
|
936
|
_repo_id, commit_id, f_path)
|
|
937
|
_repo_id, commit_id, f_path)
|
|
937
|
try:
|
|
938
|
try:
|
|
938
|
_d, _f = ScmModel().get_quick_filter_nodes(repo_name, _commit_id, _f_path)
|
|
939
|
_d, _f = ScmModel().get_quick_filter_nodes(repo_name, _commit_id, _f_path)
|
|
939
|
except (RepositoryError, CommitDoesNotExistError, Exception) as e:
|
|
940
|
except (RepositoryError, CommitDoesNotExistError, Exception) as e:
|
|
940
|
log.exception(safe_str(e))
|
|
941
|
log.exception(safe_str(e))
|
|
941
|
h.flash(h.escape(safe_str(e)), category='error')
|
|
942
|
h.flash(h.escape(safe_str(e)), category='error')
|
|
942
|
raise HTTPFound(h.route_path(
|
|
943
|
raise HTTPFound(h.route_path(
|
|
943
|
'repo_files', repo_name=self.db_repo_name,
|
|
944
|
'repo_files', repo_name=self.db_repo_name,
|
|
944
|
commit_id='tip', f_path='/'))
|
|
945
|
commit_id='tip', f_path='/'))
|
|
945
|
|
|
946
|
|
|
946
|
return _d + _f
|
|
947
|
return _d + _f
|
|
947
|
|
|
948
|
|
|
948
|
result = compute_file_search(self.db_repo.repo_name_hash, self.db_repo.repo_id,
|
|
949
|
result = compute_file_search(self.db_repo.repo_name_hash, self.db_repo.repo_id,
|
|
949
|
commit_id, f_path)
|
|
950
|
commit_id, f_path)
|
|
950
|
return filter(lambda n: self.path_filter.path_access_allowed(n['name']), result)
|
|
951
|
return filter(lambda n: self.path_filter.path_access_allowed(n['name']), result)
|
|
951
|
|
|
952
|
|
|
952
|
@LoginRequired()
|
|
953
|
@LoginRequired()
|
|
953
|
@HasRepoPermissionAnyDecorator(
|
|
954
|
@HasRepoPermissionAnyDecorator(
|
|
954
|
'repository.read', 'repository.write', 'repository.admin')
|
|
955
|
'repository.read', 'repository.write', 'repository.admin')
|
|
955
|
def repo_nodelist(self):
|
|
956
|
def repo_nodelist(self):
|
|
956
|
self.load_default_context()
|
|
957
|
self.load_default_context()
|
|
957
|
|
|
958
|
|
|
958
|
commit_id, f_path = self._get_commit_and_path()
|
|
959
|
commit_id, f_path = self._get_commit_and_path()
|
|
959
|
commit = self._get_commit_or_redirect(commit_id)
|
|
960
|
commit = self._get_commit_or_redirect(commit_id)
|
|
960
|
|
|
961
|
|
|
961
|
metadata = self._get_nodelist_at_commit(
|
|
962
|
metadata = self._get_nodelist_at_commit(
|
|
962
|
self.db_repo_name, self.db_repo.repo_id, commit.raw_id, f_path)
|
|
963
|
self.db_repo_name, self.db_repo.repo_id, commit.raw_id, f_path)
|
|
963
|
return {'nodes': [x for x in metadata]}
|
|
964
|
return {'nodes': [x for x in metadata]}
|
|
964
|
|
|
965
|
|
|
965
|
def _create_references(self, branches_or_tags, symbolic_reference, f_path, ref_type):
|
|
966
|
def _create_references(self, branches_or_tags, symbolic_reference, f_path, ref_type):
|
|
966
|
items = []
|
|
967
|
items = []
|
|
967
|
for name, commit_id in branches_or_tags.items():
|
|
968
|
for name, commit_id in branches_or_tags.items():
|
|
968
|
sym_ref = symbolic_reference(commit_id, name, f_path, ref_type)
|
|
969
|
sym_ref = symbolic_reference(commit_id, name, f_path, ref_type)
|
|
969
|
items.append((sym_ref, name, ref_type))
|
|
970
|
items.append((sym_ref, name, ref_type))
|
|
970
|
return items
|
|
971
|
return items
|
|
971
|
|
|
972
|
|
|
972
|
def _symbolic_reference(self, commit_id, name, f_path, ref_type):
|
|
973
|
def _symbolic_reference(self, commit_id, name, f_path, ref_type):
|
|
973
|
return commit_id
|
|
974
|
return commit_id
|
|
974
|
|
|
975
|
|
|
975
|
def _symbolic_reference_svn(self, commit_id, name, f_path, ref_type):
|
|
976
|
def _symbolic_reference_svn(self, commit_id, name, f_path, ref_type):
|
|
976
|
return commit_id
|
|
977
|
return commit_id
|
|
977
|
|
|
978
|
|
|
978
|
# NOTE(dan): old code we used in "diff" mode compare
|
|
979
|
# NOTE(dan): old code we used in "diff" mode compare
|
|
979
|
new_f_path = vcspath.join(name, f_path)
|
|
980
|
new_f_path = vcspath.join(name, f_path)
|
|
980
|
return f'{new_f_path}@{commit_id}'
|
|
981
|
return f'{new_f_path}@{commit_id}'
|
|
981
|
|
|
982
|
|
|
982
|
def _get_node_history(self, commit_obj, f_path, commits=None):
|
|
983
|
def _get_node_history(self, commit_obj, f_path, commits=None):
|
|
983
|
"""
|
|
984
|
"""
|
|
984
|
get commit history for given node
|
|
985
|
get commit history for given node
|
|
985
|
|
|
986
|
|
|
986
|
:param commit_obj: commit to calculate history
|
|
987
|
:param commit_obj: commit to calculate history
|
|
987
|
:param f_path: path for node to calculate history for
|
|
988
|
:param f_path: path for node to calculate history for
|
|
988
|
:param commits: if passed don't calculate history and take
|
|
989
|
:param commits: if passed don't calculate history and take
|
|
989
|
commits defined in this list
|
|
990
|
commits defined in this list
|
|
990
|
"""
|
|
991
|
"""
|
|
991
|
_ = self.request.translate
|
|
992
|
_ = self.request.translate
|
|
992
|
|
|
993
|
|
|
993
|
# calculate history based on tip
|
|
994
|
# calculate history based on tip
|
|
994
|
tip = self.rhodecode_vcs_repo.get_commit()
|
|
995
|
tip = self.rhodecode_vcs_repo.get_commit()
|
|
995
|
if commits is None:
|
|
996
|
if commits is None:
|
|
996
|
pre_load = ["author", "branch"]
|
|
997
|
pre_load = ["author", "branch"]
|
|
997
|
try:
|
|
998
|
try:
|
|
998
|
commits = tip.get_path_history(f_path, pre_load=pre_load)
|
|
999
|
commits = tip.get_path_history(f_path, pre_load=pre_load)
|
|
999
|
except (NodeDoesNotExistError, CommitError):
|
|
1000
|
except (NodeDoesNotExistError, CommitError):
|
|
1000
|
# this node is not present at tip!
|
|
1001
|
# this node is not present at tip!
|
|
1001
|
commits = commit_obj.get_path_history(f_path, pre_load=pre_load)
|
|
1002
|
commits = commit_obj.get_path_history(f_path, pre_load=pre_load)
|
|
1002
|
|
|
1003
|
|
|
1003
|
history = []
|
|
1004
|
history = []
|
|
1004
|
commits_group = ([], _("Changesets"))
|
|
1005
|
commits_group = ([], _("Changesets"))
|
|
1005
|
for commit in commits:
|
|
1006
|
for commit in commits:
|
|
1006
|
branch = ' (%s)' % commit.branch if commit.branch else ''
|
|
1007
|
branch = ' (%s)' % commit.branch if commit.branch else ''
|
|
1007
|
n_desc = f'r{commit.idx}:{commit.short_id}{branch}'
|
|
1008
|
n_desc = f'r{commit.idx}:{commit.short_id}{branch}'
|
|
1008
|
commits_group[0].append((commit.raw_id, n_desc, 'sha'))
|
|
1009
|
commits_group[0].append((commit.raw_id, n_desc, 'sha'))
|
|
1009
|
history.append(commits_group)
|
|
1010
|
history.append(commits_group)
|
|
1010
|
|
|
1011
|
|
|
1011
|
symbolic_reference = self._symbolic_reference
|
|
1012
|
symbolic_reference = self._symbolic_reference
|
|
1012
|
|
|
1013
|
|
|
1013
|
if self.rhodecode_vcs_repo.alias == 'svn':
|
|
1014
|
if self.rhodecode_vcs_repo.alias == 'svn':
|
|
1014
|
adjusted_f_path = RepoFilesView.adjust_file_path_for_svn(
|
|
1015
|
adjusted_f_path = RepoFilesView.adjust_file_path_for_svn(
|
|
1015
|
f_path, self.rhodecode_vcs_repo)
|
|
1016
|
f_path, self.rhodecode_vcs_repo)
|
|
1016
|
if adjusted_f_path != f_path:
|
|
1017
|
if adjusted_f_path != f_path:
|
|
1017
|
log.debug(
|
|
1018
|
log.debug(
|
|
1018
|
'Recognized svn tag or branch in file "%s", using svn '
|
|
1019
|
'Recognized svn tag or branch in file "%s", using svn '
|
|
1019
|
'specific symbolic references', f_path)
|
|
1020
|
'specific symbolic references', f_path)
|
|
1020
|
f_path = adjusted_f_path
|
|
1021
|
f_path = adjusted_f_path
|
|
1021
|
symbolic_reference = self._symbolic_reference_svn
|
|
1022
|
symbolic_reference = self._symbolic_reference_svn
|
|
1022
|
|
|
1023
|
|
|
1023
|
branches = self._create_references(
|
|
1024
|
branches = self._create_references(
|
|
1024
|
self.rhodecode_vcs_repo.branches, symbolic_reference, f_path, 'branch')
|
|
1025
|
self.rhodecode_vcs_repo.branches, symbolic_reference, f_path, 'branch')
|
|
1025
|
branches_group = (branches, _("Branches"))
|
|
1026
|
branches_group = (branches, _("Branches"))
|
|
1026
|
|
|
1027
|
|
|
1027
|
tags = self._create_references(
|
|
1028
|
tags = self._create_references(
|
|
1028
|
self.rhodecode_vcs_repo.tags, symbolic_reference, f_path, 'tag')
|
|
1029
|
self.rhodecode_vcs_repo.tags, symbolic_reference, f_path, 'tag')
|
|
1029
|
tags_group = (tags, _("Tags"))
|
|
1030
|
tags_group = (tags, _("Tags"))
|
|
1030
|
|
|
1031
|
|
|
1031
|
history.append(branches_group)
|
|
1032
|
history.append(branches_group)
|
|
1032
|
history.append(tags_group)
|
|
1033
|
history.append(tags_group)
|
|
1033
|
|
|
1034
|
|
|
1034
|
return history, commits
|
|
1035
|
return history, commits
|
|
1035
|
|
|
1036
|
|
|
1036
|
@LoginRequired()
|
|
1037
|
@LoginRequired()
|
|
1037
|
@HasRepoPermissionAnyDecorator(
|
|
1038
|
@HasRepoPermissionAnyDecorator(
|
|
1038
|
'repository.read', 'repository.write', 'repository.admin')
|
|
1039
|
'repository.read', 'repository.write', 'repository.admin')
|
|
1039
|
def repo_file_history(self):
|
|
1040
|
def repo_file_history(self):
|
|
1040
|
self.load_default_context()
|
|
1041
|
self.load_default_context()
|
|
1041
|
|
|
1042
|
|
|
1042
|
commit_id, f_path = self._get_commit_and_path()
|
|
1043
|
commit_id, f_path = self._get_commit_and_path()
|
|
1043
|
commit = self._get_commit_or_redirect(commit_id)
|
|
1044
|
commit = self._get_commit_or_redirect(commit_id)
|
|
1044
|
file_node = self._get_filenode_or_redirect(commit, f_path)
|
|
1045
|
file_node = self._get_filenode_or_redirect(commit, f_path)
|
|
1045
|
|
|
1046
|
|
|
1046
|
if file_node.is_file():
|
|
1047
|
if file_node.is_file():
|
|
1047
|
file_history, _hist = self._get_node_history(commit, f_path)
|
|
1048
|
file_history, _hist = self._get_node_history(commit, f_path)
|
|
1048
|
|
|
1049
|
|
|
1049
|
res = []
|
|
1050
|
res = []
|
|
1050
|
for section_items, section in file_history:
|
|
1051
|
for section_items, section in file_history:
|
|
1051
|
items = []
|
|
1052
|
items = []
|
|
1052
|
for obj_id, obj_text, obj_type in section_items:
|
|
1053
|
for obj_id, obj_text, obj_type in section_items:
|
|
1053
|
at_rev = ''
|
|
1054
|
at_rev = ''
|
|
1054
|
if obj_type in ['branch', 'bookmark', 'tag']:
|
|
1055
|
if obj_type in ['branch', 'bookmark', 'tag']:
|
|
1055
|
at_rev = obj_text
|
|
1056
|
at_rev = obj_text
|
|
1056
|
entry = {
|
|
1057
|
entry = {
|
|
1057
|
'id': obj_id,
|
|
1058
|
'id': obj_id,
|
|
1058
|
'text': obj_text,
|
|
1059
|
'text': obj_text,
|
|
1059
|
'type': obj_type,
|
|
1060
|
'type': obj_type,
|
|
1060
|
'at_rev': at_rev
|
|
1061
|
'at_rev': at_rev
|
|
1061
|
}
|
|
1062
|
}
|
|
1062
|
|
|
1063
|
|
|
1063
|
items.append(entry)
|
|
1064
|
items.append(entry)
|
|
1064
|
|
|
1065
|
|
|
1065
|
res.append({
|
|
1066
|
res.append({
|
|
1066
|
'text': section,
|
|
1067
|
'text': section,
|
|
1067
|
'children': items
|
|
1068
|
'children': items
|
|
1068
|
})
|
|
1069
|
})
|
|
1069
|
|
|
1070
|
|
|
1070
|
data = {
|
|
1071
|
data = {
|
|
1071
|
'more': False,
|
|
1072
|
'more': False,
|
|
1072
|
'results': res
|
|
1073
|
'results': res
|
|
1073
|
}
|
|
1074
|
}
|
|
1074
|
return data
|
|
1075
|
return data
|
|
1075
|
|
|
1076
|
|
|
1076
|
log.warning('Cannot fetch history for directory')
|
|
1077
|
log.warning('Cannot fetch history for directory')
|
|
1077
|
raise HTTPBadRequest()
|
|
1078
|
raise HTTPBadRequest()
|
|
1078
|
|
|
1079
|
|
|
1079
|
@LoginRequired()
|
|
1080
|
@LoginRequired()
|
|
1080
|
@HasRepoPermissionAnyDecorator(
|
|
1081
|
@HasRepoPermissionAnyDecorator(
|
|
1081
|
'repository.read', 'repository.write', 'repository.admin')
|
|
1082
|
'repository.read', 'repository.write', 'repository.admin')
|
|
1082
|
def repo_file_authors(self):
|
|
1083
|
def repo_file_authors(self):
|
|
1083
|
c = self.load_default_context()
|
|
1084
|
c = self.load_default_context()
|
|
1084
|
|
|
1085
|
|
|
1085
|
commit_id, f_path = self._get_commit_and_path()
|
|
1086
|
commit_id, f_path = self._get_commit_and_path()
|
|
1086
|
commit = self._get_commit_or_redirect(commit_id)
|
|
1087
|
commit = self._get_commit_or_redirect(commit_id)
|
|
1087
|
file_node = self._get_filenode_or_redirect(commit, f_path)
|
|
1088
|
file_node = self._get_filenode_or_redirect(commit, f_path)
|
|
1088
|
|
|
1089
|
|
|
1089
|
if not file_node.is_file():
|
|
1090
|
if not file_node.is_file():
|
|
1090
|
raise HTTPBadRequest()
|
|
1091
|
raise HTTPBadRequest()
|
|
1091
|
|
|
1092
|
|
|
1092
|
c.file_last_commit = file_node.last_commit
|
|
1093
|
c.file_last_commit = file_node.last_commit
|
|
1093
|
if self.request.GET.get('annotate') == '1':
|
|
1094
|
if self.request.GET.get('annotate') == '1':
|
|
1094
|
# use _hist from annotation if annotation mode is on
|
|
1095
|
# use _hist from annotation if annotation mode is on
|
|
1095
|
commit_ids = {x[1] for x in file_node.annotate}
|
|
1096
|
commit_ids = {x[1] for x in file_node.annotate}
|
|
1096
|
_hist = (
|
|
1097
|
_hist = (
|
|
1097
|
self.rhodecode_vcs_repo.get_commit(commit_id)
|
|
1098
|
self.rhodecode_vcs_repo.get_commit(commit_id)
|
|
1098
|
for commit_id in commit_ids)
|
|
1099
|
for commit_id in commit_ids)
|
|
1099
|
else:
|
|
1100
|
else:
|
|
1100
|
_f_history, _hist = self._get_node_history(commit, f_path)
|
|
1101
|
_f_history, _hist = self._get_node_history(commit, f_path)
|
|
1101
|
c.file_author = False
|
|
1102
|
c.file_author = False
|
|
1102
|
|
|
1103
|
|
|
1103
|
unique = collections.OrderedDict()
|
|
1104
|
unique = collections.OrderedDict()
|
|
1104
|
for commit in _hist:
|
|
1105
|
for commit in _hist:
|
|
1105
|
author = commit.author
|
|
1106
|
author = commit.author
|
|
1106
|
if author not in unique:
|
|
1107
|
if author not in unique:
|
|
1107
|
unique[commit.author] = [
|
|
1108
|
unique[commit.author] = [
|
|
1108
|
h.email(author),
|
|
1109
|
h.email(author),
|
|
1109
|
h.person(author, 'username_or_name_or_email'),
|
|
1110
|
h.person(author, 'username_or_name_or_email'),
|
|
1110
|
1 # counter
|
|
1111
|
1 # counter
|
|
1111
|
]
|
|
1112
|
]
|
|
1112
|
|
|
1113
|
|
|
1113
|
else:
|
|
1114
|
else:
|
|
1114
|
# increase counter
|
|
1115
|
# increase counter
|
|
1115
|
unique[commit.author][2] += 1
|
|
1116
|
unique[commit.author][2] += 1
|
|
1116
|
|
|
1117
|
|
|
1117
|
c.authors = [val for val in unique.values()]
|
|
1118
|
c.authors = [val for val in unique.values()]
|
|
1118
|
|
|
1119
|
|
|
1119
|
return self._get_template_context(c)
|
|
1120
|
return self._get_template_context(c)
|
|
1120
|
|
|
1121
|
|
|
1121
|
@LoginRequired()
|
|
1122
|
@LoginRequired()
|
|
1122
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1123
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1123
|
def repo_files_check_head(self):
|
|
1124
|
def repo_files_check_head(self):
|
|
1124
|
self.load_default_context()
|
|
1125
|
self.load_default_context()
|
|
1125
|
|
|
1126
|
|
|
1126
|
commit_id, f_path = self._get_commit_and_path()
|
|
1127
|
commit_id, f_path = self._get_commit_and_path()
|
|
1127
|
_branch_name, _sha_commit_id, is_head = \
|
|
1128
|
_branch_name, _sha_commit_id, is_head = \
|
|
1128
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1129
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1129
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1130
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1130
|
|
|
1131
|
|
|
1131
|
new_path = self.request.POST.get('path')
|
|
1132
|
new_path = self.request.POST.get('path')
|
|
1132
|
operation = self.request.POST.get('operation')
|
|
1133
|
operation = self.request.POST.get('operation')
|
|
1133
|
path_exist = ''
|
|
1134
|
path_exist = ''
|
|
1134
|
|
|
1135
|
|
|
1135
|
if new_path and operation in ['create', 'upload']:
|
|
1136
|
if new_path and operation in ['create', 'upload']:
|
|
1136
|
new_f_path = os.path.join(f_path.lstrip('/'), new_path)
|
|
1137
|
new_f_path = os.path.join(f_path.lstrip('/'), new_path)
|
|
1137
|
try:
|
|
1138
|
try:
|
|
1138
|
commit_obj = self.rhodecode_vcs_repo.get_commit(commit_id)
|
|
1139
|
commit_obj = self.rhodecode_vcs_repo.get_commit(commit_id)
|
|
1139
|
# NOTE(dan): construct whole path without leading /
|
|
1140
|
# NOTE(dan): construct whole path without leading /
|
|
1140
|
file_node = commit_obj.get_node(new_f_path)
|
|
1141
|
file_node = commit_obj.get_node(new_f_path)
|
|
1141
|
if file_node is not None:
|
|
1142
|
if file_node is not None:
|
|
1142
|
path_exist = new_f_path
|
|
1143
|
path_exist = new_f_path
|
|
1143
|
except EmptyRepositoryError:
|
|
1144
|
except EmptyRepositoryError:
|
|
1144
|
pass
|
|
1145
|
pass
|
|
1145
|
except Exception:
|
|
1146
|
except Exception:
|
|
1146
|
pass
|
|
1147
|
pass
|
|
1147
|
|
|
1148
|
|
|
1148
|
return {
|
|
1149
|
return {
|
|
1149
|
'branch': _branch_name,
|
|
1150
|
'branch': _branch_name,
|
|
1150
|
'sha': _sha_commit_id,
|
|
1151
|
'sha': _sha_commit_id,
|
|
1151
|
'is_head': is_head,
|
|
1152
|
'is_head': is_head,
|
|
1152
|
'path_exists': path_exist
|
|
1153
|
'path_exists': path_exist
|
|
1153
|
}
|
|
1154
|
}
|
|
1154
|
|
|
1155
|
|
|
1155
|
@LoginRequired()
|
|
1156
|
@LoginRequired()
|
|
1156
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1157
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1157
|
def repo_files_remove_file(self):
|
|
1158
|
def repo_files_remove_file(self):
|
|
1158
|
_ = self.request.translate
|
|
1159
|
_ = self.request.translate
|
|
1159
|
c = self.load_default_context()
|
|
1160
|
c = self.load_default_context()
|
|
1160
|
commit_id, f_path = self._get_commit_and_path()
|
|
1161
|
commit_id, f_path = self._get_commit_and_path()
|
|
1161
|
|
|
1162
|
|
|
1162
|
self._ensure_not_locked()
|
|
1163
|
self._ensure_not_locked()
|
|
1163
|
_branch_name, _sha_commit_id, is_head = \
|
|
1164
|
_branch_name, _sha_commit_id, is_head = \
|
|
1164
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1165
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1165
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1166
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1166
|
|
|
1167
|
|
|
1167
|
self.forbid_non_head(is_head, f_path)
|
|
1168
|
self.forbid_non_head(is_head, f_path)
|
|
1168
|
self.check_branch_permission(_branch_name)
|
|
1169
|
self.check_branch_permission(_branch_name)
|
|
1169
|
|
|
1170
|
|
|
1170
|
c.commit = self._get_commit_or_redirect(commit_id)
|
|
1171
|
c.commit = self._get_commit_or_redirect(commit_id)
|
|
1171
|
c.file = self._get_filenode_or_redirect(c.commit, f_path)
|
|
1172
|
c.file = self._get_filenode_or_redirect(c.commit, f_path)
|
|
1172
|
|
|
1173
|
|
|
1173
|
c.default_message = _(
|
|
1174
|
c.default_message = _(
|
|
1174
|
'Deleted file {} via RhodeCode Enterprise').format(f_path)
|
|
1175
|
'Deleted file {} via RhodeCode Enterprise').format(f_path)
|
|
1175
|
c.f_path = f_path
|
|
1176
|
c.f_path = f_path
|
|
1176
|
|
|
1177
|
|
|
1177
|
return self._get_template_context(c)
|
|
1178
|
return self._get_template_context(c)
|
|
1178
|
|
|
1179
|
|
|
1179
|
@LoginRequired()
|
|
1180
|
@LoginRequired()
|
|
1180
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1181
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1181
|
@CSRFRequired()
|
|
1182
|
@CSRFRequired()
|
|
1182
|
def repo_files_delete_file(self):
|
|
1183
|
def repo_files_delete_file(self):
|
|
1183
|
_ = self.request.translate
|
|
1184
|
_ = self.request.translate
|
|
1184
|
|
|
1185
|
|
|
1185
|
c = self.load_default_context()
|
|
1186
|
c = self.load_default_context()
|
|
1186
|
commit_id, f_path = self._get_commit_and_path()
|
|
1187
|
commit_id, f_path = self._get_commit_and_path()
|
|
1187
|
|
|
1188
|
|
|
1188
|
self._ensure_not_locked()
|
|
1189
|
self._ensure_not_locked()
|
|
1189
|
_branch_name, _sha_commit_id, is_head = \
|
|
1190
|
_branch_name, _sha_commit_id, is_head = \
|
|
1190
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1191
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1191
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1192
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1192
|
|
|
1193
|
|
|
1193
|
self.forbid_non_head(is_head, f_path)
|
|
1194
|
self.forbid_non_head(is_head, f_path)
|
|
1194
|
self.check_branch_permission(_branch_name)
|
|
1195
|
self.check_branch_permission(_branch_name)
|
|
1195
|
|
|
1196
|
|
|
1196
|
c.commit = self._get_commit_or_redirect(commit_id)
|
|
1197
|
c.commit = self._get_commit_or_redirect(commit_id)
|
|
1197
|
c.file = self._get_filenode_or_redirect(c.commit, f_path)
|
|
1198
|
c.file = self._get_filenode_or_redirect(c.commit, f_path)
|
|
1198
|
|
|
1199
|
|
|
1199
|
c.default_message = _(
|
|
1200
|
c.default_message = _(
|
|
1200
|
'Deleted file {} via RhodeCode Enterprise').format(f_path)
|
|
1201
|
'Deleted file {} via RhodeCode Enterprise').format(f_path)
|
|
1201
|
c.f_path = f_path
|
|
1202
|
c.f_path = f_path
|
|
1202
|
node_path = f_path
|
|
1203
|
node_path = f_path
|
|
1203
|
author = self._rhodecode_db_user.full_contact
|
|
1204
|
author = self._rhodecode_db_user.full_contact
|
|
1204
|
message = self.request.POST.get('message') or c.default_message
|
|
1205
|
message = self.request.POST.get('message') or c.default_message
|
|
1205
|
try:
|
|
1206
|
try:
|
|
1206
|
nodes = {
|
|
1207
|
nodes = {
|
|
1207
|
safe_bytes(node_path): {
|
|
1208
|
safe_bytes(node_path): {
|
|
1208
|
'content': b''
|
|
1209
|
'content': b''
|
|
1209
|
}
|
|
1210
|
}
|
|
1210
|
}
|
|
1211
|
}
|
|
1211
|
ScmModel().delete_nodes(
|
|
1212
|
ScmModel().delete_nodes(
|
|
1212
|
user=self._rhodecode_db_user.user_id, repo=self.db_repo,
|
|
1213
|
user=self._rhodecode_db_user.user_id, repo=self.db_repo,
|
|
1213
|
message=message,
|
|
1214
|
message=message,
|
|
1214
|
nodes=nodes,
|
|
1215
|
nodes=nodes,
|
|
1215
|
parent_commit=c.commit,
|
|
1216
|
parent_commit=c.commit,
|
|
1216
|
author=author,
|
|
1217
|
author=author,
|
|
1217
|
)
|
|
1218
|
)
|
|
1218
|
|
|
1219
|
|
|
1219
|
h.flash(
|
|
1220
|
h.flash(
|
|
1220
|
_('Successfully deleted file `{}`').format(
|
|
1221
|
_('Successfully deleted file `{}`').format(
|
|
1221
|
h.escape(f_path)), category='success')
|
|
1222
|
h.escape(f_path)), category='success')
|
|
1222
|
except Exception:
|
|
1223
|
except Exception:
|
|
1223
|
log.exception('Error during commit operation')
|
|
1224
|
log.exception('Error during commit operation')
|
|
1224
|
h.flash(_('Error occurred during commit'), category='error')
|
|
1225
|
h.flash(_('Error occurred during commit'), category='error')
|
|
1225
|
raise HTTPFound(
|
|
1226
|
raise HTTPFound(
|
|
1226
|
h.route_path('repo_commit', repo_name=self.db_repo_name,
|
|
1227
|
h.route_path('repo_commit', repo_name=self.db_repo_name,
|
|
1227
|
commit_id='tip'))
|
|
1228
|
commit_id='tip'))
|
|
1228
|
|
|
1229
|
|
|
1229
|
@LoginRequired()
|
|
1230
|
@LoginRequired()
|
|
1230
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1231
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1231
|
def repo_files_edit_file(self):
|
|
1232
|
def repo_files_edit_file(self):
|
|
1232
|
_ = self.request.translate
|
|
1233
|
_ = self.request.translate
|
|
1233
|
c = self.load_default_context()
|
|
1234
|
c = self.load_default_context()
|
|
1234
|
commit_id, f_path = self._get_commit_and_path()
|
|
1235
|
commit_id, f_path = self._get_commit_and_path()
|
|
1235
|
|
|
1236
|
|
|
1236
|
self._ensure_not_locked()
|
|
1237
|
self._ensure_not_locked()
|
|
1237
|
_branch_name, _sha_commit_id, is_head = \
|
|
1238
|
_branch_name, _sha_commit_id, is_head = \
|
|
1238
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1239
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1239
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1240
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1240
|
|
|
1241
|
|
|
1241
|
self.forbid_non_head(is_head, f_path, commit_id=commit_id)
|
|
1242
|
self.forbid_non_head(is_head, f_path, commit_id=commit_id)
|
|
1242
|
self.check_branch_permission(_branch_name, commit_id=commit_id)
|
|
1243
|
self.check_branch_permission(_branch_name, commit_id=commit_id)
|
|
1243
|
|
|
1244
|
|
|
1244
|
c.commit = self._get_commit_or_redirect(commit_id)
|
|
1245
|
c.commit = self._get_commit_or_redirect(commit_id)
|
|
1245
|
c.file = self._get_filenode_or_redirect(c.commit, f_path)
|
|
1246
|
c.file = self._get_filenode_or_redirect(c.commit, f_path)
|
|
1246
|
|
|
1247
|
|
|
1247
|
if c.file.is_binary:
|
|
1248
|
if c.file.is_binary:
|
|
1248
|
files_url = h.route_path(
|
|
1249
|
files_url = h.route_path(
|
|
1249
|
'repo_files',
|
|
1250
|
'repo_files',
|
|
1250
|
repo_name=self.db_repo_name,
|
|
1251
|
repo_name=self.db_repo_name,
|
|
1251
|
commit_id=c.commit.raw_id, f_path=f_path)
|
|
1252
|
commit_id=c.commit.raw_id, f_path=f_path)
|
|
1252
|
raise HTTPFound(files_url)
|
|
1253
|
raise HTTPFound(files_url)
|
|
1253
|
|
|
1254
|
|
|
1254
|
c.default_message = _('Edited file {} via RhodeCode Enterprise').format(f_path)
|
|
1255
|
c.default_message = _('Edited file {} via RhodeCode Enterprise').format(f_path)
|
|
1255
|
c.f_path = f_path
|
|
1256
|
c.f_path = f_path
|
|
1256
|
|
|
1257
|
|
|
1257
|
return self._get_template_context(c)
|
|
1258
|
return self._get_template_context(c)
|
|
1258
|
|
|
1259
|
|
|
1259
|
@LoginRequired()
|
|
1260
|
@LoginRequired()
|
|
1260
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1261
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1261
|
@CSRFRequired()
|
|
1262
|
@CSRFRequired()
|
|
1262
|
def repo_files_update_file(self):
|
|
1263
|
def repo_files_update_file(self):
|
|
1263
|
_ = self.request.translate
|
|
1264
|
_ = self.request.translate
|
|
1264
|
c = self.load_default_context()
|
|
1265
|
c = self.load_default_context()
|
|
1265
|
commit_id, f_path = self._get_commit_and_path()
|
|
1266
|
commit_id, f_path = self._get_commit_and_path()
|
|
1266
|
|
|
1267
|
|
|
1267
|
self._ensure_not_locked()
|
|
1268
|
self._ensure_not_locked()
|
|
1268
|
|
|
1269
|
|
|
1269
|
c.commit = self._get_commit_or_redirect(commit_id)
|
|
1270
|
c.commit = self._get_commit_or_redirect(commit_id)
|
|
1270
|
c.file = self._get_filenode_or_redirect(c.commit, f_path)
|
|
1271
|
c.file = self._get_filenode_or_redirect(c.commit, f_path)
|
|
1271
|
|
|
1272
|
|
|
1272
|
if c.file.is_binary:
|
|
1273
|
if c.file.is_binary:
|
|
1273
|
raise HTTPFound(h.route_path('repo_files', repo_name=self.db_repo_name,
|
|
1274
|
raise HTTPFound(h.route_path('repo_files', repo_name=self.db_repo_name,
|
|
1274
|
commit_id=c.commit.raw_id, f_path=f_path))
|
|
1275
|
commit_id=c.commit.raw_id, f_path=f_path))
|
|
1275
|
|
|
1276
|
|
|
1276
|
_branch_name, _sha_commit_id, is_head = \
|
|
1277
|
_branch_name, _sha_commit_id, is_head = \
|
|
1277
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1278
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1278
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1279
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1279
|
|
|
1280
|
|
|
1280
|
self.forbid_non_head(is_head, f_path, commit_id=commit_id)
|
|
1281
|
self.forbid_non_head(is_head, f_path, commit_id=commit_id)
|
|
1281
|
self.check_branch_permission(_branch_name, commit_id=commit_id)
|
|
1282
|
self.check_branch_permission(_branch_name, commit_id=commit_id)
|
|
1282
|
|
|
1283
|
|
|
1283
|
c.default_message = _('Edited file {} via RhodeCode Enterprise').format(f_path)
|
|
1284
|
c.default_message = _('Edited file {} via RhodeCode Enterprise').format(f_path)
|
|
1284
|
c.f_path = f_path
|
|
1285
|
c.f_path = f_path
|
|
1285
|
|
|
1286
|
|
|
1286
|
old_content = c.file.str_content
|
|
1287
|
old_content = c.file.str_content
|
|
1287
|
sl = old_content.splitlines(1)
|
|
1288
|
sl = old_content.splitlines(1)
|
|
1288
|
first_line = sl[0] if sl else ''
|
|
1289
|
first_line = sl[0] if sl else ''
|
|
1289
|
|
|
1290
|
|
|
1290
|
r_post = self.request.POST
|
|
1291
|
r_post = self.request.POST
|
|
1291
|
# line endings: 0 - Unix, 1 - Mac, 2 - DOS
|
|
1292
|
# line endings: 0 - Unix, 1 - Mac, 2 - DOS
|
|
1292
|
line_ending_mode = detect_mode(first_line, 0)
|
|
1293
|
line_ending_mode = detect_mode(first_line, 0)
|
|
1293
|
content = convert_line_endings(r_post.get('content', ''), line_ending_mode)
|
|
1294
|
content = convert_line_endings(r_post.get('content', ''), line_ending_mode)
|
|
1294
|
|
|
1295
|
|
|
1295
|
message = r_post.get('message') or c.default_message
|
|
1296
|
message = r_post.get('message') or c.default_message
|
|
1296
|
|
|
1297
|
|
|
1297
|
org_node_path = c.file.str_path
|
|
1298
|
org_node_path = c.file.str_path
|
|
1298
|
filename = r_post['filename']
|
|
1299
|
filename = r_post['filename']
|
|
1299
|
|
|
1300
|
|
|
1300
|
root_path = c.file.dir_path
|
|
1301
|
root_path = c.file.dir_path
|
|
1301
|
pure_path = self.create_pure_path(root_path, filename)
|
|
1302
|
pure_path = self.create_pure_path(root_path, filename)
|
|
1302
|
node_path = pure_path.as_posix()
|
|
1303
|
node_path = pure_path.as_posix()
|
|
1303
|
|
|
1304
|
|
|
1304
|
default_redirect_url = h.route_path('repo_commit', repo_name=self.db_repo_name,
|
|
1305
|
default_redirect_url = h.route_path('repo_commit', repo_name=self.db_repo_name,
|
|
1305
|
commit_id=commit_id)
|
|
1306
|
commit_id=commit_id)
|
|
1306
|
if content == old_content and node_path == org_node_path:
|
|
1307
|
if content == old_content and node_path == org_node_path:
|
|
1307
|
h.flash(_('No changes detected on {}').format(h.escape(org_node_path)),
|
|
1308
|
h.flash(_('No changes detected on {}').format(h.escape(org_node_path)),
|
|
1308
|
category='warning')
|
|
1309
|
category='warning')
|
|
1309
|
raise HTTPFound(default_redirect_url)
|
|
1310
|
raise HTTPFound(default_redirect_url)
|
|
1310
|
|
|
1311
|
|
|
1311
|
try:
|
|
1312
|
try:
|
|
1312
|
mapping = {
|
|
1313
|
mapping = {
|
|
1313
|
c.file.bytes_path: {
|
|
1314
|
c.file.bytes_path: {
|
|
1314
|
'org_filename': org_node_path,
|
|
1315
|
'org_filename': org_node_path,
|
|
1315
|
'filename': safe_bytes(node_path),
|
|
1316
|
'filename': safe_bytes(node_path),
|
|
1316
|
'content': safe_bytes(content),
|
|
1317
|
'content': safe_bytes(content),
|
|
1317
|
'lexer': '',
|
|
1318
|
'lexer': '',
|
|
1318
|
'op': 'mod',
|
|
1319
|
'op': 'mod',
|
|
1319
|
'mode': c.file.mode
|
|
1320
|
'mode': c.file.mode
|
|
1320
|
}
|
|
1321
|
}
|
|
1321
|
}
|
|
1322
|
}
|
|
1322
|
|
|
1323
|
|
|
1323
|
commit = ScmModel().update_nodes(
|
|
1324
|
commit = ScmModel().update_nodes(
|
|
1324
|
user=self._rhodecode_db_user.user_id,
|
|
1325
|
user=self._rhodecode_db_user.user_id,
|
|
1325
|
repo=self.db_repo,
|
|
1326
|
repo=self.db_repo,
|
|
1326
|
message=message,
|
|
1327
|
message=message,
|
|
1327
|
nodes=mapping,
|
|
1328
|
nodes=mapping,
|
|
1328
|
parent_commit=c.commit,
|
|
1329
|
parent_commit=c.commit,
|
|
1329
|
)
|
|
1330
|
)
|
|
1330
|
|
|
1331
|
|
|
1331
|
h.flash(_('Successfully committed changes to file `{}`').format(
|
|
1332
|
h.flash(_('Successfully committed changes to file `{}`').format(
|
|
1332
|
h.escape(f_path)), category='success')
|
|
1333
|
h.escape(f_path)), category='success')
|
|
1333
|
default_redirect_url = h.route_path(
|
|
1334
|
default_redirect_url = h.route_path(
|
|
1334
|
'repo_commit', repo_name=self.db_repo_name, commit_id=commit.raw_id)
|
|
1335
|
'repo_commit', repo_name=self.db_repo_name, commit_id=commit.raw_id)
|
|
1335
|
|
|
1336
|
|
|
1336
|
except Exception:
|
|
1337
|
except Exception:
|
|
1337
|
log.exception('Error occurred during commit')
|
|
1338
|
log.exception('Error occurred during commit')
|
|
1338
|
h.flash(_('Error occurred during commit'), category='error')
|
|
1339
|
h.flash(_('Error occurred during commit'), category='error')
|
|
1339
|
|
|
1340
|
|
|
1340
|
raise HTTPFound(default_redirect_url)
|
|
1341
|
raise HTTPFound(default_redirect_url)
|
|
1341
|
|
|
1342
|
|
|
1342
|
@LoginRequired()
|
|
1343
|
@LoginRequired()
|
|
1343
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1344
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1344
|
def repo_files_add_file(self):
|
|
1345
|
def repo_files_add_file(self):
|
|
1345
|
_ = self.request.translate
|
|
1346
|
_ = self.request.translate
|
|
1346
|
c = self.load_default_context()
|
|
1347
|
c = self.load_default_context()
|
|
1347
|
commit_id, f_path = self._get_commit_and_path()
|
|
1348
|
commit_id, f_path = self._get_commit_and_path()
|
|
1348
|
|
|
1349
|
|
|
1349
|
self._ensure_not_locked()
|
|
1350
|
self._ensure_not_locked()
|
|
1350
|
|
|
1351
|
|
|
1351
|
# Check if we need to use this page to upload binary
|
|
1352
|
# Check if we need to use this page to upload binary
|
|
1352
|
upload_binary = str2bool(self.request.params.get('upload_binary', False))
|
|
1353
|
upload_binary = str2bool(self.request.params.get('upload_binary', False))
|
|
1353
|
|
|
1354
|
|
|
1354
|
c.commit = self._get_commit_or_redirect(commit_id, redirect_after=False)
|
|
1355
|
c.commit = self._get_commit_or_redirect(commit_id, redirect_after=False)
|
|
1355
|
if c.commit is None:
|
|
1356
|
if c.commit is None:
|
|
1356
|
c.commit = EmptyCommit(alias=self.rhodecode_vcs_repo.alias)
|
|
1357
|
c.commit = EmptyCommit(alias=self.rhodecode_vcs_repo.alias)
|
|
1357
|
|
|
1358
|
|
|
1358
|
if self.rhodecode_vcs_repo.is_empty():
|
|
1359
|
if self.rhodecode_vcs_repo.is_empty():
|
|
1359
|
# for empty repository we cannot check for current branch, we rely on
|
|
1360
|
# for empty repository we cannot check for current branch, we rely on
|
|
1360
|
# c.commit.branch instead
|
|
1361
|
# c.commit.branch instead
|
|
1361
|
_branch_name, _sha_commit_id, is_head = c.commit.branch, '', True
|
|
1362
|
_branch_name, _sha_commit_id, is_head = c.commit.branch, '', True
|
|
1362
|
else:
|
|
1363
|
else:
|
|
1363
|
_branch_name, _sha_commit_id, is_head = \
|
|
1364
|
_branch_name, _sha_commit_id, is_head = \
|
|
1364
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1365
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1365
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1366
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1366
|
|
|
1367
|
|
|
1367
|
self.forbid_non_head(is_head, f_path, commit_id=commit_id)
|
|
1368
|
self.forbid_non_head(is_head, f_path, commit_id=commit_id)
|
|
1368
|
self.check_branch_permission(_branch_name, commit_id=commit_id)
|
|
1369
|
self.check_branch_permission(_branch_name, commit_id=commit_id)
|
|
1369
|
|
|
1370
|
|
|
1370
|
c.default_message = (_('Added file via RhodeCode Enterprise')) \
|
|
1371
|
c.default_message = (_('Added file via RhodeCode Enterprise')) \
|
|
1371
|
if not upload_binary else (_('Edited file {} via RhodeCode Enterprise').format(f_path))
|
|
1372
|
if not upload_binary else (_('Edited file {} via RhodeCode Enterprise').format(f_path))
|
|
1372
|
c.f_path = f_path.lstrip('/') # ensure not relative path
|
|
1373
|
c.f_path = f_path.lstrip('/') # ensure not relative path
|
|
1373
|
c.replace_binary = upload_binary
|
|
1374
|
c.replace_binary = upload_binary
|
|
1374
|
|
|
1375
|
|
|
1375
|
return self._get_template_context(c)
|
|
1376
|
return self._get_template_context(c)
|
|
1376
|
|
|
1377
|
|
|
1377
|
@LoginRequired()
|
|
1378
|
@LoginRequired()
|
|
1378
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1379
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1379
|
@CSRFRequired()
|
|
1380
|
@CSRFRequired()
|
|
1380
|
def repo_files_create_file(self):
|
|
1381
|
def repo_files_create_file(self):
|
|
1381
|
_ = self.request.translate
|
|
1382
|
_ = self.request.translate
|
|
1382
|
c = self.load_default_context()
|
|
1383
|
c = self.load_default_context()
|
|
1383
|
commit_id, f_path = self._get_commit_and_path()
|
|
1384
|
commit_id, f_path = self._get_commit_and_path()
|
|
1384
|
|
|
1385
|
|
|
1385
|
self._ensure_not_locked()
|
|
1386
|
self._ensure_not_locked()
|
|
1386
|
|
|
1387
|
|
|
1387
|
c.commit = self._get_commit_or_redirect(commit_id, redirect_after=False)
|
|
1388
|
c.commit = self._get_commit_or_redirect(commit_id, redirect_after=False)
|
|
1388
|
if c.commit is None:
|
|
1389
|
if c.commit is None:
|
|
1389
|
c.commit = EmptyCommit(alias=self.rhodecode_vcs_repo.alias)
|
|
1390
|
c.commit = EmptyCommit(alias=self.rhodecode_vcs_repo.alias)
|
|
1390
|
|
|
1391
|
|
|
1391
|
# calculate redirect URL
|
|
1392
|
# calculate redirect URL
|
|
1392
|
if self.rhodecode_vcs_repo.is_empty():
|
|
1393
|
if self.rhodecode_vcs_repo.is_empty():
|
|
1393
|
default_redirect_url = h.route_path(
|
|
1394
|
default_redirect_url = h.route_path(
|
|
1394
|
'repo_summary', repo_name=self.db_repo_name)
|
|
1395
|
'repo_summary', repo_name=self.db_repo_name)
|
|
1395
|
else:
|
|
1396
|
else:
|
|
1396
|
default_redirect_url = h.route_path(
|
|
1397
|
default_redirect_url = h.route_path(
|
|
1397
|
'repo_commit', repo_name=self.db_repo_name, commit_id='tip')
|
|
1398
|
'repo_commit', repo_name=self.db_repo_name, commit_id='tip')
|
|
1398
|
|
|
1399
|
|
|
1399
|
if self.rhodecode_vcs_repo.is_empty():
|
|
1400
|
if self.rhodecode_vcs_repo.is_empty():
|
|
1400
|
# for empty repository we cannot check for current branch, we rely on
|
|
1401
|
# for empty repository we cannot check for current branch, we rely on
|
|
1401
|
# c.commit.branch instead
|
|
1402
|
# c.commit.branch instead
|
|
1402
|
_branch_name, _sha_commit_id, is_head = c.commit.branch, '', True
|
|
1403
|
_branch_name, _sha_commit_id, is_head = c.commit.branch, '', True
|
|
1403
|
else:
|
|
1404
|
else:
|
|
1404
|
_branch_name, _sha_commit_id, is_head = \
|
|
1405
|
_branch_name, _sha_commit_id, is_head = \
|
|
1405
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1406
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1406
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1407
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1407
|
|
|
1408
|
|
|
1408
|
self.forbid_non_head(is_head, f_path, commit_id=commit_id)
|
|
1409
|
self.forbid_non_head(is_head, f_path, commit_id=commit_id)
|
|
1409
|
self.check_branch_permission(_branch_name, commit_id=commit_id)
|
|
1410
|
self.check_branch_permission(_branch_name, commit_id=commit_id)
|
|
1410
|
|
|
1411
|
|
|
1411
|
c.default_message = (_('Added file via RhodeCode Enterprise'))
|
|
1412
|
c.default_message = (_('Added file via RhodeCode Enterprise'))
|
|
1412
|
c.f_path = f_path
|
|
1413
|
c.f_path = f_path
|
|
1413
|
|
|
1414
|
|
|
1414
|
r_post = self.request.POST
|
|
1415
|
r_post = self.request.POST
|
|
1415
|
message = r_post.get('message') or c.default_message
|
|
1416
|
message = r_post.get('message') or c.default_message
|
|
1416
|
filename = r_post.get('filename')
|
|
1417
|
filename = r_post.get('filename')
|
|
1417
|
unix_mode = 0
|
|
1418
|
unix_mode = 0
|
|
1418
|
|
|
1419
|
|
|
1419
|
if not filename:
|
|
1420
|
if not filename:
|
|
1420
|
# If there's no commit, redirect to repo summary
|
|
1421
|
# If there's no commit, redirect to repo summary
|
|
1421
|
if type(c.commit) is EmptyCommit:
|
|
1422
|
if type(c.commit) is EmptyCommit:
|
|
1422
|
redirect_url = h.route_path(
|
|
1423
|
redirect_url = h.route_path(
|
|
1423
|
'repo_summary', repo_name=self.db_repo_name)
|
|
1424
|
'repo_summary', repo_name=self.db_repo_name)
|
|
1424
|
else:
|
|
1425
|
else:
|
|
1425
|
redirect_url = default_redirect_url
|
|
1426
|
redirect_url = default_redirect_url
|
|
1426
|
h.flash(_('No filename specified'), category='warning')
|
|
1427
|
h.flash(_('No filename specified'), category='warning')
|
|
1427
|
raise HTTPFound(redirect_url)
|
|
1428
|
raise HTTPFound(redirect_url)
|
|
1428
|
|
|
1429
|
|
|
1429
|
root_path = f_path
|
|
1430
|
root_path = f_path
|
|
1430
|
pure_path = self.create_pure_path(root_path, filename)
|
|
1431
|
pure_path = self.create_pure_path(root_path, filename)
|
|
1431
|
node_path = pure_path.as_posix().lstrip('/')
|
|
1432
|
node_path = pure_path.as_posix().lstrip('/')
|
|
1432
|
|
|
1433
|
|
|
1433
|
author = self._rhodecode_db_user.full_contact
|
|
1434
|
author = self._rhodecode_db_user.full_contact
|
|
1434
|
content = convert_line_endings(r_post.get('content', ''), unix_mode)
|
|
1435
|
content = convert_line_endings(r_post.get('content', ''), unix_mode)
|
|
1435
|
nodes = {
|
|
1436
|
nodes = {
|
|
1436
|
safe_bytes(node_path): {
|
|
1437
|
safe_bytes(node_path): {
|
|
1437
|
'content': safe_bytes(content)
|
|
1438
|
'content': safe_bytes(content)
|
|
1438
|
}
|
|
1439
|
}
|
|
1439
|
}
|
|
1440
|
}
|
|
1440
|
|
|
1441
|
|
|
1441
|
try:
|
|
1442
|
try:
|
|
1442
|
|
|
1443
|
|
|
1443
|
commit = ScmModel().create_nodes(
|
|
1444
|
commit = ScmModel().create_nodes(
|
|
1444
|
user=self._rhodecode_db_user.user_id,
|
|
1445
|
user=self._rhodecode_db_user.user_id,
|
|
1445
|
repo=self.db_repo,
|
|
1446
|
repo=self.db_repo,
|
|
1446
|
message=message,
|
|
1447
|
message=message,
|
|
1447
|
nodes=nodes,
|
|
1448
|
nodes=nodes,
|
|
1448
|
parent_commit=c.commit,
|
|
1449
|
parent_commit=c.commit,
|
|
1449
|
author=author,
|
|
1450
|
author=author,
|
|
1450
|
)
|
|
1451
|
)
|
|
1451
|
|
|
1452
|
|
|
1452
|
h.flash(_('Successfully committed new file `{}`').format(
|
|
1453
|
h.flash(_('Successfully committed new file `{}`').format(
|
|
1453
|
h.escape(node_path)), category='success')
|
|
1454
|
h.escape(node_path)), category='success')
|
|
1454
|
|
|
1455
|
|
|
1455
|
default_redirect_url = h.route_path(
|
|
1456
|
default_redirect_url = h.route_path(
|
|
1456
|
'repo_commit', repo_name=self.db_repo_name, commit_id=commit.raw_id)
|
|
1457
|
'repo_commit', repo_name=self.db_repo_name, commit_id=commit.raw_id)
|
|
1457
|
|
|
1458
|
|
|
1458
|
except NonRelativePathError:
|
|
1459
|
except NonRelativePathError:
|
|
1459
|
log.exception('Non Relative path found')
|
|
1460
|
log.exception('Non Relative path found')
|
|
1460
|
h.flash(_('The location specified must be a relative path and must not '
|
|
1461
|
h.flash(_('The location specified must be a relative path and must not '
|
|
1461
|
'contain .. in the path'), category='warning')
|
|
1462
|
'contain .. in the path'), category='warning')
|
|
1462
|
raise HTTPFound(default_redirect_url)
|
|
1463
|
raise HTTPFound(default_redirect_url)
|
|
1463
|
except (NodeError, NodeAlreadyExistsError) as e:
|
|
1464
|
except (NodeError, NodeAlreadyExistsError) as e:
|
|
1464
|
h.flash(h.escape(safe_str(e)), category='error')
|
|
1465
|
h.flash(h.escape(safe_str(e)), category='error')
|
|
1465
|
except Exception:
|
|
1466
|
except Exception:
|
|
1466
|
log.exception('Error occurred during commit')
|
|
1467
|
log.exception('Error occurred during commit')
|
|
1467
|
h.flash(_('Error occurred during commit'), category='error')
|
|
1468
|
h.flash(_('Error occurred during commit'), category='error')
|
|
1468
|
|
|
1469
|
|
|
1469
|
raise HTTPFound(default_redirect_url)
|
|
1470
|
raise HTTPFound(default_redirect_url)
|
|
1470
|
|
|
1471
|
|
|
1471
|
@LoginRequired()
|
|
1472
|
@LoginRequired()
|
|
1472
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1473
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1473
|
@CSRFRequired()
|
|
1474
|
@CSRFRequired()
|
|
1474
|
def repo_files_upload_file(self):
|
|
1475
|
def repo_files_upload_file(self):
|
|
1475
|
_ = self.request.translate
|
|
1476
|
_ = self.request.translate
|
|
1476
|
c = self.load_default_context()
|
|
1477
|
c = self.load_default_context()
|
|
1477
|
commit_id, f_path = self._get_commit_and_path()
|
|
1478
|
commit_id, f_path = self._get_commit_and_path()
|
|
1478
|
|
|
1479
|
|
|
1479
|
self._ensure_not_locked()
|
|
1480
|
self._ensure_not_locked()
|
|
1480
|
|
|
1481
|
|
|
1481
|
c.commit = self._get_commit_or_redirect(commit_id, redirect_after=False)
|
|
1482
|
c.commit = self._get_commit_or_redirect(commit_id, redirect_after=False)
|
|
1482
|
if c.commit is None:
|
|
1483
|
if c.commit is None:
|
|
1483
|
c.commit = EmptyCommit(alias=self.rhodecode_vcs_repo.alias)
|
|
1484
|
c.commit = EmptyCommit(alias=self.rhodecode_vcs_repo.alias)
|
|
1484
|
|
|
1485
|
|
|
1485
|
# calculate redirect URL
|
|
1486
|
# calculate redirect URL
|
|
1486
|
if self.rhodecode_vcs_repo.is_empty():
|
|
1487
|
if self.rhodecode_vcs_repo.is_empty():
|
|
1487
|
default_redirect_url = h.route_path(
|
|
1488
|
default_redirect_url = h.route_path(
|
|
1488
|
'repo_summary', repo_name=self.db_repo_name)
|
|
1489
|
'repo_summary', repo_name=self.db_repo_name)
|
|
1489
|
else:
|
|
1490
|
else:
|
|
1490
|
default_redirect_url = h.route_path(
|
|
1491
|
default_redirect_url = h.route_path(
|
|
1491
|
'repo_commit', repo_name=self.db_repo_name, commit_id='tip')
|
|
1492
|
'repo_commit', repo_name=self.db_repo_name, commit_id='tip')
|
|
1492
|
|
|
1493
|
|
|
1493
|
if self.rhodecode_vcs_repo.is_empty():
|
|
1494
|
if self.rhodecode_vcs_repo.is_empty():
|
|
1494
|
# for empty repository we cannot check for current branch, we rely on
|
|
1495
|
# for empty repository we cannot check for current branch, we rely on
|
|
1495
|
# c.commit.branch instead
|
|
1496
|
# c.commit.branch instead
|
|
1496
|
_branch_name, _sha_commit_id, is_head = c.commit.branch, '', True
|
|
1497
|
_branch_name, _sha_commit_id, is_head = c.commit.branch, '', True
|
|
1497
|
else:
|
|
1498
|
else:
|
|
1498
|
_branch_name, _sha_commit_id, is_head = \
|
|
1499
|
_branch_name, _sha_commit_id, is_head = \
|
|
1499
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1500
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1500
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1501
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1501
|
|
|
1502
|
|
|
1502
|
error = self.forbid_non_head(is_head, f_path, json_mode=True)
|
|
1503
|
error = self.forbid_non_head(is_head, f_path, json_mode=True)
|
|
1503
|
if error:
|
|
1504
|
if error:
|
|
1504
|
return {
|
|
1505
|
return {
|
|
1505
|
'error': error,
|
|
1506
|
'error': error,
|
|
1506
|
'redirect_url': default_redirect_url
|
|
1507
|
'redirect_url': default_redirect_url
|
|
1507
|
}
|
|
1508
|
}
|
|
1508
|
error = self.check_branch_permission(_branch_name, json_mode=True)
|
|
1509
|
error = self.check_branch_permission(_branch_name, json_mode=True)
|
|
1509
|
if error:
|
|
1510
|
if error:
|
|
1510
|
return {
|
|
1511
|
return {
|
|
1511
|
'error': error,
|
|
1512
|
'error': error,
|
|
1512
|
'redirect_url': default_redirect_url
|
|
1513
|
'redirect_url': default_redirect_url
|
|
1513
|
}
|
|
1514
|
}
|
|
1514
|
|
|
1515
|
|
|
1515
|
c.default_message = (_('Added file via RhodeCode Enterprise'))
|
|
1516
|
c.default_message = (_('Added file via RhodeCode Enterprise'))
|
|
1516
|
c.f_path = f_path
|
|
1517
|
c.f_path = f_path
|
|
1517
|
|
|
1518
|
|
|
1518
|
r_post = self.request.POST
|
|
1519
|
r_post = self.request.POST
|
|
1519
|
|
|
1520
|
|
|
1520
|
message = c.default_message
|
|
1521
|
message = c.default_message
|
|
1521
|
user_message = r_post.getall('message')
|
|
1522
|
user_message = r_post.getall('message')
|
|
1522
|
if isinstance(user_message, list) and user_message:
|
|
1523
|
if isinstance(user_message, list) and user_message:
|
|
1523
|
# we take the first from duplicated results if it's not empty
|
|
1524
|
# we take the first from duplicated results if it's not empty
|
|
1524
|
message = user_message[0] if user_message[0] else message
|
|
1525
|
message = user_message[0] if user_message[0] else message
|
|
1525
|
|
|
1526
|
|
|
1526
|
nodes = {}
|
|
1527
|
nodes = {}
|
|
1527
|
|
|
1528
|
|
|
1528
|
for file_obj in r_post.getall('files_upload') or []:
|
|
1529
|
for file_obj in r_post.getall('files_upload') or []:
|
|
1529
|
content = file_obj.file
|
|
1530
|
content = file_obj.file
|
|
1530
|
filename = file_obj.filename
|
|
1531
|
filename = file_obj.filename
|
|
1531
|
|
|
1532
|
|
|
1532
|
root_path = f_path
|
|
1533
|
root_path = f_path
|
|
1533
|
pure_path = self.create_pure_path(root_path, filename)
|
|
1534
|
pure_path = self.create_pure_path(root_path, filename)
|
|
1534
|
node_path = pure_path.as_posix().lstrip('/')
|
|
1535
|
node_path = pure_path.as_posix().lstrip('/')
|
|
1535
|
|
|
1536
|
|
|
1536
|
nodes[safe_bytes(node_path)] = {
|
|
1537
|
nodes[safe_bytes(node_path)] = {
|
|
1537
|
'content': content
|
|
1538
|
'content': content
|
|
1538
|
}
|
|
1539
|
}
|
|
1539
|
|
|
1540
|
|
|
1540
|
if not nodes:
|
|
1541
|
if not nodes:
|
|
1541
|
error = 'missing files'
|
|
1542
|
error = 'missing files'
|
|
1542
|
return {
|
|
1543
|
return {
|
|
1543
|
'error': error,
|
|
1544
|
'error': error,
|
|
1544
|
'redirect_url': default_redirect_url
|
|
1545
|
'redirect_url': default_redirect_url
|
|
1545
|
}
|
|
1546
|
}
|
|
1546
|
|
|
1547
|
|
|
1547
|
author = self._rhodecode_db_user.full_contact
|
|
1548
|
author = self._rhodecode_db_user.full_contact
|
|
1548
|
|
|
1549
|
|
|
1549
|
try:
|
|
1550
|
try:
|
|
1550
|
commit = ScmModel().create_nodes(
|
|
1551
|
commit = ScmModel().create_nodes(
|
|
1551
|
user=self._rhodecode_db_user.user_id,
|
|
1552
|
user=self._rhodecode_db_user.user_id,
|
|
1552
|
repo=self.db_repo,
|
|
1553
|
repo=self.db_repo,
|
|
1553
|
message=message,
|
|
1554
|
message=message,
|
|
1554
|
nodes=nodes,
|
|
1555
|
nodes=nodes,
|
|
1555
|
parent_commit=c.commit,
|
|
1556
|
parent_commit=c.commit,
|
|
1556
|
author=author,
|
|
1557
|
author=author,
|
|
1557
|
)
|
|
1558
|
)
|
|
1558
|
if len(nodes) == 1:
|
|
1559
|
if len(nodes) == 1:
|
|
1559
|
flash_message = _('Successfully committed {} new files').format(len(nodes))
|
|
1560
|
flash_message = _('Successfully committed {} new files').format(len(nodes))
|
|
1560
|
else:
|
|
1561
|
else:
|
|
1561
|
flash_message = _('Successfully committed 1 new file')
|
|
1562
|
flash_message = _('Successfully committed 1 new file')
|
|
1562
|
|
|
1563
|
|
|
1563
|
h.flash(flash_message, category='success')
|
|
1564
|
h.flash(flash_message, category='success')
|
|
1564
|
|
|
1565
|
|
|
1565
|
default_redirect_url = h.route_path(
|
|
1566
|
default_redirect_url = h.route_path(
|
|
1566
|
'repo_commit', repo_name=self.db_repo_name, commit_id=commit.raw_id)
|
|
1567
|
'repo_commit', repo_name=self.db_repo_name, commit_id=commit.raw_id)
|
|
1567
|
|
|
1568
|
|
|
1568
|
except NonRelativePathError:
|
|
1569
|
except NonRelativePathError:
|
|
1569
|
log.exception('Non Relative path found')
|
|
1570
|
log.exception('Non Relative path found')
|
|
1570
|
error = _('The location specified must be a relative path and must not '
|
|
1571
|
error = _('The location specified must be a relative path and must not '
|
|
1571
|
'contain .. in the path')
|
|
1572
|
'contain .. in the path')
|
|
1572
|
h.flash(error, category='warning')
|
|
1573
|
h.flash(error, category='warning')
|
|
1573
|
|
|
1574
|
|
|
1574
|
return {
|
|
1575
|
return {
|
|
1575
|
'error': error,
|
|
1576
|
'error': error,
|
|
1576
|
'redirect_url': default_redirect_url
|
|
1577
|
'redirect_url': default_redirect_url
|
|
1577
|
}
|
|
1578
|
}
|
|
1578
|
except (NodeError, NodeAlreadyExistsError) as e:
|
|
1579
|
except (NodeError, NodeAlreadyExistsError) as e:
|
|
1579
|
error = h.escape(e)
|
|
1580
|
error = h.escape(e)
|
|
1580
|
h.flash(error, category='error')
|
|
1581
|
h.flash(error, category='error')
|
|
1581
|
|
|
1582
|
|
|
1582
|
return {
|
|
1583
|
return {
|
|
1583
|
'error': error,
|
|
1584
|
'error': error,
|
|
1584
|
'redirect_url': default_redirect_url
|
|
1585
|
'redirect_url': default_redirect_url
|
|
1585
|
}
|
|
1586
|
}
|
|
1586
|
except Exception:
|
|
1587
|
except Exception:
|
|
1587
|
log.exception('Error occurred during commit')
|
|
1588
|
log.exception('Error occurred during commit')
|
|
1588
|
error = _('Error occurred during commit')
|
|
1589
|
error = _('Error occurred during commit')
|
|
1589
|
h.flash(error, category='error')
|
|
1590
|
h.flash(error, category='error')
|
|
1590
|
return {
|
|
1591
|
return {
|
|
1591
|
'error': error,
|
|
1592
|
'error': error,
|
|
1592
|
'redirect_url': default_redirect_url
|
|
1593
|
'redirect_url': default_redirect_url
|
|
1593
|
}
|
|
1594
|
}
|
|
1594
|
|
|
1595
|
|
|
1595
|
return {
|
|
1596
|
return {
|
|
1596
|
'error': None,
|
|
1597
|
'error': None,
|
|
1597
|
'redirect_url': default_redirect_url
|
|
1598
|
'redirect_url': default_redirect_url
|
|
1598
|
}
|
|
1599
|
}
|
|
1599
|
|
|
1600
|
|
|
1600
|
@LoginRequired()
|
|
1601
|
@LoginRequired()
|
|
1601
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1602
|
@HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
|
|
1602
|
@CSRFRequired()
|
|
1603
|
@CSRFRequired()
|
|
1603
|
def repo_files_replace_file(self):
|
|
1604
|
def repo_files_replace_file(self):
|
|
1604
|
_ = self.request.translate
|
|
1605
|
_ = self.request.translate
|
|
1605
|
c = self.load_default_context()
|
|
1606
|
c = self.load_default_context()
|
|
1606
|
commit_id, f_path = self._get_commit_and_path()
|
|
1607
|
commit_id, f_path = self._get_commit_and_path()
|
|
1607
|
|
|
1608
|
|
|
1608
|
self._ensure_not_locked()
|
|
1609
|
self._ensure_not_locked()
|
|
1609
|
|
|
1610
|
|
|
1610
|
c.commit = self._get_commit_or_redirect(commit_id, redirect_after=False)
|
|
1611
|
c.commit = self._get_commit_or_redirect(commit_id, redirect_after=False)
|
|
1611
|
if c.commit is None:
|
|
1612
|
if c.commit is None:
|
|
1612
|
c.commit = EmptyCommit(alias=self.rhodecode_vcs_repo.alias)
|
|
1613
|
c.commit = EmptyCommit(alias=self.rhodecode_vcs_repo.alias)
|
|
1613
|
|
|
1614
|
|
|
1614
|
if self.rhodecode_vcs_repo.is_empty():
|
|
1615
|
if self.rhodecode_vcs_repo.is_empty():
|
|
1615
|
default_redirect_url = h.route_path(
|
|
1616
|
default_redirect_url = h.route_path(
|
|
1616
|
'repo_summary', repo_name=self.db_repo_name)
|
|
1617
|
'repo_summary', repo_name=self.db_repo_name)
|
|
1617
|
else:
|
|
1618
|
else:
|
|
1618
|
default_redirect_url = h.route_path(
|
|
1619
|
default_redirect_url = h.route_path(
|
|
1619
|
'repo_commit', repo_name=self.db_repo_name, commit_id='tip')
|
|
1620
|
'repo_commit', repo_name=self.db_repo_name, commit_id='tip')
|
|
1620
|
|
|
1621
|
|
|
1621
|
if self.rhodecode_vcs_repo.is_empty():
|
|
1622
|
if self.rhodecode_vcs_repo.is_empty():
|
|
1622
|
# for empty repository we cannot check for current branch, we rely on
|
|
1623
|
# for empty repository we cannot check for current branch, we rely on
|
|
1623
|
# c.commit.branch instead
|
|
1624
|
# c.commit.branch instead
|
|
1624
|
_branch_name, _sha_commit_id, is_head = c.commit.branch, '', True
|
|
1625
|
_branch_name, _sha_commit_id, is_head = c.commit.branch, '', True
|
|
1625
|
else:
|
|
1626
|
else:
|
|
1626
|
_branch_name, _sha_commit_id, is_head = \
|
|
1627
|
_branch_name, _sha_commit_id, is_head = \
|
|
1627
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1628
|
self._is_valid_head(commit_id, self.rhodecode_vcs_repo,
|
|
1628
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1629
|
landing_ref=self.db_repo.landing_ref_name)
|
|
1629
|
|
|
1630
|
|
|
1630
|
error = self.forbid_non_head(is_head, f_path, json_mode=True)
|
|
1631
|
error = self.forbid_non_head(is_head, f_path, json_mode=True)
|
|
1631
|
if error:
|
|
1632
|
if error:
|
|
1632
|
return {
|
|
1633
|
return {
|
|
1633
|
'error': error,
|
|
1634
|
'error': error,
|
|
1634
|
'redirect_url': default_redirect_url
|
|
1635
|
'redirect_url': default_redirect_url
|
|
1635
|
}
|
|
1636
|
}
|
|
1636
|
error = self.check_branch_permission(_branch_name, json_mode=True)
|
|
1637
|
error = self.check_branch_permission(_branch_name, json_mode=True)
|
|
1637
|
if error:
|
|
1638
|
if error:
|
|
1638
|
return {
|
|
1639
|
return {
|
|
1639
|
'error': error,
|
|
1640
|
'error': error,
|
|
1640
|
'redirect_url': default_redirect_url
|
|
1641
|
'redirect_url': default_redirect_url
|
|
1641
|
}
|
|
1642
|
}
|
|
1642
|
|
|
1643
|
|
|
1643
|
c.default_message = (_('Edited file {} via RhodeCode Enterprise').format(f_path))
|
|
1644
|
c.default_message = (_('Edited file {} via RhodeCode Enterprise').format(f_path))
|
|
1644
|
c.f_path = f_path
|
|
1645
|
c.f_path = f_path
|
|
1645
|
|
|
1646
|
|
|
1646
|
r_post = self.request.POST
|
|
1647
|
r_post = self.request.POST
|
|
1647
|
|
|
1648
|
|
|
1648
|
message = c.default_message
|
|
1649
|
message = c.default_message
|
|
1649
|
user_message = r_post.getall('message')
|
|
1650
|
user_message = r_post.getall('message')
|
|
1650
|
if isinstance(user_message, list) and user_message:
|
|
1651
|
if isinstance(user_message, list) and user_message:
|
|
1651
|
# we take the first from duplicated results if it's not empty
|
|
1652
|
# we take the first from duplicated results if it's not empty
|
|
1652
|
message = user_message[0] if user_message[0] else message
|
|
1653
|
message = user_message[0] if user_message[0] else message
|
|
1653
|
|
|
1654
|
|
|
1654
|
data_for_replacement = r_post.getall('files_upload') or []
|
|
1655
|
data_for_replacement = r_post.getall('files_upload') or []
|
|
1655
|
if (objects_count := len(data_for_replacement)) > 1:
|
|
1656
|
if (objects_count := len(data_for_replacement)) > 1:
|
|
1656
|
return {
|
|
1657
|
return {
|
|
1657
|
'error': 'too many files for replacement',
|
|
1658
|
'error': 'too many files for replacement',
|
|
1658
|
'redirect_url': default_redirect_url
|
|
1659
|
'redirect_url': default_redirect_url
|
|
1659
|
}
|
|
1660
|
}
|
|
1660
|
elif not objects_count:
|
|
1661
|
elif not objects_count:
|
|
1661
|
return {
|
|
1662
|
return {
|
|
1662
|
'error': 'missing files',
|
|
1663
|
'error': 'missing files',
|
|
1663
|
'redirect_url': default_redirect_url
|
|
1664
|
'redirect_url': default_redirect_url
|
|
1664
|
}
|
|
1665
|
}
|
|
1665
|
|
|
1666
|
|
|
1666
|
content = data_for_replacement[0].file
|
|
1667
|
content = data_for_replacement[0].file
|
|
1667
|
retrieved_filename = data_for_replacement[0].filename
|
|
1668
|
retrieved_filename = data_for_replacement[0].filename
|
|
1668
|
|
|
1669
|
|
|
1669
|
if retrieved_filename.split('.')[-1] != f_path.split('.')[-1]:
|
|
1670
|
if retrieved_filename.split('.')[-1] != f_path.split('.')[-1]:
|
|
1670
|
return {
|
|
1671
|
return {
|
|
1671
|
'error': 'file extension of uploaded file doesn\'t match an original file\'s extension',
|
|
1672
|
'error': 'file extension of uploaded file doesn\'t match an original file\'s extension',
|
|
1672
|
'redirect_url': default_redirect_url
|
|
1673
|
'redirect_url': default_redirect_url
|
|
1673
|
}
|
|
1674
|
}
|
|
1674
|
|
|
1675
|
|
|
1675
|
author = self._rhodecode_db_user.full_contact
|
|
1676
|
author = self._rhodecode_db_user.full_contact
|
|
1676
|
|
|
1677
|
|
|
1677
|
try:
|
|
1678
|
try:
|
|
1678
|
commit = ScmModel().update_binary_node(
|
|
1679
|
commit = ScmModel().update_binary_node(
|
|
1679
|
user=self._rhodecode_db_user.user_id,
|
|
1680
|
user=self._rhodecode_db_user.user_id,
|
|
1680
|
repo=self.db_repo,
|
|
1681
|
repo=self.db_repo,
|
|
1681
|
message=message,
|
|
1682
|
message=message,
|
|
1682
|
node={
|
|
1683
|
node={
|
|
1683
|
'content': content,
|
|
1684
|
'content': content,
|
|
1684
|
'file_path': f_path.encode(),
|
|
1685
|
'file_path': f_path.encode(),
|
|
1685
|
},
|
|
1686
|
},
|
|
1686
|
parent_commit=c.commit,
|
|
1687
|
parent_commit=c.commit,
|
|
1687
|
author=author,
|
|
1688
|
author=author,
|
|
1688
|
)
|
|
1689
|
)
|
|
1689
|
|
|
1690
|
|
|
1690
|
h.flash(_('Successfully committed 1 new file'), category='success')
|
|
1691
|
h.flash(_('Successfully committed 1 new file'), category='success')
|
|
1691
|
|
|
1692
|
|
|
1692
|
default_redirect_url = h.route_path(
|
|
1693
|
default_redirect_url = h.route_path(
|
|
1693
|
'repo_commit', repo_name=self.db_repo_name, commit_id=commit.raw_id)
|
|
1694
|
'repo_commit', repo_name=self.db_repo_name, commit_id=commit.raw_id)
|
|
1694
|
|
|
1695
|
|
|
1695
|
except (NodeError, NodeAlreadyExistsError) as e:
|
|
1696
|
except (NodeError, NodeAlreadyExistsError) as e:
|
|
1696
|
error = h.escape(e)
|
|
1697
|
error = h.escape(e)
|
|
1697
|
h.flash(error, category='error')
|
|
1698
|
h.flash(error, category='error')
|
|
1698
|
|
|
1699
|
|
|
1699
|
return {
|
|
1700
|
return {
|
|
1700
|
'error': error,
|
|
1701
|
'error': error,
|
|
1701
|
'redirect_url': default_redirect_url
|
|
1702
|
'redirect_url': default_redirect_url
|
|
1702
|
}
|
|
1703
|
}
|
|
1703
|
except Exception:
|
|
1704
|
except Exception:
|
|
1704
|
log.exception('Error occurred during commit')
|
|
1705
|
log.exception('Error occurred during commit')
|
|
1705
|
error = _('Error occurred during commit')
|
|
1706
|
error = _('Error occurred during commit')
|
|
1706
|
h.flash(error, category='error')
|
|
1707
|
h.flash(error, category='error')
|
|
1707
|
return {
|
|
1708
|
return {
|
|
1708
|
'error': error,
|
|
1709
|
'error': error,
|
|
1709
|
'redirect_url': default_redirect_url
|
|
1710
|
'redirect_url': default_redirect_url
|
|
1710
|
}
|
|
1711
|
}
|
|
1711
|
|
|
1712
|
|
|
1712
|
return {
|
|
1713
|
return {
|
|
1713
|
'error': None,
|
|
1714
|
'error': None,
|
|
1714
|
'redirect_url': default_redirect_url
|
|
1715
|
'redirect_url': default_redirect_url
|
|
1715
|
}
|
|
1716
|
}
|