BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
76872372
Commit
76872372
authored
Aug 17, 2016
by
barthc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prevent authored awardable thumbs votes
prevent authored awardable thumbs votes prevent authored awardable thumbs votes
parent
68b3c8c2
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
41 additions
and
3 deletions
+41
-3
toggle_award_emoji.rb
app/controllers/concerns/toggle_award_emoji.rb
+2
-0
awardable.rb
app/models/concerns/awardable.rb
+9
-0
issuable.rb
app/models/concerns/issuable.rb
+4
-0
note.rb
app/models/note.rb
+4
-0
award_emoji.rb
lib/api/award_emoji.rb
+5
-1
award_emoji_spec.rb
spec/features/issues/award_emoji_spec.rb
+0
-1
award_emoji_spec.rb
spec/requests/api/award_emoji_spec.rb
+17
-1
No files found.
app/controllers/concerns/toggle_award_emoji.rb
View file @
76872372
...
...
@@ -8,6 +8,8 @@ module ToggleAwardEmoji
def
toggle_award_emoji
name
=
params
.
require
(
:name
)
return
render
json:
{
ok:
false
}
unless
awardable
.
user_can_award?
(
current_user
,
name
)
awardable
.
toggle_award_emoji
(
name
,
current_user
)
TodoService
.
new
.
new_award_emoji
(
to_todoable
(
awardable
),
current_user
)
...
...
app/models/concerns/awardable.rb
View file @
76872372
...
...
@@ -59,6 +59,15 @@ module Awardable
true
end
def
awardable_votes?
(
name
)
AwardEmoji
::
UPVOTE_NAME
==
name
||
AwardEmoji
::
DOWNVOTE_NAME
==
name
end
def
user_can_award?
(
current_user
,
name
)
name
=
normalize_name
(
name
)
!
(
self
.
user_authored?
(
current_user
)
&&
awardable_votes?
(
name
))
end
def
awarded_emoji?
(
emoji_name
,
current_user
)
award_emoji
.
where
(
name:
emoji_name
,
user:
current_user
).
exists?
end
...
...
app/models/concerns/issuable.rb
View file @
76872372
...
...
@@ -196,6 +196,10 @@ module Issuable
end
end
def
user_authored?
(
user
)
user
==
author
end
def
subscribed_without_subscriptions?
(
user
)
participants
(
user
).
include?
(
user
)
end
...
...
app/models/note.rb
View file @
76872372
...
...
@@ -223,6 +223,10 @@ class Note < ActiveRecord::Base
end
end
def
user_authored?
(
user
)
user
==
author
end
def
award_emoji?
can_be_award_emoji?
&&
contains_emoji_only?
end
...
...
lib/api/award_emoji.rb
View file @
76872372
...
...
@@ -54,7 +54,7 @@ module API
post
endpoint
do
required_attributes!
[
:name
]
not_found!
(
'Award Emoji'
)
unless
can_read_awardable?
not_found!
(
'Award Emoji'
)
unless
can_read_awardable?
&&
can_award_awardable?
award
=
awardable
.
create_award_emoji
(
params
[
:name
],
current_user
)
...
...
@@ -92,6 +92,10 @@ module API
can?
(
current_user
,
ability
,
awardable
)
end
def
can_award_awardable?
awardable
.
user_can_award?
(
current_user
,
params
[
:name
])
end
def
awardable
@awardable
||=
begin
...
...
spec/features/issues/award_emoji_spec.rb
View file @
76872372
...
...
@@ -12,7 +12,6 @@ describe 'Awards Emoji', feature: true do
describe
'Click award emoji from issue#show'
do
let!
(
:issue
)
do
create
(
:issue
,
author:
@user
,
assignee:
@user
,
project:
project
)
end
...
...
spec/requests/api/award_emoji_spec.rb
View file @
76872372
...
...
@@ -4,7 +4,7 @@ describe API::API, api: true do
include
ApiHelpers
let
(
:user
)
{
create
(
:user
)
}
let!
(
:project
)
{
create
(
:project
)
}
let
(
:issue
)
{
create
(
:issue
,
project:
project
,
author:
user
)
}
let
(
:issue
)
{
create
(
:issue
,
project:
project
)
}
let!
(
:award_emoji
)
{
create
(
:award_emoji
,
awardable:
issue
,
user:
user
)
}
let!
(
:merge_request
)
{
create
(
:merge_request
,
source_project:
project
,
target_project:
project
)
}
let!
(
:downvote
)
{
create
(
:award_emoji
,
:downvote
,
awardable:
merge_request
,
user:
user
)
}
...
...
@@ -115,6 +115,8 @@ describe API::API, api: true do
end
describe
"POST /projects/:id/awardable/:awardable_id/award_emoji"
do
let
(
:issue2
)
{
create
(
:issue
,
project:
project
,
author:
user
)
}
context
"on an issue"
do
it
"creates a new award emoji"
do
post
api
(
"/projects/
#{
project
.
id
}
/issues/
#{
issue
.
id
}
/award_emoji"
,
user
),
name:
'blowfish'
...
...
@@ -136,6 +138,12 @@ describe API::API, api: true do
expect
(
response
).
to
have_http_status
(
401
)
end
it
"returns a 404 error if the user authored issue"
do
post
api
(
"/projects/
#{
project
.
id
}
/issues/
#{
issue2
.
id
}
/award_emoji"
,
user
),
name:
'thumbsup'
expect
(
response
).
to
have_http_status
(
404
)
end
it
"normalizes +1 as thumbsup award"
do
post
api
(
"/projects/
#{
project
.
id
}
/issues/
#{
issue
.
id
}
/award_emoji"
,
user
),
name:
'+1'
...
...
@@ -155,6 +163,8 @@ describe API::API, api: true do
end
describe
"POST /projects/:id/awardable/:awardable_id/notes/:note_id/award_emoji"
do
let
(
:note2
)
{
create
(
:note
,
project:
project
,
noteable:
issue
,
author:
user
)
}
it
'creates a new award emoji'
do
expect
do
post
api
(
"/projects/
#{
project
.
id
}
/issues/
#{
issue
.
id
}
/notes/
#{
note
.
id
}
/award_emoji"
,
user
),
name:
'rocket'
...
...
@@ -164,6 +174,12 @@ describe API::API, api: true do
expect
(
json_response
[
'user'
][
'username'
]).
to
eq
(
user
.
username
)
end
it
"it returns 404 error when user authored note"
do
post
api
(
"/projects/
#{
project
.
id
}
/issues/
#{
issue
.
id
}
/notes/
#{
note2
.
id
}
/award_emoji"
,
user
),
name:
'thumbsup'
expect
(
response
).
to
have_http_status
(
404
)
end
it
"normalizes +1 as thumbsup award"
do
post
api
(
"/projects/
#{
project
.
id
}
/issues/
#{
issue
.
id
}
/notes/
#{
note
.
id
}
/award_emoji"
,
user
),
name:
'+1'
...
...
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