lanqiu.py 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  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. #
  22. # def _do_calculation(self, item, out):
  23. logger = logging.getLogger(__name__)
  24. # 联赛id
  25. league_id = item['league_id']
  26. # 联赛名
  27. league_name = item['league_name']
  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. try:
  38. data_game = item['data_game'].split("/")
  39. month = str(data_game[1].strip())
  40. day = str(data_game[0])
  41. except Exception as e:
  42. logger.warning(e)
  43. data_game = item['data_game'].split(" ")
  44. months = str(data_game[1].strip())
  45. month_dict = {'Jan': '01', 'Feb': '02', 'Mar': '03', 'Apr': '04', 'May': '05', 'Jun': '06', 'Jul': '07',
  46. 'Aug': '08', 'Sep': '09', 'Oct': '10', 'Nov': '11', 'Dec': '12'}
  47. month = month_dict[months]
  48. day = str(data_game[0])
  49. # 比赛时间
  50. time_game = str(item['time_game'])
  51. # 比赛时间,时间戳
  52. us_time = "2019" + "-" + month + "-" + day + " " + time_game + ":00"
  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 + 'hg3535')
  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 '成功' in res:
  88. logger.info('篮球联赛提交成功, {}'.format(res))
  89. self.db.lq_league35.insert(league_data)
  90. # self.db.lq_league35.update({'lg_id': league_id}, {'$set': league_data}, upsert=True)
  91. logger.info(league_dict)
  92. else:
  93. logger.warning('篮球联赛提交失败, {}'.format(res))
  94. else:
  95. logger.warning('篮球联赛接口, 提交失败, {}'.format(res))
  96. logger.warning(league_dict)
  97. else:
  98. logger.info('篮球联赛已存在')
  99. """赛事"""
  100. if pt == '3':
  101. is_rollball = 0
  102. is_today = 0
  103. is_morningplate = 0
  104. is_stringscene = 1
  105. elif pt == '2':
  106. is_rollball = 0
  107. is_today = 0
  108. is_morningplate = 1
  109. is_stringscene = 0
  110. else:
  111. is_today = 1
  112. is_rollball = 0
  113. is_morningplate = 0
  114. is_stringscene = 0
  115. pt_dict = {'1': 'is_today', '2': 'is_morningplate', '3': 'is_stringscene', '4': 'is_rollball'}
  116. pt_status = pt_dict[str(pt)]
  117. if self.db.lq_competition35.find({'match_id': match_id, pt_status: 1}).count() < 1:
  118. match_list = []
  119. match_dict = {"game_code": "lq", "title": "match", "source": "hg3535"}
  120. match_kay = ["home_team", "guest_team", "lg_id", "status", "match_id", "match_date", "match_time", "tag",
  121. "source", "is_rollball", "is_morningplate", "is_stringscene", "us_time", "uuid",
  122. "half_match_id", "is_today", 'pt', "is_horn"]
  123. match_value = [team_home, team_guest, league_id, 0, match_id, match_date, match_time, tag_number, "hg3535",
  124. is_rollball, is_morningplate, is_stringscene, us_time, uuid, 0, is_today, pt, 0]
  125. match_data = dict(zip(match_kay, match_value))
  126. match_list.append(match_data)
  127. match_dict['data'] = match_list
  128. res = Helper.async_post(MATCH_URL, match_dict)
  129. if res:
  130. if '成功' in res:
  131. logger.info('篮球赛事提交成功, {}'.format(res))
  132. self.db.lq_competition35.insert(match_data)
  133. # self.db.lq_competition35.update({'match_id': match_id, pt_status: 1}, {'$set': match_data}, upsert=True)
  134. logger.info(match_dict)
  135. else:
  136. logger.warning('篮球赛事提交失败, {}'.format(res))
  137. logger.warning(match_dict)
  138. else:
  139. logger.warning('篮球赛事接口异常,提交失败, {}'.format(res))
  140. logger.warning(match_dict)
  141. else:
  142. logger.info('篮球赛事已存在')
  143. """赔率"""
  144. data_list = []
  145. odds_onlys = []
  146. # 让球
  147. if concedes_dict:
  148. for key, value in concedes_dict.items():
  149. if value:
  150. for index, concedes_value in enumerate(value):
  151. sole_str = 'CO' + str(key) + str(index) + str(match_id) + 'hg3535'
  152. sole = Helper.genearte_MD5(sole_str, pt)
  153. condition = str(concedes_dict_rule[key][index])
  154. hash_str = "CO" + key + str(index) + condition + str(value) + "hg3535" + str(match_id)
  155. odds_only = Helper.genearte_MD5(hash_str, pt)
  156. concedes_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  157. "condition", "odds_only", "sole", "source", "type", "team"]
  158. concedes_dict_value = [match_id, league_id, key, '0', index, 'CO', concedes_value, condition,
  159. odds_only, sole, 'hg3535', '0', '']
  160. concedes_dict_data = dict(zip(concedes_dict_key, concedes_dict_value))
  161. data_list.append(concedes_dict_data)
  162. # 总得分单双
  163. if odd_evens_dict:
  164. for key, value in odd_evens_dict.items():
  165. sole_str = 'TS' + str(key) + '0' + str(match_id) + 'hg3535'
  166. sole = Helper.genearte_MD5(sole_str, pt)
  167. condition = str(odd_evens_dict_rule[key])
  168. hash_str = "TS" + key + '0' + condition + str(value) + "hg3535" + str(match_id)
  169. odds_only = Helper.genearte_MD5(hash_str, pt)
  170. odd_evens_dict_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  171. "condition", "odds_only", "sole", "source", "type", "team"]
  172. odd_evens_dict_value = [match_id, league_id, key, '0', 0, 'TS', value, condition,
  173. odds_only, sole, 'hg3535', '0', '']
  174. odd_evens_dict_data = dict(zip(odd_evens_dict_key, odd_evens_dict_value))
  175. data_list.append(odd_evens_dict_data)
  176. # 总比分大小
  177. if total_sizes_dict:
  178. for key, value in total_sizes_dict.items():
  179. if value:
  180. for index, total_sizes_value in enumerate(value):
  181. sole_str = 'TN' + str(key) + str(index) + str(match_id) + 'hg3535'
  182. sole = Helper.genearte_MD5(sole_str, pt)
  183. condition = str(total_sizes_dict_rule[key][index])
  184. hash_str = "TN" + str(key) + str(index) + condition + str(total_sizes_value) + "hg3535" + str(match_id)
  185. odds_only = Helper.genearte_MD5(hash_str, pt)
  186. total_sizes_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  187. "condition", "odds_only", "sole", "source", "type", "team"]
  188. total_sizes_value = [match_id, league_id, key, '0', index, 'TN', total_sizes_value, condition,
  189. odds_only, sole, 'hg3535', '0', '']
  190. total_sizes_data = dict(zip(total_sizes_key, total_sizes_value))
  191. data_list.append(total_sizes_data)
  192. # 球队得分大小
  193. if team_scores_dict:
  194. for key, value in team_scores_dict.items():
  195. if value:
  196. for index, odd in enumerate(value):
  197. sole_str = "TB" + str(key) + '0' + str(match_id) + "hg3535"
  198. sole = Helper.genearte_MD5(sole_str, pt)
  199. try:
  200. condition = str(team_scores_dict_rule[key][index])
  201. except:
  202. pass
  203. hash_str = "TB" + key + str(index) + condition + str(odd) + "hg3535" + str(match_id)
  204. odds_only = Helper.genearte_MD5(hash_str, pt)
  205. team_scores_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  206. "condition", "odds_only", "sole", "source", "type", "team"]
  207. team_scores_value = [match_id, league_id, key, '0', 0, 'TB', odd, condition,
  208. odds_only, sole, 'hg3535', '0', '']
  209. team_scores_data = dict(zip(team_scores_key, team_scores_value))
  210. data_list.append(team_scores_data)
  211. # 球队得分最后一位数
  212. last_home_dict = {'0或5': 'lnh0', '1或6': 'lnh1', '2或7': 'lnh2', '3或8': 'lnh3', '4或9': 'lnh4'}
  213. last_home = last_numbers_dict['last_home']
  214. if last_home:
  215. for key, value in last_home.items():
  216. sole_str = "LN" + last_home_dict[key] + '0' + str(match_id) + "hg3535"
  217. sole = Helper.genearte_MD5(sole_str, pt)
  218. hash_str = "LN" + last_home_dict[key] + '0' + key + str(value) + "hg3535" + str(match_id)
  219. odds_only = Helper.genearte_MD5(hash_str, pt)
  220. last_home_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  221. "condition", "odds_only", "sole", "source", "type", "team"]
  222. last_home_value = [match_id, league_id, last_home_dict[key], '0', 0, 'LN', value, key, odds_only, sole, 'hg3535', '0', '']
  223. last_home_data = dict(zip(last_home_key, last_home_value))
  224. data_list.append(last_home_data)
  225. last_guest = last_numbers_dict['last_guest']
  226. last_guest_dict = {'0或5': 'lng0', '1或6': 'lng1', '2或7': 'lng2', '3或8': 'lng3', '4或9': 'lng4'}
  227. if last_guest:
  228. for key, value in last_guest.items():
  229. sole_str = "LN" + last_guest_dict[key] + '0' + str(match_id) + "hg3535"
  230. sole = Helper.genearte_MD5(sole_str, pt)
  231. hash_str = "LN" + last_guest_dict[key] + '0' + key + str(value) + "hg3535" + str(match_id)
  232. odds_only = Helper.genearte_MD5(hash_str, pt)
  233. last_guest_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  234. "condition", "odds_only", "sole", "source", "type", "team"]
  235. last_guest_value = [match_id, league_id, last_guest_dict[key], '0', 0, 'LN', value, key, odds_only, sole, 'hg3535', '0', '']
  236. last_guest_data = dict(zip(last_guest_key, last_guest_value))
  237. data_list.append(last_guest_data)
  238. # 独赢
  239. if capots_dict:
  240. for key, value in capots_dict.items():
  241. sole_str = "C" + str(key) + '0' + str(match_id) + "hg3535"
  242. sole = Helper.genearte_MD5(sole_str, pt)
  243. hash_str = "C" + str(key) + '0' + '0' + str(value) + "hg3535" + str(match_id)
  244. odds_only = Helper.genearte_MD5(hash_str, pt)
  245. capots_key = ["match_id", "lg_id", "odds_code", "status", "sort", "p_code", "odds",
  246. "condition", "odds_only", "sole", "source", "type", "team"]
  247. capots_value = [match_id, league_id, key, '0', 0, 'C', value, '',
  248. odds_only, sole, 'hg3535', '0', '']
  249. capots_data = dict(zip(capots_key, capots_value))
  250. data_list.append(capots_data)
  251. if pt == '3':
  252. ris_stringscene = 1
  253. else:
  254. ris_stringscene = 0
  255. odds_key = ["game_code", "title", "match_id", "lg_id", "data", "source", "odds_only", "tag", "uuid",
  256. "is_stringscene", "utime", "pt"]
  257. odds_value = ["lq", "odds", match_id, league_id, data_list, "hg3535", odds_onlys, tag_number, uuid,
  258. ris_stringscene, utime, pt]
  259. odds_dict = dict(zip(odds_key, odds_value))
  260. if data_list:
  261. res = Helper.async_post(ODDS_URL, odds_dict)
  262. if res:
  263. if '成功' in res:
  264. logger.info('篮球详细赔率提交成功, {}'.format(res))
  265. logger.info(odds_dict)
  266. else:
  267. logger.warning('篮球详细赔率提交成功, {}'.format(res))
  268. logger.warning(odds_dict)
  269. else:
  270. logger.warning('篮球详细赔率接口异常, 提交成功, {}'.format(res))
  271. logger.warning(odds_dict)
  272. else:
  273. logger.info('详细赔率列表为空')
  274. # reactor.callFromThread(out.callback, item)