Refactor: Simplify bot login handling in DesktopFlow and MobileFlow; initialize Login instance in MicrosoftRewardsBot

This commit is contained in:
2025-11-09 00:18:10 +01:00
parent 3bdb94adb5
commit 22adf44f63
3 changed files with 9 additions and 13 deletions

View File

@@ -10,7 +10,6 @@
* - Desktop searches
*/
import type { Page } from 'playwright'
import type { MicrosoftRewardsBot } from '../index'
import type { Account } from '../interface/Account'
import { saveSessionData } from '../util/Load'
@@ -49,8 +48,7 @@ export class DesktopFlow {
this.bot.log(false, 'DESKTOP-FLOW', 'Browser started successfully')
// Login into MS Rewards, then optionally stop if compromised
const login = (this.bot as unknown as { login: { login: (page: Page, email: string, password: string, totp?: string) => Promise<void> } }).login
await login.login(this.bot.homePage, account.email, account.password, account.totp)
await this.bot.login.login(this.bot.homePage, account.email, account.password, account.totp)
if (this.bot.compromisedModeActive) {
// User wants the page to remain open for manual recovery. Do not proceed to tasks.
@@ -116,20 +114,17 @@ export class DesktopFlow {
// Complete daily set
if (this.bot.config.workers.doDailySet) {
const workers = (this.bot as unknown as { workers: { doDailySet: (page: Page, data: unknown) => Promise<void> } }).workers
await workers.doDailySet(workerPage, data)
await this.bot.workers.doDailySet(workerPage, data)
}
// Complete more promotions
if (this.bot.config.workers.doMorePromotions) {
const workers = (this.bot as unknown as { workers: { doMorePromotions: (page: Page, data: unknown) => Promise<void> } }).workers
await workers.doMorePromotions(workerPage, data)
await this.bot.workers.doMorePromotions(workerPage, data)
}
// Complete punch cards
if (this.bot.config.workers.doPunchCards) {
const workers = (this.bot as unknown as { workers: { doPunchCard: (page: Page, data: unknown) => Promise<void> } }).workers
await workers.doPunchCard(workerPage, data)
await this.bot.workers.doPunchCard(workerPage, data)
}
// Do desktop searches

View File

@@ -11,7 +11,6 @@
* - Mobile retry logic
*/
import type { Page } from 'playwright'
import type { MicrosoftRewardsBot } from '../index'
import type { Account } from '../interface/Account'
import { saveSessionData } from '../util/Load'
@@ -56,8 +55,7 @@ export class MobileFlow {
this.bot.log(true, 'MOBILE-FLOW', 'Browser started successfully')
// Login into MS Rewards, then respect compromised mode
const login = (this.bot as unknown as { login: { login: (page: Page, email: string, password: string, totp?: string) => Promise<void>; getMobileAccessToken: (page: Page, email: string, totp?: string) => Promise<string> } }).login
await login.login(this.bot.homePage, account.email, account.password, account.totp)
await this.bot.login.login(this.bot.homePage, account.email, account.password, account.totp)
if (this.bot.compromisedModeActive) {
keepBrowserOpen = true
@@ -84,7 +82,7 @@ export class MobileFlow {
return { initialPoints: 0, collectedPoints: 0 }
}
const accessToken = await login.getMobileAccessToken(this.bot.homePage, account.email, account.totp)
const accessToken = await this.bot.login.getMobileAccessToken(this.bot.homePage, account.email, account.totp)
await this.bot.browser.func.goHome(this.bot.homePage)
const data = await this.bot.browser.func.getDashboardData()