use of com.hsn.epic4j.core.exception.TimeException in project epic4j by huisunan.
the class MainStart method receive.
@Override
@SneakyThrows
@Retry(message = "领取失败")
public List<Item> receive(Page page, List<Item> weekFreeItems) {
if (log.isDebugEnabled()) {
log.debug("所有免费的游戏:{}", weekFreeItems.stream().map(Item::getTitle).collect(Collectors.joining(",")));
}
List<Item> receiveItem = new ArrayList<>();
for (Item item : weekFreeItems) {
String url = getItemUrl(item);
String itemUrl = StrUtil.format(UrlConstants.storeUrl, url);
log.info("游戏url:{}", itemUrl);
page.goTo(itemUrl);
log.info("18+检测");
PageUtil.tryClick(page, itemUrl, 8, 1000, "div[data-component=PDPAgeGate] Button");
PageUtil.waitForTextChange(page, "div[data-component=DesktopSticky] button[data-testid=purchase-cta-button]", LOADING_TEXT);
if (isInLibrary(page)) {
log.debug("游戏[{}]已经在库里", item.getTitle());
continue;
}
page.waitForSelector("div[data-component=DesktopSticky] button[data-testid=purchase-cta-button]").click();
// page.waitForSelector("div[data-component=WithClickTracking] button").click();
// epic user licence check
log.info("首次领取游戏检测||设备检测");
PageUtil.tryClick(page, itemUrl, 30, 100, Arrays.asList(userLicenceCheck(), platformCheck()));
String purchaseUrl = PageUtil.getStrProperty(page, "#webPurchaseContainer iframe", "src");
log.debug("订单链接 :{}", purchaseUrl);
page.goTo(purchaseUrl);
PageUtil.tryClick(page, page.mainFrame().url(), 20, 500, "#purchase-app button[class*=confirm]:not([disabled])");
PageUtil.tryClick(page, page.mainFrame().url(), "#purchaseAppContainer div.payment-overlay button.payment-btn--primary");
PageUtil.findSelectors(page, 30_000, true, () -> {
throw new TimeException("订单状态检测超时");
}, new SelectItem("#purchase-app div[class*=alert]", () -> {
if (item.isDLC()) {
// DLC情况下,在没有本体的情况下也也可以领取
return SelectItem.SelectCallBack.CONTINUE;
} else {
String message = PageUtil.getStrProperty(page, "#purchase-app div[class*=alert]:not([disabled])", "textContent");
throw new PermissionException(message);
}
}), // talon_frame_checkout_free_prod
new SelectItem("#talon_container_checkout_free_prod[style*=visible]", () -> {
// 需要验证码
throw new PermissionException("检测到需要验证码");
}), new SelectItem("#purchase-app > div", (p, i) -> p.$(i.getSelectors()) == null, () -> {
// 当订单完成刷新时,该元素不存在,是订单完成后刷新到新页面
page.goTo(itemUrl);
PageUtil.waitForTextChange(page, "div[data-component=DesktopSticky] button[data-testid=purchase-cta-button]", LOADING_TEXT);
if (!isInLibrary(page)) {
throw new ItemException("该游戏被误认为已经认领");
}
log.info("游戏领取成功:{}", item.getTitle());
receiveItem.add(item);
return SelectItem.SelectCallBack.END;
}));
}
return receiveItem;
}
use of com.hsn.epic4j.core.exception.TimeException in project epic4j by huisunan.
the class PageUtil method waitForTextChange.
@SneakyThrows
public void waitForTextChange(Page page, String selector, String text, Integer timeout, Integer interval) {
timer(timeout, interval, i -> {
ElementHandle elementHandle = page.$(selector);
log.trace("wait {} text change count {}", selector, i);
if (elementHandle != null) {
String textContent = getElementStrProperty(elementHandle, "textContent");
log.trace("textContent:{}", textContent);
return !text.equalsIgnoreCase(textContent);
}
return false;
}, () -> {
throw new TimeException("wait text change timeout :" + text);
});
}
use of com.hsn.epic4j.core.exception.TimeException in project epic4j by huisunan.
the class PasswordLogin method login.
@Override
@SneakyThrows
public void login(Page page, String email, String password) {
if (StrUtil.isEmpty(email)) {
throw new CheckException("账号不能为空");
}
if (StrUtil.isEmpty(password)) {
throw new CheckException(email + " 密码不能为空");
}
log.debug("开始登录");
String originUrl = page.mainFrame().url();
PageUtil.click(page, "div.menu-icon");
PageUtil.click(page, "div.mobile-buttons a[href='/login']");
PageUtil.waitUrlChange(page, originUrl);
PageUtil.click(page, "#login-with-epic");
PageUtil.type(page, "#email", email);
PageUtil.type(page, "#password", password);
PageUtil.click(page, "#sign-in[tabindex='0']");
PageUtil.findSelectors(page, 30000, true, () -> {
throw new TimeException("登录超时");
}, new SelectItem("#talon_frame_login_prod[style*=visible]", () -> {
throw new PermissionException("未知情况下需要验证码");
}), new SelectItem("div.MuiPaper-root[role=alert] h6[class*=subtitle1]", () -> {
Object jsonValue = page.waitForSelector("div.MuiPaper-root[role=alert] h6[class*=subtitle1]").getProperty("textContent").jsonValue();
throw new PermissionException("来自epic的错误消息: " + jsonValue);
}), new SelectItem("input[name=code-input-0]", () -> {
throw new PermissionException("需要校验码");
}), new SelectItem(".signed-in", () -> {
log.info("登录成功");
return SelectItem.SelectCallBack.END;
}));
log.debug("登录结束");
}
Aggregations