Show More
@@ -0,0 +1,39 b'' | |||||
|
1 | # Copyright (C) 2010-2024 RhodeCode GmbH | |||
|
2 | # | |||
|
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 | |||
|
5 | # (only), as published by the Free Software Foundation. | |||
|
6 | # | |||
|
7 | # This program is distributed in the hope that it will be useful, | |||
|
8 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
|
9 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
|
10 | # GNU General Public License for more details. | |||
|
11 | # | |||
|
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/>. | |||
|
14 | # | |||
|
15 | # This program is dual-licensed. If you wish to learn more about the | |||
|
16 | # RhodeCode Enterprise Edition, including its added features, Support services, | |||
|
17 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |||
|
18 | ||||
|
19 | import logging | |||
|
20 | ||||
|
21 | from rhodecode.apps._base import BaseAppView | |||
|
22 | from rhodecode.lib.auth import LoginRequired, HasPermissionAllDecorator | |||
|
23 | ||||
|
24 | log = logging.getLogger(__name__) | |||
|
25 | ||||
|
26 | ||||
|
27 | class AdminSecurityView(BaseAppView): | |||
|
28 | ||||
|
29 | def load_default_context(self): | |||
|
30 | c = self._get_local_tmpl_context() | |||
|
31 | return c | |||
|
32 | ||||
|
33 | @LoginRequired() | |||
|
34 | @HasPermissionAllDecorator('hg.admin') | |||
|
35 | def security(self): | |||
|
36 | c = self.load_default_context() | |||
|
37 | c.active = 'security' | |||
|
38 | return self._get_template_context(c) | |||
|
39 |
@@ -0,0 +1,40 b'' | |||||
|
1 | <%inherit file="/base/base.mako"/> | |||
|
2 | ||||
|
3 | <%def name="title()"> | |||
|
4 | ${_('Security Admin')} | |||
|
5 | %if c.rhodecode_name: | |||
|
6 | · ${h.branding(c.rhodecode_name)} | |||
|
7 | %endif | |||
|
8 | </%def> | |||
|
9 | ||||
|
10 | <%def name="breadcrumbs_links()"></%def> | |||
|
11 | ||||
|
12 | <%def name="menu_bar_nav()"> | |||
|
13 | ${self.menu_items(active='admin')} | |||
|
14 | </%def> | |||
|
15 | ||||
|
16 | <%def name="menu_bar_subnav()"> | |||
|
17 | ${self.admin_menu(active='security')} | |||
|
18 | </%def> | |||
|
19 | ||||
|
20 | <%def name="main()"> | |||
|
21 | ||||
|
22 | <div class="box"> | |||
|
23 | ||||
|
24 | <div class="panel panel-default"> | |||
|
25 | <div class="panel-heading"> | |||
|
26 | <h3 class="panel-title">${_('Security Audit')}</h3> | |||
|
27 | </div> | |||
|
28 | <div class="panel-body"> | |||
|
29 | <h4>${_('This feature is available in RhodeCode EE edition only. Contact {sales_email} to obtain a trial license.').format(sales_email='<a href="mailto:sales@rhodecode.com">sales@rhodecode.com</a>')|n}</h4> | |||
|
30 | <p> | |||
|
31 | You can scan your repositories for exposed secrets, passwords, etc | |||
|
32 | </p> | |||
|
33 | </div> | |||
|
34 | </div> | |||
|
35 | ||||
|
36 | </div> | |||
|
37 | ||||
|
38 | ||||
|
39 | </%def> | |||
|
40 |
@@ -54,7 +54,7 b' syntax: regexp' | |||||
54 | ^rhodecode\.log$ |
|
54 | ^rhodecode\.log$ | |
55 | ^rhodecode_dev\.log$ |
|
55 | ^rhodecode_dev\.log$ | |
56 | ^test\.db$ |
|
56 | ^test\.db$ | |
57 |
|
57 | ^venv/ | ||
58 |
|
58 | |||
59 | # ac-tests |
|
59 | # ac-tests | |
60 | ^acceptance_tests/\.cache.*$ |
|
60 | ^acceptance_tests/\.cache.*$ |
@@ -43,6 +43,28 b' def admin_routes(config):' | |||||
43 | from rhodecode.apps.admin.views.system_info import AdminSystemInfoSettingsView |
|
43 | from rhodecode.apps.admin.views.system_info import AdminSystemInfoSettingsView | |
44 | from rhodecode.apps.admin.views.user_groups import AdminUserGroupsView |
|
44 | from rhodecode.apps.admin.views.user_groups import AdminUserGroupsView | |
45 | from rhodecode.apps.admin.views.users import AdminUsersView, UsersView |
|
45 | from rhodecode.apps.admin.views.users import AdminUsersView, UsersView | |
|
46 | from rhodecode.apps.admin.views.security import AdminSecurityView | |||
|
47 | ||||
|
48 | # Security EE feature | |||
|
49 | ||||
|
50 | config.add_route( | |||
|
51 | 'admin_security', | |||
|
52 | pattern=ADMIN_PREFIX + '/security') | |||
|
53 | config.add_view( | |||
|
54 | AdminSecurityView, | |||
|
55 | attr='security' , | |||
|
56 | route_name='admin_security', request_method='GET', | |||
|
57 | renderer='rhodecode:templates/admin/security/security.mako') | |||
|
58 | ||||
|
59 | config.add_route( | |||
|
60 | name='admin_security_update', | |||
|
61 | pattern=ADMIN_PREFIX + '/security/update') | |||
|
62 | config.add_view( | |||
|
63 | AdminSecurityView, | |||
|
64 | attr='security_update', | |||
|
65 | route_name='admin_security_update', request_method='POST', | |||
|
66 | renderer='rhodecode:templates/admin/security/security.mako') | |||
|
67 | ||||
46 |
|
68 | |||
47 | config.add_route( |
|
69 | config.add_route( | |
48 | name='admin_audit_logs', |
|
70 | name='admin_audit_logs', |
@@ -114,6 +114,7 b'' | |||||
114 | <li class="${h.is_active('repository_groups', active)}"><a href="${h.route_path('repo_groups')}">${_('Repository groups')}</a></li> |
|
114 | <li class="${h.is_active('repository_groups', active)}"><a href="${h.route_path('repo_groups')}">${_('Repository groups')}</a></li> | |
115 | <li class="${h.is_active('users', active)}"><a href="${h.route_path('users')}">${_('Users')}</a></li> |
|
115 | <li class="${h.is_active('users', active)}"><a href="${h.route_path('users')}">${_('Users')}</a></li> | |
116 | <li class="${h.is_active('user_groups', active)}"><a href="${h.route_path('user_groups')}">${_('User groups')}</a></li> |
|
116 | <li class="${h.is_active('user_groups', active)}"><a href="${h.route_path('user_groups')}">${_('User groups')}</a></li> | |
|
117 | <li class="${h.is_active('security', active)}"><a href="${h.route_path('admin_security')}">${_('Security')}</a></li> | |||
117 | <li class="${h.is_active('artifacts', active)}"><a href="${h.route_path('admin_artifacts')}">${_('Artifacts')}</a></li> |
|
118 | <li class="${h.is_active('artifacts', active)}"><a href="${h.route_path('admin_artifacts')}">${_('Artifacts')}</a></li> | |
118 | <li class="${h.is_active('automation', active)}"><a href="${h.route_path('admin_automation')}">${_('Automation')}</a></li> |
|
119 | <li class="${h.is_active('automation', active)}"><a href="${h.route_path('admin_automation')}">${_('Automation')}</a></li> | |
119 | <li class="${h.is_active('scheduler', active)}"><a href="${h.route_path('admin_scheduler')}">${_('Scheduler')}</a></li> |
|
120 | <li class="${h.is_active('scheduler', active)}"><a href="${h.route_path('admin_scheduler')}">${_('Scheduler')}</a></li> |
General Comments 0
You need to be logged in to leave comments.
Login now