| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850 |
- /**
- * @fileoverview Restrict usage of specified node imports.
- * @author Guy Ellis
- */
- "use strict";
- //------------------------------------------------------------------------------
- // Requirements
- //------------------------------------------------------------------------------
- const astUtils = require("./utils/ast-utils");
- //------------------------------------------------------------------------------
- // Rule Definition
- //------------------------------------------------------------------------------
- const ignore = require("ignore");
- const arrayOfStringsOrObjects = {
- type: "array",
- items: {
- anyOf: [
- { type: "string" },
- {
- type: "object",
- properties: {
- name: { type: "string" },
- message: {
- type: "string",
- minLength: 1,
- },
- importNames: {
- type: "array",
- items: {
- type: "string",
- },
- },
- allowImportNames: {
- type: "array",
- items: {
- type: "string",
- },
- },
- allowTypeImports: {
- type: "boolean",
- description:
- "Whether to allow type-only imports for a path.",
- },
- },
- additionalProperties: false,
- required: ["name"],
- not: { required: ["importNames", "allowImportNames"] },
- },
- ],
- },
- uniqueItems: true,
- };
- const arrayOfStringsOrObjectPatterns = {
- anyOf: [
- {
- type: "array",
- items: {
- type: "string",
- },
- uniqueItems: true,
- },
- {
- type: "array",
- items: {
- type: "object",
- properties: {
- importNames: {
- type: "array",
- items: {
- type: "string",
- },
- minItems: 1,
- uniqueItems: true,
- },
- allowImportNames: {
- type: "array",
- items: {
- type: "string",
- },
- minItems: 1,
- uniqueItems: true,
- },
- group: {
- type: "array",
- items: {
- type: "string",
- },
- minItems: 1,
- uniqueItems: true,
- },
- regex: {
- type: "string",
- },
- importNamePattern: {
- type: "string",
- },
- allowImportNamePattern: {
- type: "string",
- },
- message: {
- type: "string",
- minLength: 1,
- },
- caseSensitive: {
- type: "boolean",
- },
- allowTypeImports: {
- type: "boolean",
- description:
- "Whether to allow type-only imports for a pattern.",
- },
- },
- additionalProperties: false,
- not: {
- anyOf: [
- { required: ["importNames", "allowImportNames"] },
- {
- required: [
- "importNamePattern",
- "allowImportNamePattern",
- ],
- },
- { required: ["importNames", "allowImportNamePattern"] },
- { required: ["importNamePattern", "allowImportNames"] },
- {
- required: [
- "allowImportNames",
- "allowImportNamePattern",
- ],
- },
- ],
- },
- oneOf: [{ required: ["group"] }, { required: ["regex"] }],
- },
- uniqueItems: true,
- },
- ],
- };
- /** @type {import('../types').Rule.RuleModule} */
- module.exports = {
- meta: {
- type: "suggestion",
- dialects: ["typescript", "javascript"],
- language: "javascript",
- docs: {
- description: "Disallow specified modules when loaded by `import`",
- recommended: false,
- url: "https://eslint.org/docs/latest/rules/no-restricted-imports",
- },
- messages: {
- path: "'{{importSource}}' import is restricted from being used.",
- pathWithCustomMessage:
- // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period
- "'{{importSource}}' import is restricted from being used. {{customMessage}}",
- patterns:
- "'{{importSource}}' import is restricted from being used by a pattern.",
- patternWithCustomMessage:
- // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period
- "'{{importSource}}' import is restricted from being used by a pattern. {{customMessage}}",
- patternAndImportName:
- "'{{importName}}' import from '{{importSource}}' is restricted from being used by a pattern.",
- patternAndImportNameWithCustomMessage:
- // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period
- "'{{importName}}' import from '{{importSource}}' is restricted from being used by a pattern. {{customMessage}}",
- patternAndEverything:
- "* import is invalid because '{{importNames}}' from '{{importSource}}' is restricted from being used by a pattern.",
- patternAndEverythingWithRegexImportName:
- "* import is invalid because import name matching '{{importNames}}' pattern from '{{importSource}}' is restricted from being used.",
- patternAndEverythingWithCustomMessage:
- // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period
- "* import is invalid because '{{importNames}}' from '{{importSource}}' is restricted from being used by a pattern. {{customMessage}}",
- patternAndEverythingWithRegexImportNameAndCustomMessage:
- // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period
- "* import is invalid because import name matching '{{importNames}}' pattern from '{{importSource}}' is restricted from being used. {{customMessage}}",
- everything:
- "* import is invalid because '{{importNames}}' from '{{importSource}}' is restricted.",
- everythingWithCustomMessage:
- // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period
- "* import is invalid because '{{importNames}}' from '{{importSource}}' is restricted. {{customMessage}}",
- importName:
- "'{{importName}}' import from '{{importSource}}' is restricted.",
- importNameWithCustomMessage:
- // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period
- "'{{importName}}' import from '{{importSource}}' is restricted. {{customMessage}}",
- allowedImportName:
- "'{{importName}}' import from '{{importSource}}' is restricted because only '{{allowedImportNames}}' import(s) is/are allowed.",
- allowedImportNameWithCustomMessage:
- // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period
- "'{{importName}}' import from '{{importSource}}' is restricted because only '{{allowedImportNames}}' import(s) is/are allowed. {{customMessage}}",
- everythingWithAllowImportNames:
- "* import is invalid because only '{{allowedImportNames}}' from '{{importSource}}' is/are allowed.",
- everythingWithAllowImportNamesAndCustomMessage:
- // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period
- "* import is invalid because only '{{allowedImportNames}}' from '{{importSource}}' is/are allowed. {{customMessage}}",
- allowedImportNamePattern:
- "'{{importName}}' import from '{{importSource}}' is restricted because only imports that match the pattern '{{allowedImportNamePattern}}' are allowed from '{{importSource}}'.",
- allowedImportNamePatternWithCustomMessage:
- // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period
- "'{{importName}}' import from '{{importSource}}' is restricted because only imports that match the pattern '{{allowedImportNamePattern}}' are allowed from '{{importSource}}'. {{customMessage}}",
- everythingWithAllowedImportNamePattern:
- "* import is invalid because only imports that match the pattern '{{allowedImportNamePattern}}' from '{{importSource}}' are allowed.",
- everythingWithAllowedImportNamePatternWithCustomMessage:
- // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period
- "* import is invalid because only imports that match the pattern '{{allowedImportNamePattern}}' from '{{importSource}}' are allowed. {{customMessage}}",
- },
- schema: {
- anyOf: [
- arrayOfStringsOrObjects,
- {
- type: "array",
- items: [
- {
- type: "object",
- properties: {
- paths: arrayOfStringsOrObjects,
- patterns: arrayOfStringsOrObjectPatterns,
- },
- additionalProperties: false,
- },
- ],
- additionalItems: false,
- },
- ],
- },
- },
- create(context) {
- const sourceCode = context.sourceCode;
- const options = Array.isArray(context.options) ? context.options : [];
- const isPathAndPatternsObject =
- typeof options[0] === "object" &&
- (Object.hasOwn(options[0], "paths") ||
- Object.hasOwn(options[0], "patterns"));
- const restrictedPaths =
- (isPathAndPatternsObject ? options[0].paths : context.options) ||
- [];
- const groupedRestrictedPaths = restrictedPaths.reduce(
- (memo, importSource) => {
- const path =
- typeof importSource === "string"
- ? importSource
- : importSource.name;
- if (!memo[path]) {
- memo[path] = [];
- }
- if (typeof importSource === "string") {
- memo[path].push({});
- } else {
- memo[path].push({
- message: importSource.message,
- importNames: importSource.importNames,
- allowImportNames: importSource.allowImportNames,
- allowTypeImports: importSource.allowTypeImports,
- });
- }
- return memo;
- },
- Object.create(null),
- );
- // Handle patterns too, either as strings or groups
- let restrictedPatterns =
- (isPathAndPatternsObject ? options[0].patterns : []) || [];
- // standardize to array of objects if we have an array of strings
- if (
- restrictedPatterns.length > 0 &&
- typeof restrictedPatterns[0] === "string"
- ) {
- restrictedPatterns = [{ group: restrictedPatterns }];
- }
- // relative paths are supported for this rule
- const restrictedPatternGroups = restrictedPatterns.map(
- ({
- group,
- regex,
- message,
- caseSensitive,
- importNames,
- importNamePattern,
- allowImportNames,
- allowImportNamePattern,
- allowTypeImports,
- }) => ({
- ...(group
- ? {
- matcher: ignore({
- allowRelativePaths: true,
- ignorecase: !caseSensitive,
- }).add(group),
- }
- : {}),
- ...(typeof regex === "string"
- ? {
- regexMatcher: new RegExp(
- regex,
- caseSensitive ? "u" : "iu",
- ),
- }
- : {}),
- customMessage: message,
- importNames,
- importNamePattern,
- allowImportNames,
- allowImportNamePattern,
- allowTypeImports,
- }),
- );
- // if no imports are restricted we don't need to check
- if (
- Object.keys(restrictedPaths).length === 0 &&
- restrictedPatternGroups.length === 0
- ) {
- return {};
- }
- /**
- * Check if the node is a type-only import
- * @param {ASTNode} node The node to check
- * @returns {boolean} Whether the node is a type-only import
- */
- function isTypeOnlyImport(node) {
- return (
- node.importKind === "type" ||
- (node.specifiers?.length > 0 &&
- node.specifiers.every(
- specifier => specifier.importKind === "type",
- ))
- );
- }
- /**
- * Check if a specifier is type-only
- * @param {ASTNode} specifier The specifier to check
- * @returns {boolean} Whether the specifier is type-only
- */
- function isTypeOnlySpecifier(specifier) {
- return (
- specifier.importKind === "type" ||
- specifier.exportKind === "type"
- );
- }
- /**
- * Check if the node is a type-only export
- * @param {ASTNode} node The node to check
- * @returns {boolean} Whether the node is a type-only export
- */
- function isTypeOnlyExport(node) {
- return (
- node.exportKind === "type" ||
- (node.specifiers?.length > 0 &&
- node.specifiers.every(
- specifier => specifier.exportKind === "type",
- ))
- );
- }
- /**
- * Report a restricted path.
- * @param {string} importSource path of the import
- * @param {Map<string,Object[]>} importNames Map of import names that are being imported
- * @param {node} node representing the restricted path reference
- * @returns {void}
- * @private
- */
- function checkRestrictedPathAndReport(importSource, importNames, node) {
- if (!Object.hasOwn(groupedRestrictedPaths, importSource)) {
- return;
- }
- groupedRestrictedPaths[importSource].forEach(
- restrictedPathEntry => {
- const customMessage = restrictedPathEntry.message;
- const restrictedImportNames =
- restrictedPathEntry.importNames;
- const allowedImportNames =
- restrictedPathEntry.allowImportNames;
- const allowTypeImports =
- restrictedPathEntry.allowTypeImports;
- // Skip if this is a type-only import and it's allowed for this specific entry
- if (
- allowTypeImports &&
- (node.type === "ImportDeclaration" ||
- node.type === "TSImportEqualsDeclaration") &&
- isTypeOnlyImport(node)
- ) {
- return;
- }
- // Skip if this is a type-only export and it's allowed for this specific entry
- if (
- allowTypeImports &&
- (node.type === "ExportNamedDeclaration" ||
- node.type === "ExportAllDeclaration") &&
- isTypeOnlyExport(node)
- ) {
- return;
- }
- if (!restrictedImportNames && !allowedImportNames) {
- context.report({
- node,
- messageId: customMessage
- ? "pathWithCustomMessage"
- : "path",
- data: {
- importSource,
- customMessage,
- },
- });
- return;
- }
- importNames.forEach((specifiers, importName) => {
- if (importName === "*") {
- const [specifier] = specifiers;
- if (restrictedImportNames) {
- context.report({
- node,
- messageId: customMessage
- ? "everythingWithCustomMessage"
- : "everything",
- loc: specifier.loc,
- data: {
- importSource,
- importNames: restrictedImportNames,
- customMessage,
- },
- });
- } else if (allowedImportNames) {
- context.report({
- node,
- messageId: customMessage
- ? "everythingWithAllowImportNamesAndCustomMessage"
- : "everythingWithAllowImportNames",
- loc: specifier.loc,
- data: {
- importSource,
- allowedImportNames,
- customMessage,
- },
- });
- }
- return;
- }
- if (
- restrictedImportNames &&
- restrictedImportNames.includes(importName)
- ) {
- specifiers.forEach(specifier => {
- // Skip if this is a type-only import specifier and type imports are allowed
- if (
- allowTypeImports &&
- isTypeOnlySpecifier(specifier.specifier)
- ) {
- return;
- }
- context.report({
- node,
- messageId: customMessage
- ? "importNameWithCustomMessage"
- : "importName",
- loc: specifier.loc,
- data: {
- importSource,
- customMessage,
- importName,
- },
- });
- });
- }
- if (
- allowedImportNames &&
- !allowedImportNames.includes(importName)
- ) {
- specifiers.forEach(specifier => {
- // Skip if this is a type-only import specifier and type imports are allowed
- if (
- allowTypeImports &&
- isTypeOnlySpecifier(specifier.specifier)
- ) {
- return;
- }
- context.report({
- node,
- loc: specifier.loc,
- messageId: customMessage
- ? "allowedImportNameWithCustomMessage"
- : "allowedImportName",
- data: {
- importSource,
- customMessage,
- importName,
- allowedImportNames,
- },
- });
- });
- }
- });
- },
- );
- }
- /**
- * Report a restricted path specifically for patterns.
- * @param {node} node representing the restricted path reference
- * @param {Object} group contains an Ignore instance for paths, the customMessage to show on failure,
- * and any restricted import names that have been specified in the config
- * @param {Map<string,Object[]>} importNames Map of import names that are being imported
- * @param {string} importSource the import source string
- * @returns {void}
- * @private
- */
- function reportPathForPatterns(node, group, importNames, importSource) {
- // Skip if this is a type-only import and it's allowed
- if (
- group.allowTypeImports &&
- (node.type === "ImportDeclaration" ||
- node.type === "TSImportEqualsDeclaration") &&
- isTypeOnlyImport(node)
- ) {
- return;
- }
- // Skip if this is a type-only export and it's allowed
- if (
- group.allowTypeImports &&
- (node.type === "ExportNamedDeclaration" ||
- node.type === "ExportAllDeclaration") &&
- isTypeOnlyExport(node)
- ) {
- return;
- }
- const customMessage = group.customMessage;
- const restrictedImportNames = group.importNames;
- const restrictedImportNamePattern = group.importNamePattern
- ? new RegExp(group.importNamePattern, "u")
- : null;
- const allowedImportNames = group.allowImportNames;
- const allowedImportNamePattern = group.allowImportNamePattern
- ? new RegExp(group.allowImportNamePattern, "u")
- : null;
- /**
- * If we are not restricting to any specific import names and just the pattern itself,
- * report the error and move on
- */
- if (
- !restrictedImportNames &&
- !allowedImportNames &&
- !restrictedImportNamePattern &&
- !allowedImportNamePattern
- ) {
- context.report({
- node,
- messageId: customMessage
- ? "patternWithCustomMessage"
- : "patterns",
- data: {
- importSource,
- customMessage,
- },
- });
- return;
- }
- importNames.forEach((specifiers, importName) => {
- if (importName === "*") {
- const [specifier] = specifiers;
- if (restrictedImportNames) {
- context.report({
- node,
- messageId: customMessage
- ? "patternAndEverythingWithCustomMessage"
- : "patternAndEverything",
- loc: specifier.loc,
- data: {
- importSource,
- importNames: restrictedImportNames,
- customMessage,
- },
- });
- } else if (allowedImportNames) {
- context.report({
- node,
- messageId: customMessage
- ? "everythingWithAllowImportNamesAndCustomMessage"
- : "everythingWithAllowImportNames",
- loc: specifier.loc,
- data: {
- importSource,
- allowedImportNames,
- customMessage,
- },
- });
- } else if (allowedImportNamePattern) {
- context.report({
- node,
- messageId: customMessage
- ? "everythingWithAllowedImportNamePatternWithCustomMessage"
- : "everythingWithAllowedImportNamePattern",
- loc: specifier.loc,
- data: {
- importSource,
- allowedImportNamePattern,
- customMessage,
- },
- });
- } else {
- context.report({
- node,
- messageId: customMessage
- ? "patternAndEverythingWithRegexImportNameAndCustomMessage"
- : "patternAndEverythingWithRegexImportName",
- loc: specifier.loc,
- data: {
- importSource,
- importNames: restrictedImportNamePattern,
- customMessage,
- },
- });
- }
- return;
- }
- if (
- (restrictedImportNames &&
- restrictedImportNames.includes(importName)) ||
- (restrictedImportNamePattern &&
- restrictedImportNamePattern.test(importName))
- ) {
- specifiers.forEach(specifier => {
- // Skip if this is a type-only import specifier and type imports are allowed
- if (
- group.allowTypeImports &&
- isTypeOnlySpecifier(specifier.specifier)
- ) {
- return;
- }
- context.report({
- node,
- messageId: customMessage
- ? "patternAndImportNameWithCustomMessage"
- : "patternAndImportName",
- loc: specifier.loc,
- data: {
- importSource,
- customMessage,
- importName,
- },
- });
- });
- }
- if (
- allowedImportNames &&
- !allowedImportNames.includes(importName)
- ) {
- specifiers.forEach(specifier => {
- // Skip if this is a type-only import specifier and type imports are allowed
- if (
- group.allowTypeImports &&
- isTypeOnlySpecifier(specifier.specifier)
- ) {
- return;
- }
- context.report({
- node,
- messageId: customMessage
- ? "allowedImportNameWithCustomMessage"
- : "allowedImportName",
- loc: specifier.loc,
- data: {
- importSource,
- customMessage,
- importName,
- allowedImportNames,
- },
- });
- });
- } else if (
- allowedImportNamePattern &&
- !allowedImportNamePattern.test(importName)
- ) {
- specifiers.forEach(specifier => {
- // Skip if this is a type-only import specifier and type imports are allowed
- if (
- group.allowTypeImports &&
- isTypeOnlySpecifier(specifier.specifier)
- ) {
- return;
- }
- context.report({
- node,
- messageId: customMessage
- ? "allowedImportNamePatternWithCustomMessage"
- : "allowedImportNamePattern",
- loc: specifier.loc,
- data: {
- importSource,
- customMessage,
- importName,
- allowedImportNamePattern,
- },
- });
- });
- }
- });
- }
- /**
- * Check if the given importSource is restricted by a pattern.
- * @param {string} importSource path of the import
- * @param {Object} group contains a Ignore instance for paths, and the customMessage to show if it fails
- * @returns {boolean} whether the variable is a restricted pattern or not
- * @private
- */
- function isRestrictedPattern(importSource, group) {
- return group.regexMatcher
- ? group.regexMatcher.test(importSource)
- : group.matcher.ignores(importSource);
- }
- /**
- * Checks a node to see if any problems should be reported.
- * @param {ASTNode} node The node to check.
- * @returns {void}
- * @private
- */
- function checkNode(node) {
- const importSource = node.source.value.trim();
- const importNames = new Map();
- if (node.type === "ExportAllDeclaration") {
- const starToken = sourceCode.getFirstToken(node, 1);
- importNames.set("*", [{ loc: starToken.loc }]);
- } else if (node.specifiers) {
- for (const specifier of node.specifiers) {
- let name;
- const specifierData = { loc: specifier.loc, specifier };
- if (specifier.type === "ImportDefaultSpecifier") {
- name = "default";
- } else if (specifier.type === "ImportNamespaceSpecifier") {
- name = "*";
- } else if (specifier.imported) {
- name = astUtils.getModuleExportName(specifier.imported);
- } else if (specifier.local) {
- name = astUtils.getModuleExportName(specifier.local);
- }
- if (typeof name === "string") {
- if (importNames.has(name)) {
- importNames.get(name).push(specifierData);
- } else {
- importNames.set(name, [specifierData]);
- }
- }
- }
- }
- checkRestrictedPathAndReport(importSource, importNames, node);
- restrictedPatternGroups.forEach(group => {
- if (isRestrictedPattern(importSource, group)) {
- reportPathForPatterns(
- node,
- group,
- importNames,
- importSource,
- );
- }
- });
- }
- return {
- ImportDeclaration: checkNode,
- ExportNamedDeclaration(node) {
- if (node.source) {
- checkNode(node);
- }
- },
- ExportAllDeclaration: checkNode,
- // Add support for TypeScript import equals declarations
- TSImportEqualsDeclaration(node) {
- if (node.moduleReference.type === "TSExternalModuleReference") {
- const importSource = node.moduleReference.expression.value;
- const importNames = new Map();
- // Use existing logic with the actual node
- checkRestrictedPathAndReport(
- importSource,
- importNames,
- node,
- );
- restrictedPatternGroups.forEach(group => {
- if (isRestrictedPattern(importSource, group)) {
- reportPathForPatterns(
- node,
- group,
- importNames,
- importSource,
- );
- }
- });
- }
- },
- };
- },
- };
|