Compare commits
4 Commits
9f173d7aee
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a62cfcac3d | ||
|
|
5b9c635ed1 | ||
|
|
ad56e7b9e0 | ||
|
|
4eb6840c2a |
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.255.9",
|
||||
"version": "1.255.11",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "traxxx",
|
||||
"version": "1.255.9",
|
||||
"version": "1.255.11",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@aws-sdk/client-s3": "^3.458.0",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.255.9",
|
||||
"version": "1.255.11",
|
||||
"description": "All the latest porn releases in one place",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
||||
@@ -2,6 +2,10 @@ const upsert = require('../src/utils/upsert');
|
||||
const slugify = require('../src/utils/slugify');
|
||||
|
||||
const groups = [
|
||||
{
|
||||
slug: 'accessories',
|
||||
name: 'Accessories',
|
||||
},
|
||||
{
|
||||
slug: 'age',
|
||||
name: 'Age',
|
||||
@@ -1264,6 +1268,22 @@ const tags = [
|
||||
slug: 'toy-dp',
|
||||
description: 'Getting [double penetrated](/tag/dp) with dildos, strap-ons or buttplugs. You can use both ends of a [double dildo](/tag/double-dildo) for a [double dildo DP](/tag/double-dildo-dp).',
|
||||
},
|
||||
{
|
||||
name: 'toy DVP',
|
||||
slug: 'toy-dvp',
|
||||
},
|
||||
{
|
||||
name: 'toy DAP',
|
||||
slug: 'toy-dap',
|
||||
},
|
||||
{
|
||||
name: 'toy TAP',
|
||||
slug: 'toy-tap',
|
||||
},
|
||||
{
|
||||
name: 'toy TVP',
|
||||
slug: 'toy-tvp',
|
||||
},
|
||||
{
|
||||
name: 'finger DP',
|
||||
slug: 'finger-dp',
|
||||
@@ -1272,6 +1292,16 @@ const tags = [
|
||||
name: 'transsexual',
|
||||
slug: 'transsexual',
|
||||
},
|
||||
{
|
||||
name: 'trans man',
|
||||
slug: 'trans-man',
|
||||
description: 'A man who was assigned female at birth and has typically undergone a social transition, and may but not necessarily have had gender-affirming surgeries.',
|
||||
},
|
||||
{
|
||||
name: 'trans woman',
|
||||
slug: 'trans-woman',
|
||||
description: 'woman man who was assigned male at birth and has typically undergone a social transition, and may but not necessarily have had gender-affirming surgeries.',
|
||||
},
|
||||
{
|
||||
name: 'DA triple penetration',
|
||||
slug: 'da-tp',
|
||||
@@ -1465,6 +1495,16 @@ const tags = [
|
||||
name: 'pregnant',
|
||||
slug: 'pregnant',
|
||||
},
|
||||
{
|
||||
name: 'collar',
|
||||
slug: 'collar',
|
||||
group: 'accessories',
|
||||
},
|
||||
{
|
||||
name: 'choker',
|
||||
slug: 'choker',
|
||||
group: 'accessories',
|
||||
},
|
||||
];
|
||||
|
||||
const aliases = [
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
'use strict';
|
||||
|
||||
const unprint = require('unprint');
|
||||
const cookie = require('cookie');
|
||||
|
||||
const slugify = require('../utils/slugify');
|
||||
|
||||
@@ -54,16 +53,14 @@ function scrapeAll(scenes, channel) {
|
||||
|
||||
async function beforeFetchLatest(channel) {
|
||||
// scene page only seems to accept language preferences from session
|
||||
const { res } = await unprint.get(`${channel.url}/en/news-videos-x-marc-dorcel`, {
|
||||
const { cookies } = await unprint.get(`${channel.url}/en/news-videos-x-marc-dorcel`, {
|
||||
headers: {
|
||||
'X-Requested-With': 'XMLHttpRequest',
|
||||
'Accept-Language': 'en-US,en', // fetch English rather than French titles
|
||||
},
|
||||
});
|
||||
|
||||
const sessionCookie = cookie.parse(res.headers['set-cookie'][0])?.dorcelclub;
|
||||
|
||||
return `dorcelclub=${sessionCookie}`;
|
||||
return `dorcelclub=${cookies.dorcelclub}`;
|
||||
}
|
||||
|
||||
async function fetchLatest(channel, page = 1, _options, { beforeFetchLatest: sessionCookie }) {
|
||||
|
||||
Reference in New Issue
Block a user