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
26b28103
Commit
26b28103
authored
Mar 30, 2016
by
Douglas Barbosa Alexandre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mentions on confidential issues doesn't create todos for non-members
parent
79467437
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
79 additions
and
25 deletions
+79
-25
CHANGELOG
CHANGELOG
+3
-0
app/services/todo_service.rb
app/services/todo_service.rb
+20
-4
spec/services/todo_service_spec.rb
spec/services/todo_service_spec.rb
+56
-21
No files found.
CHANGELOG
View file @
26b28103
...
@@ -14,6 +14,9 @@ v 8.7.0 (unreleased)
...
@@ -14,6 +14,9 @@ v 8.7.0 (unreleased)
- Implement 'TODOs View' as an option for dashboard preferences !3379 (Elias W.)
- Implement 'TODOs View' as an option for dashboard preferences !3379 (Elias W.)
- Gracefully handle notes on deleted commits in merge requests (Stan Hu)
- Gracefully handle notes on deleted commits in merge requests (Stan Hu)
v 8.6.3 (unreleased)
- Mentions on confidential issues doesn't create todos for non-members
v 8.6.2
v 8.6.2
- Fix dropdown alignment. !3298
- Fix dropdown alignment. !3298
- Fix issuable sidebar overlaps on tablet. !3299
- Fix issuable sidebar overlaps on tablet. !3299
...
...
app/services/todo_service.rb
View file @
26b28103
...
@@ -170,14 +170,30 @@ class TodoService
...
@@ -170,14 +170,30 @@ class TodoService
end
end
def
filter_mentioned_users
(
project
,
target
,
author
)
def
filter_mentioned_users
(
project
,
target
,
author
)
mentioned_users
=
target
.
mentioned_users
.
select
do
|
user
|
mentioned_users
=
target
.
mentioned_users
user
.
can?
(
:read_project
,
project
)
mentioned_users
=
reject_users_without_access
(
mentioned_users
,
project
,
target
)
end
mentioned_users
.
delete
(
author
)
mentioned_users
.
delete
(
author
)
mentioned_users
.
uniq
mentioned_users
.
uniq
end
end
def
reject_users_without_access
(
users
,
project
,
target
)
if
target
.
is_a?
(
Note
)
&&
target
.
for_issue?
target
=
target
.
noteable
end
if
target
.
is_a?
(
Issue
)
select_users
(
users
,
:read_issue
,
target
)
else
select_users
(
users
,
:read_project
,
project
)
end
end
def
select_users
(
users
,
ability
,
subject
)
users
.
select
do
|
user
|
user
.
can?
(
ability
.
to_sym
,
subject
)
end
end
def
pending_todos
(
user
,
criteria
=
{})
def
pending_todos
(
user
,
criteria
=
{})
valid_keys
=
[
:project_id
,
:target_id
,
:target_type
,
:commit_id
]
valid_keys
=
[
:project_id
,
:target_id
,
:target_type
,
:commit_id
]
user
.
todos
.
pending
.
where
(
criteria
.
slice
(
*
valid_keys
))
user
.
todos
.
pending
.
where
(
criteria
.
slice
(
*
valid_keys
))
...
...
spec/services/todo_service_spec.rb
View file @
26b28103
...
@@ -2,22 +2,25 @@ require 'spec_helper'
...
@@ -2,22 +2,25 @@ require 'spec_helper'
describe
TodoService
,
services:
true
do
describe
TodoService
,
services:
true
do
let
(
:author
)
{
create
(
:user
)
}
let
(
:author
)
{
create
(
:user
)
}
let
(
:john_doe
)
{
create
(
:user
,
username:
'john_doe'
)
}
let
(
:assignee
)
{
create
(
:user
)
}
let
(
:michael
)
{
create
(
:user
,
username:
'michael'
)
}
let
(
:non_member
)
{
create
(
:user
)
}
let
(
:stranger
)
{
create
(
:user
,
username:
'stranger'
)
}
let
(
:member
)
{
create
(
:user
)
}
let
(
:admin
)
{
create
(
:admin
)
}
let
(
:john_doe
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:project
)
}
let
(
:project
)
{
create
(
:project
)
}
let
(
:mentions
)
{
[
author
.
to_reference
,
john_doe
.
to_reference
,
michael
.
to_reference
,
stranger
.
to_reference
]
.
join
(
' '
)
}
let
(
:mentions
)
{
[
author
,
assignee
,
john_doe
,
member
,
non_member
,
admin
].
map
(
&
:to_reference
)
.
join
(
' '
)
}
let
(
:service
)
{
described_class
.
new
}
let
(
:service
)
{
described_class
.
new
}
before
do
before
do
project
.
team
<<
[
author
,
:developer
]
project
.
team
<<
[
author
,
:developer
]
project
.
team
<<
[
member
,
:developer
]
project
.
team
<<
[
john_doe
,
:developer
]
project
.
team
<<
[
john_doe
,
:developer
]
project
.
team
<<
[
michael
,
:developer
]
end
end
describe
'Issues'
do
describe
'Issues'
do
let
(
:issue
)
{
create
(
:issue
,
project:
project
,
assignee:
john_doe
,
author:
author
,
description:
mentions
)
}
let
(
:issue
)
{
create
(
:issue
,
project:
project
,
assignee:
john_doe
,
author:
author
,
description:
mentions
)
}
let
(
:unassigned_issue
)
{
create
(
:issue
,
project:
project
,
assignee:
nil
)
}
let
(
:unassigned_issue
)
{
create
(
:issue
,
project:
project
,
assignee:
nil
)
}
let
(
:confidential_issue
)
{
create
(
:issue
,
:confidential
,
project:
project
,
author:
author
,
assignee:
assignee
,
description:
mentions
)
}
describe
'#new_issue'
do
describe
'#new_issue'
do
it
'creates a todo if assigned'
do
it
'creates a todo if assigned'
do
...
@@ -37,10 +40,20 @@ describe TodoService, services: true do
...
@@ -37,10 +40,20 @@ describe TodoService, services: true do
it
'creates a todo for each valid mentioned user'
do
it
'creates a todo for each valid mentioned user'
do
service
.
new_issue
(
issue
,
author
)
service
.
new_issue
(
issue
,
author
)
should_create_todo
(
user:
m
ichael
,
target:
issue
,
action:
Todo
::
MENTIONED
)
should_create_todo
(
user:
m
ember
,
target:
issue
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
author
,
target:
issue
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
author
,
target:
issue
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
john_doe
,
target:
issue
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
john_doe
,
target:
issue
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
stranger
,
target:
issue
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
non_member
,
target:
issue
,
action:
Todo
::
MENTIONED
)
end
it
'does not create todo for non project members when issue is confidential'
do
service
.
new_issue
(
confidential_issue
,
john_doe
)
should_create_todo
(
user:
assignee
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
ASSIGNED
)
should_create_todo
(
user:
author
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
)
should_create_todo
(
user:
member
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
)
should_create_todo
(
user:
admin
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
john_doe
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
)
end
end
end
end
...
@@ -48,16 +61,26 @@ describe TodoService, services: true do
...
@@ -48,16 +61,26 @@ describe TodoService, services: true do
it
'creates a todo for each valid mentioned user'
do
it
'creates a todo for each valid mentioned user'
do
service
.
update_issue
(
issue
,
author
)
service
.
update_issue
(
issue
,
author
)
should_create_todo
(
user:
m
ichael
,
target:
issue
,
action:
Todo
::
MENTIONED
)
should_create_todo
(
user:
m
ember
,
target:
issue
,
action:
Todo
::
MENTIONED
)
should_create_todo
(
user:
john_doe
,
target:
issue
,
action:
Todo
::
MENTIONED
)
should_create_todo
(
user:
john_doe
,
target:
issue
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
author
,
target:
issue
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
author
,
target:
issue
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
strang
er
,
target:
issue
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
non_memb
er
,
target:
issue
,
action:
Todo
::
MENTIONED
)
end
end
it
'does not create a todo if user was already mentioned'
do
it
'does not create a todo if user was already mentioned'
do
create
(
:todo
,
:mentioned
,
user:
m
ichael
,
project:
project
,
target:
issue
,
author:
author
)
create
(
:todo
,
:mentioned
,
user:
m
ember
,
project:
project
,
target:
issue
,
author:
author
)
expect
{
service
.
update_issue
(
issue
,
author
)
}.
not_to
change
(
michael
.
todos
,
:count
)
expect
{
service
.
update_issue
(
issue
,
author
)
}.
not_to
change
(
member
.
todos
,
:count
)
end
it
'does not create todo for non project members when issue is confidential'
do
service
.
update_issue
(
confidential_issue
,
john_doe
)
should_create_todo
(
user:
author
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
)
should_create_todo
(
user:
assignee
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
)
should_create_todo
(
user:
member
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
)
should_create_todo
(
user:
admin
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
john_doe
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
)
end
end
end
end
...
@@ -109,8 +132,10 @@ describe TodoService, services: true do
...
@@ -109,8 +132,10 @@ describe TodoService, services: true do
describe
'#new_note'
do
describe
'#new_note'
do
let!
(
:first_todo
)
{
create
(
:todo
,
:assigned
,
user:
john_doe
,
project:
project
,
target:
issue
,
author:
author
)
}
let!
(
:first_todo
)
{
create
(
:todo
,
:assigned
,
user:
john_doe
,
project:
project
,
target:
issue
,
author:
author
)
}
let!
(
:second_todo
)
{
create
(
:todo
,
:assigned
,
user:
john_doe
,
project:
project
,
target:
issue
,
author:
author
)
}
let!
(
:second_todo
)
{
create
(
:todo
,
:assigned
,
user:
john_doe
,
project:
project
,
target:
issue
,
author:
author
)
}
let
(
:confidential_issue
)
{
create
(
:issue
,
:confidential
,
project:
project
,
author:
author
,
assignee:
assignee
)
}
let
(
:note
)
{
create
(
:note
,
project:
project
,
noteable:
issue
,
author:
john_doe
,
note:
mentions
)
}
let
(
:note
)
{
create
(
:note
,
project:
project
,
noteable:
issue
,
author:
john_doe
,
note:
mentions
)
}
let
(
:note_on_commit
)
{
create
(
:note_on_commit
,
project:
project
,
author:
john_doe
,
note:
mentions
)
}
let
(
:note_on_commit
)
{
create
(
:note_on_commit
,
project:
project
,
author:
john_doe
,
note:
mentions
)
}
let
(
:note_on_confidential_issue
)
{
create
(
:note_on_issue
,
noteable:
confidential_issue
,
project:
project
,
note:
mentions
)
}
let
(
:note_on_project_snippet
)
{
create
(
:note_on_project_snippet
,
project:
project
,
author:
john_doe
,
note:
mentions
)
}
let
(
:note_on_project_snippet
)
{
create
(
:note_on_project_snippet
,
project:
project
,
author:
john_doe
,
note:
mentions
)
}
let
(
:award_note
)
{
create
(
:note
,
:award
,
project:
project
,
noteable:
issue
,
author:
john_doe
,
note:
'thumbsup'
)
}
let
(
:award_note
)
{
create
(
:note
,
:award
,
project:
project
,
noteable:
issue
,
author:
john_doe
,
note:
'thumbsup'
)
}
let
(
:system_note
)
{
create
(
:system_note
,
project:
project
,
noteable:
issue
)
}
let
(
:system_note
)
{
create
(
:system_note
,
project:
project
,
noteable:
issue
)
}
...
@@ -142,19 +167,29 @@ describe TodoService, services: true do
...
@@ -142,19 +167,29 @@ describe TodoService, services: true do
it
'creates a todo for each valid mentioned user'
do
it
'creates a todo for each valid mentioned user'
do
service
.
new_note
(
note
,
john_doe
)
service
.
new_note
(
note
,
john_doe
)
should_create_todo
(
user:
m
ichael
,
target:
issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note
)
should_create_todo
(
user:
m
ember
,
target:
issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note
)
should_create_todo
(
user:
author
,
target:
issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note
)
should_create_todo
(
user:
author
,
target:
issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note
)
should_not_create_todo
(
user:
john_doe
,
target:
issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note
)
should_not_create_todo
(
user:
john_doe
,
target:
issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note
)
should_not_create_todo
(
user:
stranger
,
target:
issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note
)
should_not_create_todo
(
user:
non_member
,
target:
issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note
)
end
it
'does not create todo for non project members when leaving a note on a confidential issue'
do
service
.
new_note
(
note_on_confidential_issue
,
john_doe
)
should_create_todo
(
user:
author
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note_on_confidential_issue
)
should_create_todo
(
user:
assignee
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note_on_confidential_issue
)
should_create_todo
(
user:
member
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note_on_confidential_issue
)
should_create_todo
(
user:
admin
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note_on_confidential_issue
)
should_not_create_todo
(
user:
john_doe
,
target:
confidential_issue
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note_on_confidential_issue
)
end
end
it
'creates a todo for each valid mentioned user when leaving a note on commit'
do
it
'creates a todo for each valid mentioned user when leaving a note on commit'
do
service
.
new_note
(
note_on_commit
,
john_doe
)
service
.
new_note
(
note_on_commit
,
john_doe
)
should_create_todo
(
user:
m
ichael
,
target_id:
nil
,
target_type:
'Commit'
,
commit_id:
note_on_commit
.
commit_id
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note_on_commit
)
should_create_todo
(
user:
m
ember
,
target_id:
nil
,
target_type:
'Commit'
,
commit_id:
note_on_commit
.
commit_id
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note_on_commit
)
should_create_todo
(
user:
author
,
target_id:
nil
,
target_type:
'Commit'
,
commit_id:
note_on_commit
.
commit_id
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note_on_commit
)
should_create_todo
(
user:
author
,
target_id:
nil
,
target_type:
'Commit'
,
commit_id:
note_on_commit
.
commit_id
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note_on_commit
)
should_not_create_todo
(
user:
john_doe
,
target_id:
nil
,
target_type:
'Commit'
,
commit_id:
note_on_commit
.
commit_id
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note_on_commit
)
should_not_create_todo
(
user:
john_doe
,
target_id:
nil
,
target_type:
'Commit'
,
commit_id:
note_on_commit
.
commit_id
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note_on_commit
)
should_not_create_todo
(
user:
strang
er
,
target_id:
nil
,
target_type:
'Commit'
,
commit_id:
note_on_commit
.
commit_id
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note_on_commit
)
should_not_create_todo
(
user:
non_memb
er
,
target_id:
nil
,
target_type:
'Commit'
,
commit_id:
note_on_commit
.
commit_id
,
author:
john_doe
,
action:
Todo
::
MENTIONED
,
note:
note_on_commit
)
end
end
it
'does not create todo when leaving a note on snippet'
do
it
'does not create todo when leaving a note on snippet'
do
...
@@ -185,10 +220,10 @@ describe TodoService, services: true do
...
@@ -185,10 +220,10 @@ describe TodoService, services: true do
it
'creates a todo for each valid mentioned user'
do
it
'creates a todo for each valid mentioned user'
do
service
.
new_merge_request
(
mr_assigned
,
author
)
service
.
new_merge_request
(
mr_assigned
,
author
)
should_create_todo
(
user:
m
ichael
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
should_create_todo
(
user:
m
ember
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
author
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
author
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
john_doe
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
john_doe
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
strang
er
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
non_memb
er
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
end
end
end
end
...
@@ -196,16 +231,16 @@ describe TodoService, services: true do
...
@@ -196,16 +231,16 @@ describe TodoService, services: true do
it
'creates a todo for each valid mentioned user'
do
it
'creates a todo for each valid mentioned user'
do
service
.
update_merge_request
(
mr_assigned
,
author
)
service
.
update_merge_request
(
mr_assigned
,
author
)
should_create_todo
(
user:
m
ichael
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
should_create_todo
(
user:
m
ember
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
should_create_todo
(
user:
john_doe
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
should_create_todo
(
user:
john_doe
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
author
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
author
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
strang
er
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
should_not_create_todo
(
user:
non_memb
er
,
target:
mr_assigned
,
action:
Todo
::
MENTIONED
)
end
end
it
'does not create a todo if user was already mentioned'
do
it
'does not create a todo if user was already mentioned'
do
create
(
:todo
,
:mentioned
,
user:
m
ichael
,
project:
project
,
target:
mr_assigned
,
author:
author
)
create
(
:todo
,
:mentioned
,
user:
m
ember
,
project:
project
,
target:
mr_assigned
,
author:
author
)
expect
{
service
.
update_merge_request
(
mr_assigned
,
author
)
}.
not_to
change
(
m
ichael
.
todos
,
:count
)
expect
{
service
.
update_merge_request
(
mr_assigned
,
author
)
}.
not_to
change
(
m
ember
.
todos
,
:count
)
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