Commit d168d0e3 authored by 王浩's avatar 王浩

Merge branch 'haow/hotfix' into 'test'

add check when create reply

See merge request alpha/saturn!71
parents 70001311 2cfc4b5b
import json
from api.views.base_view import BaseView
from alpha_types.venus.enum import REPLY_TYPE
from api.utils.sensitive import Sensitive
class CreateReplyForInner(BaseView):
"""
内部使用,创建评论回复
"""
def check_sensitive_content(self, content):
# 敏感词检测,获取可用的帖子
check_info = Sensitive.check([content])
succ = check_info.get(content)
if not succ:
return content
else:
return
def post(self, request):
user_id = request.POST.get('user_id')
topic_id = request.POST.get('topic_id')
content = request.POST.get('content', '')
replied_id = request.POST.get('replied_id')
reply_type = request.POST.get('type', REPLY_TYPE.PUPPET_REPLY)
if reply_type not in (REPLY_TYPE.PUPPET_REPLY, REPLY_TYPE.PUPPET_REPLY_ANS):
if not self.check_sensitive_content(content):
return
error, data = self.call_rpc('venus/community/reply/for_inner_create', user_id=user_id, topic_id=topic_id, content=content, replied_id=replied_id)
error, data = self.call_rpc('venus/community/reply/for_inner_create',
user_id=user_id, topic_id=topic_id, content=content,
replied_id=replied_id, reply_type=reply_type)
if error:
return self.error(error)
......
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