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
b2b9d63f
Commit
b2b9d63f
authored
Aug 23, 2017
by
Rubén Dávila
Committed by
Mike Greiling
Aug 26, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add validation to check visibility level of sub groups.
parent
d413f8e4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
60 additions
and
4 deletions
+60
-4
app/models/group.rb
app/models/group.rb
+16
-4
spec/models/group_spec.rb
spec/models/group_spec.rb
+44
-0
No files found.
app/models/group.rb
View file @
b2b9d63f
...
...
@@ -26,6 +26,7 @@ class Group < Namespace
validate
:avatar_type
,
if:
->
(
user
)
{
user
.
avatar
.
present?
&&
user
.
avatar_changed?
}
validate
:visibility_level_allowed_by_projects
validate
:visibility_level_allowed_by_sub_groups
,
if: :visibility_level_changed?
validate
:visibility_level_allowed_by_parent
validates
:avatar
,
file_size:
{
maximum:
200
.
kilobytes
.
to_i
}
...
...
@@ -112,14 +113,25 @@ class Group < Namespace
end
def
visibility_level_allowed_by_projects
allowed_by_projects
=
self
.
projects
.
where
(
'visibility_level > ?'
,
self
.
visibility_level
).
none?
check_visibility_level_for
(
:projects
)
end
def
visibility_level_allowed_by_sub_groups
check_visibility_level_for
(
:children
)
end
unless
allowed_by_projects
def
check_visibility_level_for
(
children_type
)
base_query
=
public_send
(
children_type
)
children_have_higher_visibility
=
base_query
.
where
(
'visibility_level > ?'
,
visibility_level
).
exists?
if
children_have_higher_visibility
children_label
=
children_type
==
:projects
?
'projects'
:
'sub groups'
level_name
=
Gitlab
::
VisibilityLevel
.
level_name
(
visibility_level
).
downcase
self
.
errors
.
add
(
:visibility_level
,
"
#{
level_name
}
is not allowed since there are projects with higher visibility."
)
self
.
errors
.
add
(
:visibility_level
,
"
#{
level_name
}
is not allowed since there are
#{
children_label
}
with higher visibility."
)
end
allowed_by_projects
children_have_higher_visibility
end
def
avatar_url
(
**
args
)
...
...
spec/models/group_spec.rb
View file @
b2b9d63f
...
...
@@ -117,6 +117,50 @@ describe Group do
end
end
end
describe
'#visibility_level_allowed_by_projects'
do
let!
(
:internal_group
)
{
create
(
:group
,
:internal
)
}
let!
(
:internal_project
)
{
create
(
:project
,
:internal
,
group:
internal_group
)
}
context
'when group has a lower visibility'
do
it
'is invalid'
do
internal_group
.
visibility_level
=
Gitlab
::
VisibilityLevel
::
PRIVATE
expect
(
internal_group
).
to
be_invalid
expect
(
internal_group
.
errors
[
:visibility_level
]).
to
include
(
'private is not allowed since there are projects with higher visibility.'
)
end
end
context
'when group has a higher visibility'
do
it
'is valid'
do
internal_group
.
visibility_level
=
Gitlab
::
VisibilityLevel
::
PUBLIC
expect
(
internal_group
).
to
be_valid
end
end
end
describe
'#visibility_level_allowed_by_sub_groups'
do
let!
(
:internal_group
)
{
create
(
:group
,
:internal
)
}
let!
(
:internal_sub_group
)
{
create
(
:group
,
:internal
,
parent:
internal_group
)
}
context
'when parent group has a lower visibility'
do
it
'is invalid'
do
internal_group
.
visibility_level
=
Gitlab
::
VisibilityLevel
::
PRIVATE
expect
(
internal_group
).
to
be_invalid
expect
(
internal_group
.
errors
[
:visibility_level
]).
to
include
(
'private is not allowed since there are sub groups with higher visibility.'
)
end
end
context
'when parent group has a higher visibility'
do
it
'is valid'
do
internal_group
.
visibility_level
=
Gitlab
::
VisibilityLevel
::
PUBLIC
expect
(
internal_group
).
to
be_valid
end
end
end
end
describe
'.visible_to_user'
do
...
...
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