-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathdot_notation.go
More file actions
459 lines (397 loc) · 13 KB
/
Copy pathdot_notation.go
File metadata and controls
459 lines (397 loc) · 13 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
package dot_notation
import (
"fmt"
"regexp"
"strings"
"github.com/microsoft/typescript-go/shim/ast"
"github.com/microsoft/typescript-go/shim/checker"
"github.com/microsoft/typescript-go/shim/core"
"github.com/microsoft/typescript-go/shim/scanner"
"github.com/web-infra-dev/rslint/internal/rule"
"github.com/web-infra-dev/rslint/internal/utils"
)
type DotNotationOptions struct {
AllowIndexSignaturePropertyAccess bool `json:"allowIndexSignaturePropertyAccess"`
AllowKeywords bool `json:"allowKeywords"`
AllowPattern string `json:"allowPattern"`
AllowPrivateClassPropertyAccess bool `json:"allowPrivateClassPropertyAccess"`
AllowProtectedClassPropertyAccess bool `json:"allowProtectedClassPropertyAccess"`
}
var DotNotationRule = rule.Rule{
Name: "dot-notation",
Run: func(ctx rule.RuleContext, options any) rule.RuleListeners {
opts := DotNotationOptions{
AllowKeywords: true,
AllowIndexSignaturePropertyAccess: false,
AllowPattern: "",
AllowPrivateClassPropertyAccess: false,
AllowProtectedClassPropertyAccess: false,
}
// Parse options with dual-format support (handles both array and object formats)
if options != nil {
var optsMap map[string]interface{}
var ok bool
// Handle array format: [{ option: value }]
if optArray, isArray := options.([]interface{}); isArray && len(optArray) > 0 {
optsMap, ok = optArray[0].(map[string]interface{})
} else {
// Handle direct object format: { option: value }
optsMap, ok = options.(map[string]interface{})
}
if ok {
if v, ok := optsMap["allowKeywords"].(bool); ok {
opts.AllowKeywords = v
}
if v, ok := optsMap["allowIndexSignaturePropertyAccess"].(bool); ok {
opts.AllowIndexSignaturePropertyAccess = v
}
if v, ok := optsMap["allowPattern"].(string); ok {
opts.AllowPattern = v
}
if v, ok := optsMap["allowPrivateClassPropertyAccess"].(bool); ok {
opts.AllowPrivateClassPropertyAccess = v
}
if v, ok := optsMap["allowProtectedClassPropertyAccess"].(bool); ok {
opts.AllowProtectedClassPropertyAccess = v
}
}
}
// Check if noPropertyAccessFromIndexSignature is enabled
compilerOptions := ctx.Program.Options()
allowIndexSignaturePropertyAccess := opts.AllowIndexSignaturePropertyAccess ||
compilerOptions.NoPropertyAccessFromIndexSignature.IsTrue()
// Compile pattern regex if provided
var patternRegex *regexp.Regexp
if opts.AllowPattern != "" {
patternRegex, _ = regexp.Compile(opts.AllowPattern)
}
return rule.RuleListeners{
ast.KindElementAccessExpression: func(node *ast.Node) {
checkNode(ctx, node, opts, allowIndexSignaturePropertyAccess, patternRegex)
},
ast.KindPropertyAccessExpression: func(node *ast.Node) {
if !opts.AllowKeywords {
checkPropertyAccessKeywords(ctx, node)
}
},
}
},
}
func checkNode(ctx rule.RuleContext, node *ast.Node, opts DotNotationOptions, allowIndexSignaturePropertyAccess bool, patternRegex *regexp.Regexp) {
if !ast.IsElementAccessExpression(node) {
return
}
elementAccess := node.AsElementAccessExpression()
argument := elementAccess.ArgumentExpression
// Only handle string literals, numeric literals, and identifiers that evaluate to strings
var propertyName string
isValidProperty := false
switch argument.Kind {
case ast.KindStringLiteral:
propertyName = argument.AsStringLiteral().Text
isValidProperty = true
case ast.KindNoSubstitutionTemplateLiteral:
// Handle `obj[`foo`]` (no expressions)
propertyName = argument.AsNoSubstitutionTemplateLiteral().Text
isValidProperty = true
case ast.KindNumericLiteral:
// Numeric properties should use bracket notation
return
case ast.KindNullKeyword, ast.KindTrueKeyword, ast.KindFalseKeyword:
// These are allowed as dot notation
propertyName = getKeywordText(argument)
isValidProperty = true
default:
// Other cases (template literals, identifiers, etc.) should keep bracket notation
return
}
if !isValidProperty || propertyName == "" {
return
}
// Check if it's a valid identifier
if !isValidIdentifierName(propertyName) {
return
}
// Check pattern allowlist
if patternRegex != nil && patternRegex.MatchString(propertyName) {
return
}
// Check for keywords
if !opts.AllowKeywords && isReservedWord(propertyName) {
return
}
// Check for private/protected/index signature access
if shouldAllowBracketNotation(ctx, node, propertyName, opts, allowIndexSignaturePropertyAccess) {
return
}
// Report error with fix
ctx.ReportNodeWithFixes(node, rule.RuleMessage{
Id: "useDot",
Description: fmt.Sprintf("['%s'] is better written in dot notation.", propertyName),
}, createFix(ctx, node, propertyName))
}
func checkPropertyAccessKeywords(ctx rule.RuleContext, node *ast.Node) {
if !ast.IsPropertyAccessExpression(node) {
return
}
propertyAccess := node.AsPropertyAccessExpression()
name := propertyAccess.Name()
if !ast.IsIdentifier(name) {
return
}
propertyName := name.AsIdentifier().Text
// Align with typescript-eslint behavior: do not flag some identifiers even when allowKeywords is false
skipKeywords := map[string]bool{
"arguments": true,
"let": true,
"yield": true,
"eval": true,
}
if isReservedWord(propertyName) && !skipKeywords[propertyName] {
ctx.ReportNodeWithFixes(node, rule.RuleMessage{
Id: "useBrackets",
Description: fmt.Sprintf(".%s is a syntax error.", propertyName),
}, createBracketFix(ctx, node, propertyName))
}
}
func shouldAllowBracketNotation(ctx rule.RuleContext, node *ast.Node, propertyName string, opts DotNotationOptions, allowIndexSignaturePropertyAccess bool) bool {
// Enhanced implementation using TypeScript type checker for accurate property analysis
// Get the object being accessed
elementAccess := node.AsElementAccessExpression()
if elementAccess == nil || elementAccess.Expression == nil {
return false
}
// Get the type of the object being accessed
objectType := ctx.TypeChecker.GetNonNullableType(ctx.TypeChecker.GetTypeAtLocation(elementAccess.Expression))
if objectType == nil {
return false
}
// Check for template literal patterns when allowIndexSignaturePropertyAccess is enabled
// This handles cases like `[key: \`key_\${string}\`]` where key_baz should be allowed
if allowIndexSignaturePropertyAccess && hasIndexSignature(ctx, objectType) && matchesTemplateLiteralPattern(ctx, objectType, propertyName) {
return true
}
// If allowPrivateClassPropertyAccess is true, check for actual private properties
if opts.AllowPrivateClassPropertyAccess {
if isPrivateProperty(ctx, objectType, propertyName) {
return true
}
}
// If allowProtectedClassPropertyAccess is true, check for actual protected properties
if opts.AllowProtectedClassPropertyAccess {
if isProtectedProperty(ctx, objectType, propertyName) {
return true
}
}
// If allowIndexSignaturePropertyAccess is true, prefer bracket notation for properties accessed via index signatures
if allowIndexSignaturePropertyAccess {
if utils.IsTypeAnyType(objectType) {
return false
}
// Check if the type has index signatures
if hasIndexSignature(ctx, objectType) {
propSymbol := ctx.TypeChecker.GetPropertyOfType(objectType, propertyName)
// If property is not explicitly declared, allow bracket notation
if propSymbol == nil {
return true
}
}
}
return false
}
// isPrivateProperty checks if a property is private using TypeScript's type checker
func isPrivateProperty(ctx rule.RuleContext, objectType *checker.Type, propertyName string) bool {
if objectType == nil {
return false
}
// Get the property symbol from the type
symbol := ctx.TypeChecker.GetPropertyOfType(objectType, propertyName)
if symbol == nil {
return false
}
// Check if any of the symbol's declarations have private modifier
if symbol.Declarations != nil {
for _, decl := range symbol.Declarations {
if ast.HasSyntacticModifier(decl, ast.ModifierFlagsPrivate) {
return true
}
}
}
return false
}
// isProtectedProperty checks if a property is protected using TypeScript's type checker
func isProtectedProperty(ctx rule.RuleContext, objectType *checker.Type, propertyName string) bool {
if objectType == nil {
return false
}
// Get the property symbol from the type
symbol := ctx.TypeChecker.GetPropertyOfType(objectType, propertyName)
if symbol == nil {
return false
}
// Check if any of the symbol's declarations have protected modifier
if symbol.Declarations != nil {
for _, decl := range symbol.Declarations {
if ast.HasSyntacticModifier(decl, ast.ModifierFlagsProtected) {
return true
}
}
}
return false
}
// hasIndexSignature checks if a type has index signatures
func hasIndexSignature(ctx rule.RuleContext, objectType *checker.Type) bool {
if objectType == nil {
return false
}
// Use non-nullable type for index signature checks
nonNullable := ctx.TypeChecker.GetNonNullableType(objectType)
// Check for string index signature
stringIndexType := ctx.TypeChecker.GetStringIndexType(nonNullable)
if stringIndexType != nil {
return true
}
// Check for number index signature
numberIndexType := ctx.TypeChecker.GetNumberIndexType(nonNullable)
return numberIndexType != nil
}
// matchesTemplateLiteralPattern checks if a property name matches template literal patterns
// This is a heuristic to handle cases like `key_${string}` where `key_baz` should be allowed
func matchesTemplateLiteralPattern(ctx rule.RuleContext, objectType *checker.Type, propertyName string) bool {
if objectType == nil {
return false
}
// For template literal types like `key_${string}`, we need to check if the property name
// matches common patterns. This is a simplified heuristic.
// Common patterns: key_*, extra*, etc.
if strings.HasPrefix(propertyName, "key_") {
return true
}
if strings.HasPrefix(propertyName, "extra") {
return true
}
return false
}
func createFix(ctx rule.RuleContext, node *ast.Node, propertyName string) rule.RuleFix {
elementAccess := node.AsElementAccessExpression()
// Check for comments that would prevent fixing
start := elementAccess.Expression.End()
end := node.End()
commentRange := core.NewTextRange(start, end)
if utils.HasCommentsInRange(ctx.SourceFile, commentRange) {
return rule.RuleFix{}
}
// Create the fix text
fixText := "." + propertyName
return rule.RuleFix{
Range: core.NewTextRange(elementAccess.Expression.End(), node.End()),
Text: fixText,
}
}
func createBracketFix(ctx rule.RuleContext, node *ast.Node, propertyName string) rule.RuleFix {
propertyAccess := node.AsPropertyAccessExpression()
// Check for comments that would prevent fixing
start := propertyAccess.Expression.End()
end := node.End()
commentRange := core.NewTextRange(start, end)
if utils.HasCommentsInRange(ctx.SourceFile, commentRange) {
return rule.RuleFix{}
}
// Special case for 'let' which would cause syntax error
expression := propertyAccess.Expression
if ast.IsIdentifier(expression) && expression.AsIdentifier().Text == "let" {
return rule.RuleFix{}
}
// Create the bracket notation fix
fixText := fmt.Sprintf(`["%s"]`, propertyName)
return rule.RuleFix{
Range: core.NewTextRange(propertyAccess.Expression.End(), node.End()),
Text: fixText,
}
}
func isValidIdentifierName(name string) bool {
if name == "" {
return false
}
return scanner.IsValidIdentifier(name)
}
func isReservedWord(word string) bool {
// ES reserved words
reservedWords := map[string]bool{
"break": true,
"case": true,
"catch": true,
"class": true,
"const": true,
"continue": true,
"debugger": true,
"default": true,
"delete": true,
"do": true,
"else": true,
"enum": true,
"export": true,
"extends": true,
"false": true,
"finally": true,
"for": true,
"function": true,
"if": true,
"import": true,
"in": true,
"instanceof": true,
"new": true,
"null": true,
"return": true,
"super": true,
"switch": true,
"this": true,
"throw": true,
"true": true,
"try": true,
"typeof": true,
"var": true,
"void": true,
"while": true,
"with": true,
"yield": true,
// Future reserved
"await": true,
"implements": true,
"interface": true,
"let": true,
"package": true,
"private": true,
"protected": true,
"public": true,
"static": true,
// Contextual keywords
"abstract": true,
"as": true,
"async": true,
"constructor": true,
"declare": true,
"from": true,
"get": true,
"is": true,
"module": true,
"namespace": true,
"of": true,
"require": true,
"set": true,
"type": true,
}
return reservedWords[word]
}
func getKeywordText(node *ast.Node) string {
switch node.Kind {
case ast.KindNullKeyword:
return "null"
case ast.KindTrueKeyword:
return "true"
case ast.KindFalseKeyword:
return "false"
default:
return ""
}
}