mirror of
https://github.com/webrecorder/browsertrix-crawler.git
synced 2025-10-19 14:33:17 +00:00

* various loading improvements to avoid pages getting 'stuck' + load state tracking - add PageState object, store loadstate (0 to 4) as well as other per-page-state properties on defined object. - set loadState to 0 (failed) by default - set loadState to 1 (content-loaded) on 'domcontentloaded' event - if page.goto() finishes, set to loadState to 2 'full-page-load'. - if page.goto() times out, if no domcontentloaded either, fail immediately. if domcontentloaded reached, extract links, but don't run behaviors - page considered 'finished' if it got to at least loadState 2 'full-pageload', even if behaviors timed out - pages: log 'loadState' as part of pages.jsonl - improve frame detection: detect if frame actually not from a frame tag (eg. OBJECT) tag, and skip as well - screencaster: try screencasting every frame for now instead of every other frame, for smoother screencasting - deps: behaviors: bump to browsertrix-behaviors 0.5.0-beta.0 release (includes autoscroll improvements) - workers ids: just use 0, 1, ... n-1 worker indexes, send numeric index as part of screencast messages - worker: only keeps track of crash state to recreate page, decouple crash and page failed/succeeded state - screencaster: allow reusing caster slots with fixed ids - interrupt timedCrawlPage() wait if 'crash' event happens - crawler: pageFinished() callback when page finishes - worker: add workerIdle callback, call screencaster.stopById() and send 'close' message when worker is empty
293 lines
6.5 KiB
JavaScript
293 lines
6.5 KiB
JavaScript
import ws from "ws";
|
|
import http from "http";
|
|
import url from "url";
|
|
import fs from "fs";
|
|
|
|
import { initRedis } from "./redis.js";
|
|
import { logger } from "./logger.js";
|
|
|
|
const indexHTML = fs.readFileSync(new URL("../html/screencast.html", import.meta.url), {encoding: "utf8"});
|
|
|
|
|
|
// ===========================================================================
|
|
class WSTransport
|
|
{
|
|
constructor(port) {
|
|
this.allWS = new Set();
|
|
|
|
this.caster = null;
|
|
|
|
this.wss = new ws.Server({ noServer: true });
|
|
|
|
this.wss.on("connection", (ws) => this.initWebSocket(ws));
|
|
|
|
this.httpServer = http.createServer((...args) => this.handleRequest(...args));
|
|
this.httpServer.on("upgrade", (request, socket, head) => {
|
|
const pathname = url.parse(request.url).pathname;
|
|
|
|
if (pathname === "/ws") {
|
|
this.wss.handleUpgrade(request, socket, head, (ws) => {
|
|
this.wss.emit("connection", ws, request);
|
|
});
|
|
}
|
|
});
|
|
|
|
this.httpServer.listen(port);
|
|
}
|
|
|
|
async handleRequest(req, res) {
|
|
const pathname = url.parse(req.url).pathname;
|
|
switch (pathname) {
|
|
case "/":
|
|
res.writeHead(200, {"Content-Type": "text/html"});
|
|
res.end(indexHTML);
|
|
return;
|
|
}
|
|
|
|
res.writeHead(404, {"Content-Type": "text/html"});
|
|
res.end("Not Found");
|
|
}
|
|
|
|
initWebSocket(ws) {
|
|
for (const packet of this.caster.iterCachedData()) {
|
|
ws.send(JSON.stringify(packet));
|
|
}
|
|
|
|
this.allWS.add(ws);
|
|
|
|
logger.debug("New Screencast Conn", {total: this.allWS.size}, "screencast");
|
|
|
|
if (this.allWS.size === 1) {
|
|
this.caster.startCastAll();
|
|
}
|
|
|
|
ws.on("close", () => {
|
|
//console.log("Screencast WebSocket Disconnected");
|
|
this.allWS.delete(ws);
|
|
|
|
if (this.allWS.size === 0) {
|
|
this.caster.stopCastAll();
|
|
}
|
|
});
|
|
}
|
|
|
|
sendAll(packet) {
|
|
packet = JSON.stringify(packet);
|
|
for (const ws of this.allWS) {
|
|
ws.send(packet);
|
|
}
|
|
}
|
|
|
|
isActive() {
|
|
return this.allWS.size;
|
|
}
|
|
}
|
|
|
|
|
|
// ===========================================================================
|
|
class RedisPubSubTransport
|
|
{
|
|
constructor(redisUrl, crawlId) {
|
|
this.numConnections = 0;
|
|
this.castChannel = `c:${crawlId}:cast`;
|
|
this.ctrlChannel = `c:${crawlId}:ctrl`;
|
|
|
|
this.init(redisUrl);
|
|
}
|
|
|
|
async init(redisUrl) {
|
|
this.redis = await initRedis(redisUrl);
|
|
|
|
const subRedis = await initRedis(redisUrl);
|
|
|
|
await subRedis.subscribe(this.ctrlChannel);
|
|
|
|
subRedis.on("message", async (channel, message) => {
|
|
if (channel !== this.ctrlChannel) {
|
|
return;
|
|
}
|
|
|
|
switch (message) {
|
|
case "connect":
|
|
this.numConnections++;
|
|
if (this.numConnections === 1) {
|
|
this.caster.startCastAll();
|
|
} else {
|
|
for (const packet of this.caster.iterCachedData()) {
|
|
await this.sendAll(packet);
|
|
}
|
|
}
|
|
break;
|
|
|
|
case "disconnect":
|
|
this.numConnections--;
|
|
if (this.numConnections === 0) {
|
|
this.caster.stopCastAll();
|
|
}
|
|
break;
|
|
}
|
|
});
|
|
}
|
|
|
|
async sendAll(packet) {
|
|
await this.redis.publish(this.castChannel, JSON.stringify(packet));
|
|
}
|
|
|
|
async isActive() {
|
|
const result = await this.redis.pubsub("numsub", this.castChannel);
|
|
return (result.length > 1 ? result[1] > 0: false);
|
|
}
|
|
}
|
|
|
|
|
|
// ===========================================================================
|
|
class ScreenCaster
|
|
{
|
|
constructor(transport, numWorkers) {
|
|
this.transport = transport;
|
|
this.transport.caster = this;
|
|
|
|
this.caches = new Map();
|
|
this.urls = new Map();
|
|
|
|
this.cdps = new Map();
|
|
|
|
// todo: make customizable
|
|
this.maxWidth = 640;
|
|
this.maxHeight = 480;
|
|
|
|
this.initMsg = {
|
|
msg: "init",
|
|
width: this.maxWidth,
|
|
height: this.maxHeight,
|
|
browsers: numWorkers
|
|
};
|
|
}
|
|
|
|
*iterCachedData() {
|
|
yield this.initMsg;
|
|
const msg = "screencast";
|
|
for (const id of this.caches.keys()) {
|
|
const data = this.caches.get(id);
|
|
const url = this.urls.get(id);
|
|
yield {msg, id, url, data};
|
|
}
|
|
}
|
|
|
|
async screencastPage(page, cdp, id) {
|
|
this.urls.set(id, page.url());
|
|
|
|
// shouldn't happen, getting duplicate cdp
|
|
if (this.cdps.get(id) === cdp) {
|
|
logger.warn("worker already registered", {workerid: id}, "screencast");
|
|
return;
|
|
}
|
|
|
|
this.cdps.set(id, cdp);
|
|
|
|
const msg = "screencast";
|
|
|
|
cdp.on("Page.screencastFrame", async (resp) => {
|
|
const data = resp.data;
|
|
const sessionId = resp.sessionId;
|
|
const url = page.url();
|
|
|
|
logger.debug("screencastFrame", {workerid: id, url}, "screencast");
|
|
|
|
// keep previous data cached if just showing about:blank
|
|
if (url && !url.startsWith("about:blank")) {
|
|
this.caches.set(id, data);
|
|
this.urls.set(id, url);
|
|
|
|
await this.transport.sendAll({msg, id, data, url});
|
|
}
|
|
|
|
try {
|
|
await cdp.send("Page.screencastFrameAck", {sessionId});
|
|
} catch(e) {
|
|
//console.log("Ack Failed, probably window/tab already closed", e);
|
|
}
|
|
});
|
|
|
|
if (await this.transport.isActive()) {
|
|
await this.startCast(cdp, id);
|
|
}
|
|
}
|
|
|
|
async stopAll() {
|
|
for (const key of this.cdps.keys()) {
|
|
await this.stopById(key);
|
|
}
|
|
}
|
|
|
|
async stopById(id, sendClose=false) {
|
|
this.caches.delete(id);
|
|
this.urls.delete(id);
|
|
|
|
const cdp = this.cdps.get(id);
|
|
|
|
if (cdp) {
|
|
try {
|
|
await this.stopCast(cdp, id);
|
|
} catch (e) {
|
|
// already detached
|
|
}
|
|
}
|
|
|
|
if (sendClose) {
|
|
await this.transport.sendAll({msg: "close", id});
|
|
}
|
|
|
|
this.cdps.delete(id);
|
|
}
|
|
|
|
async startCast(cdp, id) {
|
|
if (cdp._startedCast) {
|
|
return;
|
|
}
|
|
|
|
cdp._startedCast = true;
|
|
|
|
logger.info("Started Screencast", {workerid: id}, "screencast");
|
|
|
|
await cdp.send("Page.startScreencast", {format: "png", everyNthFrame: 1, maxWidth: this.maxWidth, maxHeight: this.maxHeight});
|
|
}
|
|
|
|
async stopCast(cdp, id) {
|
|
if (!cdp._startedCast) {
|
|
return;
|
|
}
|
|
|
|
cdp._startedCast = false;
|
|
|
|
logger.info("Stopping Screencast", {workerid: id}, "screencast");
|
|
|
|
try {
|
|
await cdp.send("Page.stopScreencast");
|
|
} catch (e) {
|
|
// likely already stopped
|
|
}
|
|
}
|
|
|
|
startCastAll() {
|
|
const promises = [];
|
|
|
|
for (const [id, cdp] of this.cdps.entries()) {
|
|
promises.push(this.startCast(cdp, id));
|
|
}
|
|
|
|
return Promise.allSettled(promises);
|
|
}
|
|
|
|
stopCastAll() {
|
|
const promises = [];
|
|
|
|
for (const [id, cdp] of this.cdps.entries()) {
|
|
promises.push(this.stopCast(cdp, id));
|
|
}
|
|
|
|
return Promise.allSettled(promises);
|
|
}
|
|
}
|
|
|
|
export { ScreenCaster, WSTransport, RedisPubSubTransport };
|