diff --git a/seeds/06_affiliates.js b/seeds/06_affiliates.js index 619d107a..5f1d5175 100755 --- a/seeds/06_affiliates.js +++ b/seeds/06_affiliates.js @@ -190,14 +190,20 @@ const affiliates = [ url: 'https://enter.spermswallowers.com/track/Mzk3MS4yLjUuMTMuMC4wLjAuMC4w', comment: '$30 per signup', }, - // etc + // naughty america { id: 'naughtyamerica', network: 'naughtyamerica', url: 'https://natour.naughtyamerica.com/track/MTIzODIxLjEwMDI1LjguOC4wLjEwNzU2MTcuMC4wLjA', - parameters: 'nats=MTIzODIxLjEwMDI1LjguOC4wLjEwNzU2MTcuMC4wLjA', comment: 'pay per sign-up', }, + { + id: 'tonightsgirlfriend', + channel: 'tonightsgirlfriend', + url: 'https://enter.tonightsgirlfriend.com/track/MTIzODIxLjEwMDI1LjU4LjgwLjAuMC4wLjAuMA', + comment: 'pay per sign-up', + }, + // etc { id: 'archangel', channel: 'archangel', diff --git a/src/argv.js b/src/argv.js index 31ac198d..83939e8d 100755 --- a/src/argv.js +++ b/src/argv.js @@ -103,6 +103,7 @@ const { argv } = yargs .option('scene', { describe: 'Scrape scene info from URL', type: 'array', + alias: 'scenes', }) .option('scene-file', { describe: 'Scrape scene info from URLs in a file', diff --git a/src/scrapers/loveherfilms.js b/src/scrapers/loveherfilms.js index 89078338..a69a2755 100755 --- a/src/scrapers/loveherfilms.js +++ b/src/scrapers/loveherfilms.js @@ -104,6 +104,7 @@ async function fetchUpcoming(channel, _page, { 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 url = `${entity.origin.replace('www.', 'api.')}/v1/content-sets/${slug}`;