-
Notifications
You must be signed in to change notification settings - Fork 63
/
single-file-launcher.js
executable file
·192 lines (184 loc) · 6.03 KB
/
single-file-launcher.js
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
/*
* Copyright 2010-2024 Gildas Lormeau
* contact : gildas.lormeau <at> gmail.com
*
* This file is part of SingleFile.
*
* The code in this file is free software: you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* (GNU AGPL) as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* The code in this file is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero
* General Public License for more details.
*
* As additional permission under GNU AGPL version 3 section 7, you may
* distribute UNMODIFIED VERSIONS OF THIS file without the copy of the GNU
* AGPL normally required by section 4, provided you include this license
* notice and a URL through which recipients can access the Corresponding
* Source.
*/
import { initialize } from "./single-file-cli-api.js";
import { closeBrowser } from "./lib/browser.js";
import { Deno } from "./lib/deno-polyfill.js";
import { options, parseArgs } from "./options.js";
const { readTextFile, readFile, exit, addSignalListener } = Deno;
try {
addSignalListener("SIGTERM", closeBrowserAndExit);
} catch (_error) {
// ignored
}
try {
addSignalListener("SIGINT", closeBrowserAndExit);
} catch (_error) {
// ignored
}
export { run };
async function run() {
try {
let urls;
if (options.settingsFile) {
const settings = JSON.parse(await Deno.readTextFile(options.settingsFile));
let profileName = options.settingsProfile || "default";
if (profileName == "default" || !settings.profiles[profileName]) {
profileName = "__Default_Settings__";
}
Object.assign(options, settings.profiles[profileName]);
delete options.settingsFile;
}
if (options.urlsFile) {
urls = await getUrlsFile(options.urlsFile);
} else {
urls = [options.url];
}
if (options.browserCookies) {
const cookies = [];
for (const cookie of options.browserCookies) {
const [name, value, domain, path, expires, httpOnly, secure, sameSite, url] = cookie.split(",");
cookies.push({
name,
value,
url,
domain,
path,
secure: secure === "true",
httpOnly: httpOnly === "true",
sameSite,
expires: isNaN(Number(expires)) ? undefined : Number(expires)
});
}
options.browserCookies = cookies;
}
if (options.browserCookiesFile) {
const cookiesContent = await readTextFile(options.browserCookiesFile);
try {
options.browserCookies = JSON.parse(cookiesContent);
} catch {
options.browserCookies = parseCookies(cookiesContent);
}
}
if (options.httpHeaders) {
const headers = {};
for (const header of options.httpHeaders) {
const [name, value] = header.split("=");
headers[name] = value.trim();
}
options.httpHeaders = headers;
}
if (options.embeddedImage) {
options.embeddedImage = Array.from(await readFile(options.embeddedImage));
}
if (options.embeddedPdf) {
options.embeddedPdf = Array.from(await readFile(options.embeddedPdf));
}
options.retrieveLinks = true;
const singlefile = await initialize(options);
await singlefile.capture(urls);
await singlefile.finish();
} catch (error) {
console.error(error.message || error); // eslint-disable-line no-console
await closeBrowserAndExit(-1);
}
}
function parseCookies(textValue) {
const httpOnlyRegExp = /^#HttpOnly_(.*)/;
return textValue.split(/\r\n|\n/)
.filter(line => line.trim() && (!/^#/.test(line) || httpOnlyRegExp.test(line)))
.map(line => {
const httpOnly = httpOnlyRegExp.test(line);
if (httpOnly) {
line = line.replace(httpOnlyRegExp, "$1");
}
const values = line.split(/\t/);
if (values.length == 7) {
return {
domain: values[0],
path: values[2],
secure: values[3] == "TRUE",
expires: (values[4] && Number(values[4])) || undefined,
name: values[5],
value: values[6],
httpOnly
};
}
})
.filter(cookieData => cookieData);
}
async function closeBrowserAndExit(code) {
await closeBrowser();
exit(code);
}
async function getUrlsFile(urlsFile) {
let urls = (await readTextFile(urlsFile)).split("\n");
urls = urls.map(value => {
value = value.trim();
let optionPosition = value.indexOf(" --");
if (optionPosition < 0) {
optionPosition = value.indexOf("\t--");
}
if (optionPosition > 0) {
const url = value.substring(0, optionPosition).trim();
const argsString = value.substring(optionPosition + 1).trim();
const args = [];
let previousCharacter, previousPreviousCharacter, lastQuoteCharacter;
let lastCharIndex = 0;
for (let currentCharIndex = 0; currentCharIndex < argsString.length; currentCharIndex++) {
const character = argsString[currentCharIndex];
if (character == lastQuoteCharacter && (previousCharacter != "\\" || previousPreviousCharacter == "\\")) {
args.push(argsString.substring(lastCharIndex, currentCharIndex));
lastQuoteCharacter = null;
lastCharIndex = currentCharIndex + 1;
} else if (!lastQuoteCharacter) {
if (character == "'" || character == "\"") {
lastQuoteCharacter = argsString[currentCharIndex];
lastCharIndex = currentCharIndex + 1;
} else {
const isSpaceCharacter = character == " " || character == "\t";
if (isSpaceCharacter || character == "=") {
if (isSpaceCharacter && (currentCharIndex == lastCharIndex + 1)) {
lastCharIndex++;
} else if (lastCharIndex < currentCharIndex) {
args.push(argsString.substring(lastCharIndex, currentCharIndex));
lastCharIndex = currentCharIndex + 1;
} else {
lastCharIndex = currentCharIndex + 1;
}
}
}
}
previousPreviousCharacter = previousCharacter;
previousCharacter = character;
}
if (lastCharIndex < argsString.length) {
args.push(argsString.substring(lastCharIndex).trim());
}
const { options } = parseArgs(args, false);
return [url, options];
} else {
return value;
}
});
return urls;
}