-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathno-goto-without-base.ts
134 lines (127 loc) · 3.78 KB
/
no-goto-without-base.ts
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
import type { TSESTree } from '@typescript-eslint/types';
import { createRule } from '../utils';
import { ReferenceTracker } from '@eslint-community/eslint-utils';
import { getSourceCode } from '../utils/compat';
import { findVariable } from '../utils/ast-utils';
import type { RuleContext } from '../types';
export default createRule('no-goto-without-base', {
meta: {
docs: {
description: 'disallow using goto() without the base path',
category: 'SvelteKit',
recommended: false
},
schema: [],
messages: {
isNotPrefixedWithBasePath:
"Found a goto() call with a url that isn't prefixed with the base path."
},
type: 'suggestion'
},
create(context) {
return {
Program() {
const referenceTracker = new ReferenceTracker(
getSourceCode(context).scopeManager.globalScope!
);
const basePathNames = extractBasePathReferences(referenceTracker, context);
for (const gotoCall of extractGotoReferences(referenceTracker)) {
if (gotoCall.arguments.length < 1) {
continue;
}
const path = gotoCall.arguments[0];
switch (path.type) {
case 'BinaryExpression':
checkBinaryExpression(context, path, basePathNames);
break;
case 'Literal':
checkLiteral(context, path);
break;
case 'TemplateLiteral':
checkTemplateLiteral(context, path, basePathNames);
break;
default:
context.report({ loc: path.loc, messageId: 'isNotPrefixedWithBasePath' });
}
}
}
};
}
});
function checkBinaryExpression(
context: RuleContext,
path: TSESTree.BinaryExpression,
basePathNames: Set<TSESTree.Identifier>
): void {
if (path.left.type !== 'Identifier' || !basePathNames.has(path.left)) {
context.report({ loc: path.loc, messageId: 'isNotPrefixedWithBasePath' });
}
}
function checkTemplateLiteral(
context: RuleContext,
path: TSESTree.TemplateLiteral,
basePathNames: Set<TSESTree.Identifier>
): void {
const startingIdentifier = extractStartingIdentifier(path);
if (startingIdentifier === undefined || !basePathNames.has(startingIdentifier)) {
context.report({ loc: path.loc, messageId: 'isNotPrefixedWithBasePath' });
}
}
function checkLiteral(context: RuleContext, path: TSESTree.Literal): void {
const absolutePathRegex = /^(?:[+a-z]+:)?\/\//i;
if (!absolutePathRegex.test(path.value?.toString() ?? '')) {
context.report({ loc: path.loc, messageId: 'isNotPrefixedWithBasePath' });
}
}
function extractStartingIdentifier(
templateLiteral: TSESTree.TemplateLiteral
): TSESTree.Identifier | undefined {
const literalParts = [...templateLiteral.expressions, ...templateLiteral.quasis].sort((a, b) =>
a.range[0] < b.range[0] ? -1 : 1
);
for (const part of literalParts) {
if (part.type === 'TemplateElement' && part.value.raw === '') {
// Skip empty quasi in the begining
continue;
}
if (part.type === 'Identifier') {
return part;
}
return undefined;
}
return undefined;
}
function extractGotoReferences(referenceTracker: ReferenceTracker): TSESTree.CallExpression[] {
return Array.from(
referenceTracker.iterateEsmReferences({
'$app/navigation': {
[ReferenceTracker.ESM]: true,
goto: {
[ReferenceTracker.CALL]: true
}
}
}),
({ node }) => node
);
}
function extractBasePathReferences(
referenceTracker: ReferenceTracker,
context: RuleContext
): Set<TSESTree.Identifier> {
const set = new Set<TSESTree.Identifier>();
for (const { node } of referenceTracker.iterateEsmReferences({
'$app/paths': {
[ReferenceTracker.ESM]: true,
base: {
[ReferenceTracker.READ]: true
}
}
})) {
const variable = findVariable(context, (node as TSESTree.ImportSpecifier).local);
if (!variable) continue;
for (const reference of variable.references) {
if (reference.identifier.type === 'Identifier') set.add(reference.identifier);
}
}
return set;
}