File size: 8,122 Bytes
7a4c980
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/// <reference lib="webworker" />

import { z } from "zod";
import { Config, ConfigSchema } from "../helpers/config.ts";
import { BG, buildURL, GOOG_API_KEY, USER_AGENT } from "bgutils";
import type { WebPoSignalOutput } from "bgutils";
import { JSDOM } from "jsdom";
import { Innertube } from "youtubei.js";
import { PLAYER_ID } from "../../constants.ts";
let getFetchClientLocation = "getFetchClient";
if (Deno.env.get("GET_FETCH_CLIENT_LOCATION")) {
    if (Deno.env.has("DENO_COMPILED")) {
        getFetchClientLocation = Deno.mainModule.replace("src/main.ts", "") +
            Deno.env.get("GET_FETCH_CLIENT_LOCATION");
    } else {
        getFetchClientLocation = Deno.env.get(
            "GET_FETCH_CLIENT_LOCATION",
        ) as string;
    }
}

type FetchFunction = typeof fetch;
const { getFetchClient }: {
    getFetchClient: (config: Config) => Promise<FetchFunction>;
} = await import(getFetchClientLocation);

// ---- Messages to send to the webworker ----
const InputInitialiseSchema = z.object({
    type: z.literal("initialise"),
    config: ConfigSchema,
}).strict();

const InputContentTokenSchema = z.object({
    type: z.literal("content-token-request"),
    videoId: z.string(),
    requestId: z.string().uuid(),
}).strict();
export type InputInitialise = z.infer<typeof InputInitialiseSchema>;
export type InputContentToken = z.infer<typeof InputContentTokenSchema>;
const InputMessageSchema = z.union([
    InputInitialiseSchema,
    InputContentTokenSchema,
]);
export type InputMessage = z.infer<typeof InputMessageSchema>;

// ---- Messages that the webworker sends to the parent ----
const OutputReadySchema = z.object({
    type: z.literal("ready"),
}).strict();

const OutputInitialiseSchema = z.object({
    type: z.literal("initialised"),
    sessionPoToken: z.string(),
    visitorData: z.string(),
}).strict();

const OutputContentTokenSchema = z.object({
    type: z.literal("content-token"),
    contentToken: z.string(),
    requestId: InputContentTokenSchema.shape.requestId,
}).strict();

const OutputErrorSchema = z.object({
    type: z.literal("error"),
    error: z.any(),
}).strict();
export const OutputMessageSchema = z.union([
    OutputReadySchema,
    OutputInitialiseSchema,
    OutputContentTokenSchema,
    OutputErrorSchema,
]);
type OutputMessage = z.infer<typeof OutputMessageSchema>;

const IntegrityTokenResponse = z.tuple([z.string()]).rest(z.any());

const isWorker = typeof WorkerGlobalScope !== "undefined" &&
    self instanceof WorkerGlobalScope;
if (isWorker) {
    // helper function to force type-checking
    const untypedPostmessage = self.postMessage.bind(self);
    const postMessage = (message: OutputMessage) => {
        untypedPostmessage(message);
    };

    let minter: BG.WebPoMinter;

    onmessage = async (event) => {
        const message = InputMessageSchema.parse(event.data);
        if (message.type === "initialise") {
            const fetchImpl: typeof fetch = await getFetchClient(
                message.config,
            );
            try {
                const {
                    sessionPoToken,
                    visitorData,
                    generatedMinter,
                } = await setup({
                    fetchImpl,
                    innertubeClientCookies:
                        message.config.youtube_session.cookies,
                });
                minter = generatedMinter;
                postMessage({
                    type: "initialised",
                    sessionPoToken,
                    visitorData,
                });
            } catch (err) {
                postMessage({ type: "error", error: err });
            }
        }
        // this is called every time a video needs a content token
        if (message.type === "content-token-request") {
            if (!minter) {
                throw new Error(
                    "Minter not yet ready, must initialise first",
                );
            }
            const contentToken = await minter.mintAsWebsafeString(
                message.videoId,
            );
            postMessage({
                type: "content-token",
                contentToken,
                requestId: message.requestId,
            });
        }
    };

    postMessage({ type: "ready" });
}

