Compare commits

..

No commits in common. "bb055e6ecc21722d86e90a78954daf349c94af5f" and "96e094ee88fe3663f9a4a9a7378f12d46a3d7981" have entirely different histories.

11 changed files with 8 additions and 33 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.217.2", "version": "1.217.1",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "traxxx", "name": "traxxx",
"version": "1.217.2", "version": "1.217.1",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@casl/ability": "^5.2.2", "@casl/ability": "^5.2.2",

View File

@ -1,6 +1,6 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.217.2", "version": "1.217.1",
"description": "All the latest porn releases in one place", "description": "All the latest porn releases in one place",
"main": "src/app.js", "main": "src/app.js",
"scripts": { "scripts": {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 539 KiB

View File

@ -1533,10 +1533,6 @@ const aliases = [
name: 'double anal (dap)', name: 'double anal (dap)',
for: 'dap', for: 'dap',
}, },
{
name: 'double anal penetration',
for: 'dap',
},
{ {
name: 'double anal penetration (dap)', name: 'double anal penetration (dap)',
for: 'dap', for: 'dap',
@ -1551,10 +1547,6 @@ const aliases = [
for: 'tvp', for: 'tvp',
secondary: true, secondary: true,
}, },
{
name: 'double vaginal penetration',
for: 'dvp',
},
{ {
name: 'double vaginal (dvp)', name: 'double vaginal (dvp)',
for: 'dvp', for: 'dvp',

View File

@ -6932,9 +6932,6 @@ const sites = [
url: 'http://dpdiva.com', url: 'http://dpdiva.com',
parent: 'pervcity', parent: 'pervcity',
tags: ['dp', 'anal'], tags: ['dp', 'anal'],
parameters: {
native: true,
},
}, },
// PIERRE WOODMAN // PIERRE WOODMAN
{ {

View File

@ -598,7 +598,6 @@ const tagMedia = [
['airtight', 7, 'Lana Rhoades in "Gangbang Me 3"', 'hardx'], ['airtight', 7, 'Lana Rhoades in "Gangbang Me 3"', 'hardx'],
['airtight', 'hime_marie_blackedraw', 'Hime Marie', 'blackedraw'], ['airtight', 'hime_marie_blackedraw', 'Hime Marie', 'blackedraw'],
['airtight', 6, 'Remy Lacroix in "Ass Worship 14"', 'julesjordan'], ['airtight', 6, 'Remy Lacroix in "Ass Worship 14"', 'julesjordan'],
['airtight', 'yoha_boundgangbangs', 'Yoha in "Home Invasion"', 'boundgangbangs'],
['airtight', 'anissa_kate_legalporno', 'Anissa Kate in GP1962', 'analvids'], ['airtight', 'anissa_kate_legalporno', 'Anissa Kate in GP1962', 'analvids'],
['airtight', 'emily_willis_blacked', 'Emily Willis', 'blacked'], ['airtight', 'emily_willis_blacked', 'Emily Willis', 'blacked'],
['airtight', 'savannah_bond_julesjordan', 'Savannah Bond', 'julesjordan'], ['airtight', 'savannah_bond_julesjordan', 'Savannah Bond', 'julesjordan'],

View File

@ -43,7 +43,7 @@ function scrapeAll(scenes, entity) {
}); });
} }
function scrapeScene({ query }, channel) { function scrapeScene({ query }) {
const release = {}; const release = {};
release.entryId = query.q('.trailerLeft img', 'id').match(/set-target-(\d+)/)[1]; release.entryId = query.q('.trailerLeft img', 'id').match(/set-target-(\d+)/)[1];
@ -62,7 +62,7 @@ function scrapeScene({ query }, channel) {
const trailer = query.q('script')?.textContent.match(/\/trailers\/.+\.mp4/)?.[0]; const trailer = query.q('script')?.textContent.match(/\/trailers\/.+\.mp4/)?.[0];
if (trailer) { if (trailer) {
release.trailer = `${channel.url}${trailer}`; release.trailer = `https://pervcity.com${trailer}`;
release.channel = channelCodes[release.trailer.match(channelRegExp)?.[0]]; release.channel = channelCodes[release.trailer.match(channelRegExp)?.[0]];
} }
@ -95,28 +95,15 @@ function scrapeProfile({ query }) {
return profile; return profile;
} }
function getLatestUrl(channel, page) {
if (channel.parameters?.siteId) {
return `https://pervcity.com/search.php?site[]=${channel.parameters.siteId}&page=${page}`;
}
if (channel.parameters?.native) {
return `${channel.url}/search.php?site[]=&page=${page}`;
}
return null;
}
async function fetchLatest(channel, page = 1) { async function fetchLatest(channel, page = 1) {
const url = getLatestUrl(channel, page); if (channel.parameters?.siteId) {
const url = `https://pervcity.com/search.php?site[]=${channel.parameters.siteId}&page=${page}`;
if (url) {
const res = await qu.getAll(url, '.videoBlock'); const res = await qu.getAll(url, '.videoBlock');
return res.ok ? scrapeAll(res.items, channel) : res.status; return res.ok ? scrapeAll(res.items, channel) : res.status;
} }
return []; return null;
} }
async function fetchUpcoming(channel) { async function fetchUpcoming(channel) {