Compare commits
2 Commits
c2c329e00a
...
20f82c4006
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
20f82c4006 | ||
|
|
128f9950ec |
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.227.11",
|
||||
"version": "1.227.12",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "traxxx",
|
||||
"version": "1.227.11",
|
||||
"version": "1.227.12",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@casl/ability": "^5.2.2",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.227.11",
|
||||
"version": "1.227.12",
|
||||
"description": "All the latest porn releases in one place",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
||||
@@ -95,8 +95,9 @@ async function scrapeScene({ query }, { url, entity }) {
|
||||
|
||||
release.entryId = data?.['@id'] || decodeId(new URL(url).pathname.match(/\/video\/([\w-]+)\//)?.[1]);
|
||||
|
||||
release.title = data?.name || query.content('.video-container + div h1');
|
||||
release.description = data?.description || query.content('//div[contains(@class, "actions")]/preceding-sibling::p');
|
||||
// data title is not capitalized, prefer markup
|
||||
release.title = query.attribute('meta[property="og:title"]', 'content') || query.content('.video-container + div h1') || data?.name;
|
||||
release.description = data?.description || query.attribute('meta[property="og:description"]', 'content') || query.content('//div[contains(@class, "actions")]/preceding-sibling::p');
|
||||
|
||||
release.date = unprint.extractDate(data?.datePublished, 'YYYY-MM-DD') || query.date('//p[contains(text(), "Date:")]', 'MMM DD, YYYY');
|
||||
release.duration = unprint.extractTimestamp(data?.duration) || query.duration('//p[contains(text(), "Playtime:")]//span');
|
||||
@@ -117,14 +118,14 @@ async function scrapeScene({ query }, { url, entity }) {
|
||||
|
||||
release.tags = query.contents('.actions .genres');
|
||||
|
||||
const videoData = query.json('.video-container [data-videopreview-sources-value]', { attribute: 'data-videopreview-sources-value' });
|
||||
const sourcesData = query.json('.video-container [data-videopreview-sources-value]', { attribute: 'data-videopreview-sources-value' });
|
||||
|
||||
release.poster = data?.thumbnailUrl || query.attribute('meta[property="og:image"]', 'content');
|
||||
release.teaser = (videoData && [
|
||||
videoData.mp4_large,
|
||||
videoData.webm_large,
|
||||
videoData.mp4,
|
||||
videoData.webm,
|
||||
release.teaser = (sourcesData && [
|
||||
sourcesData.mp4_large,
|
||||
sourcesData.webm_large,
|
||||
sourcesData.mp4,
|
||||
sourcesData.webm,
|
||||
])
|
||||
|| data?.contentUrl
|
||||
|| query.attribute('meta[property="og:video"]')
|
||||
|
||||
Reference in New Issue
Block a user