4 Commits

Author SHA1 Message Date
Indrawan I
ac1a6d82fb ci: sunset workflows for node 14.x, use 16 instead (#7) 2023-04-20 02:40:00 +07:00
Indrawan I
2b682791d2 docs(CLOSING_REMARKS): add Alternative-links url (#6) 2023-04-20 02:29:18 +07:00
Indrawan I
d2765c8e34 fix(removeHtmlTagWithoutSpace): proper multiple tags slicing (#5)
* removeHtmlTagWithoutSpace

* pre release
2023-04-20 02:14:52 +07:00
Indrawan I
55e88b57d1 fix: proper null type for video, assets and slice slash on fetchBody (#4)
* broken slash will broke it

* xhamster fix embed assets

* xnxx fix nullable assets

* xvideos fix nullable assets

* it should be none instead null type

* pre release
2023-04-19 21:40:53 +07:00
21 changed files with 35 additions and 29 deletions

View File

@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v3

View File

@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v3

View File

@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v3

View File

@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v3

View File

@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v3

View File

@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v3

View File

@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v3

View File

@@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v3

View File

@@ -19,4 +19,4 @@ Core dependencies:
# Alternative-links
Just in case if https://lust.scathach.id down, here some alternative deployment
- TBA
- https://lustpress.cyclic.app

View File

@@ -71,7 +71,7 @@ Don't make it long, make it short, all processed through single rest
## Prerequisites
<table>
<td><b>NOTE:</b> NodeJS 14.x or higher</td>
<td><b>NOTE:</b> NodeJS 16.x or higher</td>
</table>
To handle several requests from each website, You will also need [Redis](https://redis.io/) for persistent caching, free tier is available on [Redis Labs](https://redislabs.com/), You can also choose another adapters as we using [keyv](https://github.com/jaredwray/keyv) Key-value storage with support for multiple backends. When you choosing your own adapter, all data must be stored with `<Buffer>` type.

View File

@@ -1,6 +1,6 @@
{
"name": "lustpress",
"version": "1.6.1-alpha",
"version": "1.6.3-alpha",
"description": "RESTful and experimental API for PornHub and other porn sites, which official is lack even isn't exist.",
"main": "build/src/index.js",
"scripts": {

View File

@@ -40,6 +40,7 @@ class LustPress {
return res.body;
} else {
console.log("Fetching from source");
url = url.replace(/\/\//g, "/");
const res = await p({
url: url,
"headers": {
@@ -71,6 +72,7 @@ class LustPress {
removeHtmlTagWithoutSpace(str: string): string {
str = str.replace(/(\r\n|\n|\r|\t)/gm, "");
str = str.replace(/\\/g, "");
str = str.replace(/\s+/g, " ");
return str.trim();
}

View File

@@ -1,5 +1,6 @@
import { load } from "cheerio";
import LustPress from "../../LustPress";
import c from "../../utils/options";
import { ISearchVideoData } from "../../interfaces";
const lust = new LustPress();
@@ -33,7 +34,7 @@ export async function scrapeContent(url: string) {
image: $(el).find("img").attr("src"),
duration: duration[i],
views: views[i],
video: $(el).attr("data-previewvideo"),
video: `${c.XHAMSTER}/embed/${link?.split("-").pop()}`
};
}).get();
}

View File

@@ -6,7 +6,6 @@ const lust = new LustPress();
export async function scrapeContent(url: string) {
try {
console.log(url);
const resolve = await lust.fetchBody(url);
const $ = load(resolve);
@@ -27,6 +26,7 @@ export async function scrapeContent(url: string) {
thumbnail: string;
bigimg: string;
video: string;
embed: string;
constructor() {
const thumb = $("script")
.map((i, el) => {
@@ -69,6 +69,8 @@ export async function scrapeContent(url: string) {
.map((i, el) => {
return $(el).text();
}).get();
this.embed = $("input#copy-video-embed").attr("value") || "None";
this.embed = this.embed.split("iframe")[1].split(" ")[1].replace(/src=/g, "").replace(/"/g, "") || "None";
}
}
@@ -91,7 +93,7 @@ export async function scrapeContent(url: string) {
tags: x.tags.filter((el) => el !== "Edit tags and models")
},
source: x.link,
assets: lust.removeAllSingleQuoteOnArray([x.thumbnail, x.bigimg, x.video])
assets: lust.removeAllSingleQuoteOnArray([x.embed, x.thumbnail, x.bigimg, x.video])
};
return data;

View File

@@ -22,15 +22,16 @@ export async function scrapeContent(url: string) {
//stop and replace everything after the last ];
const badJson = video_related?.split("];")[0] + "]";
const actualResult = JSON.parse(String(badJson));
//console.log(actualResult);
const result = actualResult.map((el: any) => {
return {
link: `${c.XNXX}${el.u}`,
id: el.u,
id: el.u.slice(1, -1),
title: el.t,
image: el.i,
duration: el.d,
views: `${el.n}, ${el.r}`,
video: null
video: `${c.XNXX}/embedframe/${el.id}`
};
});
return result;

View File

@@ -17,7 +17,8 @@ export async function scrapeContent(url: string) {
.map((i, el) => {
return {
link: `${c.XNXX}${$(el).find("a").attr("href")}`,
id: $(el).find("a").attr("href"),
// remove first "/" and last "/"
id: $(el).find("a").attr("href")?.slice(1, -1),
title: $(el).find("div.thumb-under").text().split("\n")
.map((el) => el.trim()).filter((el) => el !== "")[0],
image: $(el).find("img").attr("data-src"),
@@ -25,8 +26,7 @@ export async function scrapeContent(url: string) {
.map((el) => el.trim()).filter((el) => el !== "")[2],
rating: $(el).find("div.thumb-under").text().split("\n")
.map((el) => el.trim()).filter((el) => el !== "")[1],
video: null
video: `${c.XNXX}/embedframe/${$(el).find("img").attr("data-videoid")}`
};
}).get();
}

View File

@@ -25,6 +25,7 @@ export async function scrapeContent(url: string) {
models: string[];
thumbnail: string;
bigimg: string;
embed: string;
constructor() {
this.link = $("meta[property='og:url']").attr("content") || "None";
this.id = this.link.split("/")[3] + "/" + this.link.split("/")[4] || "None";
@@ -60,7 +61,8 @@ export async function scrapeContent(url: string) {
}
).get();
this.models = this.models.map((el) => el.split("/")[2]);
this.embed = $("input#copy-video-embed").attr("value") || "None";
this.embed = this.embed.split("iframe")[1].split(" ")[1].replace(/src=/g, "").replace(/"/g, "") || "None";
}
}
@@ -81,7 +83,7 @@ export async function scrapeContent(url: string) {
tags: xv.tags,
},
source: xv.link,
assets: lust.removeAllSingleQuoteOnArray([xv.thumbnail, xv.bigimg, xv.video])
assets: lust.removeAllSingleQuoteOnArray([xv.embed, xv.thumbnail, xv.bigimg, xv.video])
};
return data;

View File

@@ -9,7 +9,6 @@ export async function scrapeContent(url: string) {
try {
const res = await lust.fetchBody(url);
const $ = load(res);
console.log(url);
class XvideosSearch {
search: object[];
@@ -24,12 +23,12 @@ export async function scrapeContent(url: string) {
const result = actualResult.map((el: any) => {
return {
link: `${c.XVIDEOS}${el.u}`,
id: el.u,
id: el.u.slice(1, -1),
title: el.t,
image: el.i,
duration: el.d,
views: `${el.n}, ${el.r}`,
video: null
video: `${c.XVIDEOS}/embedframe/${el.id}`
};
});
return result;

View File

@@ -7,7 +7,6 @@ const lust = new LustPress();
export async function scrapeContent(url: string) {
try {
console.log(url);
const res = await lust.fetchBody(url);
const $ = load(res);
@@ -36,7 +35,7 @@ export async function scrapeContent(url: string) {
? ""
: data[i].duration || "None",
rating: null,
video: null
video: `${c.XVIDEOS}/embedframe/${$(el).find("img").attr("data-videoid")}`
};
}).get();

View File

@@ -19,7 +19,7 @@ export async function scrapeContent(url: string) {
rating: string;
publish: string;
upVote: string;
downVote: null;
downVote: string;
video: string;
tags: string[];
models: string[];
@@ -33,7 +33,7 @@ export async function scrapeContent(url: string) {
this.rating = $("div.feature").find("span").text().replace(/[^0-9.,%]/g, "") || "0";
this.publish = $("div.video-uploaded").find("span").text() || "None";
this.upVote = this.views;
this.downVote = null;
this.downVote = "None";
this.video = `https://www.youporn.com/embed/${this.id}`;
this.tags = $("a[data-espnode='category_tag'], a[data-espnode='porntag_tag']")
.map((i, el) => {

View File

@@ -29,7 +29,7 @@ export async function scrapeContent(url: string) {
title: lust.removeHtmlTagWithoutSpace(title),
image: image,
duration: this.dur[i],
views: null,
views: "None",
video: `https://www.youporn.com/embed/${id}`,
};
}).get();