lanqiu.py 17 KB

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