##// END OF EJS Templates
strip: cleanup code.
marcink -
r1698:ca5ed56e default
parent child Browse files
Show More
@@ -1,110 +1,109 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2
2
3 # Copyright (C) 2011-2017 RhodeCode GmbH
3 # Copyright (C) 2017-2017 RhodeCode GmbH
4 #
4 #
5 # This program is free software: you can redistribute it and/or modify
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU Affero General Public License, version 3
6 # it under the terms of the GNU Affero General Public License, version 3
7 # (only), as published by the Free Software Foundation.
7 # (only), as published by the Free Software Foundation.
8 #
8 #
9 # This program is distributed in the hope that it will be useful,
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
12 # GNU General Public License for more details.
13 #
13 #
14 # You should have received a copy of the GNU Affero General Public License
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 #
16 #
17 # This program is dual-licensed. If you wish to learn more about the
17 # This program is dual-licensed. If you wish to learn more about the
18 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20
20
21 import logging
21 import logging
22 from pyramid.view import view_config
22 from pyramid.view import view_config
23
23
24 from rhodecode.apps._base import RepoAppView
24 from rhodecode.apps._base import RepoAppView
25 from rhodecode.lib.auth import (LoginRequired, HasRepoPermissionAnyDecorator,
25 from rhodecode.lib.auth import (LoginRequired, HasRepoPermissionAnyDecorator,
26 NotAnonymous)
26 NotAnonymous)
27
27 from rhodecode.lib.ext_json import json
28
28
29 log = logging.getLogger(__name__)
29 log = logging.getLogger(__name__)
30
30
31
31
32 class StripView(RepoAppView):
32 class StripView(RepoAppView):
33 def load_default_context(self):
33 def load_default_context(self):
34 c = self._get_local_tmpl_context()
34 c = self._get_local_tmpl_context()
35
35
36 # TODO(marcink): remove repo_info and use c.rhodecode_db_repo instead
36 # TODO(marcink): remove repo_info and use c.rhodecode_db_repo instead
37 c.repo_info = self.db_repo
37 c.repo_info = self.db_repo
38
38
39 self._register_global_c(c)
39 self._register_global_c(c)
40 return c
40 return c
41
41
42 @LoginRequired()
42 @LoginRequired()
43 @NotAnonymous()
43 @NotAnonymous()
44 @HasRepoPermissionAnyDecorator('repository.admin')
44 @HasRepoPermissionAnyDecorator('repository.admin')
45 @view_config(
45 @view_config(
46 route_name='strip', request_method='GET',
46 route_name='strip', request_method='GET',
47 renderer='rhodecode:templates/admin/repos/repo_edit.mako')
47 renderer='rhodecode:templates/admin/repos/repo_edit.mako')
48 def strip(self):
48 def strip(self):
49 c = self.load_default_context()
49 c = self.load_default_context()
50 c.active = 'strip'
50 c.active = 'strip'
51 c.strip_limit = 10
51 c.strip_limit = 10
52
52
53 return self._get_template_context(c)
53 return self._get_template_context(c)
54
54
55 @LoginRequired()
55 @LoginRequired()
56 @NotAnonymous()
56 @NotAnonymous()
57 @HasRepoPermissionAnyDecorator('repository.admin')
57 @HasRepoPermissionAnyDecorator('repository.admin')
58 @view_config(
58 @view_config(
59 route_name='strip_check', request_method='POST',
59 route_name='strip_check', request_method='POST',
60 renderer='json', xhr=True
60 renderer='json', xhr=True)
61 )
62 def strip_check(self):
61 def strip_check(self):
63 from rhodecode.lib.vcs.backends.base import EmptyCommit
62 from rhodecode.lib.vcs.backends.base import EmptyCommit
64 data = {}
63 data = {}
65 rp = self.request.POST
64 rp = self.request.POST
66 for i in range(1, 11):
65 for i in range(1, 11):
67 chset = 'changeset_id-%d'%(i,)
66 chset = 'changeset_id-%d' % (i,)
68 check = rp.get(chset)
67 check = rp.get(chset)
69 if check:
68 if check:
70 data[i] = self.db_repo.get_changeset(rp[chset])
69 data[i] = self.db_repo.get_changeset(rp[chset])
71 if isinstance(data[i], EmptyCommit):
70 if isinstance(data[i], EmptyCommit):
72 data[i] = {'rev': None, 'commit': rp[chset]}
71 data[i] = {'rev': None, 'commit': rp[chset]}
73 else:
72 else:
74 data[i] = {'rev': data[i].raw_id, 'branch': data[i].branch, 'author': data[i].author,
73 data[i] = {'rev': data[i].raw_id, 'branch': data[i].branch,
74 'author': data[i].author,
75 'comment': data[i].message}
75 'comment': data[i].message}
76 else:
76 else:
77 break
77 break
78 return data
78 return data
79
79
80 @LoginRequired()
80 @LoginRequired()
81 @NotAnonymous()
81 @NotAnonymous()
82 @HasRepoPermissionAnyDecorator('repository.admin')
82 @HasRepoPermissionAnyDecorator('repository.admin')
83 @view_config(
83 @view_config(
84 route_name='strip_execute', request_method='POST',
84 route_name='strip_execute', request_method='POST',
85 renderer='json', xhr=True
85 renderer='json', xhr=True)
86 )
87 def strip_execute(self):
86 def strip_execute(self):
88
89 from rhodecode.model.scm import ScmModel
87 from rhodecode.model.scm import ScmModel
90 from rhodecode.lib.ext_json import json
91
88
92 c = self.load_default_context()
89 c = self.load_default_context()
93 user = self._rhodecode_user
90 user = self._rhodecode_user
94 rp = self.request.POST
91 rp = self.request.POST
95 data = {}
92 data = {}
96 for idx in rp:
93 for idx in rp:
97 commit = json.loads(rp[idx])
94 commit = json.loads(rp[idx])
98 #If someone put two times the same branch
95 # If someone put two times the same branch
99 if commit['branch'] in data.keys():
96 if commit['branch'] in data.keys():
100 continue
97 continue
101 try:
98 try:
102 ScmModel().strip(repo=c.repo_info,
99 ScmModel().strip(
100 repo=c.repo_info,
103 commit_id=commit['rev'], branch=commit['branch'])
101 commit_id=commit['rev'], branch=commit['branch'])
104 log.info('Stripped commit %s from repo `%s` by %s' % (commit['rev'], c.repo_info.repo_name, user))
102 log.info('Stripped commit %s from repo `%s` by %s' % (
103 commit['rev'], c.repo_info.repo_name, user))
105 data[commit['rev']] = True
104 data[commit['rev']] = True
106 except Exception, e:
105 except Exception as e:
107 data[commit['rev']] = False
106 data[commit['rev']] = False
108 log.debug('Stripped commit %s from repo `%s` failed by %s, exeption %s' % (commit['rev'],
107 log.debug('Stripped commit %s from repo `%s` failed by %s, exeption %s' % (
109 c.repo_info.repo_name, user, e.message))
108 commit['rev'], self.db_repo_name, user, e.message))
110 return data
109 return data
General Comments 0
You need to be logged in to leave comments. Login now