Commit bae7b38b authored by yangchenglin's avatar yangchenglin

location

parent 4b6e0c84
...@@ -19,7 +19,7 @@ class CreateTagForBatch(BaseView): ...@@ -19,7 +19,7 @@ class CreateTagForBatch(BaseView):
for tag in tag_list: for tag in tag_list:
succ = check_info.get(tag.get("name")) if tag.get("name") else True succ = check_info.get(tag.get("name")) if tag.get("name") else True
if not succ: if not succ:
tags.append(tag) tags.append({"name": tag})
else: else:
tags = tag_list tags = tag_list
error, data = self.call_rpc('venus/community/tag/batch_create_not_classify', data=tags) error, data = self.call_rpc('venus/community/tag/batch_create_not_classify', data=tags)
......
...@@ -57,6 +57,7 @@ class CreateTopicForBatch(BaseView): ...@@ -57,6 +57,7 @@ class CreateTopicForBatch(BaseView):
if not topics: if not topics:
return self.ok() return self.ok()
locations = []
tag_names = [] tag_names = []
for item in topics: for item in topics:
tags = item.get("tags") or [] tags = item.get("tags") or []
...@@ -65,6 +66,11 @@ class CreateTopicForBatch(BaseView): ...@@ -65,6 +66,11 @@ class CreateTopicForBatch(BaseView):
item["card_level"] = card_level item["card_level"] = card_level
item["tag_id"] = tag_id if tag_id else None item["tag_id"] = tag_id if tag_id else None
item["is_online"] = is_online item["is_online"] = is_online
if item.get("location") and item.get("location").get("name"):
locations.append({
"name": item.get("location").get("name"),
"is_location": True
})
not_exists_ids = [] not_exists_ids = []
topic_list = [] topic_list = []
...@@ -92,12 +98,17 @@ class CreateTopicForBatch(BaseView): ...@@ -92,12 +98,17 @@ class CreateTopicForBatch(BaseView):
# check_info = Sensitive.check(tag_names) # check_info = Sensitive.check(tag_names)
# tags = [tag_name for tag_name, succ in check_info.items() if not succ] # tags = [tag_name for tag_name, succ in check_info.items() if not succ]
tags = tag_names tags = [{
"name": item,
"is_own": True,
} for item in tag_names]
tags.extend(locations)
# 先创建标签 # 先创建标签
_tag_error, _tag_data = self.call_rpc( _tag_error, _tag_data = self.call_rpc(
"venus/community/tag/batch_create_tag_by_name", "venus/community/tag/batch_create_tag_by_name",
tag_names=tags, is_own=1 tags=tags
) )
if _tag_error: if _tag_error:
return self.error(_tag_error) return self.error(_tag_error)
...@@ -107,6 +118,10 @@ class CreateTopicForBatch(BaseView): ...@@ -107,6 +118,10 @@ class CreateTopicForBatch(BaseView):
for item in topic_list: for item in topic_list:
tags = item.get("tags") or [] tags = item.get("tags") or []
tags = [tag.replace("#", '').strip() for tag in tags] tags = [tag.replace("#", '').strip() for tag in tags]
#添加地域标签
if item.get("location") and item.get("location").get("name"):
tags.append(item.get("location").get("name"))
content = item["content"] content = item["content"]
for tag_name, tag_id in _tag_data.items(): for tag_name, tag_id in _tag_data.items():
if tag_name in tags: if tag_name in tags:
...@@ -181,12 +196,12 @@ class CreateTopicForBatchByOne(BaseView): ...@@ -181,12 +196,12 @@ class CreateTopicForBatchByOne(BaseView):
# check_info = Sensitive.check(tag_names) # check_info = Sensitive.check(tag_names)
# tags = [tag_name for tag_name, succ in check_info.items() if not succ] # tags = [tag_name for tag_name, succ in check_info.items() if not succ]
# check_info = Sensitive.check(tag_names) # check_info = Sensitive.check(tag_names)
tags = tag_names tags = [{"name": item} for item in tag_names]
# 先创建标签 # 先创建标签
_tag_error, _tag_data = self.call_rpc( _tag_error, _tag_data = self.call_rpc(
"venus/community/tag/batch_create_tag_by_name", "venus/community/tag/batch_create_tag_by_name",
tag_names=tags tags=tags
) )
if _tag_error: if _tag_error:
return self.error(_tag_error) return self.error(_tag_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