/usr/lib/nodejs/JSV/jsv.js is in node-jsv 4.0.0+ds1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 | /**
* JSV: JSON Schema Validator
*
* @fileOverview A JavaScript implementation of a extendable, fully compliant JSON Schema validator.
* @author <a href="mailto:gary.court@gmail.com">Gary Court</a>
* @version 4.0
* @see http://github.com/garycourt/JSV
*/
/*
* Copyright 2010 Gary Court. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification, are
* permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY GARY COURT ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GARY COURT OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are those of the
* authors and should not be interpreted as representing official policies, either expressed
* or implied, of Gary Court or the JSON Schema specification.
*/
/*jslint white: true, sub: true, onevar: true, undef: true, eqeqeq: true, newcap: true, immed: true, indent: 4 */
var exports = exports || this,
require = require || function () {
return exports;
};
(function () {
var URI = require("./uri/uri").URI,
O = {},
I2H = "0123456789abcdef".split(""),
mapArray, filterArray, searchArray,
JSV;
//
// Utility functions
//
function typeOf(o) {
return o === undefined ? "undefined" : (o === null ? "null" : Object.prototype.toString.call(o).split(" ").pop().split("]").shift().toLowerCase());
}
/** @inner */
function F() {}
function createObject(proto) {
F.prototype = proto || {};
return new F();
}
function mapObject(obj, func, scope) {
var newObj = {}, key;
for (key in obj) {
if (obj[key] !== O[key]) {
newObj[key] = func.call(scope, obj[key], key, obj);
}
}
return newObj;
}
/** @ignore */
mapArray = function (arr, func, scope) {
var x = 0, xl = arr.length, newArr = new Array(xl);
for (; x < xl; ++x) {
newArr[x] = func.call(scope, arr[x], x, arr);
}
return newArr;
};
if (Array.prototype.map) {
/** @ignore */
mapArray = function (arr, func, scope) {
return Array.prototype.map.call(arr, func, scope);
};
}
/** @ignore */
filterArray = function (arr, func, scope) {
var x = 0, xl = arr.length, newArr = [];
for (; x < xl; ++x) {
if (func.call(scope, arr[x], x, arr)) {
newArr[newArr.length] = arr[x];
}
}
return newArr;
};
if (Array.prototype.filter) {
/** @ignore */
filterArray = function (arr, func, scope) {
return Array.prototype.filter.call(arr, func, scope);
};
}
/** @ignore */
searchArray = function (arr, o) {
var x = 0, xl = arr.length;
for (; x < xl; ++x) {
if (arr[x] === o) {
return x;
}
}
return -1;
};
if (Array.prototype.indexOf) {
/** @ignore */
searchArray = function (arr, o) {
return Array.prototype.indexOf.call(arr, o);
};
}
function toArray(o) {
return o !== undefined && o !== null ? (o instanceof Array && !o.callee ? o : (typeof o.length !== "number" || o.split || o.setInterval || o.call ? [ o ] : Array.prototype.slice.call(o))) : [];
}
function keys(o) {
var result = [], key;
switch (typeOf(o)) {
case "object":
for (key in o) {
if (o[key] !== O[key]) {
result[result.length] = key;
}
}
break;
case "array":
for (key = o.length - 1; key >= 0; --key) {
result[key] = key;
}
break;
}
return result;
}
function pushUnique(arr, o) {
if (searchArray(arr, o) === -1) {
arr.push(o);
}
return arr;
}
function popFirst(arr, o) {
var index = searchArray(arr, o);
if (index > -1) {
arr.splice(index, 1);
}
return arr;
}
function randomUUID() {
return [
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
"-",
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
"-4", //set 4 high bits of time_high field to version
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
"-",
I2H[(Math.floor(Math.random() * 0x10) & 0x3) | 0x8], //specify 2 high bits of clock sequence
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
"-",
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)],
I2H[Math.floor(Math.random() * 0x10)]
].join("");
}
function escapeURIComponent(str) {
return encodeURIComponent(str).replace(/!/g, '%21').replace(/'/g, '%27').replace(/\(/g, '%28').replace(/\)/g, '%29').replace(/\*/g, '%2A');
}
function formatURI(uri) {
if (typeof uri === "string" && uri.indexOf("#") === -1) {
uri += "#";
}
return uri;
}
function stripInstances(o) {
if (o instanceof JSONInstance) {
return o.getURI();
}
switch (typeOf(o)) {
case "undefined":
case "null":
case "boolean":
case "number":
case "string":
return o; //do nothing
case "object":
return mapObject(o, stripInstances);
case "array":
return mapArray(o, stripInstances);
default:
return o.toString();
}
}
/**
* The exception that is thrown when a schema fails to be created.
*
* @name InitializationError
* @class
* @param {JSONInstance|String} instance The instance (or instance URI) that is invalid
* @param {JSONSchema|String} schema The schema (or schema URI) that was validating the instance
* @param {String} attr The attribute that failed to validated
* @param {String} message A user-friendly message on why the schema attribute failed to validate the instance
* @param {Any} details The value of the schema attribute
*/
function InitializationError(instance, schema, attr, message, details) {
Error.call(this, message);
this.uri = instance instanceof JSONInstance ? instance.getURI() : instance;
this.schemaUri = schema instanceof JSONInstance ? schema.getURI() : schema;
this.attribute = attr;
this.message = message;
this.description = message; //IE
this.details = details;
}
InitializationError.prototype = new Error();
InitializationError.prototype.constructor = InitializationError;
InitializationError.prototype.name = "InitializationError";
/**
* Defines an error, found by a schema, with an instance.
* This class can only be instantiated by {@link Report#addError}.
*
* @name ValidationError
* @class
* @see Report#addError
*/
/**
* The URI of the instance that has the error.
*
* @name ValidationError.prototype.uri
* @type String
*/
/**
* The URI of the schema that generated the error.
*
* @name ValidationError.prototype.schemaUri
* @type String
*/
/**
* The name of the schema attribute that generated the error.
*
* @name ValidationError.prototype.attribute
* @type String
*/
/**
* An user-friendly (English) message about what failed to validate.
*
* @name ValidationError.prototype.message
* @type String
*/
/**
* The value of the schema attribute that generated the error.
*
* @name ValidationError.prototype.details
* @type Any
*/
/**
* Reports are returned from validation methods to describe the result of a validation.
*
* @name Report
* @class
* @see JSONSchema#validate
* @see Environment#validate
*/
function Report() {
/**
* An array of {@link ValidationError} objects that define all the errors generated by the schema against the instance.
*
* @name Report.prototype.errors
* @type Array
* @see Report#addError
*/
this.errors = [];
/**
* A hash table of every instance and what schemas were validated against it.
* <p>
* The key of each item in the table is the URI of the instance that was validated.
* The value of this key is an array of strings of URIs of the schema that validated it.
* </p>
*
* @name Report.prototype.validated
* @type Object
* @see Report#registerValidation
* @see Report#isValidatedBy
*/
this.validated = {};
/**
* If the report is generated by {@link Environment#validate}, this field is the generated instance.
*
* @name Report.prototype.instance
* @type JSONInstance
* @see Environment#validate
*/
/**
* If the report is generated by {@link Environment#validate}, this field is the generated schema.
*
* @name Report.prototype.schema
* @type JSONSchema
* @see Environment#validate
*/
/**
* If the report is generated by {@link Environment#validate}, this field is the schema's schema.
* This value is the same as calling <code>schema.getSchema()</code>.
*
* @name Report.prototype.schemaSchema
* @type JSONSchema
* @see Environment#validate
* @see JSONSchema#getSchema
*/
}
/**
* Adds a {@link ValidationError} object to the <a href="#errors"><code>errors</code></a> field.
*
* @param {JSONInstance|String} instance The instance (or instance URI) that is invalid
* @param {JSONSchema|String} schema The schema (or schema URI) that was validating the instance
* @param {String} attr The attribute that failed to validated
* @param {String} message A user-friendly message on why the schema attribute failed to validate the instance
* @param {Any} details The value of the schema attribute
*/
Report.prototype.addError = function (instance, schema, attr, message, details) {
this.errors.push({
uri : instance instanceof JSONInstance ? instance.getURI() : instance,
schemaUri : schema instanceof JSONInstance ? schema.getURI() : schema,
attribute : attr,
message : message,
details : stripInstances(details)
});
};
/**
* Registers that the provided instance URI has been validated by the provided schema URI.
* This is recorded in the <a href="#validated"><code>validated</code></a> field.
*
* @param {String} uri The URI of the instance that was validated
* @param {String} schemaUri The URI of the schema that validated the instance
*/
Report.prototype.registerValidation = function (uri, schemaUri) {
if (!this.validated[uri]) {
this.validated[uri] = [ schemaUri ];
} else {
this.validated[uri].push(schemaUri);
}
};
/**
* Returns if an instance with the provided URI has been validated by the schema with the provided URI.
*
* @param {String} uri The URI of the instance
* @param {String} schemaUri The URI of a schema
* @returns {Boolean} If the instance has been validated by the schema.
*/
Report.prototype.isValidatedBy = function (uri, schemaUri) {
return !!this.validated[uri] && searchArray(this.validated[uri], schemaUri) !== -1;
};
/**
* A wrapper class for binding an Environment, URI and helper methods to an instance.
* This class is most commonly instantiated with {@link Environment#createInstance}.
*
* @name JSONInstance
* @class
* @param {Environment} env The environment this instance belongs to
* @param {JSONInstance|Any} json The value of the instance
* @param {String} [uri] The URI of the instance. If undefined, the URI will be a randomly generated UUID.
* @param {String} [fd] The fragment delimiter for properties. If undefined, uses the environment default.
*/
function JSONInstance(env, json, uri, fd) {
if (json instanceof JSONInstance) {
if (typeof fd !== "string") {
fd = json._fd;
}
if (typeof uri !== "string") {
uri = json._uri;
}
json = json._value;
}
if (typeof uri !== "string") {
uri = "urn:uuid:" + randomUUID() + "#";
} else if (uri.indexOf(":") === -1) {
uri = formatURI(URI.resolve("urn:uuid:" + randomUUID() + "#", uri));
}
this._env = env;
this._value = json;
this._uri = uri;
this._fd = fd || this._env._options["defaultFragmentDelimiter"];
}
/**
* Returns the environment the instance is bound to.
*
* @returns {Environment} The environment of the instance
*/
JSONInstance.prototype.getEnvironment = function () {
return this._env;
};
/**
* Returns the name of the type of the instance.
*
* @returns {String} The name of the type of the instance
*/
JSONInstance.prototype.getType = function () {
return typeOf(this._value);
};
/**
* Returns the JSON value of the instance.
*
* @returns {Any} The actual JavaScript value of the instance
*/
JSONInstance.prototype.getValue = function () {
return this._value;
};
/**
* Returns the URI of the instance.
*
* @returns {String} The URI of the instance
*/
JSONInstance.prototype.getURI = function () {
return this._uri;
};
/**
* Returns a resolved URI of a provided relative URI against the URI of the instance.
*
* @param {String} uri The relative URI to resolve
* @returns {String} The resolved URI
*/
JSONInstance.prototype.resolveURI = function (uri) {
return formatURI(URI.resolve(this._uri, uri));
};
/**
* Returns an array of the names of all the properties.
*
* @returns {Array} An array of strings which are the names of all the properties
*/
JSONInstance.prototype.getPropertyNames = function () {
return keys(this._value);
};
/**
* Returns a {@link JSONInstance} of the value of the provided property name.
*
* @param {String} key The name of the property to fetch
* @returns {JSONInstance} The instance of the property value
*/
JSONInstance.prototype.getProperty = function (key) {
var value = this._value ? this._value[key] : undefined;
if (value instanceof JSONInstance) {
return value;
}
//else
return new JSONInstance(this._env, value, this._uri + this._fd + escapeURIComponent(key), this._fd);
};
/**
* Returns all the property instances of the target instance.
* <p>
* If the target instance is an Object, then the method will return a hash table of {@link JSONInstance}s of all the properties.
* If the target instance is an Array, then the method will return an array of {@link JSONInstance}s of all the items.
* </p>
*
* @returns {Object|Array|undefined} The list of instances for all the properties
*/
JSONInstance.prototype.getProperties = function () {
var type = typeOf(this._value),
self = this;
if (type === "object") {
return mapObject(this._value, function (value, key) {
if (value instanceof JSONInstance) {
return value;
}
return new JSONInstance(self._env, value, self._uri + self._fd + escapeURIComponent(key), self._fd);
});
} else if (type === "array") {
return mapArray(this._value, function (value, key) {
if (value instanceof JSONInstance) {
return value;
}
return new JSONInstance(self._env, value, self._uri + self._fd + escapeURIComponent(key), self._fd);
});
}
};
/**
* Returns the JSON value of the provided property name.
* This method is a faster version of calling <code>instance.getProperty(key).getValue()</code>.
*
* @param {String} key The name of the property
* @returns {Any} The JavaScript value of the instance
* @see JSONInstance#getProperty
* @see JSONInstance#getValue
*/
JSONInstance.prototype.getValueOfProperty = function (key) {
if (this._value) {
if (this._value[key] instanceof JSONInstance) {
return this._value[key]._value;
}
return this._value[key];
}
};
/**
* Return if the provided value is the same as the value of the instance.
*
* @param {JSONInstance|Any} instance The value to compare
* @returns {Boolean} If both the instance and the value match
*/
JSONInstance.prototype.equals = function (instance) {
if (instance instanceof JSONInstance) {
return this._value === instance._value;
}
//else
return this._value === instance;
};
/**
* Warning: Not a generic clone function
* Produces a JSV acceptable clone
*/
function clone(obj, deep) {
var newObj, x;
if (obj instanceof JSONInstance) {
obj = obj.getValue();
}
switch (typeOf(obj)) {
case "object":
if (deep) {
newObj = {};
for (x in obj) {
if (obj[x] !== O[x]) {
newObj[x] = clone(obj[x], deep);
}
}
return newObj;
} else {
return createObject(obj);
}
break;
case "array":
if (deep) {
newObj = new Array(obj.length);
x = obj.length;
while (--x >= 0) {
newObj[x] = clone(obj[x], deep);
}
return newObj;
} else {
return Array.prototype.slice.call(obj);
}
break;
default:
return obj;
}
}
/**
* This class binds a {@link JSONInstance} with a {@link JSONSchema} to provided context aware methods.
*
* @name JSONSchema
* @class
* @param {Environment} env The environment this schema belongs to
* @param {JSONInstance|Any} json The value of the schema
* @param {String} [uri] The URI of the schema. If undefined, the URI will be a randomly generated UUID.
* @param {JSONSchema|Boolean} [schema] The schema to bind to the instance. If <code>undefined</code>, the environment's default schema will be used. If <code>true</code>, the instance's schema will be itself.
* @extends JSONInstance
*/
function JSONSchema(env, json, uri, schema) {
var fr;
JSONInstance.call(this, env, json, uri);
if (schema === true) {
this._schema = this;
} else if (json instanceof JSONSchema && !(schema instanceof JSONSchema)) {
this._schema = json._schema; //TODO: Make sure cross environments don't mess everything up
} else {
this._schema = schema instanceof JSONSchema ? schema : this._env.getDefaultSchema() || this._env.createEmptySchema();
}
//determine fragment delimiter from schema
fr = this._schema.getValueOfProperty("fragmentResolution");
if (fr === "dot-delimited") {
this._fd = ".";
} else if (fr === "slash-delimited") {
this._fd = "/";
}
return this.rebuild(); //this works even when called with "new"
}
JSONSchema.prototype = createObject(JSONInstance.prototype);
/**
* Returns the schema of the schema.
*
* @returns {JSONSchema} The schema of the schema
*/
JSONSchema.prototype.getSchema = function () {
var uri = this._refs && this._refs["describedby"],
newSchema;
if (uri) {
newSchema = uri && this._env.findSchema(uri);
if (newSchema) {
if (!newSchema.equals(this._schema)) {
this._schema = newSchema;
this.rebuild(); //if the schema has changed, the context has changed - so everything must be rebuilt
}
} else if (this._env._options["enforceReferences"]) {
throw new InitializationError(this, this._schema, "{describedby}", "Unknown schema reference", uri);
}
}
return this._schema;
};
/**
* Returns the value of the provided attribute name.
* <p>
* This method is different from {@link JSONInstance#getProperty} as the named property
* is converted using a parser defined by the schema's schema before being returned. This
* makes the return value of this method attribute dependent.
* </p>
*
* @param {String} key The name of the attribute
* @param {Any} [arg] Some attribute parsers accept special arguments for returning resolved values. This is attribute dependent.
* @returns {JSONSchema|Any} The value of the attribute
*/
JSONSchema.prototype.getAttribute = function (key, arg) {
var schemaProperty, parser, property, result,
schema = this.getSchema(); //we do this here to make sure the "describedby" reference has not changed, and that the attribute cache is up-to-date
if (!arg && this._attributes && this._attributes.hasOwnProperty(key)) {
return this._attributes[key];
}
schemaProperty = schema.getProperty("properties").getProperty(key);
parser = schemaProperty.getValueOfProperty("parser");
property = this.getProperty(key);
if (typeof parser === "function") {
result = parser(property, schemaProperty, arg);
if (!arg && this._attributes) {
this._attributes[key] = result;
}
return result;
}
//else
return property.getValue();
};
/**
* Returns all the attributes of the schema.
*
* @returns {Object} A map of all parsed attribute values
*/
JSONSchema.prototype.getAttributes = function () {
var properties, schemaProperties, key, schemaProperty, parser,
schema = this.getSchema(); //we do this here to make sure the "describedby" reference has not changed, and that the attribute cache is up-to-date
if (!this._attributes && this.getType() === "object") {
properties = this.getProperties();
schemaProperties = schema.getProperty("properties");
this._attributes = {};
for (key in properties) {
if (properties[key] !== O[key]) {
schemaProperty = schemaProperties && schemaProperties.getProperty(key);
parser = schemaProperty && schemaProperty.getValueOfProperty("parser");
if (typeof parser === "function") {
this._attributes[key] = parser(properties[key], schemaProperty);
} else {
this._attributes[key] = properties[key].getValue();
}
}
}
}
return clone(this._attributes, false);
};
/**
* Convenience method for retrieving a link or link object from a schema.
* This method is the same as calling <code>schema.getAttribute("links", [rel, instance])[0];</code>.
*
* @param {String} rel The link relationship
* @param {JSONInstance} [instance] The instance to resolve any URIs from
* @returns {String|Object|undefined} If <code>instance</code> is provided, a string containing the resolve URI of the link is returned.
* If <code>instance</code> is not provided, a link object is returned with details of the link.
* If no link with the provided relationship exists, <code>undefined</code> is returned.
* @see JSONSchema#getAttribute
*/
JSONSchema.prototype.getLink = function (rel, instance) {
var schemaLinks = this.getAttribute("links", [rel, instance]);
if (schemaLinks && schemaLinks.length && schemaLinks[schemaLinks.length - 1]) {
return schemaLinks[schemaLinks.length - 1];
}
};
/**
* Validates the provided instance against the target schema and returns a {@link Report}.
*
* @param {JSONInstance|Any} instance The instance to validate; may be a {@link JSONInstance} or any JavaScript value
* @param {Report} [report] A {@link Report} to concatenate the result of the validation to. If <code>undefined</code>, a new {@link Report} is created.
* @param {JSONInstance} [parent] The parent/containing instance of the provided instance
* @param {JSONSchema} [parentSchema] The schema of the parent/containing instance
* @param {String} [name] The name of the parent object's property that references the instance
* @returns {Report} The result of the validation
*/
JSONSchema.prototype.validate = function (instance, report, parent, parentSchema, name) {
var schemaSchema = this.getSchema(),
validator = schemaSchema.getValueOfProperty("validator");
if (!(instance instanceof JSONInstance)) {
instance = this.getEnvironment().createInstance(instance);
}
if (!(report instanceof Report)) {
report = new Report();
}
if (this._env._options["validateReferences"] && this._refs) {
if (this._refs["describedby"] && !this._env.findSchema(this._refs["describedby"])) {
report.addError(this, this._schema, "{describedby}", "Unknown schema reference", this._refs["describedby"]);
}
if (this._refs["full"] && !this._env.findSchema(this._refs["full"])) {
report.addError(this, this._schema, "{full}", "Unknown schema reference", this._refs["full"]);
}
}
if (typeof validator === "function" && !report.isValidatedBy(instance.getURI(), this.getURI())) {
report.registerValidation(instance.getURI(), this.getURI());
validator(instance, this, schemaSchema, report, parent, parentSchema, name);
}
return report;
};
/** @inner */
function createFullLookupWrapper(func) {
return /** @inner */ function fullLookupWrapper() {
var scope = this,
stack = [],
uri = scope._refs && scope._refs["full"],
schema;
while (uri) {
schema = scope._env.findSchema(uri);
if (schema) {
if (schema._value === scope._value) {
break;
}
scope = schema;
stack.push(uri);
uri = scope._refs && scope._refs["full"];
if (stack.indexOf(uri) > -1) {
break; //stop infinite loop
}
} else if (scope._env._options["enforceReferences"]) {
throw new InitializationError(scope, scope._schema, "{full}", "Unknown schema reference", uri);
} else {
uri = null;
}
}
return func.apply(scope, arguments);
};
}
/**
* Wraps all JSONInstance methods with a function that resolves the "full" reference.
*
* @inner
*/
(function () {
var key;
for (key in JSONSchema.prototype) {
if (JSONSchema.prototype[key] !== O[key] && typeOf(JSONSchema.prototype[key]) === "function") {
JSONSchema.prototype[key] = createFullLookupWrapper(JSONSchema.prototype[key]);
}
}
}());
/**
* Reinitializes/re-registers/rebuilds the schema.
* <br/>
* This is used internally, and should only be called when a schema's private variables are modified directly.
*
* @private
* @return {JSONSchema} The newly rebuilt schema
*/
JSONSchema.prototype.rebuild = function () {
var instance = this,
initializer = instance.getSchema().getValueOfProperty("initializer");
//clear previous built values
instance._refs = null;
instance._attributes = null;
if (typeof initializer === "function") {
instance = initializer(instance);
}
//register schema
instance._env._schemas[instance._uri] = instance;
//build & cache the rest of the schema
instance.getAttributes();
return instance;
};
/**
* Set the provided reference to the given value.
* <br/>
* References are used for establishing soft-links to other {@link JSONSchema}s.
* Currently, the following references are natively supported:
* <dl>
* <dt><code>full</code></dt>
* <dd>The value is the URI to the full instance of this instance.</dd>
* <dt><code>describedby</code></dt>
* <dd>The value is the URI to the schema of this instance.</dd>
* </dl>
*
* @param {String} name The name of the reference
* @param {String} uri The URI of the schema to refer to
*/
JSONSchema.prototype.setReference = function (name, uri) {
if (!this._refs) {
this._refs = {};
}
this._refs[name] = this.resolveURI(uri);
};
/**
* Returns the value of the provided reference name.
*
* @param {String} name The name of the reference
* @return {String} The value of the provided reference name
*/
JSONSchema.prototype.getReference = function (name) {
return this._refs && this._refs[name];
};
/**
* Merges two schemas/instances together.
*/
function inherits(base, extra, extension) {
var baseType = typeOf(base),
extraType = typeOf(extra),
child, x;
if (extraType === "undefined") {
return clone(base, true);
} else if (baseType === "undefined" || extraType !== baseType) {
return clone(extra, true);
} else if (extraType === "object") {
if (base instanceof JSONSchema) {
base = base.getAttributes();
}
if (extra instanceof JSONSchema) {
extra = extra.getAttributes();
if (extra["extends"] && extension && extra["extends"] instanceof JSONSchema) {
extra["extends"] = [ extra["extends"] ];
}
}
child = clone(base, true); //this could be optimized as some properties get overwritten
for (x in extra) {
if (extra[x] !== O[x]) {
child[x] = inherits(base[x], extra[x], extension);
}
}
return child;
} else {
return clone(extra, true);
}
}
/**
* An Environment is a sandbox of schemas thats behavior is different from other environments.
*
* @name Environment
* @class
*/
function Environment() {
this._id = randomUUID();
this._schemas = {};
this._options = {};
this.createSchema({}, true, "urn:jsv:empty-schema#");
}
/**
* Returns a clone of the target environment.
*
* @returns {Environment} A new {@link Environment} that is a exact copy of the target environment
*/
Environment.prototype.clone = function () {
var env = new Environment();
env._schemas = createObject(this._schemas);
env._options = createObject(this._options);
return env;
};
/**
* Returns a new {@link JSONInstance} of the provided data.
*
* @param {JSONInstance|Any} data The value of the instance
* @param {String} [uri] The URI of the instance. If undefined, the URI will be a randomly generated UUID.
* @returns {JSONInstance} A new {@link JSONInstance} from the provided data
*/
Environment.prototype.createInstance = function (data, uri) {
uri = formatURI(uri);
if (data instanceof JSONInstance && (!uri || data.getURI() === uri)) {
return data;
}
return new JSONInstance(this, data, uri);
};
/**
* Creates a new {@link JSONSchema} from the provided data, and registers it with the environment.
*
* @param {JSONInstance|Any} data The value of the schema
* @param {JSONSchema|Boolean} [schema] The schema to bind to the instance. If <code>undefined</code>, the environment's default schema will be used. If <code>true</code>, the instance's schema will be itself.
* @param {String} [uri] The URI of the schema. If undefined, the URI will be a randomly generated UUID.
* @returns {JSONSchema} A new {@link JSONSchema} from the provided data
* @throws {InitializationError} If a schema that is not registered with the environment is referenced
*/
Environment.prototype.createSchema = function (data, schema, uri) {
uri = formatURI(uri);
if (data instanceof JSONSchema && (!uri || data._uri === uri) && (!schema || data.getSchema().equals(schema))) {
return data;
}
return new JSONSchema(this, data, uri, schema);
};
/**
* Creates an empty schema.
*
* @returns {JSONSchema} The empty schema, who's schema is itself.
*/
Environment.prototype.createEmptySchema = function () {
return this._schemas["urn:jsv:empty-schema#"];
};
/**
* Returns the schema registered with the provided URI.
*
* @param {String} uri The absolute URI of the required schema
* @returns {JSONSchema|undefined} The request schema, or <code>undefined</code> if not found
*/
Environment.prototype.findSchema = function (uri) {
return this._schemas[formatURI(uri)];
};
/**
* Sets the specified environment option to the specified value.
*
* @param {String} name The name of the environment option to set
* @param {Any} value The new value of the environment option
*/
Environment.prototype.setOption = function (name, value) {
this._options[name] = value;
};
/**
* Returns the specified environment option.
*
* @param {String} name The name of the environment option to set
* @returns {Any} The value of the environment option
*/
Environment.prototype.getOption = function (name) {
return this._options[name];
};
/**
* Sets the default fragment delimiter of the environment.
*
* @deprecated Use {@link Environment#setOption} with option "defaultFragmentDelimiter"
* @param {String} fd The fragment delimiter character
*/
Environment.prototype.setDefaultFragmentDelimiter = function (fd) {
if (typeof fd === "string" && fd.length > 0) {
this._options["defaultFragmentDelimiter"] = fd;
}
};
/**
* Returns the default fragment delimiter of the environment.
*
* @deprecated Use {@link Environment#getOption} with option "defaultFragmentDelimiter"
* @returns {String} The fragment delimiter character
*/
Environment.prototype.getDefaultFragmentDelimiter = function () {
return this._options["defaultFragmentDelimiter"];
};
/**
* Sets the URI of the default schema for the environment.
*
* @deprecated Use {@link Environment#setOption} with option "defaultSchemaURI"
* @param {String} uri The default schema URI
*/
Environment.prototype.setDefaultSchemaURI = function (uri) {
if (typeof uri === "string") {
this._options["defaultSchemaURI"] = formatURI(uri);
}
};
/**
* Returns the default schema of the environment.
*
* @returns {JSONSchema} The default schema
*/
Environment.prototype.getDefaultSchema = function () {
return this.findSchema(this._options["defaultSchemaURI"]);
};
/**
* Validates both the provided schema and the provided instance, and returns a {@link Report}.
* If the schema fails to validate, the instance will not be validated.
*
* @param {JSONInstance|Any} instanceJSON The {@link JSONInstance} or JavaScript value to validate.
* @param {JSONSchema|Any} schemaJSON The {@link JSONSchema} or JavaScript value to use in the validation. This will also be validated againt the schema's schema.
* @returns {Report} The result of the validation
*/
Environment.prototype.validate = function (instanceJSON, schemaJSON) {
var instance,
schema,
schemaSchema,
report = new Report();
try {
instance = this.createInstance(instanceJSON);
report.instance = instance;
} catch (e) {
report.addError(e.uri, e.schemaUri, e.attribute, e.message, e.details);
}
try {
schema = this.createSchema(schemaJSON);
report.schema = schema;
schemaSchema = schema.getSchema();
report.schemaSchema = schemaSchema;
} catch (f) {
report.addError(f.uri, f.schemaUri, f.attribute, f.message, f.details);
}
if (schemaSchema) {
schemaSchema.validate(schema, report);
}
if (report.errors.length) {
return report;
}
return schema.validate(instance, report);
};
/**
* @private
*/
Environment.prototype._checkForInvalidInstances = function (stackSize, schemaURI) {
var result = [],
stack = [
[schemaURI, this._schemas[schemaURI]]
],
counter = 0,
item, uri, instance, properties, key;
while (counter++ < stackSize && stack.length) {
item = stack.shift();
uri = item[0];
instance = item[1];
if (instance instanceof JSONSchema) {
if (this._schemas[instance._uri] !== instance) {
result.push("Instance " + uri + " does not match " + instance._uri);
} else {
//schema = instance.getSchema();
//stack.push([uri + "/{schema}", schema]);
properties = instance.getAttributes();
for (key in properties) {
if (properties[key] !== O[key]) {
stack.push([uri + "/" + escapeURIComponent(key), properties[key]]);
}
}
}
} else if (typeOf(instance) === "object") {
properties = instance;
for (key in properties) {
if (properties.hasOwnProperty(key)) {
stack.push([uri + "/" + escapeURIComponent(key), properties[key]]);
}
}
} else if (typeOf(instance) === "array") {
properties = instance;
for (key = 0; key < properties.length; ++key) {
stack.push([uri + "/" + escapeURIComponent(key), properties[key]]);
}
}
}
return result.length ? result : counter;
};
/**
* A globaly accessible object that provides the ability to create and manage {@link Environments},
* as well as providing utility methods.
*
* @namespace
*/
JSV = {
_environments : {},
_defaultEnvironmentID : "",
/**
* Returns if the provide value is an instance of {@link JSONInstance}.
*
* @param o The value to test
* @returns {Boolean} If the provide value is an instance of {@link JSONInstance}
*/
isJSONInstance : function (o) {
return o instanceof JSONInstance;
},
/**
* Returns if the provide value is an instance of {@link JSONSchema}.
*
* @param o The value to test
* @returns {Boolean} If the provide value is an instance of {@link JSONSchema}
*/
isJSONSchema : function (o) {
return o instanceof JSONSchema;
},
/**
* Creates and returns a new {@link Environment} that is a clone of the environment registered with the provided ID.
* If no environment ID is provided, the default environment is cloned.
*
* @param {String} [id] The ID of the environment to clone. If <code>undefined</code>, the default environment ID is used.
* @returns {Environment} A newly cloned {@link Environment}
* @throws {Error} If there is no environment registered with the provided ID
*/
createEnvironment : function (id) {
id = id || this._defaultEnvironmentID;
if (!this._environments[id]) {
throw new Error("Unknown Environment ID");
}
//else
return this._environments[id].clone();
},
Environment : Environment,
/**
* Registers the provided {@link Environment} with the provided ID.
*
* @param {String} id The ID of the environment
* @param {Environment} env The environment to register
*/
registerEnvironment : function (id, env) {
id = id || (env || 0)._id;
if (id && !this._environments[id] && env instanceof Environment) {
env._id = id;
this._environments[id] = env;
}
},
/**
* Sets which registered ID is the default environment.
*
* @param {String} id The ID of the registered environment that is default
* @throws {Error} If there is no registered environment with the provided ID
*/
setDefaultEnvironmentID : function (id) {
if (typeof id === "string") {
if (!this._environments[id]) {
throw new Error("Unknown Environment ID");
}
this._defaultEnvironmentID = id;
}
},
/**
* Returns the ID of the default environment.
*
* @returns {String} The ID of the default environment
*/
getDefaultEnvironmentID : function () {
return this._defaultEnvironmentID;
},
//
// Utility Functions
//
/**
* Returns the name of the type of the provided value.
*
* @event //utility
* @param {Any} o The value to determine the type of
* @returns {String} The name of the type of the value
*/
typeOf : typeOf,
/**
* Return a new object that inherits all of the properties of the provided object.
*
* @event //utility
* @param {Object} proto The prototype of the new object
* @returns {Object} A new object that inherits all of the properties of the provided object
*/
createObject : createObject,
/**
* Returns a new object with each property transformed by the iterator.
*
* @event //utility
* @param {Object} obj The object to transform
* @param {Function} iterator A function that returns the new value of the provided property
* @param {Object} [scope] The value of <code>this</code> in the iterator
* @returns {Object} A new object with each property transformed
*/
mapObject : mapObject,
/**
* Returns a new array with each item transformed by the iterator.
*
* @event //utility
* @param {Array} arr The array to transform
* @param {Function} iterator A function that returns the new value of the provided item
* @param {Object} scope The value of <code>this</code> in the iterator
* @returns {Array} A new array with each item transformed
*/
mapArray : mapArray,
/**
* Returns a new array that only contains the items allowed by the iterator.
*
* @event //utility
* @param {Array} arr The array to filter
* @param {Function} iterator The function that returns true if the provided property should be added to the array
* @param {Object} scope The value of <code>this</code> within the iterator
* @returns {Array} A new array that contains the items allowed by the iterator
*/
filterArray : filterArray,
/**
* Returns the first index in the array that the provided item is located at.
*
* @event //utility
* @param {Array} arr The array to search
* @param {Any} o The item being searched for
* @returns {Number} The index of the item in the array, or <code>-1</code> if not found
*/
searchArray : searchArray,
/**
* Returns an array representation of a value.
* <ul>
* <li>For array-like objects, the value will be casted as an Array type.</li>
* <li>If an array is provided, the function will simply return the same array.</li>
* <li>For a null or undefined value, the result will be an empty Array.</li>
* <li>For all other values, the value will be the first element in a new Array. </li>
* </ul>
*
* @event //utility
* @param {Any} o The value to convert into an array
* @returns {Array} The value as an array
*/
toArray : toArray,
/**
* Returns an array of the names of all properties of an object.
*
* @event //utility
* @param {Object|Array} o The object in question
* @returns {Array} The names of all properties
*/
keys : keys,
/**
* Mutates the array by pushing the provided value onto the array only if it is not already there.
*
* @event //utility
* @param {Array} arr The array to modify
* @param {Any} o The object to add to the array if it is not already there
* @returns {Array} The provided array for chaining
*/
pushUnique : pushUnique,
/**
* Mutates the array by removing the first item that matches the provided value in the array.
*
* @event //utility
* @param {Array} arr The array to modify
* @param {Any} o The object to remove from the array
* @returns {Array} The provided array for chaining
*/
popFirst : popFirst,
/**
* Creates a copy of the target object.
* <p>
* This method will create a new instance of the target, and then mixin the properties of the target.
* If <code>deep</code> is <code>true</code>, then each property will be cloned before mixin.
* </p>
* <p><b>Warning</b>: This is not a generic clone function, as it will only properly clone objects and arrays.</p>
*
* @event //utility
* @param {Any} o The value to clone
* @param {Boolean} [deep=false] If each property should be recursively cloned
* @returns A cloned copy of the provided value
*/
clone : clone,
/**
* Generates a pseudo-random UUID.
*
* @event //utility
* @returns {String} A new universally unique ID
*/
randomUUID : randomUUID,
/**
* Properly escapes a URI component for embedding into a URI string.
*
* @event //utility
* @param {String} str The URI component to escape
* @returns {String} The escaped URI component
*/
escapeURIComponent : escapeURIComponent,
/**
* Returns a URI that is formated for JSV. Currently, this only ensures that the URI ends with a hash tag (<code>#</code>).
*
* @event //utility
* @param {String} uri The URI to format
* @returns {String} The URI formatted for JSV
*/
formatURI : formatURI,
/**
* Merges two schemas/instance together.
*
* @event //utility
* @param {JSONSchema|Any} base The old value to merge
* @param {JSONSchema|Any} extra The new value to merge
* @param {Boolean} extension If the merge is a JSON Schema extension
* @return {Any} The modified base value
*/
inherits : inherits,
/**
* @private
* @event //utility
*/
InitializationError : InitializationError
};
this.JSV = JSV; //set global object
exports.JSV = JSV; //export to CommonJS
require("./environments"); //load default environments
}());
|