forked from DebaucheryLibrarian/traxxx
Fixed Vixen scraper, site restructured. Added Deeper to Vixen network.
This commit is contained in:
parent
c78f7f957f
commit
b12d74cbb3
|
@ -2021,6 +2021,13 @@ exports.seed = knex => Promise.resolve()
|
|||
url: 'https://www.tushyraw.com',
|
||||
network_id: networksMap['vixen'],
|
||||
},
|
||||
{
|
||||
slug: 'deeper',
|
||||
name: 'Deeper',
|
||||
description: 'Porn videos from DEEPER.com featuring Passionate sex, light kink and BDSM with plenty of erotic sex videos featuring beautiful models.',
|
||||
url: 'https://www.deeper.com',
|
||||
network_id: networksMap['vixen'],
|
||||
},
|
||||
// XEMPIRE
|
||||
{
|
||||
slug: 'hardx',
|
||||
|
|
|
@ -42,13 +42,17 @@ async function scrapeScene(html, url, site) {
|
|||
const stateObject = $('script:contains("INITIAL_STATE")');
|
||||
const data = JSON.parse(stateObject.html().trim().slice(27, -1));
|
||||
|
||||
const scene = data.page.data[`${pathname}${search}`].data.video;
|
||||
const shootId = data.page.data[`${pathname}${search}`].data.video;
|
||||
const scene = data.videos.find(video => video.newId === shootId);
|
||||
|
||||
const {
|
||||
title,
|
||||
description,
|
||||
models: actors,
|
||||
totalRateVal: stars,
|
||||
} = scene;
|
||||
|
||||
const shootId = String(scene.newId);
|
||||
const { title } = scene;
|
||||
const date = new Date(scene.releaseDate);
|
||||
const actors = scene.models;
|
||||
const stars = scene.totalRateVal;
|
||||
|
||||
const rawTags = scene.tags;
|
||||
const tags = await matchTags(rawTags);
|
||||
|
@ -60,6 +64,7 @@ async function scrapeScene(html, url, site) {
|
|||
url,
|
||||
shootId,
|
||||
title,
|
||||
description,
|
||||
actors,
|
||||
director,
|
||||
date,
|
||||
|
|
Loading…
Reference in New Issue