Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
sun
Project
Project
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
钟尚武
sun
Commits
0e0c50c9
Commit
0e0c50c9
authored
5 years ago
by
haowang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix code
parent
e0d18329
master
dev
like-pre/r01
quick-reply
refactor
test
No related merge requests found
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
3 deletions
+19
-3
reply.py
api/reply.py
+18
-2
urls.py
api/urls.py
+1
-1
No files found.
api/reply.py
View file @
0e0c50c9
from
datetime
import
datetime
import
json
from
utils.base
import
APIView
from
utils.logger
import
error_logger
from
alpha_types.venus
import
REPLY_TYPE
,
REPLY_BELONG_TYPE
,
USER_EXTRA_TYPE
...
...
@@ -60,7 +61,7 @@ class ReplyListView(APIView):
filters
[
'create_time__lte'
]
=
to_create_time
try
:
data
=
self
.
rpc
[
'venus/sun/reply/list'
](
offset
=
(
page
-
1
)
*
limit
,
limit
=
limit
,
filters
=
filters
,
other_filters
=
other_filters
)
.
unwrap
()
data
=
self
.
rpc
[
'venus/sun/
manage/
reply/list'
](
offset
=
(
page
-
1
)
*
limit
,
limit
=
limit
,
filters
=
filters
,
other_filters
=
other_filters
)
.
unwrap
()
except
Exception
as
e
:
error_logger
.
error
(
u'获取reply列表失败
%
s'
,
e
)
raise
...
...
@@ -86,7 +87,7 @@ class ReplyCreateView(APIView):
'type'
:
REPLY_TYPE
.
PUPPET_REPLY_ANS
,
}
try
:
rep
=
self
.
rpc
[
'venus/sun/
reply/edit'
](
id_
=
id_
,
data
=
data
,
)
.
unwrap
()
rep
=
self
.
rpc
[
'venus/sun/
manage/reply/edit'
](
id_
=
id_
,
data
=
data
)
.
unwrap
()
except
Exception
as
e
:
error_logger
.
error
(
u'创建/编辑
%
s-reply信息失败
%
s'
%
(
id
,
e
))
raise
...
...
@@ -94,3 +95,18 @@ class ReplyCreateView(APIView):
"message"
:
'更新成功'
,
"id"
:
rep
[
'id'
]
}
class
ReplyBatchUpdate
(
APIView
):
def
post
(
self
,
request
):
ids
=
json
.
loads
(
request
.
POST
.
get
(
'ids'
,
'[]'
))
is_online
=
request
.
POST
.
get
(
'is_online'
,
None
)
try
:
rep
=
self
.
rpc
[
'venus/sun/reply/manage/batch/update'
](
ids
=
ids
,
is_online
=
is_online
)
.
unwrap
()
except
Exception
as
e
:
error_logger
.
error
(
u'更新-reply信息失败
%
s'
%
(
e
))
raise
return
{
"message"
:
'更新成功'
,
}
This diff is collapsed.
Click to expand it.
api/urls.py
View file @
0e0c50c9
...
...
@@ -220,7 +220,7 @@ urlpatterns = [
# 评论管理
url
(
r'^reply/list$'
,
ReplyListView
.
as_view
()),
url
(
r'^reply/create$'
,
ReplyCreateView
.
as_view
()),
url
(
r'^reply/batch/update$'
,
ReplyBatchUpdate
.
as_view
()),
]
search_urlpatterns
=
[
...
...
This diff is collapsed.
Click to expand it.
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