additional-methods.js 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998
  1. /*!
  2. * jQuery Validation Plugin v1.14.0
  3. *
  4. * http://jqueryvalidation.org/
  5. *
  6. * Copyright (c) 2015 Jörn Zaefferer
  7. * Released under the MIT license
  8. */
  9. (function( factory ) {
  10. if ( typeof define === "function" && define.amd ) {
  11. define( ["jquery", "./jquery.validate"], factory );
  12. } else {
  13. factory( jQuery );
  14. }
  15. }(function( $ ) {
  16. (function() {
  17. function stripHtml(value) {
  18. // remove html tags and space chars
  19. return value.replace(/<.[^<>]*?>/g, " ").replace(/&nbsp;|&#160;/gi, " ")
  20. // remove punctuation
  21. .replace(/[.(),;:!?%#$'\"_+=\/\-“”’]*/g, "");
  22. }
  23. $.validator.addMethod("maxWords", function(value, element, params) {
  24. return this.optional(element) || stripHtml(value).match(/\b\w+\b/g).length <= params;
  25. }, $.validator.format("Please enter {0} words or less."));
  26. $.validator.addMethod("minWords", function(value, element, params) {
  27. return this.optional(element) || stripHtml(value).match(/\b\w+\b/g).length >= params;
  28. }, $.validator.format("Please enter at least {0} words."));
  29. $.validator.addMethod("rangeWords", function(value, element, params) {
  30. var valueStripped = stripHtml(value),
  31. regex = /\b\w+\b/g;
  32. return this.optional(element) || valueStripped.match(regex).length >= params[0] && valueStripped.match(regex).length <= params[1];
  33. }, $.validator.format("Please enter between {0} and {1} words."));
  34. }());
  35. // Accept a value from a file input based on a required mimetype
  36. $.validator.addMethod("accept", function(value, element, param) {
  37. // Split mime on commas in case we have multiple types we can accept
  38. var typeParam = typeof param === "string" ? param.replace(/\s/g, "").replace(/,/g, "|") : "image/*",
  39. optionalValue = this.optional(element),
  40. i, file;
  41. // Element is optional
  42. if (optionalValue) {
  43. return optionalValue;
  44. }
  45. if ($(element).attr("type") === "file") {
  46. // If we are using a wildcard, make it regex friendly
  47. typeParam = typeParam.replace(/\*/g, ".*");
  48. // Check if the element has a FileList before checking each file
  49. if (element.files && element.files.length) {
  50. for (i = 0; i < element.files.length; i++) {
  51. file = element.files[i];
  52. // Grab the mimetype from the loaded file, verify it matches
  53. if (!file.type.match(new RegExp( "\\.?(" + typeParam + ")$", "i"))) {
  54. return false;
  55. }
  56. }
  57. }
  58. }
  59. // Either return true because we've validated each file, or because the
  60. // browser does not support element.files and the FileList feature
  61. return true;
  62. }, $.validator.format("Please enter a value with a valid mimetype."));
  63. $.validator.addMethod("alphanumeric", function(value, element) {
  64. return this.optional(element) || /^\w+$/i.test(value);
  65. }, "Letters, numbers, and underscores only please");
  66. /*
  67. * Dutch bank account numbers (not 'giro' numbers) have 9 digits
  68. * and pass the '11 check'.
  69. * We accept the notation with spaces, as that is common.
  70. * acceptable: 123456789 or 12 34 56 789
  71. */
  72. $.validator.addMethod("bankaccountNL", function(value, element) {
  73. if (this.optional(element)) {
  74. return true;
  75. }
  76. if (!(/^[0-9]{9}|([0-9]{2} ){3}[0-9]{3}$/.test(value))) {
  77. return false;
  78. }
  79. // now '11 check'
  80. var account = value.replace(/ /g, ""), // remove spaces
  81. sum = 0,
  82. len = account.length,
  83. pos, factor, digit;
  84. for ( pos = 0; pos < len; pos++ ) {
  85. factor = len - pos;
  86. digit = account.substring(pos, pos + 1);
  87. sum = sum + factor * digit;
  88. }
  89. return sum % 11 === 0;
  90. }, "Please specify a valid bank account number");
  91. $.validator.addMethod("bankorgiroaccountNL", function(value, element) {
  92. return this.optional(element) ||
  93. ($.validator.methods.bankaccountNL.call(this, value, element)) ||
  94. ($.validator.methods.giroaccountNL.call(this, value, element));
  95. }, "Please specify a valid bank or giro account number");
  96. /**
  97. * BIC is the business identifier code (ISO 9362). This BIC check is not a guarantee for authenticity.
  98. *
  99. * BIC pattern: BBBBCCLLbbb (8 or 11 characters long; bbb is optional)
  100. *
  101. * BIC definition in detail:
  102. * - First 4 characters - bank code (only letters)
  103. * - Next 2 characters - ISO 3166-1 alpha-2 country code (only letters)
  104. * - Next 2 characters - location code (letters and digits)
  105. * a. shall not start with '0' or '1'
  106. * b. second character must be a letter ('O' is not allowed) or one of the following digits ('0' for test (therefore not allowed), '1' for passive participant and '2' for active participant)
  107. * - Last 3 characters - branch code, optional (shall not start with 'X' except in case of 'XXX' for primary office) (letters and digits)
  108. */
  109. $.validator.addMethod("bic", function(value, element) {
  110. return this.optional( element ) || /^([A-Z]{6}[A-Z2-9][A-NP-Z1-2])(X{3}|[A-WY-Z0-9][A-Z0-9]{2})?$/.test( value );
  111. }, "Please specify a valid BIC code");
  112. /*
  113. * Código de identificación fiscal ( CIF ) is the tax identification code for Spanish legal entities
  114. * Further rules can be found in Spanish on http://es.wikipedia.org/wiki/C%C3%B3digo_de_identificaci%C3%B3n_fiscal
  115. */
  116. $.validator.addMethod( "cifES", function( value ) {
  117. "use strict";
  118. var num = [],
  119. controlDigit, sum, i, count, tmp, secondDigit;
  120. value = value.toUpperCase();
  121. // Quick format test
  122. if ( !value.match( "((^[A-Z]{1}[0-9]{7}[A-Z0-9]{1}$|^[T]{1}[A-Z0-9]{8}$)|^[0-9]{8}[A-Z]{1}$)" ) ) {
  123. return false;
  124. }
  125. for ( i = 0; i < 9; i++ ) {
  126. num[ i ] = parseInt( value.charAt( i ), 10 );
  127. }
  128. // Algorithm for checking CIF codes
  129. sum = num[ 2 ] + num[ 4 ] + num[ 6 ];
  130. for ( count = 1; count < 8; count += 2 ) {
  131. tmp = ( 2 * num[ count ] ).toString();
  132. secondDigit = tmp.charAt( 1 );
  133. sum += parseInt( tmp.charAt( 0 ), 10 ) + ( secondDigit === "" ? 0 : parseInt( secondDigit, 10 ) );
  134. }
  135. /* The first (position 1) is a letter following the following criteria:
  136. * A. Corporations
  137. * B. LLCs
  138. * C. General partnerships
  139. * D. Companies limited partnerships
  140. * E. Communities of goods
  141. * F. Cooperative Societies
  142. * G. Associations
  143. * H. Communities of homeowners in horizontal property regime
  144. * J. Civil Societies
  145. * K. Old format
  146. * L. Old format
  147. * M. Old format
  148. * N. Nonresident entities
  149. * P. Local authorities
  150. * Q. Autonomous bodies, state or not, and the like, and congregations and religious institutions
  151. * R. Congregations and religious institutions (since 2008 ORDER EHA/451/2008)
  152. * S. Organs of State Administration and regions
  153. * V. Agrarian Transformation
  154. * W. Permanent establishments of non-resident in Spain
  155. */
  156. if ( /^[ABCDEFGHJNPQRSUVW]{1}/.test( value ) ) {
  157. sum += "";
  158. controlDigit = 10 - parseInt( sum.charAt( sum.length - 1 ), 10 );
  159. value += controlDigit;
  160. return ( num[ 8 ].toString() === String.fromCharCode( 64 + controlDigit ) || num[ 8 ].toString() === value.charAt( value.length - 1 ) );
  161. }
  162. return false;
  163. }, "Please specify a valid CIF number." );
  164. /*
  165. * Brazillian CPF number (Cadastrado de Pessoas Físicas) is the equivalent of a Brazilian tax registration number.
  166. * CPF numbers have 11 digits in total: 9 numbers followed by 2 check numbers that are being used for validation.
  167. */
  168. $.validator.addMethod("cpfBR", function(value) {
  169. // Removing special characters from value
  170. value = value.replace(/([~!@#$%^&*()_+=`{}\[\]\-|\\:;'<>,.\/? ])+/g, "");
  171. // Checking value to have 11 digits only
  172. if (value.length !== 11) {
  173. return false;
  174. }
  175. var sum = 0,
  176. firstCN, secondCN, checkResult, i;
  177. firstCN = parseInt(value.substring(9, 10), 10);
  178. secondCN = parseInt(value.substring(10, 11), 10);
  179. checkResult = function(sum, cn) {
  180. var result = (sum * 10) % 11;
  181. if ((result === 10) || (result === 11)) {result = 0;}
  182. return (result === cn);
  183. };
  184. // Checking for dump data
  185. if (value === "" ||
  186. value === "00000000000" ||
  187. value === "11111111111" ||
  188. value === "22222222222" ||
  189. value === "33333333333" ||
  190. value === "44444444444" ||
  191. value === "55555555555" ||
  192. value === "66666666666" ||
  193. value === "77777777777" ||
  194. value === "88888888888" ||
  195. value === "99999999999"
  196. ) {
  197. return false;
  198. }
  199. // Step 1 - using first Check Number:
  200. for ( i = 1; i <= 9; i++ ) {
  201. sum = sum + parseInt(value.substring(i - 1, i), 10) * (11 - i);
  202. }
  203. // If first Check Number (CN) is valid, move to Step 2 - using second Check Number:
  204. if ( checkResult(sum, firstCN) ) {
  205. sum = 0;
  206. for ( i = 1; i <= 10; i++ ) {
  207. sum = sum + parseInt(value.substring(i - 1, i), 10) * (12 - i);
  208. }
  209. return checkResult(sum, secondCN);
  210. }
  211. return false;
  212. }, "Please specify a valid CPF number");
  213. /* NOTICE: Modified version of Castle.Components.Validator.CreditCardValidator
  214. * Redistributed under the the Apache License 2.0 at http://www.apache.org/licenses/LICENSE-2.0
  215. * Valid Types: mastercard, visa, amex, dinersclub, enroute, discover, jcb, unknown, all (overrides all other settings)
  216. */
  217. $.validator.addMethod("creditcardtypes", function(value, element, param) {
  218. if (/[^0-9\-]+/.test(value)) {
  219. return false;
  220. }
  221. value = value.replace(/\D/g, "");
  222. var validTypes = 0x0000;
  223. if (param.mastercard) {
  224. validTypes |= 0x0001;
  225. }
  226. if (param.visa) {
  227. validTypes |= 0x0002;
  228. }
  229. if (param.amex) {
  230. validTypes |= 0x0004;
  231. }
  232. if (param.dinersclub) {
  233. validTypes |= 0x0008;
  234. }
  235. if (param.enroute) {
  236. validTypes |= 0x0010;
  237. }
  238. if (param.discover) {
  239. validTypes |= 0x0020;
  240. }
  241. if (param.jcb) {
  242. validTypes |= 0x0040;
  243. }
  244. if (param.unknown) {
  245. validTypes |= 0x0080;
  246. }
  247. if (param.all) {
  248. validTypes = 0x0001 | 0x0002 | 0x0004 | 0x0008 | 0x0010 | 0x0020 | 0x0040 | 0x0080;
  249. }
  250. if (validTypes & 0x0001 && /^(5[12345])/.test(value)) { //mastercard
  251. return value.length === 16;
  252. }
  253. if (validTypes & 0x0002 && /^(4)/.test(value)) { //visa
  254. return value.length === 16;
  255. }
  256. if (validTypes & 0x0004 && /^(3[47])/.test(value)) { //amex
  257. return value.length === 15;
  258. }
  259. if (validTypes & 0x0008 && /^(3(0[012345]|[68]))/.test(value)) { //dinersclub
  260. return value.length === 14;
  261. }
  262. if (validTypes & 0x0010 && /^(2(014|149))/.test(value)) { //enroute
  263. return value.length === 15;
  264. }
  265. if (validTypes & 0x0020 && /^(6011)/.test(value)) { //discover
  266. return value.length === 16;
  267. }
  268. if (validTypes & 0x0040 && /^(3)/.test(value)) { //jcb
  269. return value.length === 16;
  270. }
  271. if (validTypes & 0x0040 && /^(2131|1800)/.test(value)) { //jcb
  272. return value.length === 15;
  273. }
  274. if (validTypes & 0x0080) { //unknown
  275. return true;
  276. }
  277. return false;
  278. }, "Please enter a valid credit card number.");
  279. /**
  280. * Validates currencies with any given symbols by @jameslouiz
  281. * Symbols can be optional or required. Symbols required by default
  282. *
  283. * Usage examples:
  284. * currency: ["£", false] - Use false for soft currency validation
  285. * currency: ["$", false]
  286. * currency: ["RM", false] - also works with text based symbols such as "RM" - Malaysia Ringgit etc
  287. *
  288. * <input class="currencyInput" name="currencyInput">
  289. *
  290. * Soft symbol checking
  291. * currencyInput: {
  292. * currency: ["$", false]
  293. * }
  294. *
  295. * Strict symbol checking (default)
  296. * currencyInput: {
  297. * currency: "$"
  298. * //OR
  299. * currency: ["$", true]
  300. * }
  301. *
  302. * Multiple Symbols
  303. * currencyInput: {
  304. * currency: "$,£,¢"
  305. * }
  306. */
  307. $.validator.addMethod("currency", function(value, element, param) {
  308. var isParamString = typeof param === "string",
  309. symbol = isParamString ? param : param[0],
  310. soft = isParamString ? true : param[1],
  311. regex;
  312. symbol = symbol.replace(/,/g, "");
  313. symbol = soft ? symbol + "]" : symbol + "]?";
  314. regex = "^[" + symbol + "([1-9]{1}[0-9]{0,2}(\\,[0-9]{3})*(\\.[0-9]{0,2})?|[1-9]{1}[0-9]{0,}(\\.[0-9]{0,2})?|0(\\.[0-9]{0,2})?|(\\.[0-9]{1,2})?)$";
  315. regex = new RegExp(regex);
  316. return this.optional(element) || regex.test(value);
  317. }, "Please specify a valid currency");
  318. $.validator.addMethod("dateFA", function(value, element) {
  319. return this.optional(element) || /^[1-4]\d{3}\/((0?[1-6]\/((3[0-1])|([1-2][0-9])|(0?[1-9])))|((1[0-2]|(0?[7-9]))\/(30|([1-2][0-9])|(0?[1-9]))))$/.test(value);
  320. }, $.validator.messages.date);
  321. /**
  322. * Return true, if the value is a valid date, also making this formal check dd/mm/yyyy.
  323. *
  324. * @example $.validator.methods.date("01/01/1900")
  325. * @result true
  326. *
  327. * @example $.validator.methods.date("01/13/1990")
  328. * @result false
  329. *
  330. * @example $.validator.methods.date("01.01.1900")
  331. * @result false
  332. *
  333. * @example <input name="pippo" class="{dateITA:true}" />
  334. * @desc Declares an optional input element whose value must be a valid date.
  335. *
  336. * @name $.validator.methods.dateITA
  337. * @type Boolean
  338. * @cat Plugins/Validate/Methods
  339. */
  340. $.validator.addMethod("dateITA", function(value, element) {
  341. var check = false,
  342. re = /^\d{1,2}\/\d{1,2}\/\d{4}$/,
  343. adata, gg, mm, aaaa, xdata;
  344. if ( re.test(value)) {
  345. adata = value.split("/");
  346. gg = parseInt(adata[0], 10);
  347. mm = parseInt(adata[1], 10);
  348. aaaa = parseInt(adata[2], 10);
  349. xdata = new Date(Date.UTC(aaaa, mm - 1, gg, 12, 0, 0, 0));
  350. if ( ( xdata.getUTCFullYear() === aaaa ) && ( xdata.getUTCMonth () === mm - 1 ) && ( xdata.getUTCDate() === gg ) ) {
  351. check = true;
  352. } else {
  353. check = false;
  354. }
  355. } else {
  356. check = false;
  357. }
  358. return this.optional(element) || check;
  359. }, $.validator.messages.date);
  360. $.validator.addMethod("dateNL", function(value, element) {
  361. return this.optional(element) || /^(0?[1-9]|[12]\d|3[01])[\.\/\-](0?[1-9]|1[012])[\.\/\-]([12]\d)?(\d\d)$/.test(value);
  362. }, $.validator.messages.date);
  363. // Older "accept" file extension method. Old docs: http://docs.jquery.com/Plugins/Validation/Methods/accept
  364. $.validator.addMethod("extension", function(value, element, param) {
  365. param = typeof param === "string" ? param.replace(/,/g, "|") : "png|jpe?g|gif";
  366. return this.optional(element) || value.match(new RegExp("\\.(" + param + ")$", "i"));
  367. }, $.validator.format("Please enter a value with a valid extension."));
  368. /**
  369. * Dutch giro account numbers (not bank numbers) have max 7 digits
  370. */
  371. $.validator.addMethod("giroaccountNL", function(value, element) {
  372. return this.optional(element) || /^[0-9]{1,7}$/.test(value);
  373. }, "Please specify a valid giro account number");
  374. /**
  375. * IBAN is the international bank account number.
  376. * It has a country - specific format, that is checked here too
  377. */
  378. $.validator.addMethod("iban", function(value, element) {
  379. // some quick simple tests to prevent needless work
  380. if (this.optional(element)) {
  381. return true;
  382. }
  383. // remove spaces and to upper case
  384. var iban = value.replace(/ /g, "").toUpperCase(),
  385. ibancheckdigits = "",
  386. leadingZeroes = true,
  387. cRest = "",
  388. cOperator = "",
  389. countrycode, ibancheck, charAt, cChar, bbanpattern, bbancountrypatterns, ibanregexp, i, p;
  390. // check the country code and find the country specific format
  391. countrycode = iban.substring(0, 2);
  392. bbancountrypatterns = {
  393. "AL": "\\d{8}[\\dA-Z]{16}",
  394. "AD": "\\d{8}[\\dA-Z]{12}",
  395. "AT": "\\d{16}",
  396. "AZ": "[\\dA-Z]{4}\\d{20}",
  397. "BE": "\\d{12}",
  398. "BH": "[A-Z]{4}[\\dA-Z]{14}",
  399. "BA": "\\d{16}",
  400. "BR": "\\d{23}[A-Z][\\dA-Z]",
  401. "BG": "[A-Z]{4}\\d{6}[\\dA-Z]{8}",
  402. "CR": "\\d{17}",
  403. "HR": "\\d{17}",
  404. "CY": "\\d{8}[\\dA-Z]{16}",
  405. "CZ": "\\d{20}",
  406. "DK": "\\d{14}",
  407. "DO": "[A-Z]{4}\\d{20}",
  408. "EE": "\\d{16}",
  409. "FO": "\\d{14}",
  410. "FI": "\\d{14}",
  411. "FR": "\\d{10}[\\dA-Z]{11}\\d{2}",
  412. "GE": "[\\dA-Z]{2}\\d{16}",
  413. "DE": "\\d{18}",
  414. "GI": "[A-Z]{4}[\\dA-Z]{15}",
  415. "GR": "\\d{7}[\\dA-Z]{16}",
  416. "GL": "\\d{14}",
  417. "GT": "[\\dA-Z]{4}[\\dA-Z]{20}",
  418. "HU": "\\d{24}",
  419. "IS": "\\d{22}",
  420. "IE": "[\\dA-Z]{4}\\d{14}",
  421. "IL": "\\d{19}",
  422. "IT": "[A-Z]\\d{10}[\\dA-Z]{12}",
  423. "KZ": "\\d{3}[\\dA-Z]{13}",
  424. "KW": "[A-Z]{4}[\\dA-Z]{22}",
  425. "LV": "[A-Z]{4}[\\dA-Z]{13}",
  426. "LB": "\\d{4}[\\dA-Z]{20}",
  427. "LI": "\\d{5}[\\dA-Z]{12}",
  428. "LT": "\\d{16}",
  429. "LU": "\\d{3}[\\dA-Z]{13}",
  430. "MK": "\\d{3}[\\dA-Z]{10}\\d{2}",
  431. "MT": "[A-Z]{4}\\d{5}[\\dA-Z]{18}",
  432. "MR": "\\d{23}",
  433. "MU": "[A-Z]{4}\\d{19}[A-Z]{3}",
  434. "MC": "\\d{10}[\\dA-Z]{11}\\d{2}",
  435. "MD": "[\\dA-Z]{2}\\d{18}",
  436. "ME": "\\d{18}",
  437. "NL": "[A-Z]{4}\\d{10}",
  438. "NO": "\\d{11}",
  439. "PK": "[\\dA-Z]{4}\\d{16}",
  440. "PS": "[\\dA-Z]{4}\\d{21}",
  441. "PL": "\\d{24}",
  442. "PT": "\\d{21}",
  443. "RO": "[A-Z]{4}[\\dA-Z]{16}",
  444. "SM": "[A-Z]\\d{10}[\\dA-Z]{12}",
  445. "SA": "\\d{2}[\\dA-Z]{18}",
  446. "RS": "\\d{18}",
  447. "SK": "\\d{20}",
  448. "SI": "\\d{15}",
  449. "ES": "\\d{20}",
  450. "SE": "\\d{20}",
  451. "CH": "\\d{5}[\\dA-Z]{12}",
  452. "TN": "\\d{20}",
  453. "TR": "\\d{5}[\\dA-Z]{17}",
  454. "AE": "\\d{3}\\d{16}",
  455. "GB": "[A-Z]{4}\\d{14}",
  456. "VG": "[\\dA-Z]{4}\\d{16}"
  457. };
  458. bbanpattern = bbancountrypatterns[countrycode];
  459. // As new countries will start using IBAN in the
  460. // future, we only check if the countrycode is known.
  461. // This prevents false negatives, while almost all
  462. // false positives introduced by this, will be caught
  463. // by the checksum validation below anyway.
  464. // Strict checking should return FALSE for unknown
  465. // countries.
  466. if (typeof bbanpattern !== "undefined") {
  467. ibanregexp = new RegExp("^[A-Z]{2}\\d{2}" + bbanpattern + "$", "");
  468. if (!(ibanregexp.test(iban))) {
  469. return false; // invalid country specific format
  470. }
  471. }
  472. // now check the checksum, first convert to digits
  473. ibancheck = iban.substring(4, iban.length) + iban.substring(0, 4);
  474. for (i = 0; i < ibancheck.length; i++) {
  475. charAt = ibancheck.charAt(i);
  476. if (charAt !== "0") {
  477. leadingZeroes = false;
  478. }
  479. if (!leadingZeroes) {
  480. ibancheckdigits += "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ".indexOf(charAt);
  481. }
  482. }
  483. // calculate the result of: ibancheckdigits % 97
  484. for (p = 0; p < ibancheckdigits.length; p++) {
  485. cChar = ibancheckdigits.charAt(p);
  486. cOperator = "" + cRest + "" + cChar;
  487. cRest = cOperator % 97;
  488. }
  489. return cRest === 1;
  490. }, "Please specify a valid IBAN");
  491. $.validator.addMethod("integer", function(value, element) {
  492. return this.optional(element) || /^-?\d+$/.test(value);
  493. }, "A positive or negative non-decimal number please");
  494. $.validator.addMethod("ipv4", function(value, element) {
  495. return this.optional(element) || /^(25[0-5]|2[0-4]\d|[01]?\d\d?)\.(25[0-5]|2[0-4]\d|[01]?\d\d?)\.(25[0-5]|2[0-4]\d|[01]?\d\d?)\.(25[0-5]|2[0-4]\d|[01]?\d\d?)$/i.test(value);
  496. }, "Please enter a valid IP v4 address.");
  497. $.validator.addMethod("ipv6", function(value, element) {
  498. return this.optional(element) || /^((([0-9A-Fa-f]{1,4}:){7}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){6}:[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){5}:([0-9A-Fa-f]{1,4}:)?[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){4}:([0-9A-Fa-f]{1,4}:){0,2}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){3}:([0-9A-Fa-f]{1,4}:){0,3}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){2}:([0-9A-Fa-f]{1,4}:){0,4}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){6}((\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b)\.){3}(\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b))|(([0-9A-Fa-f]{1,4}:){0,5}:((\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b)\.){3}(\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b))|(::([0-9A-Fa-f]{1,4}:){0,5}((\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b)\.){3}(\b((25[0-5])|(1\d{2})|(2[0-4]\d)|(\d{1,2}))\b))|([0-9A-Fa-f]{1,4}::([0-9A-Fa-f]{1,4}:){0,5}[0-9A-Fa-f]{1,4})|(::([0-9A-Fa-f]{1,4}:){0,6}[0-9A-Fa-f]{1,4})|(([0-9A-Fa-f]{1,4}:){1,7}:))$/i.test(value);
  499. }, "Please enter a valid IP v6 address.");
  500. $.validator.addMethod("lettersonly", function(value, element) {
  501. return this.optional(element) || /^[a-z]+$/i.test(value);
  502. }, "Letters only please");
  503. $.validator.addMethod("letterswithbasicpunc", function(value, element) {
  504. return this.optional(element) || /^[a-z\-.,()'"\s]+$/i.test(value);
  505. }, "Letters or punctuation only please");
  506. $.validator.addMethod("mobileNL", function(value, element) {
  507. return this.optional(element) || /^((\+|00(\s|\s?\-\s?)?)31(\s|\s?\-\s?)?(\(0\)[\-\s]?)?|0)6((\s|\s?\-\s?)?[0-9]){8}$/.test(value);
  508. }, "Please specify a valid mobile number");
  509. /* For UK phone functions, do the following server side processing:
  510. * Compare original input with this RegEx pattern:
  511. * ^\(?(?:(?:00\)?[\s\-]?\(?|\+)(44)\)?[\s\-]?\(?(?:0\)?[\s\-]?\(?)?|0)([1-9]\d{1,4}\)?[\s\d\-]+)$
  512. * Extract $1 and set $prefix to '+44<space>' if $1 is '44', otherwise set $prefix to '0'
  513. * Extract $2 and remove hyphens, spaces and parentheses. Phone number is combined $prefix and $2.
  514. * A number of very detailed GB telephone number RegEx patterns can also be found at:
  515. * http://www.aa-asterisk.org.uk/index.php/Regular_Expressions_for_Validating_and_Formatting_GB_Telephone_Numbers
  516. */
  517. $.validator.addMethod("mobileUK", function(phone_number, element) {
  518. phone_number = phone_number.replace(/\(|\)|\s+|-/g, "");
  519. return this.optional(element) || phone_number.length > 9 &&
  520. phone_number.match(/^(?:(?:(?:00\s?|\+)44\s?|0)7(?:[1345789]\d{2}|624)\s?\d{3}\s?\d{3})$/);
  521. }, "Please specify a valid mobile number");
  522. /*
  523. * The número de identidad de extranjero ( NIE )is a code used to identify the non-nationals in Spain
  524. */
  525. $.validator.addMethod( "nieES", function( value ) {
  526. "use strict";
  527. value = value.toUpperCase();
  528. // Basic format test
  529. if ( !value.match( "((^[A-Z]{1}[0-9]{7}[A-Z0-9]{1}$|^[T]{1}[A-Z0-9]{8}$)|^[0-9]{8}[A-Z]{1}$)" ) ) {
  530. return false;
  531. }
  532. // Test NIE
  533. //T
  534. if ( /^[T]{1}/.test( value ) ) {
  535. return ( value[ 8 ] === /^[T]{1}[A-Z0-9]{8}$/.test( value ) );
  536. }
  537. //XYZ
  538. if ( /^[XYZ]{1}/.test( value ) ) {
  539. return (
  540. value[ 8 ] === "TRWAGMYFPDXBNJZSQVHLCKE".charAt(
  541. value.replace( "X", "0" )
  542. .replace( "Y", "1" )
  543. .replace( "Z", "2" )
  544. .substring( 0, 8 ) % 23
  545. )
  546. );
  547. }
  548. return false;
  549. }, "Please specify a valid NIE number." );
  550. /*
  551. * The Número de Identificación Fiscal ( NIF ) is the way tax identification used in Spain for individuals
  552. */
  553. $.validator.addMethod( "nifES", function( value ) {
  554. "use strict";
  555. value = value.toUpperCase();
  556. // Basic format test
  557. if ( !value.match("((^[A-Z]{1}[0-9]{7}[A-Z0-9]{1}$|^[T]{1}[A-Z0-9]{8}$)|^[0-9]{8}[A-Z]{1}$)") ) {
  558. return false;
  559. }
  560. // Test NIF
  561. if ( /^[0-9]{8}[A-Z]{1}$/.test( value ) ) {
  562. return ( "TRWAGMYFPDXBNJZSQVHLCKE".charAt( value.substring( 8, 0 ) % 23 ) === value.charAt( 8 ) );
  563. }
  564. // Test specials NIF (starts with K, L or M)
  565. if ( /^[KLM]{1}/.test( value ) ) {
  566. return ( value[ 8 ] === String.fromCharCode( 64 ) );
  567. }
  568. return false;
  569. }, "Please specify a valid NIF number." );
  570. jQuery.validator.addMethod( "notEqualTo", function( value, element, param ) {
  571. return this.optional(element) || !$.validator.methods.equalTo.call( this, value, element, param );
  572. }, "Please enter a different value, values must not be the same." );
  573. $.validator.addMethod("nowhitespace", function(value, element) {
  574. return this.optional(element) || /^\S+$/i.test(value);
  575. }, "No white space please");
  576. /**
  577. * Return true if the field value matches the given format RegExp
  578. *
  579. * @example $.validator.methods.pattern("AR1004",element,/^AR\d{4}$/)
  580. * @result true
  581. *
  582. * @example $.validator.methods.pattern("BR1004",element,/^AR\d{4}$/)
  583. * @result false
  584. *
  585. * @name $.validator.methods.pattern
  586. * @type Boolean
  587. * @cat Plugins/Validate/Methods
  588. */
  589. $.validator.addMethod("pattern", function(value, element, param) {
  590. if (this.optional(element)) {
  591. return true;
  592. }
  593. if (typeof param === "string") {
  594. param = new RegExp("^(?:" + param + ")$");
  595. }
  596. return param.test(value);
  597. }, "Invalid format.");
  598. /**
  599. * Dutch phone numbers have 10 digits (or 11 and start with +31).
  600. */
  601. $.validator.addMethod("phoneNL", function(value, element) {
  602. return this.optional(element) || /^((\+|00(\s|\s?\-\s?)?)31(\s|\s?\-\s?)?(\(0\)[\-\s]?)?|0)[1-9]((\s|\s?\-\s?)?[0-9]){8}$/.test(value);
  603. }, "Please specify a valid phone number.");
  604. /* For UK phone functions, do the following server side processing:
  605. * Compare original input with this RegEx pattern:
  606. * ^\(?(?:(?:00\)?[\s\-]?\(?|\+)(44)\)?[\s\-]?\(?(?:0\)?[\s\-]?\(?)?|0)([1-9]\d{1,4}\)?[\s\d\-]+)$
  607. * Extract $1 and set $prefix to '+44<space>' if $1 is '44', otherwise set $prefix to '0'
  608. * Extract $2 and remove hyphens, spaces and parentheses. Phone number is combined $prefix and $2.
  609. * A number of very detailed GB telephone number RegEx patterns can also be found at:
  610. * http://www.aa-asterisk.org.uk/index.php/Regular_Expressions_for_Validating_and_Formatting_GB_Telephone_Numbers
  611. */
  612. $.validator.addMethod("phoneUK", function(phone_number, element) {
  613. phone_number = phone_number.replace(/\(|\)|\s+|-/g, "");
  614. return this.optional(element) || phone_number.length > 9 &&
  615. phone_number.match(/^(?:(?:(?:00\s?|\+)44\s?)|(?:\(?0))(?:\d{2}\)?\s?\d{4}\s?\d{4}|\d{3}\)?\s?\d{3}\s?\d{3,4}|\d{4}\)?\s?(?:\d{5}|\d{3}\s?\d{3})|\d{5}\)?\s?\d{4,5})$/);
  616. }, "Please specify a valid phone number");
  617. /**
  618. * matches US phone number format
  619. *
  620. * where the area code may not start with 1 and the prefix may not start with 1
  621. * allows '-' or ' ' as a separator and allows parens around area code
  622. * some people may want to put a '1' in front of their number
  623. *
  624. * 1(212)-999-2345 or
  625. * 212 999 2344 or
  626. * 212-999-0983
  627. *
  628. * but not
  629. * 111-123-5434
  630. * and not
  631. * 212 123 4567
  632. */
  633. $.validator.addMethod("phoneUS", function(phone_number, element) {
  634. phone_number = phone_number.replace(/\s+/g, "");
  635. return this.optional(element) || phone_number.length > 9 &&
  636. phone_number.match(/^(\+?1-?)?(\([2-9]([02-9]\d|1[02-9])\)|[2-9]([02-9]\d|1[02-9]))-?[2-9]([02-9]\d|1[02-9])-?\d{4}$/);
  637. }, "Please specify a valid phone number");
  638. /* For UK phone functions, do the following server side processing:
  639. * Compare original input with this RegEx pattern:
  640. * ^\(?(?:(?:00\)?[\s\-]?\(?|\+)(44)\)?[\s\-]?\(?(?:0\)?[\s\-]?\(?)?|0)([1-9]\d{1,4}\)?[\s\d\-]+)$
  641. * Extract $1 and set $prefix to '+44<space>' if $1 is '44', otherwise set $prefix to '0'
  642. * Extract $2 and remove hyphens, spaces and parentheses. Phone number is combined $prefix and $2.
  643. * A number of very detailed GB telephone number RegEx patterns can also be found at:
  644. * http://www.aa-asterisk.org.uk/index.php/Regular_Expressions_for_Validating_and_Formatting_GB_Telephone_Numbers
  645. */
  646. //Matches UK landline + mobile, accepting only 01-3 for landline or 07 for mobile to exclude many premium numbers
  647. $.validator.addMethod("phonesUK", function(phone_number, element) {
  648. phone_number = phone_number.replace(/\(|\)|\s+|-/g, "");
  649. return this.optional(element) || phone_number.length > 9 &&
  650. phone_number.match(/^(?:(?:(?:00\s?|\+)44\s?|0)(?:1\d{8,9}|[23]\d{9}|7(?:[1345789]\d{8}|624\d{6})))$/);
  651. }, "Please specify a valid uk phone number");
  652. /**
  653. * Matches a valid Canadian Postal Code
  654. *
  655. * @example jQuery.validator.methods.postalCodeCA( "H0H 0H0", element )
  656. * @result true
  657. *
  658. * @example jQuery.validator.methods.postalCodeCA( "H0H0H0", element )
  659. * @result false
  660. *
  661. * @name jQuery.validator.methods.postalCodeCA
  662. * @type Boolean
  663. * @cat Plugins/Validate/Methods
  664. */
  665. $.validator.addMethod( "postalCodeCA", function( value, element ) {
  666. return this.optional( element ) || /^[ABCEGHJKLMNPRSTVXY]\d[A-Z] \d[A-Z]\d$/.test( value );
  667. }, "Please specify a valid postal code" );
  668. /*
  669. * Valida CEPs do brasileiros:
  670. *
  671. * Formatos aceitos:
  672. * 99999-999
  673. * 99.999-999
  674. * 99999999
  675. */
  676. $.validator.addMethod("postalcodeBR", function(cep_value, element) {
  677. return this.optional(element) || /^\d{2}.\d{3}-\d{3}?$|^\d{5}-?\d{3}?$/.test( cep_value );
  678. }, "Informe um CEP válido.");
  679. /* Matches Italian postcode (CAP) */
  680. $.validator.addMethod("postalcodeIT", function(value, element) {
  681. return this.optional(element) || /^\d{5}$/.test(value);
  682. }, "Please specify a valid postal code");
  683. $.validator.addMethod("postalcodeNL", function(value, element) {
  684. return this.optional(element) || /^[1-9][0-9]{3}\s?[a-zA-Z]{2}$/.test(value);
  685. }, "Please specify a valid postal code");
  686. // Matches UK postcode. Does not match to UK Channel Islands that have their own postcodes (non standard UK)
  687. $.validator.addMethod("postcodeUK", function(value, element) {
  688. return this.optional(element) || /^((([A-PR-UWYZ][0-9])|([A-PR-UWYZ][0-9][0-9])|([A-PR-UWYZ][A-HK-Y][0-9])|([A-PR-UWYZ][A-HK-Y][0-9][0-9])|([A-PR-UWYZ][0-9][A-HJKSTUW])|([A-PR-UWYZ][A-HK-Y][0-9][ABEHMNPRVWXY]))\s?([0-9][ABD-HJLNP-UW-Z]{2})|(GIR)\s?(0AA))$/i.test(value);
  689. }, "Please specify a valid UK postcode");
  690. /*
  691. * Lets you say "at least X inputs that match selector Y must be filled."
  692. *
  693. * The end result is that neither of these inputs:
  694. *
  695. * <input class="productinfo" name="partnumber">
  696. * <input class="productinfo" name="description">
  697. *
  698. * ...will validate unless at least one of them is filled.
  699. *
  700. * partnumber: {require_from_group: [1,".productinfo"]},
  701. * description: {require_from_group: [1,".productinfo"]}
  702. *
  703. * options[0]: number of fields that must be filled in the group
  704. * options[1]: CSS selector that defines the group of conditionally required fields
  705. */
  706. $.validator.addMethod("require_from_group", function(value, element, options) {
  707. var $fields = $(options[1], element.form),
  708. $fieldsFirst = $fields.eq(0),
  709. validator = $fieldsFirst.data("valid_req_grp") ? $fieldsFirst.data("valid_req_grp") : $.extend({}, this),
  710. isValid = $fields.filter(function() {
  711. return validator.elementValue(this);
  712. }).length >= options[0];
  713. // Store the cloned validator for future validation
  714. $fieldsFirst.data("valid_req_grp", validator);
  715. // If element isn't being validated, run each require_from_group field's validation rules
  716. if (!$(element).data("being_validated")) {
  717. $fields.data("being_validated", true);
  718. $fields.each(function() {
  719. validator.element(this);
  720. });
  721. $fields.data("being_validated", false);
  722. }
  723. return isValid;
  724. }, $.validator.format("Please fill at least {0} of these fields."));
  725. /*
  726. * Lets you say "either at least X inputs that match selector Y must be filled,
  727. * OR they must all be skipped (left blank)."
  728. *
  729. * The end result, is that none of these inputs:
  730. *
  731. * <input class="productinfo" name="partnumber">
  732. * <input class="productinfo" name="description">
  733. * <input class="productinfo" name="color">
  734. *
  735. * ...will validate unless either at least two of them are filled,
  736. * OR none of them are.
  737. *
  738. * partnumber: {skip_or_fill_minimum: [2,".productinfo"]},
  739. * description: {skip_or_fill_minimum: [2,".productinfo"]},
  740. * color: {skip_or_fill_minimum: [2,".productinfo"]}
  741. *
  742. * options[0]: number of fields that must be filled in the group
  743. * options[1]: CSS selector that defines the group of conditionally required fields
  744. *
  745. */
  746. $.validator.addMethod("skip_or_fill_minimum", function(value, element, options) {
  747. var $fields = $(options[1], element.form),
  748. $fieldsFirst = $fields.eq(0),
  749. validator = $fieldsFirst.data("valid_skip") ? $fieldsFirst.data("valid_skip") : $.extend({}, this),
  750. numberFilled = $fields.filter(function() {
  751. return validator.elementValue(this);
  752. }).length,
  753. isValid = numberFilled === 0 || numberFilled >= options[0];
  754. // Store the cloned validator for future validation
  755. $fieldsFirst.data("valid_skip", validator);
  756. // If element isn't being validated, run each skip_or_fill_minimum field's validation rules
  757. if (!$(element).data("being_validated")) {
  758. $fields.data("being_validated", true);
  759. $fields.each(function() {
  760. validator.element(this);
  761. });
  762. $fields.data("being_validated", false);
  763. }
  764. return isValid;
  765. }, $.validator.format("Please either skip these fields or fill at least {0} of them."));
  766. /* Validates US States and/or Territories by @jdforsythe
  767. * Can be case insensitive or require capitalization - default is case insensitive
  768. * Can include US Territories or not - default does not
  769. * Can include US Military postal abbreviations (AA, AE, AP) - default does not
  770. *
  771. * Note: "States" always includes DC (District of Colombia)
  772. *
  773. * Usage examples:
  774. *
  775. * This is the default - case insensitive, no territories, no military zones
  776. * stateInput: {
  777. * caseSensitive: false,
  778. * includeTerritories: false,
  779. * includeMilitary: false
  780. * }
  781. *
  782. * Only allow capital letters, no territories, no military zones
  783. * stateInput: {
  784. * caseSensitive: false
  785. * }
  786. *
  787. * Case insensitive, include territories but not military zones
  788. * stateInput: {
  789. * includeTerritories: true
  790. * }
  791. *
  792. * Only allow capital letters, include territories and military zones
  793. * stateInput: {
  794. * caseSensitive: true,
  795. * includeTerritories: true,
  796. * includeMilitary: true
  797. * }
  798. *
  799. *
  800. *
  801. */
  802. $.validator.addMethod("stateUS", function(value, element, options) {
  803. var isDefault = typeof options === "undefined",
  804. caseSensitive = ( isDefault || typeof options.caseSensitive === "undefined" ) ? false : options.caseSensitive,
  805. includeTerritories = ( isDefault || typeof options.includeTerritories === "undefined" ) ? false : options.includeTerritories,
  806. includeMilitary = ( isDefault || typeof options.includeMilitary === "undefined" ) ? false : options.includeMilitary,
  807. regex;
  808. if (!includeTerritories && !includeMilitary) {
  809. regex = "^(A[KLRZ]|C[AOT]|D[CE]|FL|GA|HI|I[ADLN]|K[SY]|LA|M[ADEINOST]|N[CDEHJMVY]|O[HKR]|PA|RI|S[CD]|T[NX]|UT|V[AT]|W[AIVY])$";
  810. } else if (includeTerritories && includeMilitary) {
  811. regex = "^(A[AEKLPRSZ]|C[AOT]|D[CE]|FL|G[AU]|HI|I[ADLN]|K[SY]|LA|M[ADEINOPST]|N[CDEHJMVY]|O[HKR]|P[AR]|RI|S[CD]|T[NX]|UT|V[AIT]|W[AIVY])$";
  812. } else if (includeTerritories) {
  813. regex = "^(A[KLRSZ]|C[AOT]|D[CE]|FL|G[AU]|HI|I[ADLN]|K[SY]|LA|M[ADEINOPST]|N[CDEHJMVY]|O[HKR]|P[AR]|RI|S[CD]|T[NX]|UT|V[AIT]|W[AIVY])$";
  814. } else {
  815. regex = "^(A[AEKLPRZ]|C[AOT]|D[CE]|FL|GA|HI|I[ADLN]|K[SY]|LA|M[ADEINOST]|N[CDEHJMVY]|O[HKR]|PA|RI|S[CD]|T[NX]|UT|V[AT]|W[AIVY])$";
  816. }
  817. regex = caseSensitive ? new RegExp(regex) : new RegExp(regex, "i");
  818. return this.optional(element) || regex.test(value);
  819. },
  820. "Please specify a valid state");
  821. // TODO check if value starts with <, otherwise don't try stripping anything
  822. $.validator.addMethod("strippedminlength", function(value, element, param) {
  823. return $(value).text().length >= param;
  824. }, $.validator.format("Please enter at least {0} characters"));
  825. $.validator.addMethod("time", function(value, element) {
  826. return this.optional(element) || /^([01]\d|2[0-3]|[0-9])(:[0-5]\d){1,2}$/.test(value);
  827. }, "Please enter a valid time, between 00:00 and 23:59");
  828. $.validator.addMethod("time12h", function(value, element) {
  829. return this.optional(element) || /^((0?[1-9]|1[012])(:[0-5]\d){1,2}(\ ?[AP]M))$/i.test(value);
  830. }, "Please enter a valid time in 12-hour am/pm format");
  831. // same as url, but TLD is optional
  832. $.validator.addMethod("url2", function(value, element) {
  833. return this.optional(element) || /^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)*(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value);
  834. }, $.validator.messages.url);
  835. /**
  836. * Return true, if the value is a valid vehicle identification number (VIN).
  837. *
  838. * Works with all kind of text inputs.
  839. *
  840. * @example <input type="text" size="20" name="VehicleID" class="{required:true,vinUS:true}" />
  841. * @desc Declares a required input element whose value must be a valid vehicle identification number.
  842. *
  843. * @name $.validator.methods.vinUS
  844. * @type Boolean
  845. * @cat Plugins/Validate/Methods
  846. */
  847. $.validator.addMethod("vinUS", function(v) {
  848. if (v.length !== 17) {
  849. return false;
  850. }
  851. var LL = [ "A", "B", "C", "D", "E", "F", "G", "H", "J", "K", "L", "M", "N", "P", "R", "S", "T", "U", "V", "W", "X", "Y", "Z" ],
  852. VL = [ 1, 2, 3, 4, 5, 6, 7, 8, 1, 2, 3, 4, 5, 7, 9, 2, 3, 4, 5, 6, 7, 8, 9 ],
  853. FL = [ 8, 7, 6, 5, 4, 3, 2, 10, 0, 9, 8, 7, 6, 5, 4, 3, 2 ],
  854. rs = 0,
  855. i, n, d, f, cd, cdv;
  856. for (i = 0; i < 17; i++) {
  857. f = FL[i];
  858. d = v.slice(i, i + 1);
  859. if (i === 8) {
  860. cdv = d;
  861. }
  862. if (!isNaN(d)) {
  863. d *= f;
  864. } else {
  865. for (n = 0; n < LL.length; n++) {
  866. if (d.toUpperCase() === LL[n]) {
  867. d = VL[n];
  868. d *= f;
  869. if (isNaN(cdv) && n === 8) {
  870. cdv = LL[n];
  871. }
  872. break;
  873. }
  874. }
  875. }
  876. rs += d;
  877. }
  878. cd = rs % 11;
  879. if (cd === 10) {
  880. cd = "X";
  881. }
  882. if (cd === cdv) {
  883. return true;
  884. }
  885. return false;
  886. }, "The specified vehicle identification number (VIN) is invalid.");
  887. $.validator.addMethod("zipcodeUS", function(value, element) {
  888. return this.optional(element) || /^\d{5}(-\d{4})?$/.test(value);
  889. }, "The specified US ZIP Code is invalid");
  890. $.validator.addMethod("ziprange", function(value, element) {
  891. return this.optional(element) || /^90[2-5]\d\{2\}-\d{4}$/.test(value);
  892. }, "Your ZIP-code must be in the range 902xx-xxxx to 905xx-xxxx");
  893. }));