RSSHub/lib/v2/xmanhua/index.js

75 lines
2.5 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const got = require('@/utils/got');
const cheerio = require('cheerio');
const { parseDate } = require('@/utils/parse-date');
module.exports = async (ctx) => {
const uid = ctx.params.uid;
const host = 'https://xmanhua.com';
const url = `https://xmanhua.com/${uid}/`;
const response = await got({
method: 'get',
url,
headers: {
Referer: host,
},
});
const data = response.data;
const $ = cheerio.load(data);
const list = $('div #chapterlistload').find('.detail-list-form-item');
// 作者
const autherName = $('body > div.detail-info-1 > div > div > p.detail-info-tip > span:nth-child(1)').text().split('')[1];
// 检查漫画是否已经完结
const finished_text = $('div.detail-list-form-title').clone().children().remove().end().text();
let finished = false;
let newOneDate = finished_text.split(',')[1];
if (newOneDate.includes('月') && newOneDate.includes('號')) {
const month = parseInt(newOneDate.split('月')[0]);
const date = parseInt(newOneDate.split('月')[1].split('號')[0]);
const year = new Date().getFullYear();
newOneDate = new Date(year, month - 1, date + 1);
} else {
newOneDate = new Date(newOneDate);
newOneDate.setDate(newOneDate.getDate() + 1);
}
if (finished_text.includes('已完結') || finished_text.includes('已完结')) {
finished = true;
}
// 最新一话的地址
const updatedOne = $('div.detail-list-form-title span.s a').attr('href');
const items = list
.map((index, item) => {
item = $(item);
const itemTitle = item.text();
const itemUrl = item.attr('href');
let itemDate;
if (itemUrl === updatedOne) {
itemDate = parseDate(newOneDate);
} else {
itemDate = '';
}
return {
title: itemTitle,
link: host + itemUrl,
auther: autherName,
pubDate: itemDate,
guid: host + itemUrl,
};
})
.get();
const name = $('body > div.detail-info-1 > div > div > p.detail-info-title').text();
let description_ = '';
if (finished) {
description_ = '已完结';
} else {
description_ = '连载中';
}
ctx.state.data = {
title: `x漫画 ${name}`,
link: `https://xmanhua.com/${uid}`,
description: description_,
allowEmpty: true,
item: items,
};
};