Skip to content

Commit

Permalink
Merge pull request #331 from DIYgod/master
Browse files Browse the repository at this point in the history
[pull] master from diygod:master
  • Loading branch information
pull[bot] authored Dec 27, 2024
2 parents 2a1e439 + b3b0f9d commit 5f8876e
Show file tree
Hide file tree
Showing 6 changed files with 164 additions and 13 deletions.
4 changes: 3 additions & 1 deletion lib/routes/bilibili/dynamic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export const route: Route = {
| useAvid | 视频链接使用 AV 号 (默认为 BV 号) | 0/1/true/false | false |
| directLink | 使用内容直链 | 0/1/true/false | false |
| hideGoods | 隐藏带货动态 | 0/1/true/false | false |
| offset | 偏移状态 | string | "" |
用例:\`/bilibili/user/dynamic/2267573/showEmoji=1&embed=0&useAvid=1\``,
},
Expand Down Expand Up @@ -232,13 +233,14 @@ async function handler(ctx) {
const showEmoji = fallback(undefined, queryToBoolean(routeParams.showEmoji), false);
const embed = fallback(undefined, queryToBoolean(routeParams.embed), true);
const displayArticle = ctx.req.query('mode') === 'fulltext';
const offset = fallback(undefined, routeParams.offset, '');
const useAvid = fallback(undefined, queryToBoolean(routeParams.useAvid), false);
const directLink = fallback(undefined, queryToBoolean(routeParams.directLink), false);
const hideGoods = fallback(undefined, queryToBoolean(routeParams.hideGoods), false);

const cookie = await cacheIn.getCookie();

const params = utils.addDmVerifyInfo(`host_mid=${uid}&platform=web&features=itemOpusStyle,listOnlyfans,opusBigCover,onlyfansVote`, utils.getDmImgList());
const params = utils.addDmVerifyInfo(`offset=${offset}&host_mid=${uid}&platform=web&features=itemOpusStyle,listOnlyfans,opusBigCover,onlyfansVote`, utils.getDmImgList());
const response = await got(`https://api.bilibili.com/x/polymer/web-dynamic/v1/feed/space?${params}`, {
headers: {
Referer: `https://space.bilibili.com/${uid}/`,
Expand Down
71 changes: 71 additions & 0 deletions lib/routes/ifanr/category.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
import { Route } from '@/types';
import got from '@/utils/got';
import { parseDate } from '@/utils/parse-date';

const PATH_LIST = {
早报: 'ifanrnews',
评测: 'review',
糖纸众测: 'tangzhi-evaluation',
产品: 'product',
};

export const route: Route = {
path: '/category/:name',
categories: ['new-media'],
example: '/ifanr/category/早报',
parameters: { name: '分类名称' },
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: true,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['www.ifanr.com/category/:name'],
},
],
name: '分类',
maintainers: ['donghongfei'],
handler,
description: `支持分类:早报、评测、糖纸众测、产品`,
};

async function handler(ctx) {
const name = ctx.req.param('name');
const nameEncode = encodeURIComponent(decodeURIComponent(name));
const apiUrl = `https://sso.ifanr.com/api/v5/wp/article/?post_category=${nameEncode}&limit=20&offset=0`;
const resp = await got({
method: 'get',
url: apiUrl,
});
const items = await Promise.all(
resp.data.objects.map((item) => {
let description = '';

const banner = item.post_cover_image;

if (banner) {
description = `<img src="${banner}" alt="Article Cover Image" style="display: block; margin: 0 auto;"><br>`;
}
description += item.post_content;

return {
title: item.post_title.trim(),
description,
link: item.post_url,
pubDate: parseDate(item.published_at * 1000),
author: item.created_by.name,
};
})
);

return {
title: `#${name} - iFanr 爱范儿`,
link: `https://www.ifanr.com/category/${PATH_LIST[name]}`,
description: `${name} 更新推送`,
item: items,
};
}
70 changes: 70 additions & 0 deletions lib/routes/ifanr/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
import { Route, ViewType } from '@/types';
import cache from '@/utils/cache';
import got from '@/utils/got';
import { parseDate } from '@/utils/parse-date';

export const route: Route = {
path: '/index',
categories: ['new-media'],
view: ViewType.Articles,
example: '/ifanr/index',
parameters: {},
features: {
requireConfig: false,
requirePuppeteer: false,
antiCrawler: false,
supportBT: false,
supportPodcast: false,
supportScihub: false,
},
radar: [
{
source: ['www.ifanr.com/index'],
},
],
name: '首页',
maintainers: ['donghongfei'],
handler,
url: 'www.ifanr.com/index',
};

async function handler() {
const apiUrl = 'https://sso.ifanr.com/api/v5/wp/web-feed/?limit=20&offset=0';
const resp = await got({
method: 'get',
url: apiUrl,
});
const items = await Promise.all(
resp.data.objects.map((item) => {
const link = `https://sso.ifanr.com/api/v5/wp/article/?post_id=${item.post_id}`;
let description = '';

const key = `ifanr:${item.id}`;

return cache.tryGet(key, async () => {
const response = await got({ method: 'get', url: link });
const articleData = response.data.objects[0];
const banner = articleData.post_cover_image;
if (banner) {
description = `<img src="${banner}" alt="Article Cover Image" style="display: block; margin: 0 auto;"><br>`;
}
description += articleData.post_content;

return {
title: item.post_title.trim(),
description,
link: item.post_url,
pubDate: parseDate(item.created_at * 1000),
author: item.created_by.name,
};
});
})
);

return {
title: '爱范儿',
link: 'https://www.ifanr.com',
description: '爱范儿首页',
item: items,
};
}
8 changes: 8 additions & 0 deletions lib/routes/ifanr/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: '爱范儿',
url: 'www.ifanr.com',
description: '',
lang: 'zh-CN',
};
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"currency-symbol-map": "5.1.0",
"dayjs": "1.11.8",
"destr": "2.0.3",
"directory-import": "3.3.1",
"directory-import": "3.3.2",
"dotenv": "16.4.7",
"entities": "6.0.0",
"etag": "1.8.1",
Expand Down Expand Up @@ -122,7 +122,7 @@
"simplecc-wasm": "1.1.0",
"socks-proxy-agent": "8.0.5",
"source-map": "0.7.4",
"telegram": "2.26.8",
"telegram": "2.26.16",
"tiny-async-pool": "2.1.0",
"title": "4.0.1",
"tldts": "6.1.70",
Expand Down
20 changes: 10 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 5f8876e

Please sign in to comment.