aboutsummaryrefslogtreecommitdiff
path: root/lib/browser.js
blob: d0f78613319ac449687016ce0652ca5562eba082 (plain)
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
const puppeteer = require("puppeteer-extra");
const StealthPlugin = require('puppeteer-extra-plugin-stealth');
const cookiesStorage = require("./cookies-storage");
puppeteer.use(StealthPlugin())

const {getLogger} = require('./logging')

const logger = getLogger('browser')


const chromeOptions = {
    headless: true,
    args: []
};

let browser = null

class PageWrapper {
    constructor() {
        this.intrNeededCallback = null
        this.intrCallback = null
        this.intrPostCallback = null

        this.page = null
        this.cdpClient = null
    }

    async getPage(interceptionNeededCallback, interceptCallback, postInterceptCallback) {
        this.intrCallback = interceptCallback
        this.intrNeededCallback = interceptionNeededCallback
        this.intrPostCallback = postInterceptCallback

        if (this.page !== null && this.page.isClosed()) {
            this.page.removeAllListeners && this.page.removeAllListeners()
            this.page = null
        }

        if (this.page !== null)
            return this.page

        this.page = await browser.newPage()

        let cookies = await cookiesStorage.get()
        // logger.debug('loaded cookies:', cookies)
        await this.page.setCookie(...cookies)

        this.page.on('domcontentloaded', async () => {
            try {
                let cookies = await this.page.cookies();
                if (cookies)
                    await cookiesStorage.save(cookies)
            } catch (e) {
                logger.error('page.cookies() failed:', e)
            }
        })

        await this.page.removeAllListeners('request')
        await this.page.setRequestInterception(true)
        this.page.on('request', async request => {
            let contData = this.intrPostCallback(request)
            await request.continue(contData)
        })

        this.cdpClient = await this.page.target().createCDPSession();
        await this.cdpClient.send('Network.enable')
        await this.cdpClient.send('Network.setRequestInterception', {
            patterns: [
                {
                    urlPattern: '*',
                    resourceType: 'Document',
                    interceptionStage: 'HeadersReceived'
                }
            ],
        })
        await this.cdpClient.on('Network.requestIntercepted', async e => {
            let obj = {interceptionId: e.interceptionId}
            if (this.intrNeededCallback && this.intrNeededCallback(e) === true) {
                let ret = await this.cdpClient.send('Network.getResponseBodyForInterception', {
                    interceptionId: e.interceptionId
                })
                this.intrCallback(ret, e.responseHeaders)
                obj['errorReason'] = 'BlockedByClient'
            }
            await this.cdpClient.send('Network.continueInterceptedRequest', obj)
        })
        return this.page
    }
}

let singlePageWrapper = new PageWrapper()

module.exports = {
    async launch(options) {
        if (options.proxy)
            chromeOptions.args.push(`--proxy-server=${options.proxy}`)

        if (options.noSandbox)
            chromeOptions.args.push(
                '--no-sandbox',
                '--disable-setuid-sandbox'
            )

        if (options.headful)
            chromeOptions.headless = false

        browser = await puppeteer.launch(chromeOptions)
    },

    singlePageWrapper,
    PageWrapper,
}