Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
deb3888a
Commit
deb3888a
authored
Dec 06, 2012
by
Kevin Chugh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
thread response flagging
parent
70b0b5be
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
43 additions
and
24 deletions
+43
-24
lms/djangoapps/django_comment_client/base/urls.py
+2
-2
lms/djangoapps/django_comment_client/base/views.py
+2
-2
lms/lib/comment_client/comment.py
+7
-7
lms/static/coffee/src/discussion/utils.coffee
+2
-0
lms/static/coffee/src/discussion/views/discussion_thread_show_view.coffee
+2
-12
lms/static/coffee/src/discussion/views/response_comment_show_view.coffee
+12
-1
lms/static/coffee/src/discussion/views/thread_response_show_view.coffee
+16
-0
No files found.
lms/djangoapps/django_comment_client/base/urls.py
View file @
deb3888a
...
...
@@ -25,8 +25,8 @@ urlpatterns = patterns('django_comment_client.base.views',
url
(
r'comments/(?P<comment_id>[\w\-]+)/upvote$'
,
'vote_for_comment'
,
{
'value'
:
'up'
},
name
=
'upvote_comment'
),
url
(
r'comments/(?P<comment_id>[\w\-]+)/downvote$'
,
'vote_for_comment'
,
{
'value'
:
'down'
},
name
=
'downvote_comment'
),
url
(
r'comments/(?P<comment_id>[\w\-]+)/unvote$'
,
'undo_vote_for_comment'
,
name
=
'undo_vote_for_comment'
),
url
(
r'
thread
s/(?P<comment_id>[\w\-]+)/flagAbuse$'
,
'flag_abuse_for_comment'
,
name
=
'flag_abuse_for_comment'
),
url
(
r'
thread
s/(?P<comment_id>[\w\-]+)/unFlagAbuse$'
,
'un_flag_abuse_for_comment'
,
name
=
'un_flag_abuse_for_comment'
),
url
(
r'
comment
s/(?P<comment_id>[\w\-]+)/flagAbuse$'
,
'flag_abuse_for_comment'
,
name
=
'flag_abuse_for_comment'
),
url
(
r'
comment
s/(?P<comment_id>[\w\-]+)/unFlagAbuse$'
,
'un_flag_abuse_for_comment'
,
name
=
'un_flag_abuse_for_comment'
),
url
(
r'(?P<commentable_id>[\w\-]+)/threads/create$'
,
'create_thread'
,
name
=
'create_thread'
),
# TODO should we search within the board?
...
...
lms/djangoapps/django_comment_client/base/views.py
View file @
deb3888a
...
...
@@ -252,13 +252,13 @@ def un_flag_abuse_for_thread(request, course_id, thread_id):
def
flag_abuse_for_comment
(
request
,
course_id
,
comment_id
):
user
=
cc
.
User
.
from_django_user
(
request
.
user
)
comment
=
cc
.
Comment
.
find
(
thread
_id
)
comment
=
cc
.
Comment
.
find
(
comment
_id
)
comment
.
flagAbuse
(
user
,
comment
)
return
JsonResponse
(
utils
.
safe_content
(
comment
.
to_dict
()))
def
un_flag_abuse_for_comment
(
request
,
course_id
,
comment_id
):
user
=
cc
.
User
.
from_django_user
(
request
.
user
)
comment
=
cc
.
Comment
.
find
(
thread
_id
)
comment
=
cc
.
Comment
.
find
(
comment
_id
)
comment
.
unFlagAbuse
(
user
,
comment
)
return
JsonResponse
(
utils
.
safe_content
(
comment
.
to_dict
()))
...
...
lms/lib/comment_client/comment.py
View file @
deb3888a
...
...
@@ -41,22 +41,22 @@ class Comment(models.Model):
else
:
return
super
(
Comment
,
cls
)
.
url
(
action
,
params
)
def
flagAbuse
(
self
,
user
,
voteable
,
value
):
def
flagAbuse
(
self
,
user
,
voteable
):
if
voteable
.
type
==
'thread'
:
url
=
_url_for_flag_abuse_thread
(
voteable
.
id
)
elif
voteable
.
type
==
'comment'
:
url
=
_url_for_flag_comment
(
voteable
.
id
)
url
=
_url_for_flag_
abuse_
comment
(
voteable
.
id
)
else
:
raise
CommentClientError
(
"Can only flag/unflag threads or comments"
)
params
=
{
'user_id'
:
user
.
id
}
request
=
perform_request
(
'put'
,
url
,
params
)
voteable
.
update_attributes
(
request
)
def
unFlagAbuse
(
self
,
user
,
voteable
,
value
):
def
unFlagAbuse
(
self
,
user
,
voteable
):
if
voteable
.
type
==
'thread'
:
url
=
_url_for_unflag_abuse_thread
(
voteable
.
id
)
elif
voteable
.
type
==
'comment'
:
url
=
_url_for_unflag_comment
(
voteable
.
id
)
url
=
_url_for_unflag_
abuse_
comment
(
voteable
.
id
)
else
:
raise
CommentClientError
(
"Can flag/unflag for threads or comments"
)
params
=
{
'user_id'
:
user
.
id
}
...
...
@@ -70,7 +70,7 @@ def _url_for_comment(comment_id):
return
"{prefix}/comments/{comment_id}"
.
format
(
prefix
=
settings
.
PREFIX
,
comment_id
=
comment_id
)
def
_url_for_flag_abuse_comment
(
comment_id
):
return
"{prefix}/
threads/{comment_id}/abuse_flags"
.
format
(
prefix
=
settings
.
PREFIX
,
thread_id
=
thread
_id
)
return
"{prefix}/
comments/{comment_id}/abuse_flags"
.
format
(
prefix
=
settings
.
PREFIX
,
comment_id
=
comment
_id
)
def
_url_for_unflag_abuse_
thread
(
comment_id
):
return
"{prefix}/
threads/{comment_id}/abuse_unflags"
.
format
(
prefix
=
settings
.
PREFIX
,
thread_id
=
thread
_id
)
def
_url_for_unflag_abuse_
comment
(
comment_id
):
return
"{prefix}/
comments/{comment_id}/abuse_unflags"
.
format
(
prefix
=
settings
.
PREFIX
,
comment_id
=
comment
_id
)
lms/static/coffee/src/discussion/utils.coffee
View file @
deb3888a
...
...
@@ -50,6 +50,8 @@ class @DiscussionUtil
delete_thread
:
"/courses/
#{
$$course_id
}
/discussion/threads/
#{
param
}
/delete"
flagAbuse_thread
:
"/courses/
#{
$$course_id
}
/discussion/threads/
#{
param
}
/flagAbuse"
unFlagAbuse_thread
:
"/courses/
#{
$$course_id
}
/discussion/threads/
#{
param
}
/unFlagAbuse"
flagAbuse_comment
:
"/courses/
#{
$$course_id
}
/discussion/comments/
#{
param
}
/flagAbuse"
unFlagAbuse_comment
:
"/courses/
#{
$$course_id
}
/discussion/comments/
#{
param
}
/unFlagAbuse"
upvote_thread
:
"/courses/
#{
$$course_id
}
/discussion/threads/
#{
param
}
/upvote"
downvote_thread
:
"/courses/
#{
$$course_id
}
/discussion/threads/
#{
param
}
/downvote"
undo_vote_for_thread
:
"/courses/
#{
$$course_id
}
/discussion/threads/
#{
param
}
/unvote"
...
...
lms/static/coffee/src/discussion/views/discussion_thread_show_view.coffee
View file @
deb3888a
...
...
@@ -72,17 +72,7 @@ if Backbone?
toggleFollowing
:
(
event
)
->
$elem
=
$
(
event
.
target
)
url
=
nullunFollow
:
->
url
=
@
model
.
urlFor
(
"unFlagAbuse"
)
DiscussionUtil
.
safeAjax
$elem
:
@
$
(
".discussion-flag-abuse"
)
url
:
url
type
:
"POST"
success
:
(
response
,
textStatus
)
=>
if
textStatus
==
'success'
temp_array
=
_
.
clone
(
@
model
.
get
(
'abuse_flaggers'
));
temp_array
.
pop
(
window
.
user
.
id
)
@
model
.
set
(
'abuse_flaggers'
,
temp_array
)
url
=
null
if
not
@
model
.
get
(
'subscribed'
)
@
model
.
follow
()
url
=
@
model
.
urlFor
(
"follow"
)
...
...
@@ -92,7 +82,7 @@ if Backbone?
DiscussionUtil
.
safeAjax
$elem
:
$elem
url
:
url
type
:
"POST"
type
:
"POST"
vote
:
->
window
.
user
.
vote
(
@
model
)
...
...
lms/static/coffee/src/discussion/views/response_comment_show_view.coffee
View file @
deb3888a
if
Backbone
?
class
@
ResponseCommentShowView
extends
DiscussionContentView
events
:
"click .discussion-flag-abuse"
:
"toggleFlagAbuse"
tagName
:
"li"
...
...
@@ -36,4 +39,12 @@ if Backbone?
@
$el
.
find
(
"a.profile-link"
).
after
(
'<span class="community-ta-label">Community TA</span>'
)
renderFlagged
:
=>
if
window
.
user
.
id
in
@
model
.
get
(
"abuse_flaggers"
)
@
$
(
"[data-role=thread-flag]"
).
addClass
(
"flagged"
)
@
$
(
"[data-role=thread-flag]"
).
removeClass
(
"notflagged"
)
else
@
$
(
"[data-role=thread-flag]"
).
removeClass
(
"flagged"
)
@
$
(
"[data-role=thread-flag]"
).
addClass
(
"notflagged"
)
lms/static/coffee/src/discussion/views/thread_response_show_view.coffee
View file @
deb3888a
...
...
@@ -24,6 +24,7 @@ if Backbone?
if
window
.
user
.
voted
(
@
model
)
@
$
(
".vote-btn"
).
addClass
(
"is-cast"
)
@
renderAttrs
()
@
renderFlagged
()
@
$el
.
find
(
".posted-details"
).
timeago
()
@
convertMath
()
@
markAsStaff
()
...
...
@@ -94,3 +95,17 @@ if Backbone?
url
:
url
data
:
data
type
:
"POST"
renderFlagged
:
=>
if
window
.
user
.
id
in
@
model
.
get
(
"abuse_flaggers"
)
@
$
(
"[data-role=thread-flag]"
).
addClass
(
"flagged"
)
@
$
(
"[data-role=thread-flag]"
).
removeClass
(
"notflagged"
)
@
$
(
".discussion-flag-abuse .flag-label"
).
html
(
"Misuse Reported"
)
else
@
$
(
"[data-role=thread-flag]"
).
removeClass
(
"flagged"
)
@
$
(
"[data-role=thread-flag]"
).
addClass
(
"notflagged"
)
@
$
(
".discussion-flag-abuse .flag-label"
).
html
(
"Report Misuse"
)
updateModelDetails
:
=>
@
renderFlagged
()
\ No newline at end of file
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