lanqiu.py 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. # encoding: utf-8
  2. import datetime
  3. import pymongo
  4. import time
  5. import logging
  6. from twisted.internet import defer, reactor
  7. from ..utils.helper import Helper
  8. from .ball_func import new_time
  9. from ..settings import M_HOST, M_USER, M_PASSWORD, M_POST, M_DB, LEAGUE_URL, ODDS_URL, MATCH_URL
  10. class Lanqiupipeline(object):
  11. def open_spider(self, spider):
  12. self.mongo = pymongo.MongoClient(host=M_HOST, username=M_USER, password=M_PASSWORD, port=M_POST)
  13. self.db = self.mongo[M_DB]
  14. @defer.inlineCallbacks
  15. def process_item(self, item, spider):
  16. out = defer.Deferred()
  17. reactor.callInThread(self._do_calculation, item, out)
  18. yield out
  19. # defer.returnValue(item)
  20. # def process_item(self, item, spider):
  21. def _do_calculation(self, item, out):
  22. logger = logging.getLogger(__name__)
  23. # 联赛id
  24. league_id = item['league_id']
  25. # 联赛名
  26. league_name = item['league_name']
  27. # 比赛id
  28. match_id = item['game_id']
  29. # 球队1
  30. team_home = item['team_home']
  31. # 球队2
  32. team_guest = item['team_guest']
  33. # 数量(97>)
  34. tag_number = item['number']
  35. # 日期
  36. try:
  37. data_game = item['data_game'].split("/")
  38. month = str(data_game[1].strip())
  39. day = str(data_game[0].strip())
  40. except Exception as e:
  41. logger.warning(e)
  42. data_game = item['data_game'].split(" ")
  43. months = str(data_game[1].strip())
  44. month_dict = {'Jan': '01', 'Feb': '02', 'Mar': '03', 'Apr': '04', 'May': '05', 'Jun': '06', 'Jul': '07',
  45. 'Aug': '08', 'Sep': '09', 'Oct': '10', 'Nov': '11', 'Dec': '12'}
  46. month = month_dict[months]
  47. day = str(data_game[0].strip())
  48. # 比赛时间
  49. time_game = str(item['time_game'])
  50. # 比赛时间,时间戳
  51. us_time = "2019" + "-" + month + "-" + day + " " + time_game + ":00"
  52. # us_date = "{}-{}-{}".format(datetime.datetime.now().year, month, day)
  53. # 现在时间,时间戳
  54. utime = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
  55. pt = str(item['pt'])
  56. # 让球
  57. concedes_dict = item['concede']
  58. concedes_dict_rule = item['concede_rule']
  59. # 总得分单双
  60. odd_evens_dict = item['odd_even']
  61. odd_evens_dict_rule = item['odd_even_rule']
  62. # 总比分大小
  63. total_sizes_dict = item['total_size']
  64. total_sizes_dict_rule = item['total_size_rule']
  65. # 球队得分最后一位数
  66. last_numbers_dict = item['last_number']
  67. # 独赢
  68. capots_dict = item['capot']
  69. # 球队得分大小
  70. team_scores_dict = item['team_score']
  71. team_scores_dict_rule = item['team_score_rule']
  72. match_date, match_time, time3 = new_time(us_time)
  73. uuid = Helper.genearte_uuid(league_name)
  74. # 让球 数据插入数据库
  75. """联赛"""
  76. last_time = '{}-12-31 23:59:59'.format(datetime.datetime.now().year)
  77. if self.db.lq_league35.find({'lg_id': league_id}).count() < 1:
  78. league_dict = {"game_code": "lq", "title": "league", "source": "hg3535"}
  79. league_list = []
  80. league_key = ["name_chinese", "kind", "match_mode", "if_stop", "last_time", "lg_id", "source", "uuid"]
  81. league_value = [league_name, "1", "1", "0", last_time, league_id, "hg3535", uuid]
  82. league_data = dict(zip(league_key, league_value))
  83. league_list.append(league_data)
  84. league_dict['data'] = league_list
  85. res = Helper.async_post(LEAGUE_URL, league_dict)
  86. if res:
  87. if res.get('status') == 1:
  88. logger.info('篮球联赛提交成功, {}'.format(res))
  89. self.db.lq_league35.insert(league_data)
  90. else:
  91. logger.warning('篮球联赛提交失败, {}, {}'.format(res, league_dict))
  92. else:
  93. logger.warning('篮球联赛接口, 提交失败, {}, {}'.format(res, league_dict))
  94. else:
  95. logger.info('篮球联赛已存在')
  96. """赛事"""
  97. if pt == '3':
  98. is_rollball = 0
  99. is_today = 0
  100. is_morningplate = 0
  101. is_stringscene = 1
  102. elif pt == '2':
  103. is_rollball = 0
  104. is_today = 0
  105. is_morningplate = 1
  106. is_stringscene = 0
  107. else:
  108. is_today = 1
  109. is_rollball = 0
  110. is_morningplate = 0
  111. is_stringscene = 0
  112. pt_dict = {'1': 'is_today', '2': 'is_morningplate', '3': 'is_stringscene', '4': 'is_rollball'}
  113. pt_status = pt_dict[str(pt)]
  114. match_identity = Helper.genearte_uuid(team_home + team_guest + match_date)
  115. if self.db.lq_competition35.find({'match_id': match_id, pt_status: 1}).count() < 1:
  116. match_list = []
  117. match_dict = {"game_code": "lq", "title": "match", "source": "hg3535"}
  118. match_kay = ["home_team", "guest_team", "lg_id", "status", "match_id", "match_date", "match_time", "tag",
  119. "source", "is_rollball", "is_morningplate", "is_stringscene", "us_time", "uuid",
  120. "half_match_id", "is_today", 'pt', "is_horn", 'match_identity']
  121. match_value = [team_home, team_guest, league_id, 0, match_id, match_date, match_time, tag_number, "hg3535",
  122. is_rollball, is_morningplate, is_stringscene, us_time, uuid, 0, is_today, pt, 0, match_identity]
  123. match_data = dict(zip(match_kay, match_value))
  124. match_list.append(match_data)
  125. match_dict['data'] = match_list
  126. res = Helper.async_post(MATCH_URL, match_dict)
  127. if res:
  128. if res.get('status') == 1:
  129. logger.info('篮球赛事提交成功, {}'.format(res))
  130. self.db.lq_competition35.insert(match_data)
  131. else:
  132. logger.warning('篮球赛事提交失败, {}, {}'.format(res, match_dict))
  133. else:
  134. logger.warning('篮球赛事接口异常,提交失败, {}, {}'.format(res, match_dict))
  135. else:
  136. logger.info('篮球赛事已存在')
  137. """赔率"""
  138. data_list = []
  139. odds_onlys = []
  140. # 让球
  141. if concedes_dict:
  142. for key, value in concedes_dict.items():
  143. if value:
  144. for index, concedes_value in enumerate(value):
  145. sole_str = 'CO' + str(key) + str(index) + str(match_id) + 'hg3535'
  146. sole = Helper.genearte_MD5(sole_str, pt)
  147. condition = str(concedes_dict_rule[key][index])
  148. hash_str = "CO" + key + str(index) + condition + str(value) + "hg3535" + str(match_id)
  149. odds_only = Helper.genearte_MD5(hash_str, pt)
  150. concedes_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  151. "condition", "odds_only", "sole", "source", "type", "team"]
  152. concedes_dict_value = [match_id, league_id, key, '0', index, 'CO', concedes_value, condition,
  153. odds_only, sole, 'hg3535', '0', '']
  154. concedes_dict_data = dict(zip(concedes_dict_key, concedes_dict_value))
  155. data_list.append(concedes_dict_data)
  156. # 总得分单双
  157. if odd_evens_dict:
  158. for key, value in odd_evens_dict.items():
  159. sole_str = 'TS' + str(key) + '0' + str(match_id) + 'hg3535'
  160. sole = Helper.genearte_MD5(sole_str, pt)
  161. condition = str(odd_evens_dict_rule[key])
  162. hash_str = "TS" + key + '0' + condition + str(value) + "hg3535" + str(match_id)
  163. odds_only = Helper.genearte_MD5(hash_str, pt)
  164. odd_evens_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  165. "condition", "odds_only", "sole", "source", "type", "team"]
  166. odd_evens_dict_value = [match_id, league_id, key, '0', 0, 'TS', value, condition,
  167. odds_only, sole, 'hg3535', '0', '']
  168. odd_evens_dict_data = dict(zip(odd_evens_dict_key, odd_evens_dict_value))
  169. data_list.append(odd_evens_dict_data)
  170. # 总比分大小
  171. if total_sizes_dict:
  172. for key, value in total_sizes_dict.items():
  173. if value:
  174. for index, total_sizes_value in enumerate(value):
  175. sole_str = 'TN' + str(key) + str(index) + str(match_id) + 'hg3535'
  176. sole = Helper.genearte_MD5(sole_str, pt)
  177. condition = str(total_sizes_dict_rule[key][index])
  178. hash_str = "TN" + str(key) + str(index) + condition + str(total_sizes_value) + "hg3535" + str(match_id)
  179. odds_only = Helper.genearte_MD5(hash_str, pt)
  180. total_sizes_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  181. "condition", "odds_only", "sole", "source", "type", "team"]
  182. total_sizes_value = [match_id, league_id, key, '0', index, 'TN', total_sizes_value, condition,
  183. odds_only, sole, 'hg3535', '0', '']
  184. total_sizes_data = dict(zip(total_sizes_key, total_sizes_value))
  185. data_list.append(total_sizes_data)
  186. # 球队得分大小
  187. if team_scores_dict:
  188. for key, value in team_scores_dict.items():
  189. if value:
  190. for index, odd in enumerate(value):
  191. sole_str = "TB" + str(key) + '0' + str(match_id) + "hg3535"
  192. sole = Helper.genearte_MD5(sole_str, pt)
  193. condition = str(team_scores_dict_rule[key][index])
  194. hash_str = "TB" + key + str(index) + condition + str(odd) + "hg3535" + str(match_id)
  195. odds_only = Helper.genearte_MD5(hash_str, pt)
  196. team_scores_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  197. "condition", "odds_only", "sole", "source", "type", "team"]
  198. team_scores_value = [match_id, league_id, key, '0', 0, 'TB', odd, condition,
  199. odds_only, sole, 'hg3535', '0', '']
  200. team_scores_data = dict(zip(team_scores_key, team_scores_value))
  201. data_list.append(team_scores_data)
  202. # 球队得分最后一位数
  203. last_home_dict = {'0或5': 'lnh0', '1或6': 'lnh1', '2或7': 'lnh2', '3或8': 'lnh3', '4或9': 'lnh4'}
  204. last_home = last_numbers_dict['last_home']
  205. if last_home:
  206. for key, value in last_home.items():
  207. sole_str = "LN" + last_home_dict[key] + '0' + str(match_id) + "hg3535"
  208. sole = Helper.genearte_MD5(sole_str, pt)
  209. hash_str = "LN" + last_home_dict[key] + '0' + key + str(value) + "hg3535" + str(match_id)
  210. odds_only = Helper.genearte_MD5(hash_str, pt)
  211. last_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  212. "condition", "odds_only", "sole", "source", "type", "team"]
  213. last_home_value = [match_id, league_id, last_home_dict[key], '0', 0, 'LN', value, key, odds_only, sole, 'hg3535', '0', '']
  214. last_home_data = dict(zip(last_home_key, last_home_value))
  215. data_list.append(last_home_data)
  216. last_guest = last_numbers_dict['last_guest']
  217. last_guest_dict = {'0或5': 'lng0', '1或6': 'lng1', '2或7': 'lng2', '3或8': 'lng3', '4或9': 'lng4'}
  218. if last_guest:
  219. for key, value in last_guest.items():
  220. sole_str = "LN" + last_guest_dict[key] + '0' + str(match_id) + "hg3535"
  221. sole = Helper.genearte_MD5(sole_str, pt)
  222. hash_str = "LN" + last_guest_dict[key] + '0' + key + str(value) + "hg3535" + str(match_id)
  223. odds_only = Helper.genearte_MD5(hash_str, pt)
  224. last_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  225. "condition", "odds_only", "sole", "source", "type", "team"]
  226. last_guest_value = [match_id, league_id, last_guest_dict[key], '0', 0, 'LN', value, key, odds_only, sole, 'hg3535', '0', '']
  227. last_guest_data = dict(zip(last_guest_key, last_guest_value))
  228. data_list.append(last_guest_data)
  229. # 独赢
  230. if capots_dict:
  231. for key, value in capots_dict.items():
  232. sole_str = "C" + str(key) + '0' + str(match_id) + "hg3535"
  233. sole = Helper.genearte_MD5(sole_str, pt)
  234. hash_str = "C" + str(key) + '0' + '0' + str(value) + "hg3535" + str(match_id)
  235. odds_only = Helper.genearte_MD5(hash_str, pt)
  236. capots_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  237. "condition", "odds_only", "sole", "source", "type", "team"]
  238. capots_value = [match_id, league_id, key, '0', 0, 'C', value, '',
  239. odds_only, sole, 'hg3535', '0', '']
  240. capots_data = dict(zip(capots_key, capots_value))
  241. data_list.append(capots_data)
  242. if pt == '3':
  243. ris_stringscene = 1
  244. else:
  245. ris_stringscene = 0
  246. odds_key = ["game_code", "title", "match_id", "lg_id", "data", "source", "odds_only", "tag", "uuid",
  247. "is_stringscene", "utime", "pt", 'match_identity']
  248. odds_value = ["lq", "odds", match_id, league_id, data_list, "hg3535", odds_onlys, tag_number, uuid,
  249. ris_stringscene, utime, pt, match_identity]
  250. odds_dict = dict(zip(odds_key, odds_value))
  251. if data_list:
  252. res = Helper.async_post(ODDS_URL, odds_dict)
  253. if res:
  254. if res.get('status') == 1:
  255. logger.info('篮球详细赔率提交成功, {}'.format(res))
  256. # logger.info(odds_dict)
  257. else:
  258. logger.warning('篮球详细赔率提交成功, {}, {}'.format(res, odds_dict))
  259. # logger.warning(odds_dict)
  260. else:
  261. logger.warning('篮球详细赔率接口异常, 提交成功, {}, {}'.format(res, odds_dict))
  262. # logger.warning(odds_dict)
  263. else:
  264. logger.info('详细赔率列表为空')
  265. reactor.callFromThread(out.callback, item)