Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian
ef1984664d 1.246.6 2026-01-22 01:20:16 +01:00
DebaucheryLibrarian
f0a2943687 Added Tonight's Girlfriend tracking link. 2026-01-22 01:20:14 +01:00
5 changed files with 13 additions and 5 deletions

4
package-lock.json generated
View File

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

View File

@@ -1,6 +1,6 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.246.5", "version": "1.246.6",
"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": {

View File

@@ -190,14 +190,20 @@ const affiliates = [
url: 'https://enter.spermswallowers.com/track/Mzk3MS4yLjUuMTMuMC4wLjAuMC4w', url: 'https://enter.spermswallowers.com/track/Mzk3MS4yLjUuMTMuMC4wLjAuMC4w',
comment: '$30 per signup', comment: '$30 per signup',
}, },
// etc // naughty america
{ {
id: 'naughtyamerica', id: 'naughtyamerica',
network: 'naughtyamerica', network: 'naughtyamerica',
url: 'https://natour.naughtyamerica.com/track/MTIzODIxLjEwMDI1LjguOC4wLjEwNzU2MTcuMC4wLjA', url: 'https://natour.naughtyamerica.com/track/MTIzODIxLjEwMDI1LjguOC4wLjEwNzU2MTcuMC4wLjA',
parameters: 'nats=MTIzODIxLjEwMDI1LjguOC4wLjEwNzU2MTcuMC4wLjA',
comment: 'pay per sign-up', comment: 'pay per sign-up',
}, },
{
id: 'tonightsgirlfriend',
channel: 'tonightsgirlfriend',
url: 'https://enter.tonightsgirlfriend.com/track/MTIzODIxLjEwMDI1LjU4LjgwLjAuMC4wLjAuMA',
comment: 'pay per sign-up',
},
// etc
{ {
id: 'archangel', id: 'archangel',
channel: 'archangel', channel: 'archangel',

View File

@@ -103,6 +103,7 @@ const { argv } = yargs
.option('scene', { .option('scene', {
describe: 'Scrape scene info from URL', describe: 'Scrape scene info from URL',
type: 'array', type: 'array',
alias: 'scenes',
}) })
.option('scene-file', { .option('scene-file', {
describe: 'Scrape scene info from URLs in a file', describe: 'Scrape scene info from URLs in a file',

View File

@@ -104,6 +104,7 @@ async function fetchUpcoming(channel, _page, { parameters }) {
*/ */
async function fetchScene(sceneUrl, entity, _baseRelease, { parameters }) { async function fetchScene(sceneUrl, entity, _baseRelease, { parameters }) {
// deep data not identical, contains photoset and full trailer
const slug = new URL(sceneUrl).pathname.match(/\/trailers\/(.*?)\.html/)[1]; const slug = new URL(sceneUrl).pathname.match(/\/trailers\/(.*?)\.html/)[1];
const url = `${entity.origin.replace('www.', 'api.')}/v1/content-sets/${slug}`; const url = `${entity.origin.replace('www.', 'api.')}/v1/content-sets/${slug}`;