fqw_recommend.py 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. import json
  2. import re
  3. import time
  4. import requests
  5. from common.common import Common
  6. from common.scheduling_db import MysqlHelper
  7. from common.mq import MQ
  8. from common.public import download_rule, get_config_from_mysql
  9. proxies = {"http": None, "https": None}
  10. class FqwRecommend:
  11. platform = ("福气旺")
  12. download_cnt = 0
  13. element_list = []
  14. i = 0
  15. @classmethod
  16. def repeat_video(cls, log_type, crawler, video_id, env):
  17. sql = f""" select * from crawler_video where platform in ("{crawler}","{cls.platform}") and create_time>='2023-06-26' and out_video_id="{video_id}"; """
  18. repeat_video = MysqlHelper.get_values(log_type, crawler, sql, env)
  19. return len(repeat_video)
  20. @classmethod
  21. def get_videoList(cls, log_type, crawler, our_uid, rule_dict, env):
  22. mq = MQ(topic_name="topic_crawler_etl_" + env)
  23. # uuid1 = str(uuid.uuid1())
  24. page = 1
  25. while True:
  26. try:
  27. Common.logger(log_type, crawler).info(f"正在抓取第{page}页")
  28. Common.logging(log_type, crawler, env, f"正在抓取第{page}页")
  29. url = "https://api.xinghetime.com/luckvideo/video/getRecommendVideos"
  30. payload = json.dumps({
  31. "baseParam": {
  32. "mid": "openid_o5Xjp4q2yKGEhqFEeYvwjPNZJzWY",
  33. "pageSource": "video-home"
  34. },
  35. "bizParam": {
  36. "pageSize": 3
  37. }
  38. })
  39. headers = {
  40. 'Host': 'api.xinghetime.com',
  41. 'accept': '*/*',
  42. 'content-type': 'application/json',
  43. 'accept-language': 'zh-cn',
  44. 'user-agent': 'Mozilla/5.0 (iPhone; CPU iPhone OS 11_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E217 MicroMessenger/6.8.0(0x16080000) NetType/WIFI Language/en Branch/Br_trunk MiniProgramEnv/Mac',
  45. 'referer': 'https://servicewechat.com/wx8d8992849398a1cb/10/page-frame.html'
  46. }
  47. r = requests.post(url=url, headers=headers, data=payload, proxies=proxies, verify=False)
  48. if "data" not in r.text or r.status_code != 200:
  49. Common.logger(log_type, crawler).warning(f"get_videoList:{r.text}\n")
  50. Common.logging(log_type, crawler, env, f"get_videoList:{r.text}\n")
  51. return
  52. elif "data" not in r.json():
  53. Common.logger(log_type, crawler).info(f"get_videoList:{r.json()}\n")
  54. Common.logging(log_type, crawler, env, f"get_videoList:{r.json()}\n")
  55. return
  56. elif len(r.json()["data"]) == 0:
  57. Common.logger(log_type, crawler).warning(f"get_videoList:{r.json()['data']['list']}\n")
  58. Common.logging(log_type, crawler, env, f"get_videoList:{r.json()['data']['list']}\n")
  59. return
  60. else:
  61. # 视频列表
  62. feeds = r.json()["data"]
  63. for i in range(len(feeds)):
  64. try:
  65. if cls.download_cnt >= int(rule_dict.get("videos_cnt", {}).get("min", 10)):
  66. cls.i = 0
  67. cls.download_cnt = 0
  68. cls.element_list = []
  69. return
  70. cls.i += 1
  71. video_title = feeds[i].get("title", "").strip().replace("\n", "") \
  72. .replace("/", "").replace("\\", "").replace("\r", "") \
  73. .replace(":", "").replace("*", "").replace("?", "") \
  74. .replace("?", "").replace('"', "").replace("<", "") \
  75. .replace(">", "").replace("|", "").replace(" ", "") \
  76. .replace("&NBSP", "").replace(".", "。").replace(" ", "") \
  77. .replace("'", "").replace("#", "").replace("Merge", "")
  78. publish_time_stamp = int(time.time())
  79. publish_time_str = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(publish_time_stamp))
  80. # 播放次数 提取数字
  81. play_count = feeds[i]["playCountFormat"]
  82. number = re.findall(r'\d+', play_count)
  83. if number:
  84. result = number[0]
  85. else:
  86. result = 0
  87. video_dict = {
  88. "video_title": video_title,
  89. "video_id": str(feeds[i]["videoId"]), # 视频id
  90. "publish_time_stamp": publish_time_stamp,
  91. "publish_time_str": publish_time_str,
  92. "category_id": int(feeds[i].get("category_id", 0)), # 视频来源(精彩推荐)
  93. "cover_url": feeds[i].get("coverImagePath", ""), # 视频封面
  94. "video_url": feeds[i]["videoPath"], # 视频链接
  95. # "duration_format": feeds[i]["durationFormat"], # 时长
  96. "click": int(feeds[i].get("click", 0)), # 点击数
  97. "video_width": int(feeds[i].get("width", 0)),
  98. "video_height": int(feeds[i].get("height", 0)),
  99. "user_name": feeds[i].get("source", "").strip().replace("\n", ""),
  100. "user_id": feeds[i].get("openid", ""),
  101. "play_cnt": int(result),
  102. "like_cnt": 0,
  103. "comment_cnt": 0,
  104. "share_cnt": 0,
  105. # "duration": feeds[i].get("mediaDuration", 0),
  106. "session": ""
  107. }
  108. for k, v in video_dict.items():
  109. Common.logger(log_type, crawler).info(f"{k}:{v}")
  110. Common.logging(log_type, crawler, env, f"video_dict:{video_dict}")
  111. if video_dict["video_id"] == "" or video_dict["video_title"] == "" or video_dict[
  112. "video_url"] == "":
  113. Common.logger(log_type, crawler).info("无效视频\n")
  114. Common.logging(log_type, crawler, env, "无效视频\n")
  115. elif download_rule(log_type=log_type, crawler=crawler, video_dict=video_dict,
  116. rule_dict=rule_dict) is False:
  117. Common.logger(log_type, crawler).info("不满足抓取规则\n")
  118. Common.logging(log_type, crawler, env, "不满足抓取规则\n")
  119. elif any(str(word) if str(word) in video_dict["video_title"] else False
  120. for word in get_config_from_mysql(log_type=log_type,
  121. source=crawler,
  122. env=env,
  123. text="filter",
  124. action="")) is True:
  125. Common.logger(log_type, crawler).info('已中过滤词\n')
  126. Common.logging(log_type, crawler, env, '已中过滤词\n')
  127. elif cls.repeat_video(log_type, crawler, video_dict["video_id"], env) != 0:
  128. Common.logger(log_type, crawler).info('视频已下载\n')
  129. Common.logging(log_type, crawler, env, '视频已下载\n')
  130. else:
  131. video_dict["out_user_id"] = video_dict["user_id"]
  132. video_dict["platform"] = crawler
  133. video_dict["strategy"] = log_type
  134. video_dict["out_video_id"] = video_dict["video_id"]
  135. video_dict["width"] = video_dict["video_width"]
  136. video_dict["height"] = video_dict["video_height"]
  137. video_dict["crawler_rule"] = json.dumps(rule_dict)
  138. video_dict["user_id"] = our_uid
  139. video_dict["publish_time"] = video_dict["publish_time_str"]
  140. mq.send_msg(video_dict)
  141. cls.download_cnt += 1
  142. time.sleep(5)
  143. except Exception as e:
  144. Common.logger(log_type, crawler).error(f"抓取单条视频异常:{e}\n")
  145. Common.logging(log_type, crawler, env, f"抓取单条视频异常:{e}\n")
  146. page += 1
  147. except Exception as e:
  148. Common.logger(log_type, crawler).error(f"抓取第{page}页时异常:{e}\n")
  149. Common.logging(log_type, crawler, env, f"抓取第{page}页时异常:{e}\n")
  150. if __name__ == "__main__":
  151. rule_dict1 = {"period": {"min": 365, "max": 365},
  152. "duration": {"min": 30, "max": 1800},
  153. "favorite_cnt": {"min": 0, "max": 0},
  154. "videos_cnt": {"min": 10, "max": 20},
  155. "share_cnt": {"min": 0, "max": 0}}
  156. FqwRecommend.get_videoList("recommend", "wangqifu,", "16QspO", rule_dict1, 'dev')