Commit 539ed5f4 authored by haowang's avatar haowang

add check sensitive in topic crawl from app

parent 4c15a57a
......@@ -123,6 +123,8 @@ class CreateTopicForBatch(BaseView):
topic_list = json.loads(request.POST.get("topic_list", '[]'))
pictorial_tag_ids = json.loads(request.POST.get("tag_ids", '[]'))
is_app = request.POST.get('is_app', None)
info_logger.info({
'user_id': user_id,
'card_level': card_level,
......@@ -144,8 +146,13 @@ class CreateTopicForBatch(BaseView):
return self.ok()
# 敏感词检测,获取可用的帖子
# checked_topics = self.check_sensitive_content(topic_list)
checked_topics = topic_list
if is_app:
if int(is_app) == 1:
checked_topics = self.check_sensitive_content(topic_list)
else:
checked_topics = topic_list
else:
checked_topics = topic_list
topics = []
for topic in checked_topics:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment