| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- """
- 吃饭补贴
- 领取金币
- """
- import time
- from func.action_func import del_key_vague
- from scene.oprator.atom_data import single_click_by_control, single_click_by_text, click_pic, stop_app, start_app
- from task.task_job import callback_task
- from tools import loggerKit, redis_client
- from tools.pic_base64_util import pic_to_base64
- def eat_meal(task_id, data):
- loggerKit.info("[头条极速版]请求信息:{0}'.format(data))")
- device_id = data.get("deviceID")
- perform_action_id = data.get("performActionId")
- result = data.get("result")
- if result is not None:
- """
- 非首个指令
- """
- perform_action_result = result.get("performActionResult")
- if perform_action_result is None:
- return_dict = {
- "data": "",
- "code": -2,
- "message": "fail, performActionResult is null"
- }
- # 回调任务中心
- del_key_vague(device_id)
- callback_task(500, '指令执行失败', task_id, device_id, 0, None)
- return return_dict
- # 指令执行失败
- if perform_action_result == "failure":
- # 回调任务中心
- return_dict = {
- "data": "",
- "code": -2,
- "message": "fail, performActionResult is null"
- }
- del_key_vague(device_id)
- callback_task(500, '指令执行失败', task_id, device_id, 0, None)
- return return_dict
- # 终止指令
- if perform_action_result == "stop":
- # 回调任务中心
- return_dict = {
- "data": "",
- "code": -2,
- "message": "指令被用户终止"
- }
- del_key_vague(device_id)
- callback_task(500, '指令被用户终止', task_id, device_id, 0, None)
- return return_dict
- """
- 每次操作完成后会将对应的操作唯一id存储到redis
- 并且返回给手机端 手机端下次带着上个操作id来执行下一个操作
- """
- last_action_id = redis_client.get(device_id + "operate")
- step0 = redis_client.get(f"{device_id}_step0")
- if step0 is not None and int(step0) == 1 and last_action_id is not None and int(perform_action_id) == int(
- last_action_id) and perform_action_result == "success":
- action1_id = int(round(time.time() * 1000))
- """
- 发送第1条指令
- 首页点击任务
- """
- action1_dict = single_click_by_control(action1_id, target_app="com.ss.android.article.lite",
- target_version="9.7.0.0",
- package_name="com.ss.android.article.lite",
- control_id="com.ss.android.article.lite:id/kp", timeout=30)
- redis_client.set(device_id + "operate", action1_id)
- redis_client.set(f"{device_id}_{action1_id}_step1", "1")
- redis_client.delete(f"{device_id}_step0")
- loggerKit.info("设备:{0}, action1_id:{1}", device_id, action1_id)
- return action1_dict
- """
- 吃饭补贴
- """
- step1 = redis_client.get(f"{device_id}_{perform_action_id}_step1")
- if step1 is not None and int(step1) == 1 and last_action_id is not None and int(perform_action_id) == int(
- last_action_id) and perform_action_result == "success":
- loggerKit.info("设备:{0}, action1_id_mem:{1}", device_id, int(last_action_id))
- action2_id = int(round(time.time() * 1000))
- """
- 发送第2条指令
- 点击吃饭补贴
- """
- action2_dict = single_click_by_text(action2_id, target_app="com.ss.android.article.lite",
- target_version="9.7.0.0",
- package_name="com.ss.android.article.lite", text="吃饭补贴")
- redis_client.set(device_id + "operate", action2_id)
- redis_client.set(f"{device_id}_{action2_id}_step2", "1")
- redis_client.delete(f"{device_id}_{action2_id}_step1")
- loggerKit.info("设备:{0}, action2_id:{1}", device_id, action2_id)
- return action2_dict
- """
- 领取金币
- """
- step2 = redis_client.get(f"{device_id}_step2")
- if step2 is not None and int(step2) == 1 and last_action_id is not None and int(perform_action_id) == int(
- last_action_id) and perform_action_result == "success":
- loggerKit.info("设备:{0}, action1_id_mem:{1}", device_id, int(last_action_id))
- action3_id = int(round(time.time() * 1000))
- """
- 发送第3条指令
- 领取金币
- """
- rectangle_base64 = pic_to_base64("pic/eat_meal.png")
- action3_dict = click_pic(action3_id, target_app="com.ss.android.article.lite",
- target_version="9.7.0.0",
- package_name="com.ss.android.article.lite",
- pic_base64=rectangle_base64)
- redis_client.set(device_id + "operate", action3_id)
- redis_client.set(f"{device_id}_step3", "1")
- redis_client.delete(f"{device_id}_step2")
- loggerKit.info("设备:{0}, action3_id:{1}", device_id, action3_id)
- return action3_dict
- step3 = redis_client.get(f"{device_id}_step3")
- if step3 is not None and int(step3) == 1 and last_action_id is not None and int(perform_action_id) == int(
- last_action_id) and perform_action_result == "success":
- loggerKit.info("设备:{0}, action10_id_mem:{1}", device_id, int(last_action_id))
- action4_id = int(round(time.time() * 1000))
- """
- 停止指令
- 停止app
- """
- action4_dict = stop_app(action4_id, target_app="com.ss.android.article.lite",
- target_version="9.7.0.0",
- package_name="com.ss.android.article.lite", )
- del_key_vague(device_id)
- loggerKit.info("设备:{0}, action4_id:{1}", device_id, action4_dict)
- # 回调任务中心修改任务状态
- callback_task(None, None, task_id, device_id, 1, None)
- return action4_dict
- else:
- action0_id = int(round(time.time() * 1000))
- """
- 启动指令
- 启动app
- """
- action0_dict = start_app(action0_id, target_app="douyin", target_version="28.8.0",
- package_name="com.ss.android.ugc.aweme.lite")
- redis_client.set(device_id + "operate", action0_id)
- redis_client.set(f"{device_id}_step0", "1")
- redis_client.delete(f"{device_id}_step4")
- loggerKit.info("设备:{0}, action0_id:{1}", device_id, action0_id)
- return action0_dict
|