util.js

  1. /**
  2. * @namespace concrete
  3. */
  4. var concrete = concrete || {};
  5. /**
  6. * @namespace concrete.util
  7. */
  8. concrete.util = (function() {
  9. var util = {};
  10. /**
  11. * Generate a Concrete UUID
  12. *
  13. * @returns {UUID}
  14. *
  15. * @function concrete.util.generateUUID
  16. * @memberof concrete.util
  17. */
  18. util.generateUUID = function() {
  19. var uuid = new UUID();
  20. uuid.uuidString = util.generateUUIDString();
  21. return uuid;
  22. };
  23. /**
  24. * Generate a UUID string
  25. * Code based on the uuid.core.js script from MIT licensed project 'UUID.js':
  26. * https://github.com/LiosK/UUID.js
  27. *
  28. * @returns {String}
  29. *
  30. * @function concrete.util.generateUUIDString
  31. * @memberof concrete.util
  32. */
  33. util.generateUUIDString = function() {
  34. /**
  35. * Returns an unsigned x-bit random integer.
  36. * @param {int} x A positive integer ranging from 0 to 53, inclusive.
  37. * @returns {int} An unsigned x-bit random integer (0 <= f(x) < 2^x).
  38. */
  39. function rand(x) { // _getRandomInt
  40. if (x < 0) return NaN;
  41. if (x <= 30) return (0 | Math.random() * (1 << x));
  42. if (x <= 53) return (0 | Math.random() * (1 << 30)) +
  43. (0 | Math.random() * (1 << x - 30)) * (1 << 30);
  44. return NaN;
  45. }
  46. /**
  47. * Converts an integer to a zero-filled hexadecimal string.
  48. * @param {int} num
  49. * @param {int} length
  50. * @returns {string}
  51. */
  52. function hex(num, length) { // _hexAligner
  53. var str = num.toString(16), i = length - str.length, z = "0";
  54. for (; i > 0; i >>>= 1, z += z) { if (i & 1) { str = z + str; } }
  55. return str;
  56. }
  57. return hex(rand(32), 8) + // time_low
  58. "-" +
  59. hex(rand(16), 4) + // time_mid
  60. "-" +
  61. hex(0x4000 | rand(12), 4) + // time_hi_and_version
  62. "-" +
  63. hex(0x8000 | rand(14), 4) + // clock_seq_hi_and_reserved clock_seq_low
  64. "-" +
  65. hex(rand(48), 12); // node
  66. };
  67. /** Retrieve HTTP GET parameters by name
  68. *
  69. * Adapted from:
  70. * http://stackoverflow.com/questions/19491336/get-url-parameter-jquery-or-how-to-get-query-string-values-in-js
  71. *
  72. * @param {String} sParam - Name of HTTP GET parameter to retrieve
  73. * @returns {String}
  74. *
  75. * @function concrete.util.getURLParameter
  76. * @memberof concrete.util
  77. */
  78. util.getURLParameter = function(sParam) {
  79. var sPageURL = decodeURIComponent(window.location.search.substring(1)),
  80. sURLVariables = sPageURL.split('&'),
  81. sParameterName,
  82. i;
  83. for (i = 0; i < sURLVariables.length; i++) {
  84. sParameterName = sURLVariables[i].split('=');
  85. if (sParameterName[0] === sParam) {
  86. return sParameterName[1] === undefined ? true : sParameterName[1];
  87. }
  88. }
  89. };
  90. /**
  91. * Takes a string, returns a version of the string that replaces
  92. * any of the CSS selector metacharacters:
  93. * !"#$%&'()*+,./:;<=>?@[\]^`{|}~
  94. * with an underscore. Per the jQuery documentation, these
  95. * metacharacters in CSS selector names if they are escaped with '\\',
  96. * but replacing them with underscores seems less likely to cause
  97. * strange behavior.
  98. *
  99. * Useful for handling Entity IDs that are prefixed with a colon,
  100. * e.g. ':Entity_ENG_EDL_0088070'.
  101. *
  102. * @param {String} s
  103. * @returns {String}
  104. */
  105. util.selectorSafeString = function(s) {
  106. return s.replace(/[!"#$%&'()*+,./:;<=>?@[\]^`{|}~]/g, '_');
  107. };
  108. return util;
  109. })();