Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
V
vest
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
2
Merge Requests
2
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
rank
vest
Commits
4881554d
Commit
4881554d
authored
Jan 09, 2020
by
lixiaofang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改判断方式
parent
5126ca0d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
21 deletions
+23
-21
comment_fun.py
comment/views/comment_fun.py
+23
-21
No files found.
comment/views/comment_fun.py
View file @
4881554d
...
...
@@ -98,6 +98,29 @@ def comment(card_info):
return
False
else
:
###判断一下如果评论为空就重新拿一个
if
not
card_info
[
'comment_content'
]:
comment
=
get_vest_userid_and_comment
(
need_comment_num
=
1
,
tag_names
=
card_info
[
'tag_names'
])[
0
]
card_info
[
'comment_content'
]
=
comment
##在这里加一个判断 如果当前的评论的user_id和评论内容已经在这个评论下了就不再下发给同一个回答ID
else
:
key
=
'have_reply_answer_comment:'
+
str
(
card_info
[
'card_id'
])
redis_data
=
redis_client
.
hget
(
key
,
card_info
[
'current_user_id'
])
if
redis_data
:
datas
=
json
.
loads
(
redis_data
,
encoding
=
"utf-8"
)
if
card_info
[
'comment_content'
]
in
datas
:
logging
.
info
(
"当前评论和当前的用户已经存在了"
)
return
True
else
:
datas
.
append
(
card_info
[
'comment_content'
])
redis_client
.
hset
(
key
,
card_info
[
'current_user_id'
],
json
.
dumps
(
datas
))
else
:
conent
=
[
card_info
[
'comment_content'
]]
redis_client
.
hset
(
key
,
card_info
[
'current_user_id'
],
json
.
dumps
(
conent
))
####当天下发的次数存起来,每次下发判断已经下发了多少个 如果当前下发相等不再下发
today
=
datetime
.
datetime
.
now
()
str_today
=
str
(
today
.
year
)
+
str
(
today
.
month
)
+
str
(
today
.
day
)
...
...
@@ -123,27 +146,6 @@ def comment(card_info):
logging
.
info
(
"get action:comment,card_id:
%
s,redis_data:
%
s"
%
(
card_info
[
'card_id'
],
redis_data
))
###判断一下如果评论为空就重新拿一个
if
not
card_info
[
'comment_content'
]:
comment
=
get_vest_userid_and_comment
(
need_comment_num
=
1
,
tag_names
=
card_info
[
'tag_names'
])[
0
]
card_info
[
'comment_content'
]
=
comment
##在这里加一个判断 如果当前的评论的user_id和评论内容已经在这个评论下了就不再下发给同一个回答ID
else
:
key
=
'have_reply_answer_comment:'
+
str
(
card_info
[
'card_id'
])
redis_data
=
redis_client
.
hget
(
key
,
card_info
[
'current_user_id'
])
if
redis_data
:
datas
=
json
.
loads
(
redis_data
,
encoding
=
"utf-8"
)
if
card_info
[
'comment_content'
]
in
datas
:
logging
.
info
(
"当前评论和当前的用户已经存在了"
)
pass
else
:
datas
.
append
(
card_info
[
'comment_content'
])
redis_client
.
hset
(
key
,
card_info
[
'current_user_id'
],
json
.
dumps
(
datas
))
else
:
conent
=
[
card_info
[
'comment_content'
]]
redis_client
.
hset
(
key
,
card_info
[
'current_user_id'
],
json
.
dumps
(
conent
))
rpc_invoker
=
get_rpc_invoker
()
try
:
...
...
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