92 lines
2.4 KiB
TypeScript
92 lines
2.4 KiB
TypeScript
import {
|
|
getLanguageService,
|
|
LanguageService,
|
|
LanguageSettings,
|
|
SchemaConfiguration,
|
|
TextDocument,
|
|
JSONDocument,
|
|
Diagnostic,
|
|
Thenable,
|
|
} from "vscode-json-languageservice";
|
|
import * as url from "url";
|
|
import * as data from "../../vscode-settings.json";
|
|
import { readFileSync } from "fs";
|
|
import { Files } from "./Utillity";
|
|
|
|
export namespace Schema {
|
|
const workspaceContext = {
|
|
resolveRelativePath: (relativePath: string, resource: string) => {
|
|
return url.resolve(resource, relativePath);
|
|
},
|
|
};
|
|
|
|
export function GetValidator(): Validator {
|
|
const ls = GetLanguageService();
|
|
ls.configure(GetLanguageSettings());
|
|
|
|
const out = new Validator(ls);
|
|
|
|
return out;
|
|
}
|
|
|
|
export function GetLanguageService(): LanguageService {
|
|
return getLanguageService({ workspaceContext });
|
|
}
|
|
|
|
export function GetLanguageSettings(): LanguageSettings {
|
|
const schemas: SchemaConfiguration[] = [];
|
|
const settings: LanguageSettings = { schemas: schemas };
|
|
let rootfolder = Files.RootFolder();
|
|
|
|
if (!rootfolder.endsWith("/")) rootfolder += "/";
|
|
|
|
data["json.schemas"].forEach((m) => {
|
|
if (m) {
|
|
const schema = m.url.replace("https://raw.githubusercontent.com/Blockception/Minecraft-bedrock-json-schemas/main/", rootfolder);
|
|
|
|
schemas.push({ uri: schema, fileMatch: m.fileMatch });
|
|
}
|
|
});
|
|
|
|
return settings;
|
|
}
|
|
}
|
|
|
|
export class Validator {
|
|
readonly ls: LanguageService;
|
|
|
|
constructor(ls: LanguageService) {
|
|
this.ls = ls;
|
|
}
|
|
|
|
ValidateFile(uri: string): Result {
|
|
const content = readFileSync(uri).toString();
|
|
return this.ValidateContent(content, uri, "json");
|
|
}
|
|
|
|
ValidateJson(data: any, fakeuri: string = "", langid: string = "json"): Result {
|
|
return this.ValidateContent(JSON.stringify(data), fakeuri, langid);
|
|
}
|
|
|
|
ValidateContent(json: string, fakeuri: string = "", langid: string = "json"): Result {
|
|
const doc = TextDocument.create(fakeuri, langid, 0, json);
|
|
const jdoc = this.ls.parseJSONDocument(doc);
|
|
|
|
const p = this.ls.doValidation(doc, jdoc, { comments: "ignore" });
|
|
|
|
return new Result(doc, jdoc, p);
|
|
}
|
|
}
|
|
|
|
export class Result {
|
|
readonly doc: TextDocument;
|
|
readonly jdoc: JSONDocument;
|
|
readonly promise: Thenable<Diagnostic[]>;
|
|
|
|
constructor(doc: TextDocument, jdoc: JSONDocument, promise: Thenable<Diagnostic[]>) {
|
|
this.doc = doc;
|
|
this.jdoc = jdoc;
|
|
this.promise = promise;
|
|
}
|
|
}
|