mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-08 05:59:00 +08:00
feat: remove lib/radar-rules.js
This commit is contained in:
@@ -43,5 +43,4 @@ vercel.json
|
||||
.git/hooks
|
||||
|
||||
# rsshub auxiliary files
|
||||
lib/radar-rules.js
|
||||
lib/v2/**/radar.js
|
||||
|
||||
2
.github/labeler.yml
vendored
2
.github/labeler.yml
vendored
@@ -10,7 +10,7 @@
|
||||
core enhancement:
|
||||
- changed-files:
|
||||
- any-glob-to-any-file: ['lib/routes/index.js']
|
||||
- all-globs-to-any-file: ['lib/**', '!lib/radar-rules.js', '!/lib/config.js', '!lib/router.js', '!lib/routes/**', '!lib/v2/**']
|
||||
- all-globs-to-any-file: ['lib/**', '!/lib/config.js', '!lib/router.js', '!lib/routes/**', '!lib/v2/**']
|
||||
|
||||
dependencies:
|
||||
- changed-files:
|
||||
|
||||
1
.github/workflows/build-assets.yml
vendored
1
.github/workflows/build-assets.yml
vendored
@@ -6,7 +6,6 @@ on:
|
||||
- master
|
||||
paths:
|
||||
- 'assets/radar-rules.js'
|
||||
- 'lib/**/radar-rules.js'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
1
.github/workflows/docker-release.yml
vendored
1
.github/workflows/docker-release.yml
vendored
@@ -7,7 +7,6 @@ on:
|
||||
paths:
|
||||
- '.github/workflows/docker-release.yml'
|
||||
- 'lib/**'
|
||||
- '!**/radar-rules.js'
|
||||
- '!lib/v2/test/**'
|
||||
- '!test/**'
|
||||
- 'Dockerfile'
|
||||
|
||||
1
.github/workflows/docker-test.yml
vendored
1
.github/workflows/docker-test.yml
vendored
@@ -7,7 +7,6 @@ on:
|
||||
paths:
|
||||
- '.github/workflows/docker-test.yml'
|
||||
- 'lib/**'
|
||||
- '!**/radar-rules.js'
|
||||
- 'Dockerfile'
|
||||
- 'package.json'
|
||||
- 'pnpm-lock.yaml'
|
||||
|
||||
1
.github/workflows/npm-publish.yml
vendored
1
.github/workflows/npm-publish.yml
vendored
@@ -7,7 +7,6 @@ on:
|
||||
paths:
|
||||
- '.github/workflows/npm-publish.yml'
|
||||
- 'lib/**'
|
||||
- '!**/radar-rules.js'
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
1
.github/workflows/test.yml
vendored
1
.github/workflows/test.yml
vendored
@@ -7,7 +7,6 @@ on:
|
||||
paths:
|
||||
- 'test/**'
|
||||
- 'lib/**'
|
||||
- '!**/radar-rules.js'
|
||||
- 'package.json'
|
||||
- 'pnpm-lock.yaml'
|
||||
- '.github/workflows/test.yml'
|
||||
|
||||
@@ -54,8 +54,7 @@
|
||||
"lib/**/*.js",
|
||||
"!lib/routes/**/*.js",
|
||||
"!lib/v2/**/*.js",
|
||||
"!lib/router.js",
|
||||
"!lib/radar-rules.js"
|
||||
"!lib/router.js"
|
||||
],
|
||||
"coverageReporters": [
|
||||
"text-summary",
|
||||
|
||||
@@ -1,7 +1,61 @@
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
const target = path.join(__dirname, '../../assets/build/maintainer.json');
|
||||
const maintainer = require(path.join(__dirname, '../../lib/maintainer.js'));
|
||||
const dirname = path.join(__dirname + '../../../lib/v2');
|
||||
|
||||
// Presence Check
|
||||
for (const dir of fs.readdirSync(dirname)) {
|
||||
const dirPath = path.join(dirname, dir);
|
||||
if (fs.existsSync(path.join(dirPath, 'router.js')) && !fs.existsSync(path.join(dirPath, 'maintainer.js'))) {
|
||||
throw new Error(`No maintainer.js in "${dirPath}".`);
|
||||
}
|
||||
}
|
||||
|
||||
// 遍历整个 routes 文件夹,收集模块 maintainer.js
|
||||
const maintainerPath = require('require-all')({
|
||||
dirname,
|
||||
filter: /maintainer\.js$/,
|
||||
});
|
||||
|
||||
const maintainers = {};
|
||||
|
||||
// 将收集到的自定义模块进行合并
|
||||
for (const dir in maintainerPath) {
|
||||
const routes = maintainerPath[dir]['maintainer.js']; // Do not merge other file
|
||||
|
||||
// typo check e.g., ✘ module.export, ✔ module.exports
|
||||
if (!Object.keys(routes).length) {
|
||||
throw new Error(`No maintainer in "${dir}".`);
|
||||
}
|
||||
for (const author of Object.values(routes)) {
|
||||
if (!Array.isArray(author)) {
|
||||
throw new TypeError(`Maintainers' name should be an array in "${dir}".`);
|
||||
}
|
||||
// check for [], [''] or ['Someone', '']
|
||||
if (author.length < 1 || author.includes('')) {
|
||||
throw new Error(`Empty maintainer in "${dir}".`);
|
||||
}
|
||||
}
|
||||
|
||||
for (const key in routes) {
|
||||
maintainers['/' + dir + (key.endsWith('/') ? key.substring(0, key.length - 1) : key)] = routes[key];
|
||||
}
|
||||
}
|
||||
|
||||
// 兼容旧版路由
|
||||
const router = require('../../lib/router.js');
|
||||
for (const e of router.stack) {
|
||||
if (!maintainers[e.path]) {
|
||||
maintainers[e.path] = [];
|
||||
}
|
||||
}
|
||||
|
||||
const maintainer = Object.keys(maintainers)
|
||||
.sort()
|
||||
.reduce((obj, path) => {
|
||||
obj[path] = maintainers[path];
|
||||
return obj;
|
||||
}, {});
|
||||
|
||||
const count = Object.keys(maintainer).length;
|
||||
const uniqueMaintainer = new Set();
|
||||
|
||||
@@ -2,7 +2,7 @@ const fs = require('fs');
|
||||
const path = require('path');
|
||||
const targetJs = path.join(__dirname, '../../assets/build/radar-rules.js');
|
||||
const targetJson = path.join(__dirname, '../../assets/build/radar-rules.json');
|
||||
const dirname = __dirname + '/v2';
|
||||
const dirname = path.join(__dirname + '../../../lib/v2');
|
||||
const toSource = require('tosource');
|
||||
|
||||
// Namespaces that do not require radar.js
|
||||
|
||||
Reference in New Issue
Block a user