92 lines
2.8 KiB
JavaScript
92 lines
2.8 KiB
JavaScript
const got = require('@/utils/got');
|
|
const cheerio = require('cheerio');
|
|
const timezone = require('@/utils/timezone');
|
|
const { parseDate } = require('@/utils/parse-date');
|
|
const { art } = require('@/utils/render');
|
|
const path = require('path');
|
|
|
|
const lines = {
|
|
CM: '中国移动',
|
|
CU: '中国联通',
|
|
CT: '中国电信',
|
|
};
|
|
|
|
module.exports = async (ctx) => {
|
|
const { type = 'v4' } = ctx.params;
|
|
const limit = ctx.query.limit ? parseInt(ctx.query.limit, 10) : 30;
|
|
|
|
const domain = 'hostmonit.com';
|
|
const title = `CloudFlareYes${type === 'v6' ? type.toUpperCase() : ''}`;
|
|
|
|
const rootUrl = `https://stock.${domain}`;
|
|
const rootApiUrl = `https://api.${domain}`;
|
|
const apiUrl = new URL('get_optimization_ip', rootApiUrl).href;
|
|
const currentUrl = new URL(title, rootUrl).href;
|
|
|
|
const key = 'iDetkOys';
|
|
|
|
const { data: response } = await got.post(apiUrl, {
|
|
json: {
|
|
key,
|
|
...(type === 'v6'
|
|
? {
|
|
type: 'v6',
|
|
}
|
|
: {}),
|
|
},
|
|
});
|
|
|
|
const items = response.info.slice(0, limit).map((item) => {
|
|
const ip = item.ip;
|
|
const latency = item.latency === undefined ? undefined : `${item.latency}ms`;
|
|
const line = item.line === undefined ? undefined : lines.hasOwnProperty(item.line) ? lines[item.line] : item.line;
|
|
const loss = item.loss === undefined ? undefined : `${item.loss}%`;
|
|
const node = item.node;
|
|
const speed = item.speed === undefined ? undefined : `${item.speed} KB/s`;
|
|
const pubDate = timezone(parseDate(item.time), +8);
|
|
|
|
return {
|
|
title: art(path.join(__dirname, 'templates/title.art'), {
|
|
line,
|
|
latency,
|
|
loss,
|
|
speed,
|
|
node,
|
|
ip,
|
|
}),
|
|
link: currentUrl,
|
|
description: art(path.join(__dirname, 'templates/description.art'), {
|
|
line,
|
|
node,
|
|
ip,
|
|
latency,
|
|
loss,
|
|
speed,
|
|
}),
|
|
author: node,
|
|
category: [line, latency, loss, node].filter((c) => c),
|
|
guid: `${domain}-${title}-${ip}#${pubDate.toISOString()}`,
|
|
pubDate,
|
|
};
|
|
});
|
|
|
|
const { data: currentResponse } = await got(currentUrl);
|
|
|
|
const $ = cheerio.load(currentResponse);
|
|
|
|
const icon = new URL($('link[rel="icon"]').prop('href'), rootUrl).href;
|
|
|
|
ctx.state.data = {
|
|
item: items,
|
|
title: $('title').text().replace(/- .*$/, `- ${title}`),
|
|
link: currentUrl,
|
|
description: $('meta[name="description"]').prop('content'),
|
|
language: $('html').prop('lang'),
|
|
icon,
|
|
logo: icon,
|
|
subtitle: title,
|
|
author: $('title').text().split(/\s-/)[0],
|
|
allowEmpty: true,
|
|
};
|
|
};
|