File size: 7,805 Bytes
7fc5208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
import { authApiToken, authMiddleware } from "../../utils/auth.js";
import { addCorsHeaders } from "../../utils/cors.js";
import { chromium } from 'playwright';
import { getVerificationCode } from '../../utils/emailVerification.js';


export const onRequest = async (context: RouteContext): Promise<Response> => {
    const request = context.request;
    const env: Env = context.env;

    // 验证权限
    const authResponse = await authMiddleware(request, env);
    const apiResponse = await authApiToken(request, env);
    if (authResponse && apiResponse) {
        return addCorsHeaders(authResponse);
    }

    try {
        const { email } = await request.json() as any;
        if (!email) {
            throw new Error("Email is required");
        }

        // 获取账户信息
        const accountsStr = await env.KV.get("accounts");
        const accounts: any[] = accountsStr ? JSON.parse(accountsStr) : [];
        const account = accounts.find(a => a.email === email);
        if (!account) {
            throw new Error("Account not found");
        }
        const clientId = env.ENTRA_CLIENT_ID;
        const clientSecret = env.ENTRA_CLIENT_SECRET;
        const redirectUri = env.AUTH_REDIRECT_URI;
        let browser;
        let context;
        try {
            browser = await chromium.launch({
                headless: true,
                args: [
                  '--no-sandbox',
                  '--disable-setuid-sandbox',
                  '--disable-dev-shm-usage',
                  '--disable-blink-features=AutomationControlled', // 禁用自动化特征
                  '--disable-infobars',
                  '--window-size=1920,1080'
                ],
                executablePath: process.env.PLAYWRIGHT_CHROMIUM_EXECUTABLE_PATH, // 使用系统 Chromium
            });
            context = await browser.newContext();
            const page = await context.newPage();

            const authUrl = `https://login.microsoftonline.com/common/oauth2/v2.0/authorize?` +
                `client_id=${clientId}` +
                `&response_type=code` +
                `&redirect_uri=${encodeURIComponent(redirectUri)}` +
                `&response_mode=query` +
                `&scope=offline_access%20IMAP.AccessAsUser.All%20User.Read%20Mail.ReadWrite.Shared%20Mail.Send%20Mail.Read` +
                `&prompt=consent` + //强制显示权限确认窗口
                `&state=${email}`;


            console.log(authUrl)

            //开始认证
            await page.goto(authUrl);
            await page.fill('input[type="email"]', account.email);
            await page.click('input[type="submit"]');

            try {
                await page.waitForSelector('#idA_PWD_SwitchToPassword', { timeout: 3000 });
                await page.click('#idA_PWD_SwitchToPassword');
            } catch (error) {
                console.log(`没有切换到密码登录,继续执行: ${error}`);
            }

            try {
                const timestamp = Math.floor(Date.now() / 1000);
                await page.waitForSelector('#idA_PWD_SwitchToCredPicker', { timeout: 3000 });

                try {
                    //处理email验证
                    const proof = [
                        {
                            "suffix": "godgodgame.com",
                            "apiUrl": "http://159.138.99.139:89/api/latest-email",
                            "token": env.PROOF_GODGODGAME_TOKEN
                        },
                        {
                            "suffix": "igiven.com",
                            "apiUrl": "http://159.138.99.139:90/api/latest-email",
                            "token": env.PROOF_IGIVEN_TOKEN
                        }
                    ]

                    const suffix = email.substring(email.indexOf('@') + 1);
                    const proofConfig = proof.find(p => p.suffix === suffix)!;
                    const verificationCode = await getVerificationCode(proofConfig.apiUrl, proofConfig.token!, account.proofEmail, timestamp);

                    await page.fill('input[type="tel"]', verificationCode);
                    await page.click('button[type="submit"]');
                }
                catch (error) {
                    throw new Error(`邮箱验证失败:${error}`)
                }

                await page.click('#idA_PWD_SwitchToCredPicker');
                await page.click('#tileList > div:nth-child(2) Button');

            } catch (error) {
                console.log(`没有直接发邮件验证,继续执行: ${error}`);
            }

            //输入密码
            await page.waitForURL("https://login.live.com/**")
            await page.fill('input[type="password"]', account.password);
            await page.click('button[type="submit"]');

            //确认登录
            await page.waitForURL('https://login.live.com/ppsecure/**')
            await page.click('button[type="submit"]#acceptButton'); // 同意按钮

            //同意授权
            try {
                // 等待同意授权页面,如果超时5秒则跳过
                await page.waitForURL("https://account.live.com/Consent/**", { timeout: 5000 })
                await page.click('button[type="submit"][data-testid="appConsentPrimaryButton"]');
            } catch (error) {
                // 如果超时或页面未出现,直接继续执行
                console.log("Consent page not found or timeout, skipping...");
            }
            await page.waitForURL((url)=>{
                console.log(url)
                return  url.href.startsWith(redirectUri);
            })
        } finally {
            if (context) await context.close();
            if (browser) await browser.close();
        }


        // 等待回调处理完成,检查 KV 中是否有对应的 code
        let code = null;
        const maxRetries = 30;
        let retries = 0;

        while (!code && retries < maxRetries) {
            const codeKey = `code_${email}`;
            code = await env.KV.get(codeKey);

            if (!code) {
                await new Promise(resolve => setTimeout(resolve, 1000));
                retries++;
            }
        }

        if (!code) {
            throw new Error("Authorization timeout");
        }

        // 使用授权码获取刷新令牌
        const tokenResponse = await fetch('https://login.microsoftonline.com/common/oauth2/v2.0/token', {
            method: 'POST',
            headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
            body: new URLSearchParams({
                client_id: clientId,
                client_secret: clientSecret,
                code: code,
                redirect_uri: redirectUri,
                grant_type: 'authorization_code'
            })
        });

        const tokenData: any = await tokenResponse.json();
        if (!tokenData.refresh_token) {
            throw new Error("Failed to get refresh token");
        }
        if (!tokenData.expires_in) {
            throw new Error("Missing expires_in in token response");
        }
     
        // 存储刷新令牌和时间戳
        const tokenInfo = {
            ...tokenData,
            timestamp: Date.now()
        };
        console.log(tokenInfo);
        await env.KV.put(`refresh_token_${email}`, JSON.stringify(tokenInfo));

        // 删除临时授权码
        await env.KV.delete(`code_${email}`);

        return new Response(JSON.stringify({ success: true }), {
            status: 200,
            headers: { 'Content-Type': 'application/json' }
        });

    } catch (error: any) {
        return new Response(
            JSON.stringify({ error: error.message }),
            { status: 500 }
        );
    }
};