UNPKG

vscode-json-languageservice

Version:
164 lines (163 loc) 5.7 kB
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { Range } from '../jsonLanguageTypes.js'; export function findLinks(document, doc) { const links = []; doc.visit(node => { if (node.type === "property" && node.keyNode.value === "$ref" && node.valueNode?.type === 'string') { const path = node.valueNode.value; const targetNode = findTargetNode(doc, path); if (targetNode) { const targetPos = document.positionAt(targetNode.offset); links.push({ target: `${document.uri}#${targetPos.line + 1},${targetPos.character + 1}`, range: createRange(document, node.valueNode) }); } } return true; }); return Promise.resolve(links); } function createRange(document, node) { return Range.create(document.positionAt(node.offset + 1), document.positionAt(node.offset + node.length - 1)); } function findTargetNode(doc, path) { const tokens = parseJSONPointer(path); if (tokens) { return findNode(tokens, doc.root); } if (path.charAt(0) === '#') { // Plain-name fragment: anchor reference (e.g. #foo) const anchor = path.substring(1); if (anchor.length > 0) { return findAnchorNode(doc, anchor); } return null; } // Check for references to embedded schemas by $id (e.g. "https://example.com/embedded") const hashIndex = path.indexOf('#'); const uri = hashIndex >= 0 ? path.substring(0, hashIndex) : path; const fragment = hashIndex >= 0 ? path.substring(hashIndex + 1) : undefined; if (uri.length > 0) { const embeddedNode = findEmbeddedSchemaNode(doc, uri); if (embeddedNode) { if (!fragment || fragment.length === 0) { return embeddedNode; } if (fragment.charAt(0) === '/') { // JSON Pointer within the embedded schema const pointerTokens = fragment.substring(1).split(/\//).map(unescape); return findNode(pointerTokens, embeddedNode); } // Anchor within the embedded schema return findAnchorInSubtree(embeddedNode, fragment); } } return null; } function findNode(pointer, node) { if (!node) { return null; } if (pointer.length === 0) { return node; } const token = pointer.shift(); if (node && node.type === 'object') { const propertyNode = node.properties.find((propertyNode) => propertyNode.keyNode.value === token); if (!propertyNode) { return null; } return findNode(pointer, propertyNode.valueNode); } else if (node && node.type === 'array') { if (token.match(/^(0|[1-9][0-9]*)$/)) { const index = Number.parseInt(token); const arrayItem = node.items[index]; if (!arrayItem) { return null; } return findNode(pointer, arrayItem); } } return null; } function findAnchorNode(doc, anchor) { return findAnchorInSubtree(doc.root, anchor); } function findAnchorInSubtree(root, anchor) { if (!root) { return null; } let result = null; const visit = (node) => { if (node.type === 'object') { for (const prop of node.properties) { // $anchor: "foo" (2019-09+) if (prop.keyNode.value === '$anchor' && prop.valueNode?.type === 'string' && prop.valueNode.value === anchor) { result = node; return false; } // $id: "#foo" (draft-06/07 legacy anchors) if (prop.keyNode.value === '$id' && prop.valueNode?.type === 'string' && prop.valueNode.value === '#' + anchor) { result = node; return false; } } } const children = node.children; if (children) { for (const child of children) { if (!visit(child)) { return false; } } } return true; }; visit(root); return result; } function findEmbeddedSchemaNode(doc, uri) { if (!doc.root) { return null; } let result = null; const visit = (node, isRoot) => { if (node.type === 'object' && !isRoot) { for (const prop of node.properties) { if ((prop.keyNode.value === '$id' || prop.keyNode.value === 'id') && prop.valueNode?.type === 'string' && prop.valueNode.value === uri) { result = node; return false; } } } const children = node.children; if (children) { for (const child of children) { if (!visit(child, false)) { return false; } } } return true; }; visit(doc.root, true); return result; } function parseJSONPointer(path) { if (path === "#") { return []; } if (path[0] !== '#' || path[1] !== '/') { return null; } return path.substring(2).split(/\//).map(unescape); } function unescape(str) { return str.replace(/~1/g, '/').replace(/~0/g, '~'); }