|
| 1 | +import { |
| 2 | + FilterBuilder, |
| 3 | + VulcanInternalExtension, |
| 4 | +} from '@vulcan-sql/core/models'; |
| 5 | +import * as nunjucks from 'nunjucks'; |
| 6 | +import { visitChildren } from '../../extension-utils'; |
| 7 | +import { |
| 8 | + REFERENCE_SEARCH_MAX_DEPTH, |
| 9 | + SANITIZER_NAME, |
| 10 | + SANITIZE_SOURCES, |
| 11 | +} from './constants'; |
| 12 | + |
| 13 | +@VulcanInternalExtension() |
| 14 | +export class SanitizerBuilder extends FilterBuilder { |
| 15 | + public filterName = SANITIZER_NAME; |
| 16 | + public override onVisit(node: nunjucks.nodes.Node): void { |
| 17 | + if (node instanceof nunjucks.nodes.Root) this.addSanitizer(node); |
| 18 | + } |
| 19 | + |
| 20 | + private addSanitizer(node: nunjucks.nodes.Node, parentHasOutputNode = false) { |
| 21 | + visitChildren(node, (child, replace) => { |
| 22 | + if (child instanceof nunjucks.nodes.LookupVal) { |
| 23 | + const source = this.findSourceOfLookUpNode(child); |
| 24 | + if (SANITIZE_SOURCES.includes(source.value)) { |
| 25 | + const filter = new nunjucks.nodes.Filter(node.lineno, node.colno); |
| 26 | + filter.name = new nunjucks.nodes.Symbol( |
| 27 | + node.lineno, |
| 28 | + node.colno, |
| 29 | + SANITIZER_NAME |
| 30 | + ); |
| 31 | + const args = new nunjucks.nodes.NodeList(node.lineno, node.colno); |
| 32 | + // The first argument is the target of the filter |
| 33 | + args.addChild(child); |
| 34 | + // The second argument indicates whether it should be parameterized, we only parameterize parameters when once of parent nodes is a Output node. |
| 35 | + const shouldBeParameterized = new nunjucks.nodes.Literal( |
| 36 | + node.lineno, |
| 37 | + node.colno, |
| 38 | + `${parentHasOutputNode || node instanceof nunjucks.nodes.Output}` |
| 39 | + ); |
| 40 | + args.addChild(shouldBeParameterized); |
| 41 | + filter.args = args; |
| 42 | + replace(filter); |
| 43 | + } |
| 44 | + } else { |
| 45 | + this.addSanitizer( |
| 46 | + child, |
| 47 | + parentHasOutputNode || node instanceof nunjucks.nodes.Output |
| 48 | + ); |
| 49 | + } |
| 50 | + }); |
| 51 | + } |
| 52 | + |
| 53 | + private findSourceOfLookUpNode( |
| 54 | + node: nunjucks.nodes.LookupVal |
| 55 | + ): nunjucks.nodes.Symbol { |
| 56 | + let depth = 0; |
| 57 | + let source: typeof node.target = node.target; |
| 58 | + while (!(source instanceof nunjucks.nodes.Symbol)) { |
| 59 | + depth++; |
| 60 | + if (depth > REFERENCE_SEARCH_MAX_DEPTH) { |
| 61 | + throw new Error('Max depth reached'); |
| 62 | + } |
| 63 | + |
| 64 | + if (source instanceof nunjucks.nodes.LookupVal) { |
| 65 | + // LookupVal: parent.source |
| 66 | + source = source.target; |
| 67 | + } else { |
| 68 | + // FunCall: parent().source |
| 69 | + source = source.name; |
| 70 | + } |
| 71 | + |
| 72 | + if (!source) { |
| 73 | + throw new Error(`Can find the source of node ${node}`); |
| 74 | + } |
| 75 | + } |
| 76 | + return source; |
| 77 | + } |
| 78 | +} |
0 commit comments