mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 20:59:59 +00:00
feat: add pinterest support
This commit is contained in:
parent
fa4e418e36
commit
40291c4d24
7 changed files with 85 additions and 1 deletions
|
@ -17,6 +17,7 @@ import vimeo from "./services/vimeo.js";
|
||||||
import soundcloud from "./services/soundcloud.js";
|
import soundcloud from "./services/soundcloud.js";
|
||||||
import instagram from "./services/instagram.js";
|
import instagram from "./services/instagram.js";
|
||||||
import vine from "./services/vine.js";
|
import vine from "./services/vine.js";
|
||||||
|
import pinterest from "./services/pinterest.js";
|
||||||
|
|
||||||
export default async function (host, patternMatch, url, lang, obj) {
|
export default async function (host, patternMatch, url, lang, obj) {
|
||||||
try {
|
try {
|
||||||
|
@ -110,6 +111,9 @@ export default async function (host, patternMatch, url, lang, obj) {
|
||||||
case "vine":
|
case "vine":
|
||||||
r = await vine({ id: patternMatch["id"] });
|
r = await vine({ id: patternMatch["id"] });
|
||||||
break;
|
break;
|
||||||
|
case "pinterest":
|
||||||
|
r = await pinterest({ id: patternMatch["id"] });
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
return apiJSON(0, { t: errorUnsupported(lang) });
|
return apiJSON(0, { t: errorUnsupported(lang) });
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,6 +56,7 @@ export default function(r, host, ip, audioFormat, isAudioOnly, lang, isAudioMute
|
||||||
case "instagram":
|
case "instagram":
|
||||||
case "tumblr":
|
case "tumblr":
|
||||||
case "twitter":
|
case "twitter":
|
||||||
|
case "pinterest":
|
||||||
responseType = 1;
|
responseType = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
24
src/modules/processing/services/pinterest.js
Normal file
24
src/modules/processing/services/pinterest.js
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
import { maxVideoDuration } from "../../config.js";
|
||||||
|
|
||||||
|
export default async function(obj) {
|
||||||
|
const pinId = obj.id.split('--').reverse()[0];
|
||||||
|
if (!/^\d+$/.test(pinId)) return { error: 'ErrorCantGetID' };
|
||||||
|
let data = await fetch(`https://www.pinterest.com/resource/PinResource/get?data=${encodeURIComponent(JSON.stringify({
|
||||||
|
options: {
|
||||||
|
field_set_key: "unauth_react_main_pin",
|
||||||
|
id: pinId
|
||||||
|
}
|
||||||
|
}))}`).then((r) => { return r.json() }).catch(() => { return false });
|
||||||
|
if (!data) return { error: 'ErrorCouldntFetch' };
|
||||||
|
|
||||||
|
data = data["resource_response"]["data"];
|
||||||
|
|
||||||
|
let video = null;
|
||||||
|
|
||||||
|
if (data.videos !== null) video = data.videos.video_list.V_720P;
|
||||||
|
else if (data.story_pin_data !== null) video = data.story_pin_data.pages[0].blocks[0].video.video_list.V_EXP7;
|
||||||
|
|
||||||
|
if (!video) return { error: 'ErrorEmptyDownload' };
|
||||||
|
if (video.duration > maxVideoDuration) return { error: ['ErrorLengthLimit', maxVideoDuration / 60000] };
|
||||||
|
return { urls: video.url, filename: `pinterest_${pinId}.mp4`, audioFilename: `pinterest_${pinId}_audio` }
|
||||||
|
}
|
|
@ -62,6 +62,11 @@
|
||||||
"tld": "co",
|
"tld": "co",
|
||||||
"patterns": ["v/:id"],
|
"patterns": ["v/:id"],
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
},
|
||||||
|
"pinterest": {
|
||||||
|
"alias": "pinterest videos & stories",
|
||||||
|
"patterns": ["pin/:id"],
|
||||||
|
"enabled": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,5 +28,7 @@ export const testers = {
|
||||||
|
|
||||||
"instagram": (patternMatch) => (patternMatch["id"] && patternMatch["id"].length <= 12),
|
"instagram": (patternMatch) => (patternMatch["id"] && patternMatch["id"].length <= 12),
|
||||||
|
|
||||||
"vine": (patternMatch) => (patternMatch["id"] && patternMatch["id"].length <= 12)
|
"vine": (patternMatch) => (patternMatch["id"] && patternMatch["id"].length <= 12),
|
||||||
|
|
||||||
|
"pinterest": (patternMatch) => (patternMatch["id"] && patternMatch["id"].length <= 128)
|
||||||
}
|
}
|
||||||
|
|
|
@ -72,6 +72,9 @@ export function cleanURL(url, host) {
|
||||||
break;
|
break;
|
||||||
case "tiktok":
|
case "tiktok":
|
||||||
url = url.replace(/@([a-zA-Z]+(\.[a-zA-Z]+)+)/, "@a")
|
url = url.replace(/@([a-zA-Z]+(\.[a-zA-Z]+)+)/, "@a")
|
||||||
|
case "pinterest":
|
||||||
|
// Redirect all TLDs back to .com
|
||||||
|
url = url.replace(/:\/\/(?:www.)pinterest(?:\.[a-z.]+)/, "://pinterest.com")
|
||||||
default:
|
default:
|
||||||
url = url.split('?')[0];
|
url = url.split('?')[0];
|
||||||
if (url.substring(url.length - 1) === "/") url = url.substring(0, url.length - 1);
|
if (url.substring(url.length - 1) === "/") url = url.substring(0, url.length - 1);
|
||||||
|
|
|
@ -893,5 +893,50 @@
|
||||||
"code": 200,
|
"code": 200,
|
||||||
"status": "stream"
|
"status": "stream"
|
||||||
}
|
}
|
||||||
|
}],
|
||||||
|
"pinterest": [{
|
||||||
|
"name": "regular video",
|
||||||
|
"url": "https://www.pinterest.com/pin/70437485604616/",
|
||||||
|
"params": {},
|
||||||
|
"expected": {
|
||||||
|
"code": 200,
|
||||||
|
"status": "redirect"
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
"name": "regular video (isAudioOnly)",
|
||||||
|
"url": "https://www.pinterest.com/pin/70437485604616/",
|
||||||
|
"params": {
|
||||||
|
"isAudioOnly": true
|
||||||
|
},
|
||||||
|
"expected": {
|
||||||
|
"code": 200,
|
||||||
|
"status": "stream"
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
"name": "regular video (isAudioMuted)",
|
||||||
|
"url": "https://www.pinterest.com/pin/70437485604616/",
|
||||||
|
"params": {
|
||||||
|
"isAudioMuted": true
|
||||||
|
},
|
||||||
|
"expected": {
|
||||||
|
"code": 200,
|
||||||
|
"status": "stream"
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
"name": "regular video (.ca TLD)",
|
||||||
|
"url": "https://www.pinterest.ca/pin/70437485604616/",
|
||||||
|
"params": {},
|
||||||
|
"expected": {
|
||||||
|
"code": 200,
|
||||||
|
"status": "redirect"
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
"name": "story",
|
||||||
|
"url": "https://www.pinterest.com/pin/gadget-cool-products-amazon-product-technology-kitchen-gadgets--1084663891475263837/",
|
||||||
|
"params": {},
|
||||||
|
"expected": {
|
||||||
|
"code": 200,
|
||||||
|
"status": "redirect"
|
||||||
|
}
|
||||||
}]
|
}]
|
||||||
}
|
}
|
Loading…
Reference in a new issue