Commit 2ea411aa authored by 谢祁峰's avatar 谢祁峰

Merge branch 'test' of git.wanmeizhensuo.com:alpha/physical into test

parents e3aa4fdb 2503ca69
...@@ -42,9 +42,10 @@ def batch_handle(topic_id_list): ...@@ -42,9 +42,10 @@ def batch_handle(topic_id_list):
response = reply_answer(cookies, topic_id, comment1) response = reply_answer(cookies, topic_id, comment1)
response = json.loads(response) response = json.loads(response)
cookies = login() cookies = login()
reply_id = response["data"]["id"] reply_id = response["data"].get('id')
time = get_rand_time() if reply_id:
reply2.apply_async(args=(cookies, topic_id, comment2, reply_id), eta=time) time = get_rand_time()
reply2.apply_async(args=(cookies, topic_id, comment2, reply_id), eta=time)
......
...@@ -41,9 +41,10 @@ def batch_handle(topic_id_list): ...@@ -41,9 +41,10 @@ def batch_handle(topic_id_list):
response = reply_answer(cookies, topic_id, comment1) response = reply_answer(cookies, topic_id, comment1)
response = json.loads(response) response = json.loads(response)
cookies = login() cookies = login()
reply_id = response["data"]["id"] reply_id = response["data"].get('id')
time = get_rand_time(hourup=0) if reply_id:
reply2.apply_async(args=(cookies, topic_id, comment2, reply_id), eta=time) time = get_rand_time(hourup=0)
reply2.apply_async(args=(cookies, topic_id, comment2, reply_id), eta=time)
except: except:
logging_exception() logging_exception()
......
...@@ -116,13 +116,13 @@ def logins(user_id): ...@@ -116,13 +116,13 @@ def logins(user_id):
@shared_task(retry_kwargs={'max_retries': 0}) @shared_task(retry_kwargs={'max_retries': 0})
def click(cookies_get, id): def click(cookies_get, id):
click_key = 'click topic_id:%s, cookies_get: %s' % (cookies_get, id) click_key = 'click topic_id:%s, cookies_get: %s' % (str(cookies_get), str(id))
cache_count = click_cache.get(click_key) cache_count = click_cache.get(click_key)
if cache_count: if cache_count:
return return
else: else:
click_cache.set(click_key, 1) click_cache.set(click_key, 1)
click_cache.expire(click_key, settings.cache_seconds) click_cache.expire(click_key, settings.CACHE_SECONDS)
# 点赞 # 点赞
try: try:
...@@ -158,13 +158,13 @@ def click(cookies_get, id): ...@@ -158,13 +158,13 @@ def click(cookies_get, id):
@shared_task(retry_kwargs={'max_retries': 0}) @shared_task(retry_kwargs={'max_retries': 0})
def reply(cookies_get, id, content): def reply(cookies_get, id, content):
reply_key = 'click topic_id:%s, cookies_get: %s, content:%s' % (id, cookies_get, content) reply_key = 'click topic_id:%s, cookies_get: %s, content:%s' % (str(id), str(cookies_get), str(content))
cache_count = reply_cache.get(reply_key) cache_count = reply_cache.get(reply_key)
if cache_count: if cache_count:
return return
else: else:
reply_cache.set(reply_key, 1) reply_cache.set(reply_key, 1)
reply_cache.expire(reply_key, settings.cache_seconds) reply_cache.expire(reply_key, settings.CACHE_SECONDS)
try: try:
post_dict = { post_dict = {
'topic_id': id, 'topic_id': id,
...@@ -289,13 +289,13 @@ def get_comments(): ...@@ -289,13 +289,13 @@ def get_comments():
@shared_task(retry_kwargs={'max_retries': 0}) @shared_task(retry_kwargs={'max_retries': 0})
def follow(cookies_get, id): def follow(cookies_get, id):
follow_key = 'click user_id:%s, cookies_get: %s' % (id, cookies_get) follow_key = 'click user_id:%s, cookies_get: %s' % (str(id), str(cookies_get))
cache_count = follow_cache.get(follow_key) cache_count = follow_cache.get(follow_key)
if cache_count: if cache_count:
return return
else: else:
follow_cache.set(follow_key, 1) follow_cache.set(follow_key, 1)
follow_cache.expire(follow_key, settings.cache_seconds) follow_cache.expire(follow_key, settings.CACHE_SECONDS)
try: try:
post_dict = { post_dict = {
'type': 1, 'type': 1,
...@@ -462,13 +462,14 @@ def set_reply_to_redis(): ...@@ -462,13 +462,14 @@ def set_reply_to_redis():
@shared_task(retry_kwargs={'max_retries': 0}) @shared_task(retry_kwargs={'max_retries': 0})
def reply2(cookies_get, id, content, replied_id): def reply2(cookies_get, id, content, replied_id):
reply_key = 'click topic_id:%s, cookies_get: %s, content:%s' % (id, cookies_get, content) reply_key = 'click topic_id:%s, cookies_get: %s, content:%s, replied_id: %s' % \
(str(id), str(cookies_get), str(content), str(replied_id))
cache_count = reply_cache.get(reply_key) cache_count = reply_cache.get(reply_key)
if cache_count: if cache_count:
return return
else: else:
reply_cache.set(reply_key, 1) reply_cache.set(reply_key, 1)
reply_cache.expire(reply_key, settings.cache_seconds) reply_cache.expire(reply_key, settings.CACHE_SECONDS)
try: try:
post_dict = { post_dict = {
'topic_id': id, 'topic_id': id,
...@@ -490,13 +491,13 @@ def reply2(cookies_get, id, content, replied_id): ...@@ -490,13 +491,13 @@ def reply2(cookies_get, id, content, replied_id):
@shared_task(retry_kwargs={'max_retries': 0}) @shared_task(retry_kwargs={'max_retries': 0})
def pictorial_reply(cookies_get, id, content): def pictorial_reply(cookies_get, id, content):
reply_key = 'click topic_id:%s, cookies_get: %s, content:%s' % (id, cookies_get, content) reply_key = 'click topic_id:%s, cookies_get: %s, content:%s' % (str(id), str(cookies_get), str(content))
cache_count = reply_cache.get(reply_key) cache_count = reply_cache.get(reply_key)
if cache_count: if cache_count:
return return
else: else:
reply_cache.set(reply_key, 1) reply_cache.set(reply_key, 1)
reply_cache.expire(reply_key, settings.cache_seconds) reply_cache.expire(reply_key, settings.CACHE_SECONDS)
try: try:
post_dict = { post_dict = {
'pictorial_id': id, 'pictorial_id': id,
......
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