lanqiu.py 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  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. # 比赛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])
  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])
  48. # 比赛时间
  49. time_game = str(item['time_game'])
  50. # 比赛时间,时间戳
  51. us_time = "2019" + "-" + month + "-" + day + " " + time_game + ":00"
  52. # 现在时间,时间戳
  53. utime = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
  54. pt = str(item['pt'])
  55. # 让球
  56. concedes_dict = item['concede']
  57. concedes_dict_rule = item['concede_rule']
  58. # 总得分单双
  59. odd_evens_dict = item['odd_even']
  60. odd_evens_dict_rule = item['odd_even_rule']
  61. # 总比分大小
  62. total_sizes_dict = item['total_size']
  63. total_sizes_dict_rule = item['total_size_rule']
  64. # 球队得分最后一位数
  65. last_numbers_dict = item['last_number']
  66. # 独赢
  67. capots_dict = item['capot']
  68. # 球队得分大小
  69. team_scores_dict = item['team_score']
  70. team_scores_dict_rule = item['team_score_rule']
  71. match_date, match_time, time3 = new_time(us_time)
  72. uuid = Helper.genearte_uuid(league_name + 'hg3535')
  73. # 让球 数据插入数据库
  74. """联赛"""
  75. last_time = '{}-12-31 23:59:59'.format(datetime.datetime.now().year)
  76. if self.db.hg3535_lq_league.find({'lg_id': league_id}).count() < 1:
  77. league_dict = {"game_code": "lq", "title": "league", "source": "hg3535"}
  78. league_list = []
  79. league_key = ["name_chinese", "kind", "match_mode", "if_stop", "last_time", "lg_id", "source", "uuid"]
  80. league_value = [league_name, "1", "1", "0", last_time, league_id, "hg3535", uuid]
  81. league_data = dict(zip(league_key, league_value))
  82. league_list.append(league_data)
  83. league_dict['data'] = league_list
  84. res = Helper.async_post(LEAGUE_URL, league_dict)
  85. if res:
  86. if '成功' in res:
  87. logger.info('篮球联赛提交成功, {}'.format(res))
  88. self.db.hg3535_lq_league.insert(league_data)
  89. logger.info(league_dict)
  90. else:
  91. logger.warning('篮球联赛提交失败, {}'.format(res))
  92. else:
  93. logger.warning('篮球联赛接口, 提交失败, {}'.format(res))
  94. logger.warning(league_dict)
  95. else:
  96. logger.info('篮球联赛已存在')
  97. """赛事"""
  98. if pt == '3':
  99. is_rollball = 0
  100. is_today = 0
  101. is_morningplate = 0
  102. is_stringscene = 1
  103. elif pt == '2':
  104. is_rollball = 0
  105. is_today = 0
  106. is_morningplate = 1
  107. is_stringscene = 0
  108. else:
  109. is_today = 1
  110. is_rollball = 0
  111. is_morningplate = 0
  112. is_stringscene = 0
  113. pt_dict = {'1': 'is_today', '2': 'is_morningplate', '3': 'is_stringscene', '4': 'is_rollball'}
  114. pt_status = pt_dict[str(pt)]
  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"]
  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]
  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 '成功' in res:
  129. logger.info('篮球赛事提交成功, {}'.format(res))
  130. self.db.hg3535_lq_competition.insert(match_data)
  131. logger.info(match_dict)
  132. else:
  133. logger.warning('篮球赛事提交失败, {}'.format(res))
  134. logger.warning(match_dict)
  135. else:
  136. logger.warning('篮球赛事接口异常,提交失败, {}'.format(res))
  137. logger.warning(match_dict)
  138. else:
  139. logger.info('篮球赛事已存在')
  140. """赔率"""
  141. data_list = []
  142. odds_onlys = []
  143. # 让球
  144. if concedes_dict:
  145. for key, value in concedes_dict.items():
  146. if value:
  147. for index, concedes_value in enumerate(value):
  148. sole_str = 'CO' + str(index) + str(match_id) + 'hg3535'
  149. sole = Helper.genearte_MD5(sole_str, pt)
  150. odds_str = 'CO' + str(index) + str(match_id) + 'hg3535' + str(
  151. concedes_dict_rule[key][index]) + str(concedes_value)
  152. odds_only = Helper.genearte_MD5(odds_str, pt)
  153. condition = str(concedes_dict_rule[key][index])
  154. concedes_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  155. "condition", "odds_only", "sole", "source", "type", "team"]
  156. concedes_dict_value = [match_id, league_id, key, '0', index, 'CO', concedes_value, condition,
  157. odds_only, sole, 'hg3535', '0', '']
  158. concedes_dict_data = dict(zip(concedes_dict_key, concedes_dict_value))
  159. data_list.append(concedes_dict_data)
  160. else:
  161. sole_str = 'CO' + str(key) + str(match_id) + 'hg3535'
  162. sole = Helper.genearte_MD5(sole_str, pt)
  163. odds_str = 'CO' + str(key) + str(match_id) + 'hg3535' + str(
  164. concedes_dict_rule[key]) + str(value)
  165. odds_only = Helper.genearte_MD5(odds_str, pt)
  166. condition = str(concedes_dict_rule[key])
  167. concedes_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  168. "condition", "odds_only", "sole", "source", "type", "team"]
  169. concedes_dict_value = [match_id, league_id, key, '0', 0, 'CO', value, condition,
  170. odds_only, sole, 'hg3535', '0', '']
  171. concedes_dict_data = dict(zip(concedes_dict_key, concedes_dict_value))
  172. data_list.append(concedes_dict_data)
  173. # 总得分单双
  174. if odd_evens_dict:
  175. for key, value in odd_evens_dict.items():
  176. sole_str = 'TS' + str(key) + str(match_id) + 'hg3535'
  177. sole = Helper.genearte_MD5(sole_str, pt)
  178. odds_str = 'TS' + str(key) + str(match_id) + 'hg3535' + str(
  179. odd_evens_dict_rule[key]) + str(value)
  180. odds_only = Helper.genearte_MD5(odds_str, pt)
  181. condition = str(odd_evens_dict_rule[key])
  182. odd_evens_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  183. "condition", "odds_only", "sole", "source", "type", "team"]
  184. odd_evens_dict_value = [match_id, league_id, key, '0', 0, 'TS', value, condition,
  185. odds_only, sole, 'hg3535', '0', '']
  186. odd_evens_dict_data = dict(zip(odd_evens_dict_key, odd_evens_dict_value))
  187. data_list.append(odd_evens_dict_data)
  188. # 总比分大小
  189. if total_sizes_dict:
  190. for key, value in total_sizes_dict.items():
  191. if value:
  192. for index, total_sizes_value in enumerate(value):
  193. sole_str = 'TN' + str(key) + str(match_id) + 'hg3535'
  194. sole = Helper.genearte_MD5(sole_str, pt)
  195. odds_str = 'TN' + str(key) + str(match_id) + 'hg3535' + str(
  196. total_sizes_dict_rule[key][index]) + str(total_sizes_value)
  197. odds_only = Helper.genearte_MD5(odds_str, pt)
  198. condition = str(total_sizes_dict_rule[key][index])
  199. total_sizes_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  200. "condition", "odds_only", "sole", "source", "type", "team"]
  201. total_sizes_value = [match_id, league_id, key, '0', index, 'TN', total_sizes_value, condition,
  202. odds_only, sole, 'hg3535', '0', '']
  203. total_sizes_data = dict(zip(total_sizes_key, total_sizes_value))
  204. data_list.append(total_sizes_data)
  205. else:
  206. sole_str = 'TN' + str(key) + str(match_id) + 'hg3535'
  207. sole = Helper.genearte_MD5(sole_str, pt)
  208. odds_str = 'TN' + str(key) + str(match_id) + 'hg3535' + str(
  209. total_sizes_dict_rule[key]) + str(value)
  210. odds_only = Helper.genearte_MD5(odds_str, pt)
  211. condition = str(total_sizes_dict_rule[key])
  212. total_sizes_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  213. "condition", "odds_only", "sole", "source", "type", "team"]
  214. total_sizes_value = [match_id, league_id, key, '0', 0, 'TN', value, condition,
  215. odds_only, sole, 'hg3535', '0', '']
  216. total_sizes_data = dict(zip(total_sizes_key, total_sizes_value))
  217. data_list.append(total_sizes_data)
  218. # 球队得分大小
  219. if team_scores_dict:
  220. for key, value in team_scores_dict.items():
  221. sole_str = 'TB' + str(key) + str(match_id) + 'hg3535'
  222. sole = Helper.genearte_MD5(sole_str, pt)
  223. odds_str = 'TB' + str(key) + str(match_id) + 'hg3535' + str(
  224. team_scores_dict_rule[key]) + str(value)
  225. odds_only = Helper.genearte_MD5(odds_str, pt)
  226. condition = str(team_scores_dict_rule[key])
  227. team_scores_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  228. "condition", "odds_only", "sole", "source", "type", "team"]
  229. team_scores_value = [match_id, league_id, key, '0', 0, 'TB', value, condition,
  230. odds_only, sole, 'hg3535', '0', '']
  231. team_scores_data = dict(zip(team_scores_key, team_scores_value))
  232. data_list.append(team_scores_data)
  233. # 球队得分最后一位数
  234. last_home_dict = {'0或5': 'lnh0', '1或6': 'lnh1', '2或7': 'lnh2', '3或8': 'lnh3', '4或9': 'lnh4'}
  235. last_home = last_numbers_dict['last_home']
  236. if last_home:
  237. for key, value in last_home.items():
  238. sole_str = 'LN' + last_home_dict[key] + str(match_id) + 'hg3535'
  239. sole = Helper.genearte_MD5(sole_str, pt)
  240. odds_str = 'LN' + last_home_dict[key] + str(match_id) + 'hg3535' + '0' + str(value)
  241. odds_only = Helper.genearte_MD5(odds_str, pt)
  242. last_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  243. "condition", "odds_only", "sole", "source", "type", "team"]
  244. last_home_value = [match_id, league_id, last_home_dict[key], '0', 0, 'LN', value, key, odds_only, sole, 'hg3535', '0', '']
  245. last_home_data = dict(zip(last_home_key, last_home_value))
  246. data_list.append(last_home_data)
  247. last_guest = last_numbers_dict['last_guest']
  248. last_guest_dict = {'0或5': 'lng0', '1或6': 'lng1', '2或7': 'lng2', '3或8': 'lng3', '4或9': 'lng4'}
  249. if last_guest:
  250. for key, value in last_guest.items():
  251. sole_str = 'LN' + last_guest_dict[key] + str(match_id) + 'hg3535'
  252. sole = Helper.genearte_MD5(sole_str, pt)
  253. odds_str = 'LN' + last_guest_dict[key] + str(match_id) + 'hg3535' + '0' + str(value)
  254. odds_only = Helper.genearte_MD5(odds_str, pt)
  255. last_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  256. "condition", "odds_only", "sole", "source", "type", "team"]
  257. last_guest_value = [match_id, league_id, key, '0', 0, 'LN', value, key, odds_only, sole, 'hg3535', '0', '']
  258. last_guest_data = dict(zip(last_guest_key, last_guest_value))
  259. data_list.append(last_guest_data)
  260. # 独赢
  261. if capots_dict:
  262. for key, value in capots_dict.items():
  263. sole_str = 'C' + str(key) + str(match_id) + 'hg3535'
  264. sole = Helper.genearte_MD5(sole_str, pt)
  265. odds_str = 'C' + str(key) + str(match_id) + 'hg3535' + str(value)
  266. odds_only = Helper.genearte_MD5(odds_str, pt)
  267. capots_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  268. "condition", "odds_only", "sole", "source", "type", "team"]
  269. capots_value = [match_id, league_id, key, '0', 0, 'C', value, '',
  270. odds_only, sole, 'hg3535', '0', '']
  271. capots_data = dict(zip(capots_key, capots_value))
  272. data_list.append(capots_data)
  273. if pt == '3':
  274. ris_stringscene = 1
  275. else:
  276. ris_stringscene = 0
  277. odds_key = ["game_code", "title", "match_id", "lg_id", "data", "source", "odds_only", "tag", "uuid",
  278. "is_stringscene", "utime", "pt"]
  279. odds_value = ["lq", "odds", match_id, league_id, data_list, "hg3535", odds_onlys, tag_number, uuid,
  280. ris_stringscene, utime, pt]
  281. odds_dict = dict(zip(odds_key, odds_value))
  282. if data_list:
  283. res = Helper.async_post(ODDS_URL, odds_dict)
  284. if res:
  285. if '成功' in res:
  286. logger.info('篮球详细赔率提交成功, {}'.format(res))
  287. logger.info(odds_dict)
  288. else:
  289. logger.warning('篮球详细赔率提交成功, {}'.format(res))
  290. logger.warning(odds_dict)
  291. else:
  292. logger.warning('篮球详细赔率接口异常, 提交成功, {}'.format(res))
  293. logger.warning(odds_dict)
  294. else:
  295. logger.info('详细赔率列表为空')
  296. reactor.callFromThread(out.callback, item)