Skip to content

Commit

Permalink
fix(core): string-type categories only (#13590)
Browse files Browse the repository at this point in the history
  • Loading branch information
JimenezLi authored Oct 24, 2023
1 parent 2526b3c commit 2c8f463
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 6 deletions.
16 changes: 10 additions & 6 deletions lib/middleware/parameter.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,13 @@ module.exports = async (ctx, next) => {
});
}
}

// handle category
if (item.category) {
// convert single string to array, and filter only string type category
Array.isArray(item.category) || (item.category = [item.category]);
item.category = item.category.filter((e) => typeof e === 'string');
}
return item;
};

Expand Down Expand Up @@ -172,8 +179,7 @@ module.exports = async (ctx, next) => {
const title = item.title || '';
const description = item.description || title;
const author = item.author || '';
const categoryArray = Array.isArray(item.category) ? item.category : [item.category];
const category = item.category ? categoryArray : [];
const category = item.category || [];
const isFilter =
engine === 're2'
? regex.matcher(title).find() || regex.matcher(description).find() || regex.matcher(author).find() || category.some((c) => regex.matcher(c).find())
Expand All @@ -189,8 +195,7 @@ module.exports = async (ctx, next) => {
const title = item.title || '';
const description = item.description || title;
const author = item.author || '';
const categoryArray = Array.isArray(item.category) ? item.category : [item.category];
const category = item.category ? categoryArray : [];
const category = item.category || [];
let isFilter = true;

const titleRegex = makeRegex(ctx.query.filter_title);
Expand All @@ -216,8 +221,7 @@ module.exports = async (ctx, next) => {
const title = item.title;
const description = item.description || title;
const author = item.author || '';
const categoryArray = Array.isArray(item.category) ? item.category : [item.category];
const category = item.category ? categoryArray : [];
const category = item.category || [];
let isFilter = true;

const titleRegex = makeRegex(ctx.query.filterout_title);
Expand Down
9 changes: 9 additions & 0 deletions lib/v2/test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,15 @@ module.exports = async (ctx) => {
category: 'Category3',
},
];
} else if (ctx.params.id === 'filter-illegal-category') {
item.push({
title: 'TitleIllegal',
description: 'DescriptionIllegal',
pubDate: new Date(`2019-3-1`).toUTCString(),
link: `https://github.com/DIYgod/RSSHub/issues/1`,
author: `DIYgod0`,
category: [1, 'CategoryIllegal', true, null, undefined, { type: 'object' }],
});
} else if (ctx.params.id === 'long') {
item.push({
title: `Long Title `.repeat(50),
Expand Down
8 changes: 8 additions & 0 deletions test/middleware/parameter.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,14 @@ describe('filter', () => {
expect(parsed.items[0].title).toBe('Filter Title3');
});

it(`filter_category illegal_category`, async () => {
const response = await request.get('/test/filter-illegal-category?filter_category=CategoryIllegal');
const parsed = await parser.parseString(response.text);
expect(parsed.items.length).toBe(1);
expect(parsed.items[0].categories.length).toBe(1);
expect(parsed.items[0].categories[0]).toBe('CategoryIllegal');
});

it(`filter_time`, async () => {
const response = await request.get('/test/current_time?filter_time=25');
const parsed = await parser.parseString(response.text);
Expand Down

0 comments on commit 2c8f463

Please sign in to comment.