""" 懂车帝 完整养号 """ import random import time from func.action_func import del_key_vague from scene.oprator.atom_data import single_click_by_control, swipe_screen, single_click_by_text, start_app from task.task_job import callback_task from tools import loggerKit, redis_client def complete_browse(task_id, device_id, data): loggerKit.info('请求信息:{0}'.format(data)) device_id = data.get("deviceID") perform_action_id = data.get("performActionId") result = data.get("result") inner_data = data.get("data") keyword = inner_data.get("resourceName") loggerKit.info("inner_data:{0}, keyword:{1}", inner_data, inner_data.get("resourceName")) 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 # 终止指令 if perform_action_result == "eleNotFound": # 回调任务中心 return_dict = { "data": "", "code": -2, "message": "未找到签到指示" } del_key_vague(device_id) callback_task(500, '未找到签到指示,该账号当天可能已经签到过', task_id, device_id, 0, None) return return_dict 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 = swipe_screen(action1_id, scale=0.5, timeout=30, direction="down") redis_client.set(device_id + "operate", action1_id) redis_client.set(f"{device_id}_step1", "1") redis_client.delete(f"{device_id}_step0") loggerKit.info("设备:{0}, action1_id:{1}", device_id, action1_id) return action1_dict """ 每次操作完成后会将对应的操作唯一id存储到redis 并且返回给手机端 手机端下次带着上个操作id来执行下一个操作 """ last_action_id = redis_client.get(device_id + "operate") step1 = redis_client.get(f"{device_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": action2_id = int(round(time.time() * 1000)) """ 发送第2条指令 在首页随机滑动2~3屏 """ random_scale = random.randint(1, 3) action2_dict = swipe_screen(action2_id, scale=random_scale, timeout=30) redis_client.set(device_id + "operate", action2_id) redis_client.set(f"{device_id}_step2", "1") redis_client.delete(f"{device_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}, last_action_id:{1}", device_id, int(last_action_id)) action3_id = int(round(time.time() * 1000)) """ 发送第3条指令 点击进入帖子 """ action3_dict = single_click_by_control(action3_id, control_id="com.ss.android.auto:id/jum", control_ids="com.ss.android.auto:id/s,com.ss.android.auto:id/k2k," "com.ss.android.auto:id/p") 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}, action2_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}, last_action_id:{1}", device_id, int(last_action_id)) action4_id = int(round(time.time() * 1000)) """ 发送第4条指令 输入关键词 """ action4_dict = single_click_by_control(action4_id, control_id="com.ss.android.auto:id/jum", control_ids="com.ss.android.auto:id/s,com.ss.android.auto:id/k2k," "com.ss.android.auto:id/p") redis_client.set(device_id + "operate", action4_id) redis_client.set(f"{device_id}_step4", "1") redis_client.delete(f"{device_id}_step3") loggerKit.info("设备:{0}, action3_id:{1}", device_id, action4_id) return action4_dict """ 点击搜索(关键词) """ step4 = redis_client.get(f"{device_id}_step4") if step4 is not None and int(step4) == 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}, last_action_id:{1}", device_id, int(last_action_id)) action5_id = int(round(time.time() * 1000)) """ 发送第5条指令 点击搜索(关键词) """ action5_dict = single_click_by_control(action5_id, control_id="com.ss.android.auto:id/jum", control_ids="com.ss.android.auto:id/s,com.ss.android.auto:id/k2k," "com.ss.android.auto:id/p") redis_client.set(device_id + "operate", action5_id) redis_client.set(f"{device_id}_step5", "1") redis_client.delete(f"{device_id}_step4") loggerKit.info("设备:{0}, action4_id:{1}", device_id, action5_id) return action5_dict """ 切换到"车友圈"tab """ step5 = redis_client.get(f"{device_id}_step5") if step5 is not None and int(step5) == 1 and last_action_id is not None and int(perform_action_id) == int( last_action_id) and perform_action_result == "success": action6_id = int(round(time.time() * 1000)) """ 发送第5条指令 切换到"车友圈"tab """ action6_dict = single_click_by_text(action6_id, text="车友圈") redis_client.set(device_id + "operate", action6_id) redis_client.set(f"{device_id}_step6", "1") redis_client.delete(f"{device_id}_step5") loggerKit.info("设备:{0}, action3_id:{1}", device_id, action6_id) return action6_dict """ 点击进圈 """ step6 = redis_client.get(f"{device_id}_step6") if step6 is not None and int(step6) == 1 and ( last_action_id is not None and int(perform_action_id) == int(last_action_id) and perform_action_result == "success"): action7_id = int(round(time.time() * 1000)) """ 发送第67条指令 点击进圈 """ action7_dict = single_click_by_text(action7_id, text="进圈") redis_client.set(device_id + "operate", action7_id) redis_client.set(f"{device_id}_step7", "1") redis_client.delete(f"{device_id}_step6") loggerKit.info("设备:{0}, action6_id:{1}", device_id, action7_id) return action7_dict """ 随机滑动3-5屏 """ step7 = redis_client.get(f"{device_id}_step7") if step7 is not None and int(step7) == 1 and last_action_id is not None and int(perform_action_id) == int( last_action_id) and perform_action_result == "success": action8_id = int(round(time.time() * 1000)) """ 发送第8条指令 随机滑动3-5屏 """ random_scale = random.randint(2, 6) action8_dict = swipe_screen(action8_id, scale=random_scale, timeout=30) redis_client.set(device_id + "operate", action8_id) redis_client.set(f"{device_id}_step8", "1") redis_client.delete(f"{device_id}_step7") loggerKit.info("设备:{0}, action7_id:{1}", device_id, action8_id) return action8_dict """ 点击帖子 """ step8 = redis_client.get(f"{device_id}_step8") if step8 is not None and int(step8) == 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}, last_action_id:{1}", device_id, int(last_action_id)) action9_id = int(round(time.time() * 1000)) """ 发送第9条指令 随机滑动点击帖子 """ action9_dict = single_click_by_control(action9_id, control_id="com.ss.android.auto:id/jum", control_ids="com.ss.android.auto:id/s,com.ss.android.auto:id/k2k," "com.ss.android.auto:id/p") redis_client.set(device_id + "operate", action9_id) redis_client.set(f"{device_id}_step9", "1") redis_client.delete(f"{device_id}_step8") loggerKit.info("设备:{0}, action8_id:{1}", device_id, action9_id) return action9_dict """ 切换到热门帖子 """ step9 = redis_client.get(f"{device_id}_step9") if step9 is not None and int(step9) == 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}, last_action_id:{1}", device_id, int(last_action_id)) action10_id = int(round(time.time() * 1000)) """ 发送第10条指令 随机滑动点击帖子 """ action10_dict = single_click_by_control(action10_id, control_id="com.ss.android.auto:id/jum", control_ids="com.ss.android.auto:id/s,com.ss.android.auto:id/k2k," "com.ss.android.auto:id/p") redis_client.set(device_id + "operate", action10_id) redis_client.set(f"{device_id}_step10", "1") redis_client.delete(f"{device_id}_step9") loggerKit.info("设备:{0}, action7_id:{1}", device_id, action10_id) return action10_dict """ 随机滑动屏幕 """ step10 = redis_client.get(f"{device_id}_step10") if step10 is not None and int(step10) == 1 and last_action_id is not None and int(perform_action_id) == int( last_action_id) and perform_action_result == "success": action11_id = int(round(time.time() * 1000)) """ 发送第11条指令 随机滑动3-5屏 """ random_scale = random.randint(1, 3) action11_dict = swipe_screen(action11_id, scale=random_scale, timeout=30) redis_client.set(device_id + "operate", action11_id) redis_client.set(f"{device_id}_step11", "1") redis_client.delete(f"{device_id}_step10") loggerKit.info("设备:{0}, action10_id:{1}", device_id, action11_id) return action11_dict """ 点击帖子 """ step11 = redis_client.get(f"{device_id}_step11") if step11 is not None and int(step11) == 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}, last_action_id:{1}", device_id, int(last_action_id)) action12_id = int(round(time.time() * 1000)) """ 发送第12条指令 随机滑动点击帖子 """ action12_dict = single_click_by_control(action12_id, control_id="com.ss.android.auto:id/jum", control_ids="com.ss.android.auto:id/s,com.ss.android.auto:id/k2k," "com.ss.android.auto:id/p") redis_client.set(device_id + "operate", action12_id) redis_client.set(f"{device_id}_step12", "1") redis_client.delete(f"{device_id}_step11") loggerKit.info("设备:{0}, action9_id:{1}", device_id, action12_id) return action12_dict else: action0_id = int(round(time.time() * 1000)) """ 启动指令 启动app """ action0_dict = start_app(action0_id, target_version="7.9.0") redis_client.set(device_id + "operate", action0_id) redis_client.set(f"{device_id}_step0", "1") loggerKit.info("设备:{0}, action0_id:{1}", device_id, action0_id) return action0_dict