async function setup(
    { fetchImpl, innertubeClientCookies }: {
        fetchImpl: FetchFunction;
        innertubeClientCookies: string;
    },
) {
    const innertubeClient = await Innertube.create({
        enable_session_cache: false,
        fetch: fetchImpl,
        user_agent: USER_AGENT,
        retrieve_player: false,
        cookie: innertubeClientCookies || undefined,
        player_id: PLAYER_ID,
    });

    const visitorData = innertubeClient.session.context.client.visitorData;

    if (!visitorData) {
        throw new Error("Could not get visitor data");
    }

    const dom = new JSDOM(
        '<!DOCTYPE html><html lang="en"><head><title></title></head><body></body></html>',
        {
            url: "https://www.youtube.com/",
            referrer: "https://www.youtube.com/",
            userAgent: USER_AGENT,
        },
    );

    Object.assign(globalThis, {
        window: dom.window,
        document: dom.window.document,
        // location: dom.window.location, // --- doesn't seem to be necessary and the Web Worker doesn't like it
        origin: dom.window.origin,
    });

    if (!Reflect.has(globalThis, "navigator")) {
        Object.defineProperty(globalThis, "navigator", {
            value: dom.window.navigator,
        });
    }

    const challengeResponse = await innertubeClient.getAttestationChallenge(
        "ENGAGEMENT_TYPE_UNBOUND",
    );
    if (!challengeResponse.bg_challenge) {
        throw new Error("Could not get challenge");
    }

    // Mock HTMLCanvasElement.prototype.getContext to silence "Not implemented" error
    // and prevent unnecessary noise in logs.
    if (dom.window.HTMLCanvasElement) {
        dom.window.HTMLCanvasElement.prototype.getContext = ((
            _contextId: string,
            _options?: any,
        ) => {
            return new Proxy({}, {
                get: (_target, _prop) => {
                    return () => { };
                },
            });
        }) as any;
        dom.window.HTMLCanvasElement.prototype.toDataURL = () => "";
    }

    const interpreterUrl = challengeResponse.bg_challenge.interpreter_url
        .private_do_not_access_or_else_trusted_resource_url_wrapped_value;
    const bgScriptResponse = await fetchImpl(
        `https:${interpreterUrl}`,
    );
    const interpreterJavascript = await bgScriptResponse.text();

    if (interpreterJavascript) {
        new Function(interpreterJavascript)();
    } else throw new Error("Could not load VM");
    const botguard = await BG.BotGuardClient.create({
        program: challengeResponse.bg_challenge.program,
        globalName: challengeResponse.bg_challenge.global_name,
        globalObj: globalThis,
    });

    const webPoSignalOutput: WebPoSignalOutput = [];
    const botguardResponse = await botguard.snapshot({ webPoSignalOutput });
    const requestKey = "O43z0dpjhgX20SCx4KAo";

    const integrityTokenResponse = await fetchImpl(
        buildURL("GenerateIT", true),
        {
            method: "POST",
            headers: {
                "content-type": "application/json+protobuf",
                "x-goog-api-key": GOOG_API_KEY,
                "x-user-agent": "grpc-web-javascript/0.1",
                "user-agent": USER_AGENT,
            },
            body: JSON.stringify([requestKey, botguardResponse]),
        },
    );
    const integrityTokenBody = IntegrityTokenResponse.parse(
        await integrityTokenResponse.json(),
    );

    const integrityTokenBasedMinter = await BG.WebPoMinter.create({
        integrityToken: integrityTokenBody[0],
    }, webPoSignalOutput);

    const sessionPoToken = await integrityTokenBasedMinter.mintAsWebsafeString(
        visitorData,
    );

    return {
        sessionPoToken,
        visitorData,
        generatedMinter: integrityTokenBasedMinter,
    };
}