shipinhao_recommend.py 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. # @Author: wangkun
  2. # @Time: 3月 02, 2022
  3. import os
  4. import sys
  5. import time
  6. from appium import webdriver
  7. from appium.webdriver.webdriver import WebDriver
  8. from selenium.common import NoSuchElementException
  9. from selenium.webdriver.common.by import By
  10. sys.path.append(os.getcwd())
  11. from main.common import Common
  12. from main.feishu_lib import Feishu
  13. class Recommend:
  14. # 启动微信,并打开视频号
  15. @classmethod
  16. def start_wechat(cls, log_type):
  17. Common.logger(log_type).info('启动微信')
  18. caps = {
  19. "platformName": "Android", # 手机操作系统 Android / iOS
  20. "deviceName": "Android", # 连接的设备名(模拟器或真机),安卓可以随便写
  21. "platforVersion": "11", # 手机对应的系统版本(Android 11)
  22. "appPackage": "com.tencent.mm", # 被测APP的包名,乐活圈 Android
  23. "appActivity": ".ui.LauncherUI", # 启动的Activity名
  24. "autoGrantPermissions": "true", # 让 appium 自动授权 base 权限,
  25. # 如果 noReset 为 True,则该条不生效(该参数为 Android 独有),对应的值为 True 或 False
  26. "unicodekeyboard": True, # 使用自带输入法,输入中文时填True
  27. "resetkeyboard": True, # 执行完程序恢复原来输入法
  28. "noReset": True, # 不重置APP
  29. "printPageSourceOnFailure": True, # 找不到元素时,appium log 会完整记录当前页面的 pagesource
  30. "newCommandTimeout": 6000, # 初始等待时间
  31. "automationName": "UiAutomator2" # 使用引擎,默认为 Appium,
  32. # 其中 Appium、UiAutomator2、Selendroid、Espresso 用于 Android,XCUITest 用于 iOS
  33. }
  34. # global driver
  35. driver = webdriver.Remote("http://localhost:4723/wd/hub", caps)
  36. driver.implicitly_wait(10)
  37. Common.logger(log_type).info('点击发现TAB')
  38. driver.find_elements(By.ID, 'com.tencent.mm:id/f2s')[2].click()
  39. Common.logger(log_type).info('点击视频号\n')
  40. driver.find_elements(By.ID, 'com.tencent.mm:id/gv6')[1].click()
  41. time.sleep(5)
  42. cls.get_feeds(log_type, driver)
  43. Common.logger(log_type).info('休眠 3s')
  44. time.sleep(3)
  45. cls.quit(log_type, driver)
  46. # 退出 APP
  47. @classmethod
  48. def quit(cls, log_type, driver: WebDriver):
  49. driver.quit()
  50. Common.logger(log_type).info('退出 APP 成功\n')
  51. # 下载规则
  52. @staticmethod
  53. def download_rule(duration, like_cnt, share_cnt, favorite_cnt, comment_cnt):
  54. if int(duration) >= 10:
  55. if int(like_cnt) >= 0:
  56. if int(share_cnt) >= 0:
  57. if int(favorite_cnt) >= 0:
  58. if int(comment_cnt) >= 0:
  59. return True
  60. else:
  61. return False
  62. else:
  63. return False
  64. else:
  65. return False
  66. else:
  67. return False
  68. else:
  69. return False
  70. # 操作安卓手机,自己滑动首页视频,并获取视频信息
  71. @classmethod
  72. def get_feeds(cls, log_type, driver: WebDriver):
  73. driver.implicitly_wait(10)
  74. for i in range(10):
  75. # 关闭页面弹窗
  76. try:
  77. driver.find_element(By.XPATH, '//*[@text="我知道了"]')
  78. Common.logger(log_type).info('已关闭未成年模式弹窗')
  79. except NoSuchElementException:
  80. pass
  81. try:
  82. driver.find_element(By.ID, 'com.tencent.mm:id/dkf')
  83. Common.logger(log_type).info('直播视频,向上滑动页面\n')
  84. driver.swipe(500, 1000, 500, 300, 300)
  85. except NoSuchElementException:
  86. pass
  87. # Common.logger(log_type).info('暂停播放')
  88. pause_btn = driver.find_element(By.ID, 'com.tencent.mm:id/eh4')
  89. pause_btn.click()
  90. # 视频标题
  91. try:
  92. title_id = driver.find_element(By.ID, 'com.tencent.mm:id/ki5')
  93. video_title = title_id.get_attribute('name')
  94. except NoSuchElementException:
  95. video_title = ''
  96. # 点击播放器,获取视频时长
  97. start_time = driver.find_element(By.ID, 'com.tencent.mm:id/l59').get_attribute('name')
  98. start_time = int(start_time.split(':')[0])*60 + int(start_time.split(':')[-1])
  99. try:
  100. end_time = driver.find_element(By.ID, 'com.tencent.mm:id/l7i').get_attribute('name')
  101. except NoSuchElementException:
  102. end_time = driver.find_element(By.ID, 'com.tencent.mm:id/g73').get_attribute('name')
  103. end_time = int(end_time.split(':')[0]) * 60 + int(end_time.split(':')[-1])
  104. duration = start_time + end_time
  105. # 点赞
  106. like_id = driver.find_element(By.ID, 'com.tencent.mm:id/k04')
  107. like_cnt = like_id.get_attribute('name')
  108. if like_cnt == "" or like_cnt == "喜欢":
  109. like_cnt = 0
  110. elif '万' in like_cnt:
  111. like_cnt = float(like_cnt.split('万')[0]) * 10000
  112. elif '万+' in like_cnt:
  113. like_cnt = float(like_cnt.split('万+')[0]) * 10000
  114. else:
  115. like_cnt = float(like_cnt)
  116. # 分享
  117. share_id = driver.find_element(By.ID, 'com.tencent.mm:id/jhv')
  118. share_cnt = share_id.get_attribute('name')
  119. if share_cnt == "" or share_cnt == "转发":
  120. share_cnt = 0
  121. elif '万' in share_cnt:
  122. share_cnt = float(share_cnt.split('万')[0]) * 10000
  123. elif '万+' in share_cnt:
  124. share_cnt = float(share_cnt.split('万+')[0]) * 10000
  125. else:
  126. share_cnt = float(share_cnt)
  127. # 收藏
  128. favorite_id = driver.find_element(By.ID, 'com.tencent.mm:id/fnp')
  129. favorite_cnt = favorite_id.get_attribute('name')
  130. if favorite_cnt == "" or favorite_cnt == "收藏":
  131. favorite_cnt = 0
  132. elif '万' in favorite_cnt:
  133. favorite_cnt = float(favorite_cnt.split('万')[0]) * 10000
  134. elif '万+' in favorite_cnt:
  135. favorite_cnt = float(favorite_cnt.split('万+')[0]) * 10000
  136. else:
  137. favorite_cnt = float(favorite_cnt)
  138. # 评论
  139. comment_id = driver.find_element(By.ID, 'com.tencent.mm:id/bje')
  140. comment_cnt = comment_id.get_attribute('name')
  141. if comment_cnt == "" or comment_cnt == "评论":
  142. comment_cnt = 0
  143. elif '万' in comment_cnt:
  144. comment_cnt = float(comment_cnt.split('万')[0]) * 10000
  145. elif '万+' in comment_cnt:
  146. comment_cnt = float(comment_cnt.split('万+')[0]) * 10000
  147. else:
  148. comment_cnt = float(comment_cnt)
  149. # 用户名
  150. username_id = driver.find_element(By.ID, 'com.tencent.mm:id/hft')
  151. user_name = username_id.get_attribute('name')
  152. Common.logger(log_type).info('video_title:{}', video_title)
  153. Common.logger(log_type).info('duration:{}', duration)
  154. Common.logger(log_type).info('like_cnt:{}', like_cnt)
  155. Common.logger(log_type).info('share_cnt:{}', share_cnt)
  156. Common.logger(log_type).info('favorite_cnt:{}', favorite_cnt)
  157. Common.logger(log_type).info('comment_cnt:{}', comment_cnt)
  158. Common.logger(log_type).info('user_name:{}', user_name)
  159. # 判断无效视频
  160. if video_title == '' or user_name == '':
  161. Common.logger(log_type).info('向上滑动页面')
  162. driver.swipe(500, 1000, 500, 300, 300)
  163. Common.logger(log_type).info('无效视频\n')
  164. # 判断下载规则
  165. elif cls.download_rule(duration, like_cnt, share_cnt, favorite_cnt, comment_cnt) is False:
  166. Common.logger(log_type).info('向上滑动页面')
  167. driver.swipe(500, 1000, 500, 300, 300)
  168. Common.logger(log_type).info('不满足抓取规则\n')
  169. # 已下载表去重
  170. elif str(video_title) in [x for y in Feishu.get_values_batch(log_type, 'shipinhao', 'c77cf9') for x in y]:
  171. Common.logger(log_type).info('向上滑动页面')
  172. driver.swipe(500, 1000, 500, 300, 300)
  173. Common.logger(log_type).info('视频已下载\n')
  174. # feeds 表去重
  175. elif str(video_title) in [x for y in Feishu.get_values_batch(log_type, 'shipinhao', 'FSDlBy') for x in y]:
  176. Common.logger(log_type).info('向上滑动页面')
  177. driver.swipe(500, 1000, 500, 300, 300)
  178. Common.logger(log_type).info('视频已存在\n')
  179. # 分享给 windows 爬虫机
  180. else:
  181. share_id.click()
  182. driver.find_element(By.XPATH, '//*[@text="转发给朋友"]').click()
  183. driver.find_element(By.XPATH, '//*[@text="爬虫群"]').click()
  184. driver.find_element(By.ID, 'com.tencent.mm:id/guw').click()
  185. # 把视频信息写入飞书feeds文档
  186. Feishu.insert_columns(log_type, 'shipinhao', 'FSDlBy', 'ROWS', 1, 2)
  187. get_feeds_time = int(time.time())
  188. values = [[time.strftime('%Y/%m/%d %H:%M:%S', time.localtime(get_feeds_time)),
  189. '推荐榜',
  190. str(video_title),
  191. duration,
  192. like_cnt,
  193. share_cnt,
  194. favorite_cnt,
  195. comment_cnt,
  196. str(user_name)]]
  197. time.sleep(1)
  198. Feishu.update_values(log_type, 'shipinhao', 'FSDlBy', 'A2:Z2', values)
  199. Common.logger(log_type).info('向上滑动页面')
  200. driver.swipe(500, 1000, 500, 300, 300)
  201. Common.logger(log_type).info('视频信息写入飞书文档成功\n')
  202. if __name__ == '__main__':
  203. Recommend.start_wechat('recommend')
  204. pass