Commit 43a59ec5 authored by lixiaofang's avatar lixiaofang

add

parent 117f004c
...@@ -20,26 +20,6 @@ my_sender = 'lixiaofang@igengmei.com' ...@@ -20,26 +20,6 @@ my_sender = 'lixiaofang@igengmei.com'
my_pass = 'tg5AVKBB8jLQGBET' my_pass = 'tg5AVKBB8jLQGBET'
my_user6 = "lixiaofang@igengmei.com" my_user6 = "lixiaofang@igengmei.com"
# auto_click_url = "http://earth.igengmei.env/api/v1/like"
# auto_reply_url = "http://earth.igengmei.env/api/v1/reply/create"
# auto_follow_url = "http://earth.igengmei.env/api/v1/follow"
# auto_urge_url = "http://earth.igengmei.env/api/v1/user/urge"
# DATABASES = {
# 'default': {
# 'ENGINE': 'django.db.backends.mysql',
# 'NAME': 'alpha',
# 'USER': 'work',
# 'PASSWORD': 'Gengmei123',
# 'HOST': 'rm-2zeaut61u9sm21m0b.mysql.rds.aliyuncs.com',
# 'PORT': '3306',
# 'OPTIONS': {
# "init_command": "SET foreign_key_checks = 0;",
# "charset": "utf8mb4",
# },
# }
# }
DATABASES = { DATABASES = {
'default': { 'default': {
'ENGINE': 'django.db.backends.mysql', 'ENGINE': 'django.db.backends.mysql',
...@@ -129,7 +109,8 @@ def click(cookies_get, id): ...@@ -129,7 +109,8 @@ def click(cookies_get, id):
data=post_dict) data=post_dict)
logging.info("response.text:%s" % response.text) logging.info("response.text:%s" % response.text)
get_error(response.text)
get_error(response.text, "click", id)
except: except:
logging.error("catch exception,logins:%s" % traceback.format_exc()) logging.error("catch exception,logins:%s" % traceback.format_exc())
...@@ -147,7 +128,7 @@ def reply(cookies_get, id, content): ...@@ -147,7 +128,7 @@ def reply(cookies_get, id, content):
data=post_dict) data=post_dict)
logging.info("response.text:%s" % response.text) logging.info("response.text:%s" % response.text)
get_error(response.text) get_error(response.text, "reply", id)
except: except:
logging.error("catch exception,logins:%s" % traceback.format_exc()) logging.error("catch exception,logins:%s" % traceback.format_exc())
...@@ -241,7 +222,7 @@ def follow(cookies_get, id): ...@@ -241,7 +222,7 @@ def follow(cookies_get, id):
data=post_dict) data=post_dict)
logging.info("response.text:%s" % response.text) logging.info("response.text:%s" % response.text)
get_error(response.text) get_error(response.text, "follow", id)
except: except:
logging.error("catch exception,logins:%s" % traceback.format_exc()) logging.error("catch exception,logins:%s" % traceback.format_exc())
...@@ -257,7 +238,7 @@ def Urge(cookies_get, id): ...@@ -257,7 +238,7 @@ def Urge(cookies_get, id):
data=post_dict) data=post_dict)
logging.info("response.text:%s" % response.text) logging.info("response.text:%s" % response.text)
get_error(response.text) get_error(response.text, "Urge", id)
except: except:
logging.error("catch exception,logins:%s" % traceback.format_exc()) logging.error("catch exception,logins:%s" % traceback.format_exc())
...@@ -333,12 +314,12 @@ def send_email(stat_data): ...@@ -333,12 +314,12 @@ def send_email(stat_data):
logging.error("catch exception,main:%s" % traceback.format_exc()) logging.error("catch exception,main:%s" % traceback.format_exc())
def get_error(line): def get_error(line, type, id):
try: try:
if len(line) > 1: if len(line) > 1:
data_dict = json.loads(line) data_dict = json.loads(line)
if data_dict["error"] != 0: if data_dict["error"] != 0:
stat_data = str(line) stat_data = str(line) + str(type) + str(id)
ret = send_email(stat_data) ret = send_email(stat_data)
if ret: if ret:
logging.info('like query统计邮件发送成功') logging.info('like query统计邮件发送成功')
......
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