Create snapsave/snapsave.js
Browse files- lib/snapsave/snapsave.js +75 -0
lib/snapsave/snapsave.js
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import got from "got";
|
2 |
+
import * as cheerio from "cheerio";
|
3 |
+
import FormData from "form-data";
|
4 |
+
import { SnapSaveArgsSchema, SnapSaveSchema } from "../types/snapsave-v1.js";
|
5 |
+
import { DEFAULT_HEADERS } from "./constant.js";
|
6 |
+
import { decryptSnapSave } from "./util.js";
|
7 |
+
|
8 |
+
export async function snapsave(url) {
|
9 |
+
SnapSaveArgsSchema.parse(arguments);
|
10 |
+
|
11 |
+
const form = new FormData();
|
12 |
+
form.append("url", url);
|
13 |
+
|
14 |
+
// Fetch video data
|
15 |
+
const code = await got
|
16 |
+
.post("https://snapsave.app/action.php?lang=en", {
|
17 |
+
headers: {
|
18 |
+
...DEFAULT_HEADERS,
|
19 |
+
...form.getHeaders(),
|
20 |
+
origin: "https://snapsave.app",
|
21 |
+
referer: "https://snapsave.app/en",
|
22 |
+
},
|
23 |
+
body: form.getBuffer(),
|
24 |
+
})
|
25 |
+
.text();
|
26 |
+
|
27 |
+
const decode = decryptSnapSave(code);
|
28 |
+
const $ = cheerio.load(decode);
|
29 |
+
const results = [];
|
30 |
+
|
31 |
+
const title = $(".content > p > strong").text() || null;
|
32 |
+
const description = $("span.video-des").text() || null;
|
33 |
+
|
34 |
+
if ($("div.download-items").length) {
|
35 |
+
// Download items available
|
36 |
+
$("div.download-items").each((_, el) => {
|
37 |
+
const $el = $(el);
|
38 |
+
const url = $el.find(".download-items__btn > a").attr("href") || null;
|
39 |
+
const thumbUrl = new URL($el.find(".download-items__thumb > img").attr("src") || "");
|
40 |
+
const thumb = thumbUrl.searchParams.get("photo") || thumbUrl.toString();
|
41 |
+
|
42 |
+
if (url) {
|
43 |
+
results.push({ thumbnail: thumb, url });
|
44 |
+
}
|
45 |
+
});
|
46 |
+
} else if ($("table.table").length) {
|
47 |
+
const thumbnail = $("figure > .image > img").attr("src") || null;
|
48 |
+
$("tbody > tr").each((_, el) => {
|
49 |
+
const $el = $(el);
|
50 |
+
const $td = $el.find("td");
|
51 |
+
const resolution = $td.eq(0).text();
|
52 |
+
let _url = $td.eq(2).find("a").attr("href") || $td.eq(2).find("button").attr("onclick");
|
53 |
+
const shouldRender = /get_progressApi/gi.test(_url || "");
|
54 |
+
|
55 |
+
if (shouldRender) {
|
56 |
+
_url = /get_progressApi\('(.*?)'\)/.exec(_url || "")?.[1] || _url;
|
57 |
+
}
|
58 |
+
|
59 |
+
if (_url) {
|
60 |
+
results.push({ resolution, thumbnail, url: _url, shouldRender });
|
61 |
+
}
|
62 |
+
});
|
63 |
+
} else {
|
64 |
+
const thumbnail = $("figure > .image > img").attr("src") || null;
|
65 |
+
const url = $("div.column > a").attr("href") || null;
|
66 |
+
|
67 |
+
if (url) {
|
68 |
+
results.push({ thumbnail, url });
|
69 |
+
}
|
70 |
+
}
|
71 |
+
|
72 |
+
const result = { title, description, results };
|
73 |
+
|
74 |
+
return SnapSaveSchema.parse(result);
|
75 |
+
}
|