@xditya/pastr 0.4.0 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/pastr.mjs +580 -571
package/package.json
CHANGED
package/pastr.mjs
CHANGED
|
@@ -1,428 +1,438 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
/**
|
|
3
|
-
* pastr — paste from the terminal.
|
|
4
|
-
*
|
|
5
|
-
* Zero dependencies (Node ≥ 20). Talks to any pastr instance over its HTTP API and
|
|
6
|
-
* implements the same AES-256-GCM envelope as the website, so `pastr -E` pastes are
|
|
7
|
-
* end-to-end encrypted without ever opening a browser.
|
|
8
|
-
*/
|
|
9
|
-
import { execFileSync, spawnSync } from "node:child_process";
|
|
10
|
-
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
|
|
11
|
-
import { homedir, platform } from "node:os";
|
|
12
|
-
import { basename, join } from "node:path";
|
|
13
|
-
import { fileURLToPath } from "node:url";
|
|
14
|
-
import { parseArgs, styleText } from "node:util";
|
|
15
|
-
import { createInterface } from "node:readline";
|
|
16
|
-
|
|
17
|
-
export const VERSION = "0.4.
|
|
18
|
-
const NAME = "pastr";
|
|
19
|
-
const DEFAULT_HOST = "https://pastr.xditya.me";
|
|
20
|
-
|
|
21
|
-
// ---------------------------------------------------------------------------
|
|
22
|
-
// Terminal styling: colour only on a TTY, never when piped or under NO_COLOR,
|
|
23
|
-
// so `pastr | pbcopy` and scripts see plain text.
|
|
24
|
-
// ---------------------------------------------------------------------------
|
|
25
|
-
|
|
26
|
-
const OUT_TTY = !process.env.NO_COLOR && !!process.stdout.isTTY;
|
|
27
|
-
const ERR_TTY = !process.env.NO_COLOR && !!process.stderr.isTTY;
|
|
28
|
-
const paint = (style) => (s) => (OUT_TTY && styleText ? styleText(style, s) : s);
|
|
29
|
-
const bold = paint("bold");
|
|
30
|
-
const dim = paint("dim");
|
|
31
|
-
const cyan = paint("cyan");
|
|
32
|
-
const yellow = paint("yellow");
|
|
33
|
-
const green = paint("green");
|
|
34
|
-
const link = paint(["cyan", "underline"]);
|
|
35
|
-
|
|
36
|
-
const len = (s) => [...s].length;
|
|
37
|
-
const fit = (s, n) => (len(s) > n ? [...s].slice(0, Math.max(n - 1, 0)).join("") + "…" : s.padEnd(n));
|
|
38
|
-
|
|
39
|
-
/** Box-drawn table sized to the terminal; column `shrink` gives up characters first, then the widest. */
|
|
40
|
-
export function table(head, rows, styles = [], shrink = -1, width = process.stdout.columns || 120, selected = -1) {
|
|
41
|
-
const w = head.map((h, i) => Math.max(len(h), ...rows.map((r) => len(r[i]))));
|
|
42
|
-
let over = w.reduce((a, b) => a + b, 0) + 3 * w.length + 1 - width;
|
|
43
|
-
while (over > 0) {
|
|
44
|
-
const i = w[shrink] > 8 ? shrink : w.indexOf(Math.max(...w));
|
|
45
|
-
if (w[i] <= 8) break;
|
|
46
|
-
w[i]--;
|
|
47
|
-
over--;
|
|
48
|
-
}
|
|
49
|
-
const rule = (l, m, r) => dim(l + w.map((n) => "─".repeat(n + 2)).join(m) + r);
|
|
50
|
-
const line = (cells, f) => dim("│ ") + cells.map((c, i) => (f[i] ?? ((s) => s))(fit(c, w[i]))).join(dim(" │ ")) + dim(" │");
|
|
51
|
-
const body = rows.map((r, i) => (i === selected ? line(r, r.map(() => paint("inverse"))) : line(r, styles)));
|
|
52
|
-
return [rule("╭", "┬", "╮"), line(head, head.map(() => bold)), rule("├", "┼", "┤"), ...body, rule("╰", "┴", "╯")].join("\n") + "\n";
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
const ok = (msg) => out(`${OUT_TTY ? green("✓ ") : ""}${msg}\n`);
|
|
56
|
-
const note = (msg) => process.stderr.write(ERR_TTY ? styleText("dim", ` ${msg}\n`) : `${msg}\n`);
|
|
57
|
-
|
|
58
|
-
// ---------------------------------------------------------------------------
|
|
59
|
-
// Config & history
|
|
60
|
-
// ---------------------------------------------------------------------------
|
|
61
|
-
|
|
62
|
-
export function configDir() {
|
|
63
|
-
if (process.env.PASTR_CONFIG_DIR) return process.env.PASTR_CONFIG_DIR;
|
|
64
|
-
if (platform() === "win32") return join(process.env.APPDATA || join(homedir(), "AppData", "Roaming"), NAME);
|
|
65
|
-
return join(process.env.XDG_CONFIG_HOME || join(homedir(), ".config"), NAME);
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
function readJson(file, fallback) {
|
|
69
|
-
try {
|
|
70
|
-
return JSON.parse(readFileSync(file, "utf8"));
|
|
71
|
-
} catch {
|
|
72
|
-
return fallback;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
function writeJson(file, data) {
|
|
77
|
-
mkdirSync(configDir(), { recursive: true, mode: 0o700 });
|
|
78
|
-
writeFileSync(file, JSON.stringify(data, null, 2) + "\n", { mode: 0o600 });
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export function getConfig() {
|
|
82
|
-
return readJson(join(configDir(), "config.json"), {});
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
export function setConfig(patch) {
|
|
86
|
-
writeJson(join(configDir(), "config.json"), { ...getConfig(), ...patch });
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
export function getHistory() {
|
|
90
|
-
const now = Date.now();
|
|
91
|
-
return readJson(join(configDir(), "history.json"), []).filter((p) => p.expires === null || p.expires === undefined || p.expires > now);
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
function remember(entry) {
|
|
95
|
-
const list = getHistory().filter((p) => p.id !== entry.id);
|
|
96
|
-
list.unshift(entry);
|
|
97
|
-
writeJson(join(configDir(), "history.json"), list.slice(0, 500));
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
function forget(id) {
|
|
101
|
-
writeJson(
|
|
102
|
-
join(configDir(), "history.json"),
|
|
103
|
-
getHistory().filter((p) => p.id !== id),
|
|
104
|
-
);
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
export function resolveHost(flag) {
|
|
108
|
-
const host = flag || process.env.PASTR_HOST || getConfig().host || DEFAULT_HOST;
|
|
109
|
-
return host.replace(/\/+$/, "");
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
// ---------------------------------------------------------------------------
|
|
113
|
-
// Crypto — identical envelope to the website (src/lib/crypto.ts)
|
|
114
|
-
// ---------------------------------------------------------------------------
|
|
115
|
-
|
|
116
|
-
const subtle = globalThis.crypto.subtle;
|
|
117
|
-
const enc = new TextEncoder();
|
|
118
|
-
const dec = new TextDecoder();
|
|
119
|
-
export const PBKDF2_ITERATIONS = 600_000;
|
|
120
|
-
|
|
121
|
-
export const b64u = (bytes) => Buffer.from(bytes).toString("base64url");
|
|
122
|
-
export const unb64u = (s) => new Uint8Array(Buffer.from(s, "base64url"));
|
|
123
|
-
|
|
124
|
-
async function deriveKey(password, salt, iterations = PBKDF2_ITERATIONS) {
|
|
125
|
-
const material = await subtle.importKey("raw", enc.encode(password), "PBKDF2", false, ["deriveKey"]);
|
|
126
|
-
return subtle.deriveKey({ name: "PBKDF2", salt, iterations, hash: "SHA-256" }, material, { name: "AES-GCM", length: 256 }, false, ["encrypt", "decrypt"]);
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
export async function encryptEnvelope(envelope, opts) {
|
|
130
|
-
const iv = globalThis.crypto.getRandomValues(new Uint8Array(12));
|
|
131
|
-
const plaintext = enc.encode(JSON.stringify(envelope));
|
|
132
|
-
if (opts.password === undefined) {
|
|
133
|
-
const key = await subtle.generateKey({ name: "AES-GCM", length: 256 }, true, ["encrypt", "decrypt"]);
|
|
134
|
-
const ct = await subtle.encrypt({ name: "AES-GCM", iv }, key, plaintext);
|
|
135
|
-
const raw = await subtle.exportKey("raw", key);
|
|
136
|
-
return { ciphertext: b64u(ct), meta: { alg: "AES-GCM", kdf: "fragment", iv: b64u(iv) }, fragment: b64u(raw) };
|
|
137
|
-
}
|
|
138
|
-
const salt = globalThis.crypto.getRandomValues(new Uint8Array(16));
|
|
139
|
-
const key = await deriveKey(opts.password, salt);
|
|
140
|
-
const ct = await subtle.encrypt({ name: "AES-GCM", iv }, key, plaintext);
|
|
141
|
-
return { ciphertext: b64u(ct), meta: { alg: "AES-GCM", kdf: "password", iv: b64u(iv), salt: b64u(salt), iterations: PBKDF2_ITERATIONS } };
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
export async function decryptEnvelope(ciphertext, meta, secret) {
|
|
145
|
-
const key =
|
|
146
|
-
secret.fragment !== undefined
|
|
147
|
-
? await subtle.importKey("raw", unb64u(secret.fragment), { name: "AES-GCM" }, false, ["decrypt"])
|
|
148
|
-
: await deriveKey(secret.password, unb64u(meta.salt), meta.iterations ?? PBKDF2_ITERATIONS);
|
|
149
|
-
let pt;
|
|
150
|
-
try {
|
|
151
|
-
pt = await subtle.decrypt({ name: "AES-GCM", iv: unb64u(meta.iv) }, key, unb64u(ciphertext));
|
|
152
|
-
} catch {
|
|
153
|
-
throw new CliError("wrong key or corrupted data");
|
|
154
|
-
}
|
|
155
|
-
return JSON.parse(dec.decode(pt));
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
// ---------------------------------------------------------------------------
|
|
159
|
-
// Platform helpers: clipboard, browser, prompts
|
|
160
|
-
// ---------------------------------------------------------------------------
|
|
161
|
-
|
|
162
|
-
const isWsl = () => platform() === "linux" && /microsoft/i.test(safeRead("/proc/version"));
|
|
163
|
-
function safeRead(file) {
|
|
164
|
-
try {
|
|
165
|
-
return readFileSync(file, "utf8");
|
|
166
|
-
} catch {
|
|
167
|
-
return "";
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
function tryExec(cmds, encoding = "utf8") {
|
|
172
|
-
for (const [cmd, args] of cmds) {
|
|
173
|
-
try {
|
|
174
|
-
return execFileSync(cmd, args, { encoding, stdio: ["ignore", "pipe", "ignore"], maxBuffer: 64 * 1024 * 1024 });
|
|
175
|
-
} catch {
|
|
176
|
-
/* try the next one */
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
return null;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
export function readClipboard() {
|
|
183
|
-
const os = platform();
|
|
184
|
-
const cmds =
|
|
185
|
-
os === "darwin"
|
|
186
|
-
? [["pbpaste", []]]
|
|
187
|
-
: os === "win32"
|
|
188
|
-
? [["powershell", ["-NoProfile", "-Command", "Get-Clipboard -Raw"]]]
|
|
189
|
-
: [
|
|
190
|
-
...(process.env.WAYLAND_DISPLAY ? [["wl-paste", ["--no-newline"]]] : []),
|
|
191
|
-
["xclip", ["-selection", "clipboard", "-o"]],
|
|
192
|
-
["xsel", ["--clipboard", "--output"]],
|
|
193
|
-
...(isWsl() ? [["powershell.exe", ["-NoProfile", "-Command", "Get-Clipboard -Raw"]]] : []),
|
|
194
|
-
];
|
|
195
|
-
const out = tryExec(cmds);
|
|
196
|
-
if (out === null) throw new CliError("could not read the clipboard (install wl-clipboard, xclip or xsel on Linux)");
|
|
197
|
-
return out;
|
|
198
|
-
}
|
|
199
|
-
|
|
200
|
-
/** PNG bytes of an image on the clipboard (a screenshot, say), or null when the clipboard holds no image. */
|
|
201
|
-
export function readClipboardImage() {
|
|
202
|
-
const os = platform();
|
|
203
|
-
const ps = "$i = Get-Clipboard -Format Image; if ($i) { $m = New-Object IO.MemoryStream; $i.Save($m, [Drawing.Imaging.ImageFormat]::Png); [Convert]::ToBase64String($m.ToArray()) }";
|
|
204
|
-
if (os === "darwin") {
|
|
205
|
-
// osascript prints the PNG as «data PNGf89504E47...»
|
|
206
|
-
const hex = tryExec([["osascript", ["-e", "the clipboard as «class PNGf»"]]])?.match(/PNGf([0-9A-Fa-f]+)/)?.[1];
|
|
207
|
-
return hex ? Buffer.from(hex, "hex") : null;
|
|
208
|
-
}
|
|
209
|
-
if (os === "win32" || isWsl()) {
|
|
210
|
-
const b64 = tryExec([[os === "win32" ? "powershell" : "powershell.exe", ["-NoProfile", "-Command", ps]]])?.trim();
|
|
211
|
-
return b64 ? Buffer.from(b64, "base64") : null;
|
|
212
|
-
}
|
|
213
|
-
const buf = tryExec(
|
|
214
|
-
[...(process.env.WAYLAND_DISPLAY ? [["wl-paste", ["-t", "image/png"]]] : []), ["xclip", ["-selection", "clipboard", "-t", "image/png", "-o"]]],
|
|
215
|
-
"buffer",
|
|
216
|
-
);
|
|
217
|
-
return buf?.length ? buf : null;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
export function writeClipboard(text) {
|
|
221
|
-
const os = platform();
|
|
222
|
-
const cmds =
|
|
223
|
-
os === "darwin"
|
|
224
|
-
? [["pbcopy", []]]
|
|
225
|
-
: os === "win32"
|
|
226
|
-
? [["clip", []]]
|
|
227
|
-
: [
|
|
228
|
-
...(process.env.WAYLAND_DISPLAY ? [["wl-copy", []]] : []),
|
|
229
|
-
["xclip", ["-selection", "clipboard"]],
|
|
230
|
-
["xsel", ["--clipboard", "--input"]],
|
|
231
|
-
...(isWsl() ? [["clip.exe", []]] : []),
|
|
232
|
-
];
|
|
233
|
-
for (const [cmd, args] of cmds) {
|
|
234
|
-
const r = spawnSync(cmd, args, { input: text, stdio: ["pipe", "ignore", "ignore"] });
|
|
235
|
-
if (r.status === 0) return true;
|
|
236
|
-
}
|
|
237
|
-
return false;
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
function openInBrowser(url) {
|
|
241
|
-
const os = platform();
|
|
242
|
-
const [cmd, args] = os === "darwin" ? ["open", [url]] : os === "win32" ? ["cmd", ["/c", "start", "", url]] : ["xdg-open", [url]];
|
|
243
|
-
const r = spawnSync(cmd, args, { stdio: "ignore" });
|
|
244
|
-
return r.status === 0;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
function promptHidden(question) {
|
|
248
|
-
return new Promise((resolve) => {
|
|
249
|
-
const rl = createInterface({ input: process.stdin, output: process.stderr, terminal: true });
|
|
250
|
-
const write = rl._writeToOutput;
|
|
251
|
-
rl._writeToOutput = function (s) {
|
|
252
|
-
if (s.includes(question)) write.call(rl, s);
|
|
253
|
-
else write.call(rl, "");
|
|
254
|
-
};
|
|
255
|
-
rl.question(question, (answer) => {
|
|
256
|
-
rl.close();
|
|
257
|
-
process.stderr.write("\n");
|
|
258
|
-
resolve(answer);
|
|
259
|
-
});
|
|
260
|
-
});
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
async function readStdin() {
|
|
264
|
-
if (process.stdin.isTTY)
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
//
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
if (
|
|
358
|
-
const
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
}
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
const
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
-
|
|
398
|
-
-
|
|
399
|
-
-
|
|
400
|
-
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* pastr — paste from the terminal.
|
|
4
|
+
*
|
|
5
|
+
* Zero dependencies (Node ≥ 20). Talks to any pastr instance over its HTTP API and
|
|
6
|
+
* implements the same AES-256-GCM envelope as the website, so `pastr -E` pastes are
|
|
7
|
+
* end-to-end encrypted without ever opening a browser.
|
|
8
|
+
*/
|
|
9
|
+
import { execFileSync, spawnSync } from "node:child_process";
|
|
10
|
+
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
|
|
11
|
+
import { homedir, platform } from "node:os";
|
|
12
|
+
import { basename, join } from "node:path";
|
|
13
|
+
import { fileURLToPath } from "node:url";
|
|
14
|
+
import { parseArgs, styleText } from "node:util";
|
|
15
|
+
import { createInterface } from "node:readline";
|
|
16
|
+
|
|
17
|
+
export const VERSION = "0.4.2";
|
|
18
|
+
const NAME = "pastr";
|
|
19
|
+
const DEFAULT_HOST = "https://pastr.xditya.me";
|
|
20
|
+
|
|
21
|
+
// ---------------------------------------------------------------------------
|
|
22
|
+
// Terminal styling: colour only on a TTY, never when piped or under NO_COLOR,
|
|
23
|
+
// so `pastr | pbcopy` and scripts see plain text.
|
|
24
|
+
// ---------------------------------------------------------------------------
|
|
25
|
+
|
|
26
|
+
const OUT_TTY = !process.env.NO_COLOR && !!process.stdout.isTTY;
|
|
27
|
+
const ERR_TTY = !process.env.NO_COLOR && !!process.stderr.isTTY;
|
|
28
|
+
const paint = (style) => (s) => (OUT_TTY && styleText ? styleText(style, s) : s);
|
|
29
|
+
const bold = paint("bold");
|
|
30
|
+
const dim = paint("dim");
|
|
31
|
+
const cyan = paint("cyan");
|
|
32
|
+
const yellow = paint("yellow");
|
|
33
|
+
const green = paint("green");
|
|
34
|
+
const link = paint(["cyan", "underline"]);
|
|
35
|
+
|
|
36
|
+
const len = (s) => [...s].length;
|
|
37
|
+
const fit = (s, n) => (len(s) > n ? [...s].slice(0, Math.max(n - 1, 0)).join("") + "…" : s.padEnd(n));
|
|
38
|
+
|
|
39
|
+
/** Box-drawn table sized to the terminal; column `shrink` gives up characters first, then the widest. */
|
|
40
|
+
export function table(head, rows, styles = [], shrink = -1, width = process.stdout.columns || 120, selected = -1) {
|
|
41
|
+
const w = head.map((h, i) => Math.max(len(h), ...rows.map((r) => len(r[i]))));
|
|
42
|
+
let over = w.reduce((a, b) => a + b, 0) + 3 * w.length + 1 - width;
|
|
43
|
+
while (over > 0) {
|
|
44
|
+
const i = w[shrink] > 8 ? shrink : w.indexOf(Math.max(...w));
|
|
45
|
+
if (w[i] <= 8) break;
|
|
46
|
+
w[i]--;
|
|
47
|
+
over--;
|
|
48
|
+
}
|
|
49
|
+
const rule = (l, m, r) => dim(l + w.map((n) => "─".repeat(n + 2)).join(m) + r);
|
|
50
|
+
const line = (cells, f) => dim("│ ") + cells.map((c, i) => (f[i] ?? ((s) => s))(fit(c, w[i]))).join(dim(" │ ")) + dim(" │");
|
|
51
|
+
const body = rows.map((r, i) => (i === selected ? line(r, r.map(() => paint("inverse"))) : line(r, styles)));
|
|
52
|
+
return [rule("╭", "┬", "╮"), line(head, head.map(() => bold)), rule("├", "┼", "┤"), ...body, rule("╰", "┴", "╯")].join("\n") + "\n";
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
const ok = (msg) => out(`${OUT_TTY ? green("✓ ") : ""}${msg}\n`);
|
|
56
|
+
const note = (msg) => process.stderr.write(ERR_TTY ? styleText("dim", ` ${msg}\n`) : `${msg}\n`);
|
|
57
|
+
|
|
58
|
+
// ---------------------------------------------------------------------------
|
|
59
|
+
// Config & history
|
|
60
|
+
// ---------------------------------------------------------------------------
|
|
61
|
+
|
|
62
|
+
export function configDir() {
|
|
63
|
+
if (process.env.PASTR_CONFIG_DIR) return process.env.PASTR_CONFIG_DIR;
|
|
64
|
+
if (platform() === "win32") return join(process.env.APPDATA || join(homedir(), "AppData", "Roaming"), NAME);
|
|
65
|
+
return join(process.env.XDG_CONFIG_HOME || join(homedir(), ".config"), NAME);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
function readJson(file, fallback) {
|
|
69
|
+
try {
|
|
70
|
+
return JSON.parse(readFileSync(file, "utf8"));
|
|
71
|
+
} catch {
|
|
72
|
+
return fallback;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
function writeJson(file, data) {
|
|
77
|
+
mkdirSync(configDir(), { recursive: true, mode: 0o700 });
|
|
78
|
+
writeFileSync(file, JSON.stringify(data, null, 2) + "\n", { mode: 0o600 });
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export function getConfig() {
|
|
82
|
+
return readJson(join(configDir(), "config.json"), {});
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
export function setConfig(patch) {
|
|
86
|
+
writeJson(join(configDir(), "config.json"), { ...getConfig(), ...patch });
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export function getHistory() {
|
|
90
|
+
const now = Date.now();
|
|
91
|
+
return readJson(join(configDir(), "history.json"), []).filter((p) => p.expires === null || p.expires === undefined || p.expires > now);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
function remember(entry) {
|
|
95
|
+
const list = getHistory().filter((p) => p.id !== entry.id);
|
|
96
|
+
list.unshift(entry);
|
|
97
|
+
writeJson(join(configDir(), "history.json"), list.slice(0, 500));
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
function forget(id) {
|
|
101
|
+
writeJson(
|
|
102
|
+
join(configDir(), "history.json"),
|
|
103
|
+
getHistory().filter((p) => p.id !== id),
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export function resolveHost(flag) {
|
|
108
|
+
const host = flag || process.env.PASTR_HOST || getConfig().host || DEFAULT_HOST;
|
|
109
|
+
return host.replace(/\/+$/, "");
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
// ---------------------------------------------------------------------------
|
|
113
|
+
// Crypto — identical envelope to the website (src/lib/crypto.ts)
|
|
114
|
+
// ---------------------------------------------------------------------------
|
|
115
|
+
|
|
116
|
+
const subtle = globalThis.crypto.subtle;
|
|
117
|
+
const enc = new TextEncoder();
|
|
118
|
+
const dec = new TextDecoder();
|
|
119
|
+
export const PBKDF2_ITERATIONS = 600_000;
|
|
120
|
+
|
|
121
|
+
export const b64u = (bytes) => Buffer.from(bytes).toString("base64url");
|
|
122
|
+
export const unb64u = (s) => new Uint8Array(Buffer.from(s, "base64url"));
|
|
123
|
+
|
|
124
|
+
async function deriveKey(password, salt, iterations = PBKDF2_ITERATIONS) {
|
|
125
|
+
const material = await subtle.importKey("raw", enc.encode(password), "PBKDF2", false, ["deriveKey"]);
|
|
126
|
+
return subtle.deriveKey({ name: "PBKDF2", salt, iterations, hash: "SHA-256" }, material, { name: "AES-GCM", length: 256 }, false, ["encrypt", "decrypt"]);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
export async function encryptEnvelope(envelope, opts) {
|
|
130
|
+
const iv = globalThis.crypto.getRandomValues(new Uint8Array(12));
|
|
131
|
+
const plaintext = enc.encode(JSON.stringify(envelope));
|
|
132
|
+
if (opts.password === undefined) {
|
|
133
|
+
const key = await subtle.generateKey({ name: "AES-GCM", length: 256 }, true, ["encrypt", "decrypt"]);
|
|
134
|
+
const ct = await subtle.encrypt({ name: "AES-GCM", iv }, key, plaintext);
|
|
135
|
+
const raw = await subtle.exportKey("raw", key);
|
|
136
|
+
return { ciphertext: b64u(ct), meta: { alg: "AES-GCM", kdf: "fragment", iv: b64u(iv) }, fragment: b64u(raw) };
|
|
137
|
+
}
|
|
138
|
+
const salt = globalThis.crypto.getRandomValues(new Uint8Array(16));
|
|
139
|
+
const key = await deriveKey(opts.password, salt);
|
|
140
|
+
const ct = await subtle.encrypt({ name: "AES-GCM", iv }, key, plaintext);
|
|
141
|
+
return { ciphertext: b64u(ct), meta: { alg: "AES-GCM", kdf: "password", iv: b64u(iv), salt: b64u(salt), iterations: PBKDF2_ITERATIONS } };
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
export async function decryptEnvelope(ciphertext, meta, secret) {
|
|
145
|
+
const key =
|
|
146
|
+
secret.fragment !== undefined
|
|
147
|
+
? await subtle.importKey("raw", unb64u(secret.fragment), { name: "AES-GCM" }, false, ["decrypt"])
|
|
148
|
+
: await deriveKey(secret.password, unb64u(meta.salt), meta.iterations ?? PBKDF2_ITERATIONS);
|
|
149
|
+
let pt;
|
|
150
|
+
try {
|
|
151
|
+
pt = await subtle.decrypt({ name: "AES-GCM", iv: unb64u(meta.iv) }, key, unb64u(ciphertext));
|
|
152
|
+
} catch {
|
|
153
|
+
throw new CliError("wrong key or corrupted data");
|
|
154
|
+
}
|
|
155
|
+
return JSON.parse(dec.decode(pt));
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
// ---------------------------------------------------------------------------
|
|
159
|
+
// Platform helpers: clipboard, browser, prompts
|
|
160
|
+
// ---------------------------------------------------------------------------
|
|
161
|
+
|
|
162
|
+
const isWsl = () => platform() === "linux" && /microsoft/i.test(safeRead("/proc/version"));
|
|
163
|
+
function safeRead(file) {
|
|
164
|
+
try {
|
|
165
|
+
return readFileSync(file, "utf8");
|
|
166
|
+
} catch {
|
|
167
|
+
return "";
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
function tryExec(cmds, encoding = "utf8") {
|
|
172
|
+
for (const [cmd, args] of cmds) {
|
|
173
|
+
try {
|
|
174
|
+
return execFileSync(cmd, args, { encoding, stdio: ["ignore", "pipe", "ignore"], maxBuffer: 64 * 1024 * 1024 });
|
|
175
|
+
} catch {
|
|
176
|
+
/* try the next one */
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
return null;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export function readClipboard() {
|
|
183
|
+
const os = platform();
|
|
184
|
+
const cmds =
|
|
185
|
+
os === "darwin"
|
|
186
|
+
? [["pbpaste", []]]
|
|
187
|
+
: os === "win32"
|
|
188
|
+
? [["powershell", ["-NoProfile", "-Command", "Get-Clipboard -Raw"]]]
|
|
189
|
+
: [
|
|
190
|
+
...(process.env.WAYLAND_DISPLAY ? [["wl-paste", ["--no-newline"]]] : []),
|
|
191
|
+
["xclip", ["-selection", "clipboard", "-o"]],
|
|
192
|
+
["xsel", ["--clipboard", "--output"]],
|
|
193
|
+
...(isWsl() ? [["powershell.exe", ["-NoProfile", "-Command", "Get-Clipboard -Raw"]]] : []),
|
|
194
|
+
];
|
|
195
|
+
const out = tryExec(cmds);
|
|
196
|
+
if (out === null) throw new CliError("could not read the clipboard (install wl-clipboard, xclip or xsel on Linux)");
|
|
197
|
+
return out;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
/** PNG bytes of an image on the clipboard (a screenshot, say), or null when the clipboard holds no image. */
|
|
201
|
+
export function readClipboardImage() {
|
|
202
|
+
const os = platform();
|
|
203
|
+
const ps = "$i = Get-Clipboard -Format Image; if ($i) { $m = New-Object IO.MemoryStream; $i.Save($m, [Drawing.Imaging.ImageFormat]::Png); [Convert]::ToBase64String($m.ToArray()) }";
|
|
204
|
+
if (os === "darwin") {
|
|
205
|
+
// osascript prints the PNG as «data PNGf89504E47...»
|
|
206
|
+
const hex = tryExec([["osascript", ["-e", "the clipboard as «class PNGf»"]]])?.match(/PNGf([0-9A-Fa-f]+)/)?.[1];
|
|
207
|
+
return hex ? Buffer.from(hex, "hex") : null;
|
|
208
|
+
}
|
|
209
|
+
if (os === "win32" || isWsl()) {
|
|
210
|
+
const b64 = tryExec([[os === "win32" ? "powershell" : "powershell.exe", ["-NoProfile", "-Command", ps]]])?.trim();
|
|
211
|
+
return b64 ? Buffer.from(b64, "base64") : null;
|
|
212
|
+
}
|
|
213
|
+
const buf = tryExec(
|
|
214
|
+
[...(process.env.WAYLAND_DISPLAY ? [["wl-paste", ["-t", "image/png"]]] : []), ["xclip", ["-selection", "clipboard", "-t", "image/png", "-o"]]],
|
|
215
|
+
"buffer",
|
|
216
|
+
);
|
|
217
|
+
return buf?.length ? buf : null;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
export function writeClipboard(text) {
|
|
221
|
+
const os = platform();
|
|
222
|
+
const cmds =
|
|
223
|
+
os === "darwin"
|
|
224
|
+
? [["pbcopy", []]]
|
|
225
|
+
: os === "win32"
|
|
226
|
+
? [["clip", []]]
|
|
227
|
+
: [
|
|
228
|
+
...(process.env.WAYLAND_DISPLAY ? [["wl-copy", []]] : []),
|
|
229
|
+
["xclip", ["-selection", "clipboard"]],
|
|
230
|
+
["xsel", ["--clipboard", "--input"]],
|
|
231
|
+
...(isWsl() ? [["clip.exe", []]] : []),
|
|
232
|
+
];
|
|
233
|
+
for (const [cmd, args] of cmds) {
|
|
234
|
+
const r = spawnSync(cmd, args, { input: text, stdio: ["pipe", "ignore", "ignore"] });
|
|
235
|
+
if (r.status === 0) return true;
|
|
236
|
+
}
|
|
237
|
+
return false;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
function openInBrowser(url) {
|
|
241
|
+
const os = platform();
|
|
242
|
+
const [cmd, args] = os === "darwin" ? ["open", [url]] : os === "win32" ? ["cmd", ["/c", "start", "", url]] : ["xdg-open", [url]];
|
|
243
|
+
const r = spawnSync(cmd, args, { stdio: "ignore" });
|
|
244
|
+
return r.status === 0;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
function promptHidden(question) {
|
|
248
|
+
return new Promise((resolve) => {
|
|
249
|
+
const rl = createInterface({ input: process.stdin, output: process.stderr, terminal: true });
|
|
250
|
+
const write = rl._writeToOutput;
|
|
251
|
+
rl._writeToOutput = function (s) {
|
|
252
|
+
if (s.includes(question)) write.call(rl, s);
|
|
253
|
+
else write.call(rl, "");
|
|
254
|
+
};
|
|
255
|
+
rl.question(question, (answer) => {
|
|
256
|
+
rl.close();
|
|
257
|
+
process.stderr.write("\n");
|
|
258
|
+
resolve(answer);
|
|
259
|
+
});
|
|
260
|
+
});
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
async function readStdin() {
|
|
264
|
+
if (!process.stdin.isTTY) {
|
|
265
|
+
const chunks = [];
|
|
266
|
+
for await (const chunk of process.stdin) chunks.push(chunk);
|
|
267
|
+
return Buffer.concat(chunks).toString("utf8");
|
|
268
|
+
}
|
|
269
|
+
// Interactive: readline handles Ctrl-D itself, so it ends the paste on Windows too (the console's
|
|
270
|
+
// Ctrl-Z convention never reaches a Node stream reliably there).
|
|
271
|
+
note("Type or paste, then press Ctrl-D on an empty line to finish:");
|
|
272
|
+
const rl = createInterface({ input: process.stdin, output: process.stdout, terminal: true, prompt: "" });
|
|
273
|
+
const lines = [];
|
|
274
|
+
rl.on("line", (l) => lines.push(l));
|
|
275
|
+
rl.on("SIGINT", () => process.exit(130));
|
|
276
|
+
await new Promise((resolve) => rl.on("close", resolve));
|
|
277
|
+
return lines.length ? lines.join("\n") + "\n" : "";
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
// ---------------------------------------------------------------------------
|
|
281
|
+
// Language from file name (mirrors the server's registry for the common cases)
|
|
282
|
+
// ---------------------------------------------------------------------------
|
|
283
|
+
|
|
284
|
+
const EXT = {
|
|
285
|
+
txt: "text", md: "markdown", markdown: "markdown", js: "javascript", mjs: "javascript", cjs: "javascript", ts: "typescript", mts: "typescript",
|
|
286
|
+
jsx: "jsx", tsx: "tsx", json: "json", jsonc: "jsonc", yml: "yaml", yaml: "yaml", toml: "toml", html: "html", htm: "html", css: "css", scss: "scss",
|
|
287
|
+
vue: "vue", svelte: "svelte", py: "python", go: "go", rs: "rust", java: "java", kt: "kotlin", swift: "swift", c: "c", h: "c", cpp: "cpp", cc: "cpp",
|
|
288
|
+
hpp: "cpp", cs: "csharp", php: "php", rb: "ruby", dart: "dart", scala: "scala", hs: "haskell", ex: "elixir", exs: "elixir", erl: "erlang",
|
|
289
|
+
clj: "clojure", lua: "lua", pl: "perl", r: "r", jl: "julia", zig: "zig", nim: "nim", ml: "ocaml", sh: "shellscript", bash: "shellscript",
|
|
290
|
+
zsh: "shellscript", ps1: "powershell", bat: "bat", fish: "fish", nix: "nix", sql: "sql", graphql: "graphql", gql: "graphql", prisma: "prisma",
|
|
291
|
+
proto: "proto", xml: "xml", svg: "xml", diff: "diff", patch: "diff", log: "log", csv: "csv", tex: "latex", tf: "terraform", hcl: "terraform",
|
|
292
|
+
ini: "ini", conf: "ini", cfg: "ini", env: "dotenv", mmd: "mermaid", sol: "solidity", http: "http",
|
|
293
|
+
png: "png", jpg: "jpeg", jpeg: "jpeg", gif: "gif", webp: "webp",
|
|
294
|
+
};
|
|
295
|
+
|
|
296
|
+
/** Image "languages": the content is the file as base64 and the server caps the decoded size. */
|
|
297
|
+
const IMAGE_LANGS = new Set(["png", "jpeg", "gif", "webp"]);
|
|
298
|
+
const MAX_IMAGE_BYTES = 700 * 1024;
|
|
299
|
+
|
|
300
|
+
function imageItem(buf, lang, title) {
|
|
301
|
+
if (buf.length > MAX_IMAGE_BYTES) throw new CliError(`${title} is ${Math.round(buf.length / 1024)} KB; images are limited to ${MAX_IMAGE_BYTES / 1024} KB`);
|
|
302
|
+
return { content: buf.toString("base64"), lang, title };
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
export function langFromFilename(name) {
|
|
306
|
+
const lower = name.toLowerCase();
|
|
307
|
+
if (lower === "dockerfile" || lower.startsWith("dockerfile.")) return "dockerfile";
|
|
308
|
+
if (lower === "makefile") return "makefile";
|
|
309
|
+
if (lower === ".env" || lower.startsWith(".env.")) return "dotenv";
|
|
310
|
+
const i = lower.lastIndexOf(".");
|
|
311
|
+
return i === -1 ? undefined : EXT[lower.slice(i + 1)];
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
export function parsePasteRef(ref) {
|
|
315
|
+
// Accepts an id, or a URL like https://host/AbCd1234.go#key or https://host/AbCd1234/raw
|
|
316
|
+
let id = ref;
|
|
317
|
+
let key;
|
|
318
|
+
let host;
|
|
319
|
+
try {
|
|
320
|
+
const u = new URL(ref);
|
|
321
|
+
host = u.origin;
|
|
322
|
+
const seg = u.pathname.split("/").filter(Boolean)[0] ?? "";
|
|
323
|
+
id = seg.split(".")[0];
|
|
324
|
+
if (u.hash && !/^#L\d/.test(u.hash)) key = u.hash.slice(1);
|
|
325
|
+
} catch {
|
|
326
|
+
/* plain id */
|
|
327
|
+
}
|
|
328
|
+
if (!/^[A-Za-z0-9]{4,32}$/.test(id)) throw new UsageError(`"${ref}" doesn't look like a paste id or URL`);
|
|
329
|
+
return { id, key, host };
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
// ---------------------------------------------------------------------------
|
|
333
|
+
// API
|
|
334
|
+
// ---------------------------------------------------------------------------
|
|
335
|
+
|
|
336
|
+
class UsageError extends Error {}
|
|
337
|
+
class CliError extends Error {}
|
|
338
|
+
|
|
339
|
+
async function api(host, path, init = {}) {
|
|
340
|
+
let res;
|
|
341
|
+
try {
|
|
342
|
+
res = await fetch(host + path, {
|
|
343
|
+
...init,
|
|
344
|
+
headers: { Accept: "application/json", "User-Agent": `${NAME}-cli/${VERSION}`, ...(init.body ? { "Content-Type": "application/json" } : {}), ...(init.headers ?? {}) },
|
|
345
|
+
});
|
|
346
|
+
} catch (e) {
|
|
347
|
+
throw new CliError(`could not reach ${host} (${e.cause?.code ?? e.message})`);
|
|
348
|
+
}
|
|
349
|
+
if (res.status === 204) return null;
|
|
350
|
+
const text = await res.text();
|
|
351
|
+
let data = null;
|
|
352
|
+
try {
|
|
353
|
+
data = JSON.parse(text);
|
|
354
|
+
} catch {
|
|
355
|
+
/* not json */
|
|
356
|
+
}
|
|
357
|
+
if (!res.ok) {
|
|
358
|
+
const msg = data?.error?.message ?? text.trim() ?? res.statusText;
|
|
359
|
+
throw new CliError(`${res.status} ${msg}`);
|
|
360
|
+
}
|
|
361
|
+
return data;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
async function createPaste(host, { content, title, lang, expires, burn, encrypt, password }) {
|
|
365
|
+
let body;
|
|
366
|
+
let fragment;
|
|
367
|
+
if (encrypt || password !== undefined) {
|
|
368
|
+
const r = await encryptEnvelope({ title, lang: lang ?? "text", content }, { password });
|
|
369
|
+
fragment = r.fragment;
|
|
370
|
+
body = { content: r.ciphertext, enc: r.meta, expires, burn };
|
|
371
|
+
} else {
|
|
372
|
+
body = { content, title, lang, expires, burn };
|
|
373
|
+
}
|
|
374
|
+
const p = await api(host, "/api/v1/pastes", { method: "POST", body: JSON.stringify(body) });
|
|
375
|
+
const url = fragment ? `${p.url}#${fragment}` : p.url;
|
|
376
|
+
remember({ id: p.id, url, editToken: p.editToken, key: fragment, title, lang: p.lang, created: p.created, expires: p.expires, burn: p.burn, encrypted: !!p.enc });
|
|
377
|
+
return { ...p, url };
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
// ---------------------------------------------------------------------------
|
|
381
|
+
// CLI
|
|
382
|
+
// ---------------------------------------------------------------------------
|
|
383
|
+
|
|
384
|
+
const HELP = `${NAME} ${VERSION} · paste from the terminal
|
|
385
|
+
|
|
386
|
+
Usage
|
|
387
|
+
${NAME} [options] [file ...] paste files (text, or png/jpeg/gif/webp up to 700 KB), or stdin
|
|
388
|
+
${NAME} clip [options] paste the clipboard (text or an image)
|
|
389
|
+
${NAME} text [options] <words ...> paste literal text
|
|
390
|
+
${NAME} get <id|url> [--json] print a paste (decrypts when the URL carries a #key)
|
|
391
|
+
${NAME} ls [--json] browse pastes made here: arrows or click, enter reveals the edit token
|
|
392
|
+
${NAME} rm <id|url> delete a paste created from this machine
|
|
393
|
+
${NAME} token <id|url> print the edit token (paste it into the site's Edit/Delete prompt)
|
|
394
|
+
${NAME} config [host <url>] show or set the default host
|
|
395
|
+
|
|
396
|
+
Options
|
|
397
|
+
-t, --title <text> title (defaults to the file name)
|
|
398
|
+
-l, --lang <id> language id or alias (default: from the file name, else plain text)
|
|
399
|
+
-e, --expires <when> 10m | 1h | 1d | 7d | 30d | never (default: 7d)
|
|
400
|
+
-b, --burn destroy after the first read
|
|
401
|
+
-E, --encrypt encrypt here; the key goes in the URL after #
|
|
402
|
+
-p, --password <pw> encrypt with a password instead ("-P" prompts for it)
|
|
403
|
+
-P, --ask-password prompt for a password
|
|
404
|
+
-c, --copy copy the URL to the clipboard
|
|
405
|
+
-o, --open open the URL in a browser
|
|
406
|
+
-r, --raw print the raw URL (plain text) instead of the page URL
|
|
407
|
+
-j, --json print the full API response
|
|
408
|
+
-H, --host <url> server to use (default ${DEFAULT_HOST}; env PASTR_HOST, or \`${NAME} config host …\`)
|
|
409
|
+
-h, --help show this help
|
|
410
|
+
-v, --version show the version
|
|
411
|
+
|
|
412
|
+
Examples
|
|
413
|
+
ls -la | ${NAME}
|
|
414
|
+
${NAME} main.go --expires 1d
|
|
415
|
+
${NAME} clip -E -c # encrypted clipboard paste, URL copied back
|
|
416
|
+
${NAME} text "hello there" -b # burn after read
|
|
417
|
+
${NAME} get https://host/AbCd1234#key > file.txt
|
|
418
|
+
${NAME} shot.png -e 1d # image paste; "get" writes the bytes back
|
|
419
|
+
`;
|
|
420
|
+
|
|
421
|
+
/** Bold section headings, cyan command/flag column, dim trailing comments. */
|
|
422
|
+
const styleHelp = (s) =>
|
|
423
|
+
s
|
|
424
|
+
.split("\n")
|
|
425
|
+
.map((l) => (/^\S/.test(l) ? bold(l) : l.replace(/^(\s+)(\S.*?)(\s{2,}|$)/, (_, a, b, c) => a + cyan(b) + c).replace(/#.*$/, dim)))
|
|
426
|
+
.join("\n");
|
|
427
|
+
|
|
428
|
+
function fmtRel(ms) {
|
|
429
|
+
const d = ms - Date.now();
|
|
430
|
+
const abs = Math.abs(d);
|
|
431
|
+
const u = abs < 60e3 ? [1e3, "s"] : abs < 3600e3 ? [60e3, "m"] : abs < 86400e3 ? [3600e3, "h"] : [86400e3, "d"];
|
|
432
|
+
const n = Math.round(abs / u[0]);
|
|
433
|
+
return d >= 0 ? `in ${n}${u[1]}` : `${n}${u[1]} ago`;
|
|
434
|
+
}
|
|
435
|
+
|
|
426
436
|
const flags = (p) => [p.encrypted && "enc", p.burn && "burn"].filter(Boolean).join(" ");
|
|
427
437
|
|
|
428
438
|
/** Keys stay out of the table (`get <id>` finds them in history); the piped form has the full URL. */
|
|
@@ -521,43 +531,43 @@ function browse(list) {
|
|
|
521
531
|
});
|
|
522
532
|
}
|
|
523
533
|
|
|
524
|
-
export async function main(argv) {
|
|
525
|
-
const { values: o, positionals } = parseArgs({
|
|
526
|
-
args: argv,
|
|
527
|
-
allowPositionals: true,
|
|
528
|
-
options: {
|
|
529
|
-
title: { type: "string", short: "t" },
|
|
530
|
-
lang: { type: "string", short: "l" },
|
|
531
|
-
expires: { type: "string", short: "e" },
|
|
532
|
-
burn: { type: "boolean", short: "b", default: false },
|
|
533
|
-
encrypt: { type: "boolean", short: "E", default: false },
|
|
534
|
-
password: { type: "string", short: "p" },
|
|
535
|
-
"ask-password": { type: "boolean", short: "P", default: false },
|
|
536
|
-
copy: { type: "boolean", short: "c", default: false },
|
|
537
|
-
open: { type: "boolean", short: "o", default: false },
|
|
538
|
-
raw: { type: "boolean", short: "r", default: false },
|
|
539
|
-
json: { type: "boolean", short: "j", default: false },
|
|
540
|
-
host: { type: "string", short: "H" },
|
|
541
|
-
help: { type: "boolean", short: "h", default: false },
|
|
542
|
-
version: { type: "boolean", short: "v", default: false },
|
|
543
|
-
},
|
|
544
|
-
});
|
|
545
|
-
|
|
546
|
-
if (o.help) return out(styleHelp(HELP));
|
|
547
|
-
if (o.version) return out(`${NAME} ${VERSION}\n`);
|
|
548
|
-
|
|
549
|
-
const [cmd, ...rest] = positionals;
|
|
550
|
-
|
|
551
|
-
if (cmd === "config") {
|
|
552
|
-
if (rest[0] === "host" && rest[1]) {
|
|
553
|
-
setConfig({ host: rest[1].replace(/\/+$/, "") });
|
|
554
|
-
return ok(`host set to ${rest[1]}`);
|
|
555
|
-
}
|
|
556
|
-
const cfg = getConfig();
|
|
557
|
-
const source = process.env.PASTR_HOST ? "env PASTR_HOST" : cfg.host ? "config" : "default";
|
|
558
|
-
return out(`${dim("host ")} ${link(process.env.PASTR_HOST || cfg.host || DEFAULT_HOST)} ${dim(`(${source})`)}\n${dim("config ")} ${configDir()}\n`);
|
|
559
|
-
}
|
|
560
|
-
|
|
534
|
+
export async function main(argv) {
|
|
535
|
+
const { values: o, positionals } = parseArgs({
|
|
536
|
+
args: argv,
|
|
537
|
+
allowPositionals: true,
|
|
538
|
+
options: {
|
|
539
|
+
title: { type: "string", short: "t" },
|
|
540
|
+
lang: { type: "string", short: "l" },
|
|
541
|
+
expires: { type: "string", short: "e" },
|
|
542
|
+
burn: { type: "boolean", short: "b", default: false },
|
|
543
|
+
encrypt: { type: "boolean", short: "E", default: false },
|
|
544
|
+
password: { type: "string", short: "p" },
|
|
545
|
+
"ask-password": { type: "boolean", short: "P", default: false },
|
|
546
|
+
copy: { type: "boolean", short: "c", default: false },
|
|
547
|
+
open: { type: "boolean", short: "o", default: false },
|
|
548
|
+
raw: { type: "boolean", short: "r", default: false },
|
|
549
|
+
json: { type: "boolean", short: "j", default: false },
|
|
550
|
+
host: { type: "string", short: "H" },
|
|
551
|
+
help: { type: "boolean", short: "h", default: false },
|
|
552
|
+
version: { type: "boolean", short: "v", default: false },
|
|
553
|
+
},
|
|
554
|
+
});
|
|
555
|
+
|
|
556
|
+
if (o.help) return out(styleHelp(HELP));
|
|
557
|
+
if (o.version) return out(`${NAME} ${VERSION}\n`);
|
|
558
|
+
|
|
559
|
+
const [cmd, ...rest] = positionals;
|
|
560
|
+
|
|
561
|
+
if (cmd === "config") {
|
|
562
|
+
if (rest[0] === "host" && rest[1]) {
|
|
563
|
+
setConfig({ host: rest[1].replace(/\/+$/, "") });
|
|
564
|
+
return ok(`host set to ${rest[1]}`);
|
|
565
|
+
}
|
|
566
|
+
const cfg = getConfig();
|
|
567
|
+
const source = process.env.PASTR_HOST ? "env PASTR_HOST" : cfg.host ? "config" : "default";
|
|
568
|
+
return out(`${dim("host ")} ${link(process.env.PASTR_HOST || cfg.host || DEFAULT_HOST)} ${dim(`(${source})`)}\n${dim("config ")} ${configDir()}\n`);
|
|
569
|
+
}
|
|
570
|
+
|
|
561
571
|
if (cmd === "ls") {
|
|
562
572
|
const list = getHistory();
|
|
563
573
|
if (o.json) return out(JSON.stringify(list, null, 2) + "\n");
|
|
@@ -572,112 +582,111 @@ export async function main(argv) {
|
|
|
572
582
|
return out(dim(` ${list.length} ${list.length === 1 ? "paste" : "pastes"} · ${NAME} get <id> · ${NAME} rm <id>\n`));
|
|
573
583
|
}
|
|
574
584
|
|
|
575
|
-
if (cmd === "get") {
|
|
576
|
-
if (!rest[0]) throw new UsageError("usage: get <id|url>");
|
|
577
|
-
const ref = parsePasteRef(rest[0]);
|
|
578
|
-
const host = ref.host ?? resolveHost(o.host);
|
|
579
|
-
const p = await api(host, `/api/v1/pastes/${ref.id}`);
|
|
580
|
-
if (o.json) return out(JSON.stringify(p, null, 2) + "\n");
|
|
581
|
-
if (!p.enc) return emit(p.content, p.lang);
|
|
582
|
-
let secret;
|
|
583
|
-
if (p.enc.kdf === "fragment") {
|
|
584
|
-
const key = ref.key ?? getHistory().find((h) => h.id === ref.id)?.key;
|
|
585
|
-
if (!key) throw new CliError("this paste is encrypted; pass the full URL including the #key");
|
|
586
|
-
secret = { fragment: key };
|
|
587
|
-
} else {
|
|
588
|
-
secret = { password: o.password ?? (await promptHidden("Password: ")) };
|
|
589
|
-
}
|
|
590
|
-
const env = await decryptEnvelope(p.content, p.enc, secret);
|
|
591
|
-
return emit(env.content, env.lang);
|
|
592
|
-
}
|
|
593
|
-
|
|
594
|
-
if (cmd === "token") {
|
|
595
|
-
if (!rest[0]) throw new UsageError("usage: token <id|url>");
|
|
596
|
-
const { id } = parsePasteRef(rest[0]);
|
|
597
|
-
const entry = getHistory().find((h) => h.id === id);
|
|
598
|
-
if (!entry?.editToken) throw new CliError(`no edit token for ${id} on this machine`);
|
|
599
|
-
if (OUT_TTY) note("Anyone with this token can edit or delete the paste.");
|
|
600
|
-
return out(entry.editToken + "\n");
|
|
601
|
-
}
|
|
602
|
-
|
|
603
|
-
if (cmd === "rm") {
|
|
604
|
-
if (!rest[0]) throw new UsageError("usage: rm <id|url>");
|
|
605
|
-
const ref = parsePasteRef(rest[0]);
|
|
606
|
-
const host = ref.host ?? resolveHost(o.host);
|
|
607
|
-
const entry = getHistory().find((h) => h.id === ref.id);
|
|
608
|
-
const token = entry?.editToken ?? process.env.PASTR_EDIT_TOKEN;
|
|
609
|
-
if (!token) throw new CliError(`no edit token for ${ref.id} on this machine (set PASTR_EDIT_TOKEN to use one)`);
|
|
610
|
-
await api(host, `/api/v1/pastes/${ref.id}`, { method: "DELETE", headers: { Authorization: `Bearer ${token}` } });
|
|
611
|
-
forget(ref.id);
|
|
612
|
-
return ok(`deleted ${ref.id}`);
|
|
613
|
-
}
|
|
614
|
-
|
|
615
|
-
// ---- create ----
|
|
616
|
-
const host = resolveHost(o.host);
|
|
617
|
-
const password = o["ask-password"] ? await promptHidden("Password: ") : o.password;
|
|
618
|
-
const items = [];
|
|
619
|
-
if (cmd === "clip") {
|
|
620
|
-
const img = readClipboardImage();
|
|
621
|
-
items.push(img ? imageItem(img, "png", o.title ?? "clipboard.png") : { content: readClipboard(), title: o.title });
|
|
622
|
-
} else if (cmd === "text") {
|
|
623
|
-
if (!rest.length) throw new UsageError("usage: text <words ...>");
|
|
624
|
-
items.push({ content: rest.join(" "), title: o.title });
|
|
625
|
-
} else {
|
|
626
|
-
const files = cmd ? [cmd, ...rest] : [];
|
|
627
|
-
if (!files.length) items.push({ content: await readStdin(), title: o.title });
|
|
628
|
-
for (const f of files) {
|
|
629
|
-
if (!existsSync(f)) throw new UsageError(`no such file: ${f}`);
|
|
630
|
-
const buf = readFileSync(f);
|
|
631
|
-
const lang = o.lang ?? langFromFilename(basename(f));
|
|
632
|
-
if (IMAGE_LANGS.has(lang)) {
|
|
633
|
-
items.push(imageItem(buf, lang, o.title ?? basename(f)));
|
|
634
|
-
continue;
|
|
635
|
-
}
|
|
636
|
-
if (buf.includes(0)) throw new CliError(`${f} looks binary; only text and png/jpeg/gif/webp images can be pasted`);
|
|
637
|
-
items.push({ content: buf.toString("utf8"), title: o.title ?? basename(f), lang });
|
|
638
|
-
}
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
for (const item of items) {
|
|
642
|
-
if (!item.content.trim()) throw new CliError("nothing to paste");
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
expires: o.expires,
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
const
|
|
678
|
-
const
|
|
679
|
-
|
|
680
|
-
process.
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
}
|
|
585
|
+
if (cmd === "get") {
|
|
586
|
+
if (!rest[0]) throw new UsageError("usage: get <id|url>");
|
|
587
|
+
const ref = parsePasteRef(rest[0]);
|
|
588
|
+
const host = ref.host ?? resolveHost(o.host);
|
|
589
|
+
const p = await api(host, `/api/v1/pastes/${ref.id}`);
|
|
590
|
+
if (o.json) return out(JSON.stringify(p, null, 2) + "\n");
|
|
591
|
+
if (!p.enc) return emit(p.content, p.lang);
|
|
592
|
+
let secret;
|
|
593
|
+
if (p.enc.kdf === "fragment") {
|
|
594
|
+
const key = ref.key ?? getHistory().find((h) => h.id === ref.id)?.key;
|
|
595
|
+
if (!key) throw new CliError("this paste is encrypted; pass the full URL including the #key");
|
|
596
|
+
secret = { fragment: key };
|
|
597
|
+
} else {
|
|
598
|
+
secret = { password: o.password ?? (await promptHidden("Password: ")) };
|
|
599
|
+
}
|
|
600
|
+
const env = await decryptEnvelope(p.content, p.enc, secret);
|
|
601
|
+
return emit(env.content, env.lang);
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
if (cmd === "token") {
|
|
605
|
+
if (!rest[0]) throw new UsageError("usage: token <id|url>");
|
|
606
|
+
const { id } = parsePasteRef(rest[0]);
|
|
607
|
+
const entry = getHistory().find((h) => h.id === id);
|
|
608
|
+
if (!entry?.editToken) throw new CliError(`no edit token for ${id} on this machine`);
|
|
609
|
+
if (OUT_TTY) note("Anyone with this token can edit or delete the paste.");
|
|
610
|
+
return out(entry.editToken + "\n");
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
if (cmd === "rm") {
|
|
614
|
+
if (!rest[0]) throw new UsageError("usage: rm <id|url>");
|
|
615
|
+
const ref = parsePasteRef(rest[0]);
|
|
616
|
+
const host = ref.host ?? resolveHost(o.host);
|
|
617
|
+
const entry = getHistory().find((h) => h.id === ref.id);
|
|
618
|
+
const token = entry?.editToken ?? process.env.PASTR_EDIT_TOKEN;
|
|
619
|
+
if (!token) throw new CliError(`no edit token for ${ref.id} on this machine (set PASTR_EDIT_TOKEN to use one)`);
|
|
620
|
+
await api(host, `/api/v1/pastes/${ref.id}`, { method: "DELETE", headers: { Authorization: `Bearer ${token}` } });
|
|
621
|
+
forget(ref.id);
|
|
622
|
+
return ok(`deleted ${ref.id}`);
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
// ---- create ----
|
|
626
|
+
const host = resolveHost(o.host);
|
|
627
|
+
const password = o["ask-password"] ? await promptHidden("Password: ") : o.password;
|
|
628
|
+
const items = [];
|
|
629
|
+
if (cmd === "clip") {
|
|
630
|
+
const img = readClipboardImage();
|
|
631
|
+
items.push(img ? imageItem(img, "png", o.title ?? "clipboard.png") : { content: readClipboard(), title: o.title });
|
|
632
|
+
} else if (cmd === "text") {
|
|
633
|
+
if (!rest.length) throw new UsageError("usage: text <words ...>");
|
|
634
|
+
items.push({ content: rest.join(" "), title: o.title });
|
|
635
|
+
} else {
|
|
636
|
+
const files = cmd ? [cmd, ...rest] : [];
|
|
637
|
+
if (!files.length) items.push({ content: await readStdin(), title: o.title });
|
|
638
|
+
for (const f of files) {
|
|
639
|
+
if (!existsSync(f)) throw new UsageError(`no such file: ${f}`);
|
|
640
|
+
const buf = readFileSync(f);
|
|
641
|
+
const lang = o.lang ?? langFromFilename(basename(f));
|
|
642
|
+
if (IMAGE_LANGS.has(lang)) {
|
|
643
|
+
items.push(imageItem(buf, lang, o.title ?? basename(f)));
|
|
644
|
+
continue;
|
|
645
|
+
}
|
|
646
|
+
if (buf.includes(0)) throw new CliError(`${f} looks binary; only text and png/jpeg/gif/webp images can be pasted`);
|
|
647
|
+
items.push({ content: buf.toString("utf8"), title: o.title ?? basename(f), lang });
|
|
648
|
+
}
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
for (const item of items) {
|
|
652
|
+
if (!item.content.trim()) throw new CliError("nothing to paste");
|
|
653
|
+
// Progress on stderr while the upload (and PBKDF2 for -p) runs, cleared before the result.
|
|
654
|
+
if (ERR_TTY) process.stderr.write(styleText("dim", " uploading…"));
|
|
655
|
+
let p;
|
|
656
|
+
try {
|
|
657
|
+
p = await createPaste(host, { content: item.content, title: item.title, lang: item.lang ?? o.lang, expires: o.expires, burn: o.burn, encrypt: o.encrypt, password });
|
|
658
|
+
} finally {
|
|
659
|
+
if (ERR_TTY) process.stderr.write("\r\x1b[2K");
|
|
660
|
+
}
|
|
661
|
+
const url = o.raw ? p.rawUrl : p.url;
|
|
662
|
+
if (o.json) out(JSON.stringify(p, null, 2) + "\n");
|
|
663
|
+
else out(link(url) + "\n");
|
|
664
|
+
const copied = o.copy ? (writeClipboard(url) ? "copied to clipboard" : "could not copy to clipboard") : "";
|
|
665
|
+
// The URL alone goes to stdout; everything else is a dim stderr line so pipes stay clean.
|
|
666
|
+
if (!o.json && (ERR_TTY || copied)) {
|
|
667
|
+
const meta = ERR_TTY ? [item.title, p.expires ? `expires ${fmtRel(p.expires)}` : "never expires", p.burn && "burn after read", p.enc && "encrypted", copied, `${NAME} token ${p.id} to edit on the site`] : [copied];
|
|
668
|
+
note(meta.filter(Boolean).join(" · "));
|
|
669
|
+
}
|
|
670
|
+
if (o.open) openInBrowser(url);
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
function out(s) {
|
|
675
|
+
process.stdout.write(s);
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
/** Text goes out as is; image pastes are decoded so `get shot > shot.png` works. */
|
|
679
|
+
function emit(content, lang) {
|
|
680
|
+
process.stdout.write(IMAGE_LANGS.has(lang) ? Buffer.from(content, "base64") : content);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
const isMain = process.argv[1] && import.meta.url === new URL(`file://${process.argv[1]}`).href;
|
|
684
|
+
if (isMain || (process.argv[1] && fileURLToPath(import.meta.url) === process.argv[1])) {
|
|
685
|
+
main(process.argv.slice(2)).catch((err) => {
|
|
686
|
+
const usage = err instanceof UsageError || err?.code === "ERR_PARSE_ARGS_UNKNOWN_OPTION" || err?.code?.startsWith?.("ERR_PARSE_ARGS");
|
|
687
|
+
const prefix = ERR_TTY ? styleText("red", "✗") : `${NAME}:`;
|
|
688
|
+
const hint = usage ? `Run \`${NAME} --help\` for usage.\n` : "";
|
|
689
|
+
process.stderr.write(`${prefix} ${err.message}\n${ERR_TTY ? styleText("dim", hint) : hint}`);
|
|
690
|
+
process.exit(usage ? 2 : 1);
|
|
691
|
+
});
|
|
692
|
+
}
|