Compare commits

..

No commits in common. "0d8c92aac96e6fc45ea3166177c0484e2128afaf" and "8439631e2dfabdf31adea0657fac410e51286d37" have entirely different histories.

8 changed files with 5 additions and 54 deletions

4
package-lock.json generated
View File

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

View File

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

View File

@ -366,10 +366,6 @@ const networks = [
name: 'Kink',
url: 'https://www.kink.com',
description: 'Authentic Bondage & Real BDSM Porn Videos. Demystifying and celebrating alternative sexuality by providing the most authentic kinky videos. Experience the other side of porn.',
parameters: {
interval: 1000,
concurrency: 1,
},
},
{
slug: 'letsdoeit',

View File

@ -4721,7 +4721,7 @@ const sites = [
slug: 'boundgangbangs',
name: 'Bound Gangbangs',
alias: ['bgb', 'bgbs'],
url: 'https://www.kink.com/channel/bound-gang-bangs',
url: 'https://www.kink.com/channel/bound-gangbangs',
description: 'Powerless whores tied in bondage and stuffed with a cock in every hole. At BoundGangbangs women get surprise extreme gangbangs, blindfolds, deepthroat blowjobs, sex punishment, bondage, double penetration and interracial sex.',
parent: 'kink',
},

View File

@ -152,7 +152,7 @@ async function init() {
}
if (argv.request) {
const res = await http[argv.requestMethod](argv.request);
const res = await http.get(argv.request);
console.log(res.status, res.body);
}

View File

@ -323,16 +323,6 @@ const { argv } = yargs
type: 'array',
alias: ['delete-movie', 'remove-movies', 'remove-movies'],
})
.option('request', {
describe: 'Make an arbitrary HTTP request',
type: 'string',
})
.option('request-method', {
alias: 'method',
describe: 'HTTP method for arbitrary HTTP requests',
type: 'string',
default: 'get',
})
.option('request-timeout', {
describe: 'Default timeout after which to cancel a HTTP request.',
type: 'number',

View File

@ -1,18 +0,0 @@
'use strict';
const bhttp = require('bhttp');
async function init() {
const res = await bhttp.head('https://www.kink.com/consent', {
headers: {
Host: 'www.kink.com',
'User-Agent': 'HTTPie/2.6.0',
Accept: '*/*',
Connection: 'keep-alive',
},
});
console.log(res.body.toString(), res.headers, res.statusCode);
}
init();

View File

@ -1,17 +0,0 @@
'use strict';
const express = require('express');
const app = express();
app.get('/', (req, res) => {
console.log(req.httpVersion);
console.log(req.headers);
console.log(req.body);
res.status(204).send();
});
app.listen(5555, () => {
console.log('Server started');
});