bangqiu.py 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. import datetime
  2. import pymongo
  3. import time
  4. import logging
  5. from twisted.internet import defer, reactor
  6. from ..utils.helper import Helper
  7. from .ball_func import new_time
  8. from ..settings import M_HOST, M_USER, M_PASSWORD, M_POST, M_DB, LEAGUE_URL, ODDS_URL, MATCH_URL
  9. class Bangqiupipeline(object):
  10. def open_spider(self, spider):
  11. self.mongo = pymongo.MongoClient(host=M_HOST, username=M_USER, password=M_PASSWORD, port=M_POST,
  12. authSource=M_DB)
  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 _do_calculation(self, item, out):
  21. # def process_item(self, item, spider):
  22. logger = logging.getLogger(__name__)
  23. # logger.warning(query.addErrback(self.handle_error, item, spider))
  24. # 联赛id
  25. league_id = item['league_id']
  26. # 联赛名
  27. league_name = item['league_name']
  28. # result = item['result']
  29. # 比赛id
  30. match_id = item['game_id']
  31. # 球队1
  32. team_home = item['team_home']
  33. # 球队2
  34. team_guest = item['team_guest']
  35. # 数量(97>)
  36. tag_number = item['number']
  37. # 比赛状态
  38. zhuangtai = item['zhuangtai']
  39. # 日期
  40. # data_game = item['data_game']
  41. try:
  42. data_game = item['data_game'].split("/")
  43. month = str(data_game[1].strip())
  44. day = str(data_game[0]).strip()
  45. except Exception as e:
  46. data_game = item['data_game'].split(" ")
  47. months = str(data_game[1].strip())
  48. month_dict = {'Jan': '01', 'Feb': '02', 'Mar': '03', 'Apr': '04', 'May': '05', 'Jun': '06', 'Jul': '07',
  49. 'Aug': '08', 'Sep': '09', 'Oct': '10', 'Nov': '11', 'Dec': '12'}
  50. month = month_dict[months]
  51. day = str(data_game[0]).strip()
  52. # 比赛时间
  53. time_game = str(item['time_game'])
  54. # 比赛时间,时间戳
  55. ctime = str(datetime.datetime.now().year) + "-" + month + "-" + day + " " + time_game + ":00"
  56. # us_date = "{}-{}-{}".format(datetime.datetime.now().year, month, day)
  57. # 现在时间,时间戳
  58. utime = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
  59. # expire_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(time.time() + 60))
  60. # # 队1分数
  61. # score_home = item['score_home']
  62. # # 队2分数
  63. # score_guest = item['score_guest']
  64. # # 第几节
  65. # jijie = item['jijie']
  66. # # 球队得分
  67. # qiudui = item['qiudui']
  68. pt = str(item['pt'])
  69. # 让球
  70. concedes_dict = item['concedes_dict']
  71. concedes_dict_rule = item['concedes_dict_rule']
  72. # 独赢
  73. capots_dict = item['capots_dict']
  74. # 总得分大小
  75. total_size_dict = item['total_size_dict']
  76. total_size_dict_rule = item['total_size_dict_rule']
  77. # 总得分单双
  78. odd_evens_dict = item['odd_evens_dict']
  79. odd_evens_dict_rule = item['odd_evens_dict_rule']
  80. # # 球队得分 主队
  81. # try:
  82. # team_score_home_dict = item['team_score_home_dict']
  83. # team_score_home_rule_dict = item['team_score_home_rule_dict']
  84. # except:
  85. # team_score_home_dict = ""
  86. # team_score_home_rule_dict = ""
  87. # # 球队得分 客队
  88. # try:
  89. # team_score_guest_dict = item['team_score_guest_dict']
  90. # team_score_guest_rule_dict = item['team_score_guest_rule_dict']
  91. # except:
  92. # team_score_guest_dict = ""
  93. # team_score_guest_rule_dict = ""
  94. # bangqiu = item['bangqiu']
  95. match_date, match_time, time3 = new_time(ctime)
  96. us_time = ctime
  97. uuid = Helper.genearte_uuid(league_name)
  98. """联赛表"""
  99. last_time = '{}-12-31 23:59:59'.format(datetime.datetime.now().year)
  100. if self.db.bq_league35.find({'lg_id': league_id}).count() < 1:
  101. league_dict = {"game_code": "bq", "title": "league", "source": "hg3535"}
  102. league_list = []
  103. league_key = ["name_chinese", "kind", "match_mode", "if_stop", "last_time", "lg_id", "source", "uuid"]
  104. league_value = [league_name, "1", "1", "0", last_time, league_id, "hg3535", uuid]
  105. league_data = dict(zip(league_key, league_value))
  106. league_list.append(league_data)
  107. league_dict['data'] = league_list
  108. res = Helper.async_post(LEAGUE_URL, league_dict)
  109. if res:
  110. if res.get('status') == 1:
  111. self.db.bq_league35.insert(league_data)
  112. logger.info('棒球联赛提交成功, {}'.format(res))
  113. else:
  114. logger.warning('棒球联赛提交失败, {}'.format(res))
  115. # logger.warning(league_dict)
  116. else:
  117. logger.warning('棒球滚球联赛,接口异常,提交失败, {}'.format(res))
  118. # logger.warning(league_dict)
  119. else:
  120. logger.info('棒球滚球联赛, 已存在不提交')
  121. pt_dict = {'1': 'is_today', '2': 'is_morningplate', '3': 'is_stringscene', '4': 'is_rollball'}
  122. pt_status = pt_dict[pt]
  123. if pt == '3':
  124. is_rollball = 0
  125. is_today = 0
  126. is_morningplate = 0
  127. is_stringscene = 1
  128. elif pt == '2':
  129. is_rollball = 0
  130. is_today = 0
  131. is_morningplate = 1
  132. is_stringscene = 0
  133. else:
  134. is_today = 1
  135. is_rollball = 0
  136. is_morningplate = 0
  137. is_stringscene = 0
  138. """插入赛事表"""
  139. match_identity = Helper.genearte_uuid(team_home + team_guest + match_date)
  140. if self.db.bq_competition35.find({"match_id": match_id, pt_status: 1}).count() < 1:
  141. match_list = []
  142. match_dict = {"game_code": "bq", "title": "match", "source": "hg3535"}
  143. match_key = ["home_team", "guest_team", "lg_id", "status", "match_id", "match_date", "match_time",
  144. "tag", "source", "is_rollball", "is_morningplate", "is_stringscene", "us_time", "uuid",
  145. "half_match_id", "is_today", "is_horn", 'match_identity']
  146. match_value = [team_home, team_guest, league_id, 0, match_id, match_date, match_time, tag_number,
  147. "hg3535", is_rollball, is_morningplate, is_stringscene, us_time, uuid, 0, is_today, 0, match_identity]
  148. match_data = dict(zip(match_key, match_value))
  149. match_list.append(match_data)
  150. match_dict['data'] = match_list
  151. res = Helper.async_post(MATCH_URL, match_dict)
  152. if res:
  153. if res.get('status') == 1:
  154. self.db.bq_competition35.insert(match_data)
  155. # self.db.bq_competition35.update({"match_id": match_id, pt_status: 1}, {'$set': match_data},
  156. # upsert=True)
  157. logger.info('棒球赛事提交成功, {}'.format(res))
  158. else:
  159. logger.warning('棒球赛事提交失败, {}'.format(res))
  160. # logger.warning(match_data)
  161. else:
  162. logger.warning('棒球赛事接口异常, 提交失败, {}'.format(res))
  163. # logger.warning(match_data)
  164. else:
  165. logger.info("棒球赛事已存在,不做修改")
  166. """赔率"""
  167. data_list = []
  168. odds_onlys = []
  169. # 让球
  170. if concedes_dict:
  171. for key, value in concedes_dict.items():
  172. sole_str = 'CO' + str(key) + str(match_id) + 'hg3535'
  173. sole = Helper.genearte_MD5(sole_str, pt)
  174. odds_str = 'CO' + str(key) + str(match_id) + 'hg3535' + str(concedes_dict_rule[key]) + str(
  175. value)
  176. odds_only = Helper.genearte_MD5(odds_str, pt)
  177. condition = str(concedes_dict_rule[key])
  178. concedes_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds", "condition",
  179. "odds_only", "sole", "source", "type", "team"]
  180. concedes_dict_value = [match_id, league_id, key, '0', 0, 'CO', value, condition,
  181. odds_only, sole, 'hg3535', '0', '']
  182. concedes_dict_data = dict(zip(concedes_dict_key, concedes_dict_value))
  183. data_list.append(concedes_dict_data)
  184. # 总得分大/小
  185. if total_size_dict:
  186. for key, value in total_size_dict.items():
  187. sole_str = 'TN' + str(key) + str(match_id) + 'hg3535'
  188. sole = Helper.genearte_MD5(sole_str, pt)
  189. odds_str = 'TN' + str(key) + str(match_id) + 'hg3535' + str(
  190. total_size_dict_rule[key]) + str(value)
  191. odds_only = Helper.genearte_MD5(odds_str, pt)
  192. condition = str(total_size_dict_rule[key])
  193. total_size_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  194. "condition", "odds_only", "sole", "source", "type", "team"]
  195. total_size_dict_value = [match_id, league_id, key, '0', 0, 'TN', value, condition,
  196. odds_only, sole, 'hg3535', '0', '']
  197. total_size_dict_data = dict(zip(total_size_dict_key, total_size_dict_value))
  198. data_list.append(total_size_dict_data)
  199. # 球队得分大/小 主队
  200. # if team_score_home_dict:
  201. # for key, value in team_score_home_dict.items():
  202. # sole_str = 'team_score_home' + str(key) + str(match_id) + 'hg3535'
  203. # sole = Helper.genearte_MD5(sole_str)
  204. # odds_str = 'team_score_home' + str(key) + str(match_id) + 'hg3535' + str(
  205. # team_score_home_rule_dict[key]) + str(value)
  206. # odds_only = Helper.genearte_MD5(odds_str)
  207. # condition = fuhao(str(team_score_home_rule_dict[key]))
  208. # team_score_home_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  209. # "condition", "odds_only", "sole", "source", "type", "team"]
  210. # team_score_home_dict_value = [match_id, league_id, key, '0', '0', 'team_score_home', value, condition,
  211. # odds_only, sole, 'hg3535', '0', '']
  212. # team_score_home_dict_data = dict(zip(team_score_home_dict_key, team_score_home_dict_value))
  213. # odds_onlys.append(odds_only)
  214. # if odds_only not in odds_only_list:
  215. # data_list.append(team_score_home_dict_data)
  216. # # 球队得分大/小 客队
  217. # if team_score_guest_dict:
  218. # for key, value in team_score_guest_dict.items():
  219. # sole_str = 'team_score_guest' + str(key) + str(match_id) + 'hg3535'
  220. # sole = Helper.genearte_MD5(sole_str)
  221. # odds_str = 'team_score_guest' + str(key) + str(match_id) + 'hg3535' + str(
  222. # team_score_guest_rule_dict[key]) + str(value)
  223. # odds_only = Helper.genearte_MD5(odds_str)
  224. # condition = fuhao(str(team_score_guest_rule_dict[key]))
  225. # team_score_guest_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  226. # "condition", "odds_only", "sole", "source", "type", "team"]
  227. # team_score_guest_dict_value = [match_id, league_id, key, '0', '0', 'team_score_guest', value, condition,
  228. # odds_only, sole, 'hg3535', '0', '']
  229. # team_score_guest_dict_data = dict(zip(team_score_guest_dict_key, team_score_guest_dict_value))
  230. # odds_onlys.append(odds_only)
  231. # if odds_only not in odds_only_list:
  232. # data_list.append(team_score_guest_dict_data)
  233. # 独赢
  234. if capots_dict:
  235. for key, value in capots_dict.items():
  236. sole_str = 'C' + str(key) + str(match_id) + 'hg3535'
  237. sole = Helper.genearte_MD5(sole_str, pt)
  238. odds_str = 'C' + str(key) + str(match_id) + 'hg3535' + str(value)
  239. odds_only = Helper.genearte_MD5(odds_str, pt)
  240. capots_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  241. "condition", "odds_only", "sole", "source", "type", "team"]
  242. capots_dict_value = [match_id, league_id, key, '0', 0, 'C', value, '',
  243. odds_only, sole, 'hg3535', '0', '']
  244. capots_dict_data = dict(zip(capots_dict_key, capots_dict_value))
  245. data_list.append(capots_dict_data)
  246. # 总得分单双
  247. if odd_evens_dict:
  248. for key, value in odd_evens_dict.items():
  249. sole_str = 'TS' + str(key) + str(match_id) + 'hg3535'
  250. sole = Helper.genearte_MD5(sole_str, pt)
  251. odds_str = 'TS' + str(key) + str(match_id) + 'hg3535' + str(
  252. odd_evens_dict_rule[key]) + str(value)
  253. odds_only = Helper.genearte_MD5(odds_str, pt)
  254. condition = str(odd_evens_dict_rule[key])
  255. odd_evens_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  256. "condition", "odds_only", "sole", "source", "type", "team"]
  257. odd_evens_dict_value = [match_id, league_id, key, '0', 0, 'TS', value, condition,
  258. odds_only, sole, 'hg3535', '0', '']
  259. odd_evens_dict_data = dict(zip(odd_evens_dict_key, odd_evens_dict_value))
  260. data_list.append(odd_evens_dict_data)
  261. # 让球 前五局
  262. # 总得分大/小 前五局
  263. if pt == '3':
  264. ris_stringscene = 1
  265. else:
  266. ris_stringscene = 0
  267. odds_key = ["game_code", "title", "match_id", "lg_id", "data", "source", "odds_only", "tag", "uuid",
  268. "is_stringscene", "utime", "pt", 'match_identity']
  269. odds_value = ["bq", "odds", match_id, league_id, data_list, "hg3535", odds_onlys, tag_number, uuid,
  270. ris_stringscene, utime, pt, match_identity]
  271. odds_dict = dict(zip(odds_key, odds_value))
  272. if data_list:
  273. res = Helper.async_post(ODDS_URL, odds_dict)
  274. if res:
  275. if res.get('status') == 1:
  276. logger.info('棒球赔率提交成功, {}'.format(res))
  277. # logger.info(odds_dict)
  278. else:
  279. logger.warning('棒球赔率提交失败, {}'.format(res))
  280. # logger.warning(odds_dict)
  281. else:
  282. logger.warning('棒球详细接口赔率,接口异常, 提交失败')
  283. # logger.warning(odds_dict)
  284. else:
  285. logger.info('棒球详细赔率列表为空, 不提交')
  286. reactor.callFromThread(out.callback, item)