Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
e716346c
Commit
e716346c
authored
May 02, 2019
by
James Fargher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Check instance cluster feature at policy level
Try to simplify feature flag checks by using policies
parent
6fd70b24
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
107 additions
and
36 deletions
+107
-36
app/controllers/admin/application_controller.rb
app/controllers/admin/application_controller.rb
+2
-5
app/controllers/admin/clusters/applications_controller.rb
app/controllers/admin/clusters/applications_controller.rb
+2
-0
app/controllers/admin/clusters_controller.rb
app/controllers/admin/clusters_controller.rb
+2
-14
app/controllers/concerns/enforces_admin_authentication.rb
app/controllers/concerns/enforces_admin_authentication.rb
+19
-0
app/helpers/application_settings_helper.rb
app/helpers/application_settings_helper.rb
+4
-0
app/policies/clusters/instance_policy.rb
app/policies/clusters/instance_policy.rb
+2
-1
app/views/layouts/nav/sidebar/_admin.html.haml
app/views/layouts/nav/sidebar/_admin.html.haml
+12
-11
spec/controllers/admin/clusters/applications_controller_spec.rb
...ontrollers/admin/clusters/applications_controller_spec.rb
+10
-0
spec/controllers/concerns/enforces_admin_authentication_spec.rb
...ontrollers/concerns/enforces_admin_authentication_spec.rb
+38
-0
spec/policies/clusters/instance_policy_spec.rb
spec/policies/clusters/instance_policy_spec.rb
+16
-5
No files found.
app/controllers/admin/application_controller.rb
View file @
e716346c
...
@@ -4,12 +4,9 @@
...
@@ -4,12 +4,9 @@
#
#
# Automatically sets the layout and ensures an administrator is logged in
# Automatically sets the layout and ensures an administrator is logged in
class
Admin::ApplicationController
<
ApplicationController
class
Admin::ApplicationController
<
ApplicationController
before_action
:authenticate_admin!
include
EnforcesAdminAuthentication
layout
'admin'
def
authenticate_admin!
layout
'admin'
render_404
unless
current_user
.
admin?
end
end
end
Admin
::
ApplicationController
.
prepend
(
EE
::
Admin
::
ApplicationController
)
Admin
::
ApplicationController
.
prepend
(
EE
::
Admin
::
ApplicationController
)
app/controllers/admin/clusters/applications_controller.rb
View file @
e716346c
# frozen_string_literal: true
# frozen_string_literal: true
class
Admin::Clusters::ApplicationsController
<
Clusters
::
ApplicationsController
class
Admin::Clusters::ApplicationsController
<
Clusters
::
ApplicationsController
include
EnforcesAdminAuthentication
private
private
def
clusterable
def
clusterable
...
...
app/controllers/admin/clusters_controller.rb
View file @
e716346c
# frozen_string_literal: true
# frozen_string_literal: true
class
Admin::ClustersController
<
Clusters
::
ClustersController
class
Admin::ClustersController
<
Clusters
::
ClustersController
prepend_before_action
:check_instance_clusters_feature_flag!
include
EnforcesAdminAuthentication
layout
'admin'
layout
'admin'
private
private
def
clusterable
def
clusterable
@clusterable
||=
InstanceClusterablePresenter
.
fabricate
(
cluster_instance
,
current_user:
current_user
)
@clusterable
||=
InstanceClusterablePresenter
.
fabricate
(
Clusters
::
Instance
.
new
,
current_user:
current_user
)
end
def
cluster_instance
@cluster_instance
||=
Clusters
::
Instance
.
new
end
def
check_instance_clusters_feature_flag!
render_404
unless
instance_clusters_enabled?
end
def
instance_clusters_enabled?
cluster_instance
.
instance_clusters_enabled?
end
end
end
end
app/controllers/concerns/enforces_admin_authentication.rb
0 → 100644
View file @
e716346c
# frozen_string_literal: true
# == EnforcesAdminAuthentication
#
# Controller concern to enforce that users are authenticated as admins
#
# Upon inclusion, adds `authenticate_admin!` as a before_action
#
module
EnforcesAdminAuthentication
extend
ActiveSupport
::
Concern
included
do
before_action
:authenticate_admin!
end
def
authenticate_admin!
render_404
unless
current_user
.
admin?
end
end
app/helpers/application_settings_helper.rb
View file @
e716346c
...
@@ -286,6 +286,10 @@ module ApplicationSettingsHelper
...
@@ -286,6 +286,10 @@ module ApplicationSettingsHelper
def
expanded_by_default?
def
expanded_by_default?
Rails
.
env
.
test?
Rails
.
env
.
test?
end
end
def
instance_clusters_enabled?
can?
(
current_user
,
:read_cluster
,
Clusters
::
Instance
.
new
)
end
end
end
ApplicationSettingsHelper
.
prepend
(
EE
::
ApplicationSettingsHelper
)
# rubocop: disable Cop/InjectEnterpriseEditionModule
ApplicationSettingsHelper
.
prepend
(
EE
::
ApplicationSettingsHelper
)
# rubocop: disable Cop/InjectEnterpriseEditionModule
...
...
app/policies/clusters/instance_policy.rb
View file @
e716346c
...
@@ -6,8 +6,9 @@ module Clusters
...
@@ -6,8 +6,9 @@ module Clusters
condition
(
:has_clusters
,
scope: :subject
)
{
clusterable_has_clusters?
}
condition
(
:has_clusters
,
scope: :subject
)
{
clusterable_has_clusters?
}
condition
(
:can_have_multiple_clusters
)
{
multiple_clusters_available?
}
condition
(
:can_have_multiple_clusters
)
{
multiple_clusters_available?
}
condition
(
:instance_clusters_enabled
,
scope: :subject
)
{
@subject
.
instance_clusters_enabled?
}
rule
{
admin
}.
policy
do
rule
{
admin
&
instance_clusters_enabled
}.
policy
do
enable
:read_cluster
enable
:read_cluster
enable
:add_cluster
enable
:add_cluster
enable
:create_cluster
enable
:create_cluster
...
...
app/views/layouts/nav/sidebar/_admin.html.haml
View file @
e716346c
...
@@ -145,17 +145,18 @@
...
@@ -145,17 +145,18 @@
%strong
.fly-out-top-item-name
%strong
.fly-out-top-item-name
=
_
(
'License'
)
=
_
(
'License'
)
=
nav_link
(
controller: :clusters
)
do
-
if
instance_clusters_enabled?
=
link_to
admin_clusters_path
do
=
nav_link
(
controller: :clusters
)
do
.nav-icon-container
=
link_to
admin_clusters_path
do
=
sprite_icon
(
'cloud-gear'
)
.nav-icon-container
%span
.nav-item-name
=
sprite_icon
(
'cloud-gear'
)
=
_
(
'Kubernetes'
)
%span
.nav-item-name
%ul
.sidebar-sub-level-items.is-fly-out-only
=
_
(
'Kubernetes'
)
=
nav_link
(
controller: :clusters
,
html_options:
{
class:
"fly-out-top-item"
}
)
do
%ul
.sidebar-sub-level-items.is-fly-out-only
=
link_to
admin_clusters_path
do
=
nav_link
(
controller: :clusters
,
html_options:
{
class:
"fly-out-top-item"
}
)
do
%strong
.fly-out-top-item-name
=
link_to
admin_clusters_path
do
=
_
(
'Kubernetes'
)
%strong
.fly-out-top-item-name
=
_
(
'Kubernetes'
)
-
if
akismet_enabled?
-
if
akismet_enabled?
=
nav_link
(
controller: :spam_logs
)
do
=
nav_link
(
controller: :spam_logs
)
do
...
...
spec/controllers/admin/clusters/applications_controller_spec.rb
View file @
e716346c
...
@@ -13,6 +13,16 @@ describe Admin::Clusters::ApplicationsController do
...
@@ -13,6 +13,16 @@ describe Admin::Clusters::ApplicationsController do
it
{
expect
{
subject
}.
to
be_allowed_for
(
:admin
)
}
it
{
expect
{
subject
}.
to
be_allowed_for
(
:admin
)
}
it
{
expect
{
subject
}.
to
be_denied_for
(
:user
)
}
it
{
expect
{
subject
}.
to
be_denied_for
(
:user
)
}
it
{
expect
{
subject
}.
to
be_denied_for
(
:external
)
}
it
{
expect
{
subject
}.
to
be_denied_for
(
:external
)
}
context
'when instance clusters are disabled'
do
before
do
stub_feature_flags
(
instance_clusters:
false
)
end
it
'returns 404'
do
is_expected
.
to
have_http_status
(
:not_found
)
end
end
end
end
let
(
:cluster
)
{
create
(
:cluster
,
:instance
,
:provided_by_gcp
)
}
let
(
:cluster
)
{
create
(
:cluster
,
:instance
,
:provided_by_gcp
)
}
...
...
spec/controllers/concerns/enforces_admin_authentication_spec.rb
0 → 100644
View file @
e716346c
# frozen_string_literal: true
require
'spec_helper'
describe
EnforcesAdminAuthentication
do
let
(
:user
)
{
create
(
:user
)
}
before
do
sign_in
(
user
)
end
controller
(
ApplicationController
)
do
# `described_class` is not available in this context
include
EnforcesAdminAuthentication
# rubocop:disable RSpec/DescribedClass
def
index
head
:ok
end
end
describe
'authenticate_admin!'
do
context
'as an admin'
do
let
(
:user
)
{
create
(
:admin
)
}
it
'renders ok'
do
get
:index
expect
(
response
).
to
have_gitlab_http_status
(
200
)
end
end
context
'as a user'
do
it
'renders a 404'
do
get
:index
expect
(
response
).
to
have_gitlab_http_status
(
404
)
end
end
end
end
spec/policies/clusters/instance_policy_spec.rb
View file @
e716346c
...
@@ -3,9 +3,8 @@
...
@@ -3,9 +3,8 @@
require
'spec_helper'
require
'spec_helper'
describe
Clusters
::
InstancePolicy
do
describe
Clusters
::
InstancePolicy
do
let
(
:cluster
)
{
create
(
:cluster
,
:instance
)
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:user
)
{
create
(
:user
)
}
let
(
:policy
)
{
described_class
.
new
(
user
,
cluster
)
}
let
(
:policy
)
{
described_class
.
new
(
user
,
Clusters
::
Instance
.
new
)
}
describe
'rules'
do
describe
'rules'
do
context
'when user'
do
context
'when user'
do
...
@@ -17,9 +16,21 @@ describe Clusters::InstancePolicy do
...
@@ -17,9 +16,21 @@ describe Clusters::InstancePolicy do
context
'when admin'
do
context
'when admin'
do
let
(
:user
)
{
create
(
:admin
)
}
let
(
:user
)
{
create
(
:admin
)
}
it
{
expect
(
policy
).
to
be_allowed
:read_cluster
}
context
'with instance_level_clusters enabled'
do
it
{
expect
(
policy
).
to
be_allowed
:update_cluster
}
it
{
expect
(
policy
).
to
be_allowed
:read_cluster
}
it
{
expect
(
policy
).
to
be_allowed
:admin_cluster
}
it
{
expect
(
policy
).
to
be_allowed
:update_cluster
}
it
{
expect
(
policy
).
to
be_allowed
:admin_cluster
}
end
context
'with instance_level_clusters disabled'
do
before
do
stub_feature_flags
(
instance_clusters:
false
)
end
it
{
expect
(
policy
).
to
be_disallowed
:read_cluster
}
it
{
expect
(
policy
).
to
be_disallowed
:update_cluster
}
it
{
expect
(
policy
).
to
be_disallowed
:admin_cluster
}
end
end
end
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment