mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-09-01 14:57:14 +08:00
417ab04f06
* chore(deps-dev): bump eslint-plugin-unicorn from 66.0.0 to 68.0.0 Bumps [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) from 66.0.0 to 68.0.0. - [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases) - [Commits](https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v66.0.0...v68.0.0) --- updated-dependencies: - dependency-name: eslint-plugin-unicorn dependency-version: 68.0.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * style: fix no-useless-coercion * style: fix prefer-boolean-return * style: fix no-useless-logical-operand * style: fix prefer-single-replace * style: fix consistent-conditional-object-spread * style: fix no-useless-else * style: fix prefer-unicode-code-point-escapes * style: fix operator-assignment * style: fix prefer-continue * style: fix prefer-math-constants * style: fix prefer-hoisting-branch-code * style: fix prefer-array-slice * style: fix consistent-class-member-order * style: fix no-return-array-push * style: fix prefer-promise-with-resolvers * style: fix no-array-concat-in-loop * style: fix no-loop-iterable-mutation * style: fix no-invalid-argument-count * style: fix no-duplicate-if-branches * style: fix prefer-else-if * style: fix no-unreadable-for-of-expression * style: fix logical-assignment-operators * style: fix default-export-style * style: revert false positve in prefer-type-literal-last in #22274 * style: fix arrow-body-style * style: add v68 recommended preset * style: refactor GraphQL queries to use template literals for better readability --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tony <TonyRL@users.noreply.github.com>
90 lines
3.0 KiB
TypeScript
90 lines
3.0 KiB
TypeScript
import type { HeaderGeneratorOptions } from 'header-generator';
|
|
import { HeaderGenerator, PRESETS } from 'header-generator';
|
|
|
|
export { PRESETS } from 'header-generator';
|
|
|
|
/**
|
|
* Checks if the generated headers are valid (no unwanted UA strings, required headers present)
|
|
*
|
|
* @param {Record<string, string>} headers The generated headers to validate
|
|
* @param {string} browser The browser type (used to determine which filters to apply)
|
|
* @returns {boolean} True if the headers are valid
|
|
*/
|
|
const isValidHeader = (headers: Record<string, string>, browser: string): boolean => {
|
|
browser = browser.toLowerCase();
|
|
const userAgent = headers['user-agent'];
|
|
|
|
if (browser === 'chrome') {
|
|
if (userAgent.includes('Chrome-Lighthouse') || userAgent.includes('Gener8') || userAgent.includes('HeadlessChrome') || userAgent.includes('SMTBot') || userAgent.includes('Electron') || userAgent.includes('Code')) {
|
|
return false;
|
|
}
|
|
if (!(headers['sec-ch-ua'] && headers['sec-ch-ua-mobile'] && headers['sec-ch-ua-platform'])) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return !(browser === 'safari' && userAgent.includes('Applebot'));
|
|
};
|
|
|
|
/**
|
|
* @param {Partial<HeaderGeneratorOptions>} preset Preset from header-generator package (defaults to PRESETS.MODERN_MACOS_CHROME)
|
|
* @returns Headers object with user-agent and additional headers
|
|
*/
|
|
// Cache for HeaderGenerator instances per preset
|
|
const generatorCache = new Map<string, HeaderGenerator>();
|
|
|
|
export const generateHeaders = (preset: Partial<HeaderGeneratorOptions> = PRESETS.MODERN_MACOS_CHROME) => {
|
|
const cacheKey = JSON.stringify(preset);
|
|
let generator = generatorCache.get(cacheKey);
|
|
if (!generator) {
|
|
generator = new HeaderGenerator(preset);
|
|
generatorCache.set(cacheKey, generator);
|
|
}
|
|
let headers = generator.getHeaders();
|
|
|
|
const userAgent = headers['user-agent'];
|
|
let detectedBrowser: string;
|
|
if (userAgent.includes('Firefox')) {
|
|
detectedBrowser = 'firefox';
|
|
} else if (userAgent.includes('Safari') && !userAgent.includes('Chrome')) {
|
|
detectedBrowser = 'safari';
|
|
} else {
|
|
detectedBrowser = 'chrome';
|
|
}
|
|
|
|
let attempts = 0;
|
|
while (!isValidHeader(headers, detectedBrowser) && attempts < 10) {
|
|
headers = generator.getHeaders();
|
|
attempts++;
|
|
}
|
|
|
|
return headers;
|
|
};
|
|
|
|
/** List of headers to include from header-generator output
|
|
* excluding headers that are typically set manually or by the environment
|
|
*/
|
|
export const generatedHeaders = new Set([
|
|
// 'content-length',
|
|
// 'cache-control',
|
|
// sec-ch-ua (chrome client hints)
|
|
'sec-ch-ua',
|
|
'sec-ch-ua-mobile',
|
|
'sec-ch-ua-platform',
|
|
// 'origin',
|
|
// 'content-type',
|
|
'upgrade-insecure-requests',
|
|
// 'user-agent', // handle manually
|
|
'accept',
|
|
// sec-fetch (fetch metadata)
|
|
'sec-fetch-site',
|
|
'sec-fetch-mode',
|
|
'sec-fetch-user',
|
|
'sec-fetch-dest',
|
|
// 'referer', // handle manually
|
|
'accept-encoding',
|
|
'accept-language',
|
|
// 'cookie',
|
|
'priority',
|
|
]);
|