random_browse.py 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. """
  2. 随机浏览若干篇文章(10篇)
  3. """
  4. import random
  5. import time
  6. from func.action_func import del_key_vague
  7. from scene.oprator.atom_data import swipe_screen, single_click_by_control, back_last_page, stop_app, start_app
  8. from task.task_job import callback_task
  9. from tools import loggerKit, redis_client
  10. def random_browse(task_id, device_id, data):
  11. loggerKit.info('请求信息:{0}'.format(data))
  12. device_id = data.get("deviceID")
  13. perform_action_id = data.get("performActionId")
  14. result = data.get("result")
  15. inner_data = data.get("data")
  16. title = inner_data.get("resourceName")
  17. author = inner_data.get("subResourceName")
  18. loggerKit.info("inner_data:{0}, keyword:{1}", inner_data, inner_data.get("resourceName"))
  19. if result is not None:
  20. """
  21. 非首个指令
  22. """
  23. perform_action_result = result.get("performActionResult")
  24. if perform_action_result is None:
  25. return_dict = {
  26. "data": "",
  27. "code": -2,
  28. "message": "fail, performActionResult is null"
  29. }
  30. # 回调任务中心
  31. del_key_vague(device_id)
  32. callback_task(500, '指令执行失败', task_id, device_id, 0, None)
  33. return return_dict
  34. # 指令执行失败
  35. if perform_action_result == "failure":
  36. # 回调任务中心
  37. return_dict = {
  38. "data": "",
  39. "code": -2,
  40. "message": "fail, performActionResult is null"
  41. }
  42. del_key_vague(device_id)
  43. callback_task(500, '指令执行失败', task_id, device_id, 0, None)
  44. return return_dict
  45. # 终止指令
  46. if perform_action_result == "stop":
  47. # 回调任务中心
  48. return_dict = {
  49. "data": "",
  50. "code": -2,
  51. "message": "指令被用户终止"
  52. }
  53. del_key_vague(device_id)
  54. callback_task(500, '指令被用户终止', task_id, device_id, 0, None)
  55. return return_dict
  56. # 终止指令
  57. if perform_action_result == "eleNotFound":
  58. # 回调任务中心
  59. return_dict = {
  60. "data": "",
  61. "code": -2,
  62. "message": "未找到签到指示"
  63. }
  64. del_key_vague(device_id)
  65. callback_task(500, '未找到签到指示,该账号当天可能已经签到过', task_id, device_id, 0, None)
  66. return return_dict
  67. last_action_id = redis_client.get(device_id + "operate")
  68. step0 = redis_client.get(f"{device_id}_step0")
  69. if step0 is not None and int(step0) == 1 and last_action_id is not None and int(perform_action_id) == int(
  70. last_action_id) and perform_action_result == "success":
  71. action1_id = int(round(time.time() * 1000))
  72. """
  73. 发送第1条指令
  74. 首页下拉刷新
  75. """
  76. action1_dict = swipe_screen(action1_id, scale=0.5, timeout=30, direction="down")
  77. redis_client.set(device_id + "operate", action1_id)
  78. redis_client.set(f"{device_id}_step1", "1")
  79. redis_client.delete(f"{device_id}_step0")
  80. loggerKit.info("设备:{0}, action1_id:{1}", device_id, action1_id)
  81. return action1_dict
  82. """
  83. 每次操作完成后会将对应的操作唯一id存储到redis
  84. 并且返回给手机端 手机端下次带着上个操作id来执行下一个操作
  85. """
  86. last_action_id = redis_client.get(device_id + "operate")
  87. step1 = redis_client.get(f"{device_id}_step1")
  88. if step1 is not None and int(step1) == 1 and last_action_id is not None and int(perform_action_id) == int(
  89. last_action_id) and perform_action_result == "success":
  90. action2_id = int(round(time.time() * 1000))
  91. """
  92. 发送第2条指令
  93. 在首页随机滑动2~3屏
  94. """
  95. random_scale = random.randint(1, 3)
  96. action2_dict = swipe_screen(action2_id, scale=random_scale, timeout=30)
  97. redis_client.set(device_id + "operate", action2_id)
  98. redis_client.set(f"{device_id}_step2", "1")
  99. redis_client.delete(f"{device_id}_step1")
  100. loggerKit.info("设备:{0}, action2_id:{1}", device_id, action2_id)
  101. return action2_dict
  102. """
  103. 进入帖子
  104. """
  105. step2 = redis_client.get(f"{device_id}_step2")
  106. if step2 is not None and int(step2) == 1 and last_action_id is not None and int(perform_action_id) == int(
  107. last_action_id) and perform_action_result == "success":
  108. loggerKit.info("设备:{0}, last_action_id:{1}", device_id, int(last_action_id))
  109. action3_id = int(round(time.time() * 1000))
  110. """
  111. 发送第3条指令
  112. 点击进入帖子
  113. """
  114. action3_dict = single_click_by_control(action3_id, control_id="com.ss.android.auto:id/jum",
  115. control_ids="com.ss.android.auto:id/s,com.ss.android.auto:id/k2k,"
  116. "com.ss.android.auto:id/p")
  117. redis_client.set(device_id + "operate", action3_id)
  118. redis_client.set(f"{device_id}_step3", "1")
  119. redis_client.delete(f"{device_id}_step2")
  120. loggerKit.info("设备:{0}, action3_id:{1}", device_id, action3_id)
  121. return action3_dict
  122. """
  123. 在帖子中随机滑动1~3屏
  124. """
  125. step3 = redis_client.get(f"{device_id}_step3")
  126. if step3 is not None and int(step3) == 1 and last_action_id is not None and int(perform_action_id) == int(
  127. last_action_id) and perform_action_result == "success":
  128. action4_id = int(round(time.time() * 1000))
  129. """
  130. 发送第4条指令
  131. 在帖子中随机滑动1~3屏
  132. """
  133. random_scale = random.randint(1, 3)
  134. action4_dict = swipe_screen(action4_id, scale=random_scale, timeout=30)
  135. redis_client.set(device_id + "operate", action4_id)
  136. redis_client.set(f"{device_id}_step4", "1")
  137. redis_client.delete(f"{device_id}_step3")
  138. loggerKit.info("设备:{0}, action4_id:{1}", device_id, action4_id)
  139. return action4_dict
  140. step4 = redis_client.get(f"{device_id}_step4")
  141. if step4 is not None and int(step4) == 1 and (
  142. last_action_id is not None and int(perform_action_id) == int(last_action_id)
  143. and perform_action_result == "success"):
  144. action5_id = int(round(time.time() * 1000))
  145. """
  146. 发送第5条指令
  147. 退出当前帖子
  148. """
  149. action5_dict = back_last_page(action5_id)
  150. redis_client.set(device_id + "operate", action5_id)
  151. redis_client.set(f"{device_id}_step5", "1")
  152. redis_client.delete(f"{device_id}_step4")
  153. loggerKit.info("设备:{0}, action5_id:{1}", device_id, action5_id)
  154. return action5_dict
  155. step5 = redis_client.get(f"{device_id}_step5")
  156. if step5 is not None and int(step5) == 1 and last_action_id is not None and int(
  157. perform_action_id) == int(
  158. last_action_id):
  159. loggerKit.info("设备:{0}, last_action_id:{1}", device_id, int(last_action_id))
  160. action6_id = int(round(time.time() * 1000))
  161. # 完成看完1篇文章数
  162. browsed_count = redis_client.incr(device_id + "browsed_count", 1)
  163. if int(browsed_count) == 10:
  164. """
  165. 发送第6条指令
  166. 关闭app
  167. """
  168. action6_dict = stop_app(action6_id, target_version="7.9.0")
  169. del_key_vague(device_id)
  170. loggerKit.info("设备:{0}, action6_id:{1}", device_id, action6_id)
  171. # 回调任务中心修改任务状态
  172. callback_task(None, None, task_id, device_id, 1, None)
  173. return action6_dict
  174. else:
  175. # 继续看下一篇帖子
  176. action2_id = int(round(time.time() * 1000))
  177. """
  178. 发送第2条指令
  179. 在首页随机滑动2~3屏
  180. """
  181. random_scale = random.randint(1, 3)
  182. action2_dict = swipe_screen(action2_id, scale=random_scale, timeout=30)
  183. redis_client.set(device_id + "operate", action2_id)
  184. redis_client.set(f"{device_id}_step2", "1")
  185. redis_client.delete(f"{device_id}_step1")
  186. loggerKit.info("设备:{0}, action2_id:{1}", device_id, action2_id)
  187. return action2_dict
  188. else:
  189. action0_id = int(round(time.time() * 1000))
  190. """
  191. 启动指令
  192. 启动app
  193. """
  194. action0_dict = start_app(action0_id, target_version="7.9.0")
  195. redis_client.set(device_id + "operate", action0_id)
  196. redis_client.set(f"{device_id}_step0", "1")
  197. redis_client.delete(f"{device_id}_step11")
  198. loggerKit.info("设备:{0}, action0_id:{1}", device_id, action0_id)
  199. return action0_dict