diff --git a/api/skin_check.py b/api/skin_check.py index 54b4ef3d02d4539c3510d1942d2289699c59279e..e770bf2bca729813b085169f171dc33b8bbe7745 100644 --- a/api/skin_check.py +++ b/api/skin_check.py @@ -2,7 +2,11 @@ # -*- coding: utf-8 -*- import json -import string +import re +from zhon import ( + hanzi, + pinyin, +) from alpha_types.venus.enum import ( SKIN_ALL_CLASSIFY, @@ -94,7 +98,6 @@ class SkinCheckConfig(APIView): :param text: :return: """ - text = text.encode("utf-8").decode("utf-8") return text.replace(" ", "") def _input_string_check(self, text, check_str): @@ -104,9 +107,17 @@ class SkinCheckConfig(APIView): :param check_str: :return: æ²¡æœ‰æ ‡ç¾ç¬¦å·ï¼Œé»˜è®¤è¿”回True """ - punctuation_marks = list(filter(lambda x: x in string.punctuation, text)) - if punctuation_marks: + if re.search("[{}]+".format(hanzi.punctuation), text): # 如果å˜åœ¨ä¸æ–‡æ ‡ç‚¹ç¬¦å· + return False + + punctuation_marks = re.findall("[{}]+".format(pinyin.punctuation), text) # è‹±æ–‡æ ‡ç‚¹ç¬¦å· + + if len(punctuation_marks) == len(text): # å¦‚æžœå…¨éƒ¨æ˜¯è‹±æ–‡æ ‡ç‚¹ç¬¦å· + return False + + elif punctuation_marks: # 判æ–是å¦éƒ½æ˜¯ä»¥ check_str 分隔 return all(map(lambda p: p == check_str, punctuation_marks)) + return True def get(self, request): @@ -200,7 +211,7 @@ class SkinCheckConfig(APIView): if _raise_message: return { - "message": u"{} æ ‡ç‚¹ç¬¦å·é”™è¯¯ï¼è¯·ä»¥è‹±æ–‡é€—å·åˆ†éš”".format(_raise_message), + "message": u"{} 文案有误ï¼è¯·è¾“入文å—,多个文å—之间以英文逗å·åˆ†éš”ï¼".format(_raise_message), } info_logger.info("skin_check config modify data: {}".format(json.dumps(modify_data))) diff --git a/requirements.txt b/requirements.txt index 7786fc57ba0e05c19dfba0236367eb17c35ecc37..09ffd9b1dfadbf628f7fd1f15f229f135054a352 100644 --- a/requirements.txt +++ b/requirements.txt @@ -20,3 +20,4 @@ kombu==4.2.2.post1 requests==2.21.0 redis==2.10.6 openpyxl==2.6.2 +zhon==1.1.5