Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian
8126cc29d9 1.248.16 2026-02-02 23:54:09 +01:00
DebaucheryLibrarian
2e1b5561dd Added AnalVids, Porn World and Private affiliate links. 2026-02-02 23:54:06 +01:00
4 changed files with 33 additions and 7 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.248.15",
"version": "1.248.16",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.248.15",
"version": "1.248.16",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.458.0",

View File

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

View File

@@ -706,6 +706,28 @@ const affiliates = [
prefixSlash: false,
},
},
// sexcash (analvids, private)
{
network: 'analvids',
parameters: {
query: 'aff=BW90MHT1DP', // supported
},
comment: '50% rev share',
},
{
network: 'private',
parameters: {
query: 'aff=BW90MHT1DP', // supported
},
comment: '50% rev share',
},
{
network: 'pornworld',
parameters: {
query: 'aff=BW90MHT1DP', // supported
},
comment: '50% rev share',
},
// etc
{
network: 'bang',
@@ -1021,9 +1043,12 @@ exports.seed = async (knex) => {
const nameTags = banner.split(/-(.*)/)[1]?.split('_');
const tags = [...nameTags || [], ...bannerTags[banner] || []];
const resolvedNetwork = network === 'banners' ? channel : network;
const resolvedChannel = network === 'banners' ? null : channel;
const affiliate = affiliates.find((aff) => aff.id === affiliateId)
|| affiliates.find((aff) => aff.channel === channel)
|| affiliates.find((aff) => aff.network === network);
|| affiliates.find((aff) => aff.channel === resolvedChannel)
|| affiliates.find((aff) => aff.network === resolvedNetwork);
if (!affiliate) {
console.warn('UNMATCHED AFFILIATE', file);
@@ -1031,8 +1056,8 @@ exports.seed = async (knex) => {
return {
file,
network: network === 'banners' ? channel : network,
channel: network === 'banners' ? null : channel,
network: resolvedNetwork,
channel: resolvedChannel,
affiliateId,
affiliate: getAffiliateId(affiliate),
banner,

View File

@@ -235,6 +235,7 @@ const actors = [
{ entity: 'nebraskacoeds', name: 'Mary Beth Haglin', fields: ['avatar'] }, // sic
{ entity: 'firstanalquest', name: 'Abigaile Johnson', fields: ['avatar', 'dateOfBirth', 'birthPlace', 'weight', 'height', 'measurements'] }, // sic
{ entity: 'doubleviewcasting', name: 'Abigaile Johnson', fields: ['avatar', 'dateOfBirth', 'birthPlace', 'weight', 'height', 'measurements'] }, // sic
{ entity: 'boobpedia', name: 'Paige British', fields: ['avatar'] }, // sic
];
const actorScrapers = scrapers.actors;