Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions lib/routes/projectjav/actress.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import { Route } from '@/types';

Check failure

Code scanning / oxlint

typescript-eslint(consistent-type-imports) Error

All imports in the declaration are only used as types. Use import type.
Replace the import declaration with import type. For example, change import { Type } from 'module' would become import type { Type } from 'module'.

Check failure

Code scanning / oxlint

simple-import-sort(imports) Error

Run autofix to sort these imports!
import cache from '@/utils/cache';
import { rootUrl, processItems } from './utils';

export const route: Route = {
path: ['/actress/:id', '/actress/:id/'],
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Use only one route path

categories: ['multimedia'],
example: '/projectjav/actress/rima-arai-22198',
parameters: { id: 'Actress ID or slug, can be found in the actress page URL' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
nsfw: true,
},
radar: [
{
source: ['projectjav.com/actress/:id'],
target: '/actress/:id',
},
],
name: 'Actress',
maintainers: ['Exat1979'],
handler,
url: 'projectjav.com/',
description: 'Fetches the latest movies from a specific actress page on ProjectJAV.',
};

async function handler(ctx) {
const id = ctx.req.param('id');
const currentUrl = `${rootUrl}/actress/${id}`;
return await processItems(currentUrl, cache.tryGet);
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The whole cache.tryGet function can be imported directly. No need to pass it as parameter.

}
8 changes: 8 additions & 0 deletions lib/routes/projectjav/namespace.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import type { Namespace } from '@/types';

export const namespace: Namespace = {
name: 'ProjectJAV',
url: 'projectjav.com',
description: 'ProjectJAV provides adult video content information and streaming.',
lang: 'en',
};
101 changes: 101 additions & 0 deletions lib/routes/projectjav/utils.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
import got from '@/utils/got';

Check failure

Code scanning / oxlint

simple-import-sort(imports) Error

Run autofix to sort these imports!
import { load } from 'cheerio';
import { parseDate } from '@/utils/parse-date';
import type { DataItem } from '@/types';

const rootUrl = 'https://projectjav.com';
const processItems = async (currentUrl: string, tryGet) => {
const response = await got({
method: 'get',
url: currentUrl,
});

const $ = load(response.data);

let items: DataItem[] = $('div.video-item')
.toArray()
.map((element) => {
const item = $(element);
const link = item.find('a').attr('href');
return {
title: item.find('div.name span').text() || '',
link: link?.startsWith('http') ? link : `${rootUrl}${link}`,
};
})
.filter((item) => item.link && /\/movie\/.*/.test(item.link));

items = await Promise.all(
items.map((item) =>
tryGet(item.link!, async () => {
const detailResponse = await got({
method: 'get',
url: item.link,
});

const content = load(detailResponse.data);

// Remove ads
content('div.top-banner-ads, div.bottom-content-ads').remove();

// Get main content
const mainContent = content('main');

// Extract title
const h1Title = mainContent.find('h1').text().trim();
if (h1Title) {
item.title = h1Title;
}

// Extract categories
const categories = mainContent
.find('div.badge a')
.toArray()
.map((v) => content(v).text().trim())
.filter(Boolean);
if (categories.length > 0) {
item.category = categories;
}

// Extract author/actress (support multiple actresses)
const actresses = mainContent
.find('div.actress-item a')
.toArray()
.map((v) => content(v).text().trim())
.filter(Boolean);
if (actresses.length > 0) {
item.author = actresses.join(', ');
}

// Extract date
let dateText: string | null = null;
mainContent
.find('div.second-main~div.row>div.col-3')
.toArray()
.some((el) => {
if (content(el).text().includes('Date added')) {
dateText = content(el).next().text().trim();
return true;
}
return false;
});
if (dateText) {
// ProjectJAV uses DD/MM/YYYY format
item.pubDate = parseDate(dateText, 'DD/MM/YYYY');
}

// Get description
item.description = mainContent.html() || '';

return item;
})
)
);

return {
title: $('title').text() || 'ProjectJAV',
link: currentUrl,
item: items,
};
};

export { processItems, rootUrl };
Loading