Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Video-Downloader/api/src/processing/services/pinterest.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
47 lines (35 sloc)
1.49 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { genericUserAgent } from "../../config.js"; | |
import { resolveRedirectingURL } from "../url.js"; | |
const videoRegex = /"url":"(https:\/\/v1\.pinimg\.com\/videos\/.*?)"/g; | |
const imageRegex = /src="(https:\/\/i\.pinimg\.com\/.*\.(jpg|gif))"/g; | |
export default async function(o) { | |
let id = o.id; | |
if (!o.id && o.shortLink) { | |
const patternMatch = await resolveRedirectingURL(`https://api.pinterest.com/url_shortener/${o.shortLink}/redirect/`); | |
id = patternMatch?.id; | |
} | |
if (id.includes("--")) id = id.split("--")[1]; | |
if (!id) return { error: "fetch.fail" }; | |
const html = await fetch(`https://www.pinterest.com/pin/${id}/`, { | |
headers: { "user-agent": genericUserAgent } | |
}).then(r => r.text()).catch(() => {}); | |
if (!html) return { error: "fetch.fail" }; | |
const videoLink = [...html.matchAll(videoRegex)] | |
.map(([, link]) => link) | |
.find(a => a.endsWith('.mp4')); | |
if (videoLink) return { | |
urls: videoLink, | |
filename: `pinterest_${id}.mp4`, | |
audioFilename: `pinterest_${id}_audio` | |
} | |
const imageLink = [...html.matchAll(imageRegex)] | |
.map(([, link]) => link) | |
.find(a => a.endsWith('.jpg') || a.endsWith('.gif')); | |
const imageType = imageLink.endsWith(".gif") ? "gif" : "jpg" | |
if (imageLink) return { | |
urls: imageLink, | |
isPhoto: true, | |
filename: `pinterest_${id}.${imageType}` | |
} | |
return { error: "fetch.empty" }; | |
} |