-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathno-restricted-paths.js
143 lines (121 loc) · 4.12 KB
/
no-restricted-paths.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
import containsPath from 'contains-path'
import path from 'path'
import resolve from 'eslint-module-utils/resolve'
import isStaticRequire from '../core/staticRequire'
import docsUrl from '../docsUrl'
import importType from '../core/importType'
const allowedImportKindsSchema = {
type: 'array',
items: {
type: 'string',
},
uniqueItems: true,
}
module.exports = {
meta: {
type: 'problem',
docs: {
url: docsUrl('no-restricted-paths'),
},
schema: [
{
type: 'object',
properties: {
zones: {
type: 'array',
minItems: 1,
items: {
type: 'object',
properties: {
target: { type: 'string' },
from: { type: 'string' },
except: {
type: 'array',
items: {
type: 'string',
},
uniqueItems: true,
},
allowedImportKinds: allowedImportKindsSchema,
message: { type: 'string' },
},
additionalProperties: false,
},
},
basePath: { type: 'string' },
allowedImportKinds: allowedImportKindsSchema,
},
additionalProperties: false,
},
],
},
create: function noRestrictedPaths(context) {
const options = context.options[0] || {}
const restrictedPaths = options.zones || []
const basePath = options.basePath || process.cwd()
const allowedImportKinds = options.allowedImportKinds || []
const currentFilename = context.getFilename()
const matchingZones = restrictedPaths.filter((zone) => {
const targetPath = path.resolve(basePath, zone.target)
return containsPath(currentFilename, targetPath)
})
function isValidExceptionPath(absoluteFromPath, absoluteExceptionPath) {
const relativeExceptionPath = path.relative(absoluteFromPath, absoluteExceptionPath)
return importType(relativeExceptionPath, context) !== 'parent'
}
function reportInvalidExceptionPath(node) {
context.report({
node,
message: 'Restricted path exceptions must be descendants of the configured `from` path for that zone.',
})
}
function checkForRestrictedImportPath(importPathNode, importNode) {
const absoluteImportPath = resolve(importPathNode.value, context)
if (!absoluteImportPath) {
return
}
matchingZones.forEach((zone) => {
const exceptionPaths = zone.except || []
const absoluteFrom = path.resolve(basePath, zone.from)
if (!containsPath(absoluteImportPath, absoluteFrom)) {
return
}
const absoluteExceptionPaths = exceptionPaths.map((exceptionPath) =>
path.resolve(absoluteFrom, exceptionPath)
)
const hasValidExceptionPaths = absoluteExceptionPaths
.every((absoluteExceptionPath) => isValidExceptionPath(absoluteFrom, absoluteExceptionPath))
if (!hasValidExceptionPaths) {
reportInvalidExceptionPath(importPathNode)
return
}
const pathIsExcepted = absoluteExceptionPaths
.some((absoluteExceptionPath) => containsPath(absoluteImportPath, absoluteExceptionPath))
if (pathIsExcepted) {
return
}
const typeIsExpected = (zone.allowedImportKinds || allowedImportKinds)
.some((kind) => kind === importNode.importKind)
if (typeIsExpected) {
return
}
context.report({
node: importPathNode,
message: `Unexpected path "{{importPath}}" imported in restricted zone.${zone.message ? ` ${zone.message}` : ''}`,
data: { importPath: importPathNode.value },
})
})
}
return {
ImportDeclaration(node) {
checkForRestrictedImportPath(node.source, node)
},
CallExpression(node) {
if (isStaticRequire(node)) {
const [ firstArgument ] = node.arguments
checkForRestrictedImportPath(firstArgument, node)
}
},
}
},
}