jquery.inputmask.js 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244
  1. /*
  2. * Input Mask plugin for jquery
  3. * http://github.com/RobinHerbots/jquery.inputmask
  4. * Copyright (c) 2010 - Robin Herbots
  5. * Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  6. * Version: 0.0.0-dev
  7. */
  8. (function ($) {
  9. if ($.fn.inputmask === undefined) {
  10. //helper functions
  11. function isInputEventSupported(eventName) {
  12. var el = document.createElement('input'),
  13. evName = 'on' + eventName,
  14. isSupported = (evName in el);
  15. if (!isSupported) {
  16. el.setAttribute(evName, 'return;');
  17. isSupported = typeof el[evName] == 'function';
  18. }
  19. el = null;
  20. return isSupported;
  21. }
  22. function isInputTypeSupported(inputType) {
  23. var isSupported = inputType == "text" || inputType == "tel";
  24. if (!isSupported) {
  25. var el = document.createElement('input');
  26. el.setAttribute("type", inputType);
  27. isSupported = el.type === "text"; //apply mask only if the type is not natively supported
  28. el = null;
  29. }
  30. return isSupported;
  31. }
  32. function resolveAlias(aliasStr, options, opts) {
  33. var aliasDefinition = opts.aliases[aliasStr];
  34. if (aliasDefinition) {
  35. if (aliasDefinition.alias) resolveAlias(aliasDefinition.alias, undefined, opts); //alias is another alias
  36. $.extend(true, opts, aliasDefinition); //merge alias definition in the options
  37. $.extend(true, opts, options); //reapply extra given options
  38. return true;
  39. }
  40. return false;
  41. }
  42. function generateMaskSet(opts, nocache) {
  43. var ms = undefined;
  44. function analyseMask(mask) {
  45. var tokenizer = /(?:[?*+]|\{[0-9\+\*]+(?:,[0-9\+\*]*)?\})\??|[^.?*+^${[]()|\\]+|./g,
  46. escaped = false;
  47. function maskToken(isGroup, isOptional, isQuantifier, isAlternator) {
  48. this.matches = [];
  49. this.isGroup = isGroup || false;
  50. this.isOptional = isOptional || false;
  51. this.isQuantifier = isQuantifier || false;
  52. this.isAlternator = isAlternator || false;
  53. this.quantifier = { min: 1, max: 1 };
  54. };
  55. //test definition => {fn: RegExp/function, cardinality: int, optionality: bool, newBlockMarker: bool, casing: null/upper/lower, def: definitionSymbol, placeholder: placeholder, mask: real maskDefinition}
  56. function insertTestDefinition(mtoken, element, position) {
  57. var maskdef = opts.definitions[element];
  58. var newBlockMarker = mtoken.matches.length == 0;
  59. position = position != undefined ? position : mtoken.matches.length;
  60. if (maskdef && !escaped) {
  61. maskdef["placeholder"] = $.isFunction(maskdef["placeholder"]) ? maskdef["placeholder"].call(this, opts) : maskdef["placeholder"];
  62. var prevalidators = maskdef["prevalidator"], prevalidatorsL = prevalidators ? prevalidators.length : 0;
  63. for (var i = 1; i < maskdef.cardinality; i++) {
  64. var prevalidator = prevalidatorsL >= i ? prevalidators[i - 1] : [], validator = prevalidator["validator"], cardinality = prevalidator["cardinality"];
  65. mtoken.matches.splice(position++, 0, { fn: validator ? typeof validator == 'string' ? new RegExp(validator) : new function () { this.test = validator; } : new RegExp("."), cardinality: cardinality ? cardinality : 1, optionality: mtoken.isOptional, newBlockMarker: newBlockMarker, casing: maskdef["casing"], def: maskdef["definitionSymbol"] || element, placeholder: maskdef["placeholder"], mask: element });
  66. }
  67. mtoken.matches.splice(position++, 0, { fn: maskdef.validator ? typeof maskdef.validator == 'string' ? new RegExp(maskdef.validator) : new function () { this.test = maskdef.validator; } : new RegExp("."), cardinality: maskdef.cardinality, optionality: mtoken.isOptional, newBlockMarker: newBlockMarker, casing: maskdef["casing"], def: maskdef["definitionSymbol"] || element, placeholder: maskdef["placeholder"], mask: element });
  68. } else {
  69. mtoken.matches.splice(position++, 0, { fn: null, cardinality: 0, optionality: mtoken.isOptional, newBlockMarker: newBlockMarker, casing: null, def: element, placeholder: undefined, mask: element });
  70. escaped = false;
  71. }
  72. }
  73. var currentToken = new maskToken(),
  74. match,
  75. m,
  76. openenings = [],
  77. maskTokens = [],
  78. openingToken,
  79. currentOpeningToken,
  80. alternator,
  81. lastMatch;
  82. while (match = tokenizer.exec(mask)) {
  83. m = match[0];
  84. switch (m.charAt(0)) {
  85. case opts.optionalmarker.end:
  86. // optional closing
  87. case opts.groupmarker.end:
  88. // Group closing
  89. openingToken = openenings.pop();
  90. if (openenings.length > 0) {
  91. currentOpeningToken = openenings[openenings.length - 1];
  92. currentOpeningToken["matches"].push(openingToken);
  93. if (currentOpeningToken.isAlternator) { //handle alternator (a) | (b) case
  94. alternator = openenings.pop();
  95. for (var mndx = 0; mndx < alternator.matches.length; mndx++) {
  96. alternator.matches[mndx].isGroup = false; //don't mark alternate groups as group
  97. }
  98. if (openenings.length > 0) {
  99. currentOpeningToken = openenings[openenings.length - 1];
  100. currentOpeningToken["matches"].push(alternator);
  101. } else {
  102. currentToken.matches.push(alternator);
  103. }
  104. }
  105. } else {
  106. currentToken.matches.push(openingToken);
  107. }
  108. break;
  109. case opts.optionalmarker.start:
  110. // optional opening
  111. openenings.push(new maskToken(false, true));
  112. break;
  113. case opts.groupmarker.start:
  114. // Group opening
  115. openenings.push(new maskToken(true));
  116. break;
  117. case opts.quantifiermarker.start:
  118. //Quantifier
  119. var quantifier = new maskToken(false, false, true);
  120. m = m.replace(/[{}]/g, "");
  121. var mq = m.split(","),
  122. mq0 = isNaN(mq[0]) ? mq[0] : parseInt(mq[0]),
  123. mq1 = mq.length == 1 ? mq0 : (isNaN(mq[1]) ? mq[1] : parseInt(mq[1]));
  124. if (mq1 == "*" || mq1 == "+") {
  125. mq0 = mq1 == "*" ? 0 : 1;
  126. }
  127. quantifier.quantifier = { min: mq0, max: mq1 };
  128. if (openenings.length > 0) {
  129. var matches = openenings[openenings.length - 1]["matches"];
  130. match = matches.pop();
  131. if (!match["isGroup"]) {
  132. var groupToken = new maskToken(true);
  133. groupToken.matches.push(match);
  134. match = groupToken;
  135. }
  136. matches.push(match);
  137. matches.push(quantifier);
  138. } else {
  139. match = currentToken.matches.pop();
  140. if (!match["isGroup"]) {
  141. var groupToken = new maskToken(true);
  142. groupToken.matches.push(match);
  143. match = groupToken;
  144. }
  145. currentToken.matches.push(match);
  146. currentToken.matches.push(quantifier);
  147. }
  148. break;
  149. case opts.escapeChar:
  150. escaped = true;
  151. break;
  152. case opts.alternatormarker:
  153. if (openenings.length > 0) {
  154. currentOpeningToken = openenings[openenings.length - 1];
  155. lastMatch = currentOpeningToken.matches.pop();
  156. } else {
  157. lastMatch = currentToken.matches.pop();
  158. }
  159. if (lastMatch.isAlternator) {
  160. openenings.push(lastMatch);
  161. } else {
  162. alternator = new maskToken(false, false, false, true);
  163. alternator.matches.push(lastMatch);
  164. openenings.push(alternator);
  165. }
  166. break;
  167. default:
  168. if (openenings.length > 0) {
  169. currentOpeningToken = openenings[openenings.length - 1];
  170. if (currentOpeningToken.matches.length > 0 && !currentOpeningToken.isAlternator) {
  171. lastMatch = currentOpeningToken.matches[currentOpeningToken.matches.length - 1];
  172. if (lastMatch["isGroup"]) { //this is not a group but a normal mask => convert
  173. lastMatch.isGroup = false;
  174. insertTestDefinition(lastMatch, opts.groupmarker.start, 0);
  175. insertTestDefinition(lastMatch, opts.groupmarker.end);
  176. }
  177. }
  178. insertTestDefinition(currentOpeningToken, m);
  179. if (currentOpeningToken.isAlternator) { //handle alternator a | b case
  180. alternator = openenings.pop();
  181. for (var mndx = 0; mndx < alternator.matches.length; mndx++) {
  182. alternator.matches[mndx].isGroup = false; //don't mark alternate groups as group
  183. }
  184. if (openenings.length > 0) {
  185. currentOpeningToken = openenings[openenings.length - 1];
  186. currentOpeningToken["matches"].push(alternator);
  187. } else {
  188. currentToken.matches.push(alternator);
  189. }
  190. }
  191. } else {
  192. if (currentToken.matches.length > 0) {
  193. lastMatch = currentToken.matches[currentToken.matches.length - 1];
  194. if (lastMatch["isGroup"]) { //this is not a group but a normal mask => convert
  195. lastMatch.isGroup = false;
  196. insertTestDefinition(lastMatch, opts.groupmarker.start, 0);
  197. insertTestDefinition(lastMatch, opts.groupmarker.end);
  198. }
  199. }
  200. insertTestDefinition(currentToken, m);
  201. }
  202. }
  203. }
  204. if (currentToken.matches.length > 0) {
  205. lastMatch = currentToken.matches[currentToken.matches.length - 1];
  206. if (lastMatch["isGroup"]) { //this is not a group but a normal mask => convert
  207. lastMatch.isGroup = false;
  208. insertTestDefinition(lastMatch, opts.groupmarker.start, 0);
  209. insertTestDefinition(lastMatch, opts.groupmarker.end);
  210. }
  211. maskTokens.push(currentToken);
  212. }
  213. //console.log(JSON.stringify(maskTokens));
  214. return maskTokens;
  215. }
  216. function generateMask(mask, metadata) {
  217. if (mask == undefined || mask == "")
  218. return undefined;
  219. else {
  220. if (mask.length == 1 && opts.greedy == false && opts.repeat != 0) {
  221. opts.placeholder = "";
  222. } //hide placeholder with single non-greedy mask
  223. if (opts.repeat > 0 || opts.repeat == "*" || opts.repeat == "+") {
  224. var repeatStart = opts.repeat == "*" ? 0 : (opts.repeat == "+" ? 1 : opts.repeat);
  225. mask = opts.groupmarker.start + mask + opts.groupmarker.end + opts.quantifiermarker.start + repeatStart + "," + opts.repeat + opts.quantifiermarker.end;
  226. }
  227. var masksetDefinition;
  228. if ($.inputmask.masksCache[mask] == undefined || nocache === true) {
  229. masksetDefinition = {
  230. "mask": mask,
  231. "maskToken": analyseMask(mask),
  232. "validPositions": {},
  233. "_buffer": undefined,
  234. "buffer": undefined,
  235. "tests": {},
  236. "metadata": metadata
  237. };
  238. if (nocache !== true)
  239. $.inputmask.masksCache[mask] = masksetDefinition;
  240. } else masksetDefinition = $.extend(true, {}, $.inputmask.masksCache[mask]);
  241. return masksetDefinition;
  242. }
  243. }
  244. function preProcessMask(mask) {
  245. mask = mask.toString();
  246. if (opts.numericInput) { //TODO FIX FOR DYNAMIC MASKS WITH QUANTIFIERS
  247. mask = mask.split('').reverse();
  248. for (var ndx = 0; ndx < mask.length; ndx++) {
  249. if (mask[ndx] == opts.optionalmarker.start)
  250. mask[ndx] = opts.optionalmarker.end;
  251. else if (mask[ndx] == opts.optionalmarker.end)
  252. mask[ndx] = opts.optionalmarker.start;
  253. else if (mask[ndx] == opts.groupmarker.start)
  254. mask[ndx] = opts.groupmarker.end;
  255. else if (mask[ndx] == opts.groupmarker.end)
  256. mask[ndx] = opts.groupmarker.start;
  257. }
  258. mask = mask.join('');
  259. }
  260. return mask;
  261. }
  262. if ($.isFunction(opts.mask)) { //allow mask to be a preprocessing fn - should return a valid mask
  263. opts.mask = opts.mask.call(this, opts);
  264. }
  265. if ($.isArray(opts.mask)) {
  266. if (opts.mask.length > 1) {
  267. opts.keepStatic = opts.keepStatic == undefined ? true : opts.keepStatic; //enable by default when passing multiple masks when the option is not explicitly specified
  268. var altMask = "(";
  269. $.each(opts.mask, function (ndx, msk) {
  270. if (altMask.length > 1)
  271. altMask += ")|(";
  272. if (msk["mask"] != undefined && !$.isFunction(msk["mask"])) {
  273. altMask += preProcessMask(msk["mask"]);
  274. } else {
  275. altMask += preProcessMask(msk);
  276. }
  277. });
  278. altMask += ")";
  279. return generateMask(altMask, opts.mask);
  280. } else opts.mask = opts.mask.pop();
  281. }
  282. if (opts.mask) {
  283. if (opts.mask["mask"] != undefined && !$.isFunction(opts.mask["mask"])) {
  284. ms = generateMask(preProcessMask(opts.mask["mask"]), opts.mask);
  285. } else {
  286. ms = generateMask(preProcessMask(opts.mask), opts.mask);
  287. }
  288. }
  289. return ms;
  290. }
  291. var ua = navigator.userAgent,
  292. iphone = ua.match(new RegExp("iphone", "i")) !== null,
  293. android = ua.match(new RegExp("android.*safari.*", "i")) !== null,
  294. androidchrome = ua.match(new RegExp("android.*chrome.*", "i")) !== null,
  295. androidfirefox = ua.match(new RegExp("android.*firefox.*", "i")) !== null,
  296. kindle = /Kindle/i.test(ua) || /Silk/i.test(ua) || /KFTT/i.test(ua) || /KFOT/i.test(ua) || /KFJWA/i.test(ua) || /KFJWI/i.test(ua) || /KFSOWI/i.test(ua) || /KFTHWA/i.test(ua) || /KFTHWI/i.test(ua) || /KFAPWA/i.test(ua) || /KFAPWI/i.test(ua),
  297. PasteEventType = isInputEventSupported('paste') ? 'paste' : isInputEventSupported('input') ? 'input' : "propertychange";
  298. //if (androidchrome) {
  299. // var browser = navigator.userAgent.match(new RegExp("chrome.*", "i")),
  300. // version = parseInt(new RegExp(/[0-9]+/).exec(browser));
  301. // androidchrome32 = (version == 32);
  302. //}
  303. //masking scope
  304. //actionObj definition see below
  305. function maskScope(actionObj, maskset, opts) {
  306. var isRTL = false,
  307. undoValue,
  308. compositionValidPos,
  309. compositionCaretPos,
  310. compositionData,
  311. $el,
  312. skipKeyPressEvent = false, //Safari 5.1.x - modal dialog fires keypress twice workaround
  313. skipInputEvent = false, //skip when triggered from within inputmask
  314. ignorable = false,
  315. maxLength,
  316. firstClick = true;
  317. //maskset helperfunctions
  318. function getMaskTemplate(baseOnInput, minimalPos, includeInput) {
  319. minimalPos = minimalPos || 0;
  320. var maskTemplate = [], ndxIntlzr, pos = 0, test, testPos;
  321. do {
  322. if (baseOnInput === true && getMaskSet()['validPositions'][pos]) {
  323. var validPos = getMaskSet()['validPositions'][pos];
  324. test = validPos["match"];
  325. ndxIntlzr = validPos["locator"].slice();
  326. maskTemplate.push(includeInput === true ? validPos["input"] : getPlaceholder(pos, test));
  327. } else {
  328. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  329. test = testPos["match"];
  330. ndxIntlzr = testPos["locator"].slice();
  331. maskTemplate.push(getPlaceholder(pos, test));
  332. }
  333. pos++;
  334. } while ((maxLength == undefined || pos - 1 < maxLength) && test["fn"] != null || (test["fn"] == null && test["def"] != "") || minimalPos >= pos);
  335. maskTemplate.pop(); //drop the last one which is empty
  336. return maskTemplate;
  337. }
  338. function getMaskSet() {
  339. return maskset;
  340. }
  341. function resetMaskSet(soft) {
  342. var maskset = getMaskSet();
  343. maskset["buffer"] = undefined;
  344. maskset["tests"] = {};
  345. if (soft !== true) {
  346. maskset["_buffer"] = undefined;
  347. maskset["validPositions"] = {};
  348. maskset["p"] = 0;
  349. }
  350. }
  351. function getLastValidPosition(closestTo, strict) {
  352. var maskset = getMaskSet(), lastValidPosition = -1, valids = maskset["validPositions"];
  353. if (closestTo == undefined) closestTo = -1;
  354. var before = lastValidPosition, after = lastValidPosition;
  355. for (var posNdx in valids) {
  356. var psNdx = parseInt(posNdx);
  357. if (valids[psNdx] && (strict || valids[psNdx]["match"].fn != null)) {
  358. if (psNdx <= closestTo) before = psNdx;
  359. if (psNdx >= closestTo) after = psNdx;
  360. }
  361. }
  362. lastValidPosition = (before != -1 && (closestTo - before) > 1) || after < closestTo ? before : after;
  363. return lastValidPosition;
  364. }
  365. function setValidPosition(pos, validTest, fromSetValid) {
  366. if (opts.insertMode && getMaskSet()["validPositions"][pos] != undefined && fromSetValid == undefined) {
  367. //reposition & revalidate others
  368. var positionsClone = $.extend(true, {}, getMaskSet()["validPositions"]), lvp = getLastValidPosition(), i;
  369. for (i = pos; i <= lvp; i++) { //clear selection
  370. delete getMaskSet()["validPositions"][i];
  371. }
  372. getMaskSet()["validPositions"][pos] = validTest;
  373. var valid = true, j, vps = getMaskSet()["validPositions"];
  374. for (i = (j = pos) ; i <= lvp ; i++) {
  375. var t = positionsClone[i];
  376. if (t != undefined) {
  377. var posMatch = j;
  378. while (posMatch < getMaskLength() && ((t.match.fn == null && vps[i] && (vps[i].match.optionalQuantifier === true || vps[i].match.optionality === true)) || t.match.fn != null)) {
  379. //determine next position
  380. if (t.match.fn == null || (!opts.keepStatic && vps[i] && (vps[i + 1] != undefined && getTests(i + 1, vps[i].locator.slice(), i).length > 1 || vps[i].alternation != undefined)))
  381. posMatch++;
  382. else
  383. posMatch = seekNext(j);
  384. //does it match
  385. if (positionCanMatchDefinition(posMatch, t["match"].def)) {
  386. valid = isValid(posMatch, t["input"], true, true) !== false;
  387. j = posMatch;
  388. break;
  389. } else valid = t["match"].fn == null;
  390. }
  391. }
  392. if (!valid) break;
  393. }
  394. if (!valid) {
  395. getMaskSet()["validPositions"] = $.extend(true, {}, positionsClone);
  396. return false;
  397. }
  398. } else
  399. getMaskSet()["validPositions"][pos] = validTest;
  400. return true;
  401. }
  402. function stripValidPositions(start, end, nocheck, strict) {
  403. var i, startPos = start;
  404. getMaskSet()["p"] = start; //needed for alternated position after overtype selection
  405. if (getMaskSet()["validPositions"][start] != undefined && getMaskSet()["validPositions"][start].input == opts.radixPoint) {
  406. end++;
  407. startPos++;
  408. }
  409. var endPos = end;
  410. for (i = startPos; i < end; i++) { //clear selection
  411. if (getMaskSet()["validPositions"][i] != undefined) {
  412. if (nocheck === true || opts.canClearPosition(getMaskSet(), i, getLastValidPosition(), strict, opts) != false)
  413. delete getMaskSet()["validPositions"][i];
  414. }
  415. }
  416. resetMaskSet(true);
  417. for (i = startPos + 1 ; i <= getLastValidPosition() ;) {
  418. while (getMaskSet()["validPositions"][startPos] != undefined) startPos++;
  419. var s = getMaskSet()["validPositions"][startPos];
  420. if (i < startPos) i = startPos + 1;
  421. var t = getMaskSet()["validPositions"][i];
  422. if (t != undefined && s == undefined) {
  423. if (positionCanMatchDefinition(startPos, t.match.def) && isValid(startPos, t["input"], true) !== false) {
  424. delete getMaskSet()["validPositions"][i];
  425. i++;
  426. }
  427. startPos++;
  428. } else i++;
  429. }
  430. //remove radixpoint if needed
  431. var lvp = getLastValidPosition(), ml = getMaskLength();
  432. if (start <= lvp && getMaskSet()["validPositions"][lvp] != undefined && (getMaskSet()["validPositions"][lvp].input == opts.radixPoint))
  433. delete getMaskSet()["validPositions"][lvp];
  434. for (i = lvp + 1; i <= ml; i++) {
  435. if (getMaskSet()["validPositions"][i])
  436. delete getMaskSet()["validPositions"][i];
  437. }
  438. resetMaskSet(true);
  439. }
  440. function getTestTemplate(pos, ndxIntlzr, tstPs) {
  441. var testPos = getMaskSet()["validPositions"][pos];
  442. if (testPos == undefined) {
  443. var testPositions = getTests(pos, ndxIntlzr, tstPs),
  444. lvp = getLastValidPosition(),
  445. lvTest = getMaskSet()["validPositions"][lvp] || getTests(0, undefined, undefined)[0],
  446. lvTestAltArr = (lvTest.alternation != undefined) ? lvTest["locator"][lvTest.alternation].split(",") : [];
  447. for (var ndx = 0; ndx < testPositions.length; ndx++) {
  448. testPos = testPositions[ndx];
  449. if (testPos["match"] &&
  450. (((opts.greedy && testPos["match"].optionalQuantifier !== true)
  451. || (testPos["match"].optionality === false || testPos["match"].newBlockMarker === false) && testPos["match"].optionalQuantifier !== true) &&
  452. (lvTest.alternation == undefined ||
  453. (testPos["locator"][lvTest.alternation] != undefined && checkAlternationMatch(testPos.locator[lvTest.alternation].toString().split(","), lvTestAltArr))))) {
  454. break;
  455. }
  456. }
  457. }
  458. return testPos;
  459. }
  460. function getTest(pos) {
  461. if (getMaskSet()['validPositions'][pos]) {
  462. return getMaskSet()['validPositions'][pos]["match"];
  463. }
  464. return getTests(pos)[0]["match"];
  465. }
  466. function positionCanMatchDefinition(pos, def) {
  467. var valid = false, tests = getTests(pos);
  468. for (var tndx = 0; tndx < tests.length; tndx++) {
  469. if (tests[tndx]["match"] && tests[tndx]["match"].def == def) {
  470. valid = true;
  471. break;
  472. }
  473. }
  474. return valid;
  475. };
  476. function getTests(pos, ndxIntlzr, tstPs, cacheable) {
  477. var maskTokens = getMaskSet()["maskToken"], testPos = ndxIntlzr ? tstPs : 0, ndxInitializer = ndxIntlzr || [0], matches = [], insertStop = false;
  478. function ResolveTestFromToken(maskToken, ndxInitializer, loopNdx, quantifierRecurse) { //ndxInitilizer contains a set of indexes to speedup searches in the mtokens
  479. function handleMatch(match, loopNdx, quantifierRecurse) {
  480. if (testPos > 10000) {
  481. alert("jquery.inputmask: There is probably an error in your mask definition or in the code. Create an issue on github with an example of the mask you are using. " + getMaskSet()["mask"]);
  482. return true;
  483. }
  484. if (testPos == pos && match.matches == undefined) {
  485. matches.push({ "match": match, "locator": loopNdx.reverse() });
  486. return true;
  487. } else if (match.matches != undefined) {
  488. if (match.isGroup && quantifierRecurse !== true) { //when a group pass along to the quantifier
  489. match = handleMatch(maskToken.matches[tndx + 1], loopNdx);
  490. if (match) return true;
  491. } else if (match.isOptional) {
  492. var optionalToken = match;
  493. match = ResolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
  494. if (match) {
  495. var latestMatch = matches[matches.length - 1]["match"];
  496. var isFirstMatch = $.inArray(latestMatch, optionalToken.matches) == 0;
  497. if (isFirstMatch) {
  498. insertStop = true; //insert a stop
  499. testPos = pos; //match the position after the group
  500. } else return true;
  501. }
  502. } else if (match.isAlternator) {
  503. var alternateToken = match, malternateMatches = [], maltMatches,
  504. currentMatches = matches.slice(), loopNdxCnt = loopNdx.length;
  505. var altIndex = ndxInitializer.length > 0 ? ndxInitializer.shift() : -1;
  506. if (altIndex == -1 || typeof altIndex == "string") {
  507. var currentPos = testPos, ndxInitializerClone = ndxInitializer.slice(), altIndexArr;
  508. if (typeof altIndex == "string") altIndexArr = altIndex.split(",");
  509. //console.log(alternateToken.matches.length);
  510. for (var amndx = 0; amndx < alternateToken.matches.length; amndx++) {
  511. matches = [];
  512. match = handleMatch(alternateToken.matches[amndx], [amndx].concat(loopNdx), quantifierRecurse) || match;
  513. maltMatches = matches.slice();
  514. testPos = currentPos;
  515. matches = [];
  516. //cloneback
  517. for (var i = 0; i < ndxInitializerClone.length; i++) {
  518. ndxInitializer[i] = ndxInitializerClone[i];
  519. }
  520. //fuzzy merge matches
  521. for (var ndx1 = 0; ndx1 < maltMatches.length; ndx1++) {
  522. var altMatch = maltMatches[ndx1];
  523. for (var ndx2 = 0; ndx2 < malternateMatches.length; ndx2++) {
  524. var altMatch2 = malternateMatches[ndx2];
  525. //verify equality
  526. if (altMatch.match.mask == altMatch2.match.mask && (typeof altIndex != "string" || $.inArray(altMatch.locator[loopNdxCnt].toString(), altIndexArr) != -1)) {
  527. maltMatches.splice(ndx1, 1);
  528. altMatch2.locator[loopNdxCnt] = altMatch2.locator[loopNdxCnt] + "," + altMatch.locator[loopNdxCnt];
  529. altMatch2.alternation = loopNdxCnt; //we pass the alternation index => used in determineLastRequiredPosition
  530. break;
  531. }
  532. }
  533. }
  534. malternateMatches = malternateMatches.concat(maltMatches);
  535. }
  536. if (typeof altIndex == "string") { //filter matches
  537. malternateMatches = $.map(malternateMatches, function (lmnt, ndx) {
  538. if (isFinite(ndx)) {
  539. var altLocArr = lmnt.locator[loopNdxCnt].toString().split(",");
  540. var mamatch;
  541. lmnt.locator[loopNdxCnt] = undefined;
  542. lmnt.alternation = undefined;
  543. for (var alndx = 0; alndx < altLocArr.length; alndx++) {
  544. mamatch = $.inArray(altLocArr[alndx], altIndexArr) != -1;
  545. if (mamatch) { //rebuild the locator with valid entries
  546. if (lmnt.locator[loopNdxCnt] != undefined) {
  547. lmnt.locator[loopNdxCnt] += ",";
  548. lmnt.alternation = loopNdxCnt; //only define alternation when there is more then 1 possibility
  549. lmnt.locator[loopNdxCnt] += altLocArr[alndx];
  550. } else
  551. lmnt.locator[loopNdxCnt] = parseInt(altLocArr[alndx]);
  552. }
  553. }
  554. if (lmnt.locator[loopNdxCnt] != undefined) return lmnt;
  555. }
  556. });
  557. }
  558. matches = currentMatches.concat(malternateMatches);
  559. //console.log("alternates " + pos + " -> " + JSON.stringify(matches));
  560. insertStop = true; //insert a stopelemnt when there is an alternate
  561. } else {
  562. match = handleMatch(alternateToken.matches[altIndex], [altIndex].concat(loopNdx), quantifierRecurse);
  563. }
  564. if (match) return true;
  565. } else if (match.isQuantifier && quantifierRecurse !== true) {
  566. var qt = match;
  567. for (var qndx = (ndxInitializer.length > 0 && quantifierRecurse !== true) ? ndxInitializer.shift() : 0; (qndx < (isNaN(qt.quantifier.max) ? qndx + 1 : qt.quantifier.max)) && testPos <= pos; qndx++) {
  568. var tokenGroup = maskToken.matches[$.inArray(qt, maskToken.matches) - 1];
  569. match = handleMatch(tokenGroup, [qndx].concat(loopNdx), true);
  570. if (match) {
  571. //get latest match
  572. var latestMatch = matches[matches.length - 1]["match"];
  573. latestMatch.optionalQuantifier = qndx > (qt.quantifier.min - 1);
  574. var isFirstMatch = $.inArray(latestMatch, tokenGroup.matches) == 0;
  575. if (isFirstMatch) { //search for next possible match
  576. if (qndx > (qt.quantifier.min - 1)) {
  577. insertStop = true;
  578. testPos = pos; //match the position after the group
  579. break; //stop quantifierloop
  580. } else return true;
  581. } else {
  582. return true;
  583. }
  584. }
  585. }
  586. } else {
  587. match = ResolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
  588. if (match)
  589. return true;
  590. }
  591. } else testPos++;
  592. }
  593. for (var tndx = (ndxInitializer.length > 0 ? ndxInitializer.shift() : 0) ; tndx < maskToken.matches.length; tndx++) {
  594. if (maskToken.matches[tndx]["isQuantifier"] !== true) {
  595. var match = handleMatch(maskToken.matches[tndx], [tndx].concat(loopNdx), quantifierRecurse);
  596. if (match && testPos == pos) {
  597. return match;
  598. } else if (testPos > pos) {
  599. break;
  600. }
  601. }
  602. }
  603. }
  604. if (false && cacheable !== false && getMaskSet()['tests'][pos]) {
  605. return getMaskSet()['tests'][pos];
  606. }
  607. if (ndxIntlzr == undefined) {
  608. var previousPos = pos - 1, test;
  609. while ((test = getMaskSet()['validPositions'][previousPos]) == undefined && previousPos > -1) {
  610. previousPos--;
  611. }
  612. if (test != undefined && previousPos > -1) {
  613. testPos = previousPos;
  614. ndxInitializer = test["locator"].slice();
  615. } else {
  616. previousPos = pos - 1;
  617. while ((test = getMaskSet()['tests'][previousPos]) == undefined && previousPos > -1) {
  618. previousPos--;
  619. }
  620. if (test != undefined && previousPos > -1) {
  621. testPos = previousPos;
  622. ndxInitializer = test[0]["locator"].slice();
  623. }
  624. }
  625. }
  626. for (var mtndx = ndxInitializer.shift() ; mtndx < maskTokens.length; mtndx++) {
  627. var match = ResolveTestFromToken(maskTokens[mtndx], ndxInitializer, [mtndx]);
  628. if ((match && testPos == pos) || testPos > pos) {
  629. break;
  630. }
  631. }
  632. if (matches.length == 0 || insertStop)
  633. matches.push({ "match": { fn: null, cardinality: 0, optionality: true, casing: null, def: "" }, "locator": [] });
  634. getMaskSet()['tests'][pos] = $.extend(true, [], matches); //set a clone to prevent overwriting some props
  635. //console.log(pos + " - " + JSON.stringify(matches));
  636. return getMaskSet()['tests'][pos];
  637. }
  638. function getBufferTemplate() {
  639. if (getMaskSet()['_buffer'] == undefined) {
  640. //generate template
  641. getMaskSet()["_buffer"] = getMaskTemplate(false, 1);
  642. }
  643. return getMaskSet()['_buffer'];
  644. }
  645. function getBuffer() {
  646. if (getMaskSet()['buffer'] == undefined) {
  647. getMaskSet()['buffer'] = getMaskTemplate(true, getLastValidPosition(), true);
  648. }
  649. return getMaskSet()['buffer'];
  650. }
  651. function refreshFromBuffer(start, end, buffer) {
  652. buffer = buffer || getBuffer().slice(); //pass or work on clone
  653. if (start === true) {
  654. resetMaskSet();
  655. start = 0;
  656. end = buffer.length;
  657. } else {
  658. for (var i = start; i < end; i++) {
  659. delete getMaskSet()["validPositions"][i];
  660. delete getMaskSet()["tests"][i];
  661. }
  662. }
  663. for (var i = start; i < end; i++) {
  664. if (buffer[i] != opts.skipOptionalPartCharacter) {
  665. isValid(i, buffer[i], true, true);
  666. }
  667. }
  668. }
  669. function casing(elem, test) {
  670. switch (test.casing) {
  671. case "upper":
  672. elem = elem.toUpperCase();
  673. break;
  674. case "lower":
  675. elem = elem.toLowerCase();
  676. break;
  677. }
  678. return elem;
  679. }
  680. function checkAlternationMatch(altArr1, altArr2) {
  681. var altArrC = opts.greedy ? altArr2 : altArr2.slice(0, 1),
  682. isMatch = false;
  683. for (var alndx = 0; alndx < altArr1.length; alndx++) {
  684. if ($.inArray(altArr1[alndx], altArrC) != -1) {
  685. isMatch = true;
  686. break;
  687. }
  688. }
  689. return isMatch;
  690. }
  691. function isValid(pos, c, strict, fromSetValid) { //strict true ~ no correction or autofill
  692. strict = strict === true; //always set a value to strict to prevent possible strange behavior in the extensions
  693. function _isValid(position, c, strict, fromSetValid) {
  694. var rslt = false;
  695. //console.log(JSON.stringify(getTests(position)));
  696. $.each(getTests(position), function (ndx, tst) {
  697. var test = tst["match"];
  698. var loopend = c ? 1 : 0, chrs = '', buffer = getBuffer();
  699. for (var i = test.cardinality; i > loopend; i--) {
  700. chrs += getBufferElement(position - (i - 1));
  701. }
  702. if (c) {
  703. chrs += c;
  704. }
  705. //return is false or a json object => { pos: ??, c: ??} or true
  706. rslt = test.fn != null ?
  707. test.fn.test(chrs, getMaskSet(), position, strict, opts)
  708. : (c == test["def"] || c == opts.skipOptionalPartCharacter) && test["def"] != "" ? //non mask
  709. { c: test["def"], pos: position }
  710. : false;
  711. if (rslt !== false) {
  712. var elem = rslt.c != undefined ? rslt.c : c;
  713. elem = (elem == opts.skipOptionalPartCharacter && test["fn"] === null) ? test["def"] : elem;
  714. var validatedPos = position,
  715. possibleModifiedBuffer = getBuffer();
  716. if (rslt["remove"] != undefined) { //remove position(s)
  717. if (!$.isArray(rslt["remove"])) rslt["remove"] = [rslt["remove"]];
  718. $.each(rslt["remove"].sort(function (a, b) { return b - a; }), function (ndx, lmnt) {
  719. stripValidPositions(lmnt, lmnt + 1, true);
  720. });
  721. }
  722. if (rslt["insert"] != undefined) { //insert position(s)
  723. if (!$.isArray(rslt["insert"])) rslt["insert"] = [rslt["insert"]];
  724. $.each(rslt["insert"].sort(function (a, b) { return a - b; }), function (ndx, lmnt) {
  725. isValid(lmnt["pos"], lmnt["c"], true);
  726. });
  727. }
  728. if (rslt["refreshFromBuffer"]) {
  729. var refresh = rslt["refreshFromBuffer"];
  730. strict = true;
  731. refreshFromBuffer(refresh === true ? refresh : refresh["start"], refresh["end"], possibleModifiedBuffer);
  732. if (rslt.pos == undefined && rslt.c == undefined) {
  733. rslt.pos = getLastValidPosition();
  734. return false;//breakout if refreshFromBuffer && nothing to insert
  735. }
  736. validatedPos = rslt.pos != undefined ? rslt.pos : position;
  737. if (validatedPos != position) {
  738. rslt = $.extend(rslt, isValid(validatedPos, elem, true)); //revalidate new position strict
  739. return false;
  740. }
  741. } else if (rslt !== true && rslt.pos != undefined && rslt["pos"] != position) { //their is a position offset
  742. validatedPos = rslt["pos"];
  743. refreshFromBuffer(position, validatedPos);
  744. if (validatedPos != position) {
  745. rslt = $.extend(rslt, isValid(validatedPos, elem, true)); //revalidate new position strict
  746. return false;
  747. }
  748. }
  749. if (rslt != true && rslt.pos == undefined && rslt.c == undefined) {
  750. return false; //breakout if nothing to insert
  751. }
  752. if (ndx > 0) {
  753. resetMaskSet(true);
  754. }
  755. if (!setValidPosition(validatedPos, $.extend({}, tst, { "input": casing(elem, test) }), fromSetValid))
  756. rslt = false;
  757. return false; //break from $.each
  758. }
  759. });
  760. return rslt;
  761. }
  762. function alternate(pos, c, strict, fromSetValid) {
  763. var validPsClone = $.extend(true, {}, getMaskSet()["validPositions"]),
  764. lastAlt,
  765. alternation,
  766. isValidRslt;
  767. //find last alternation
  768. for (lastAlt = getLastValidPosition() ; lastAlt >= 0; lastAlt--) {
  769. if (getMaskSet()["validPositions"][lastAlt] && getMaskSet()["validPositions"][lastAlt].alternation != undefined) {
  770. alternation = getMaskSet()["validPositions"][lastAlt].alternation;
  771. break;
  772. }
  773. }
  774. if (alternation != undefined) {
  775. //find first decision making position
  776. for (var decisionPos in getMaskSet()["validPositions"]) {
  777. if (parseInt(decisionPos) > parseInt(lastAlt) && getMaskSet()["validPositions"][decisionPos].alternation === undefined) {
  778. var altPos = getMaskSet()["validPositions"][decisionPos],
  779. decisionTaker = altPos.locator[alternation],
  780. altNdxs = getMaskSet()["validPositions"][lastAlt].locator[alternation].split(",");
  781. for (var mndx = 0; mndx < altNdxs.length; mndx++) {
  782. if (decisionTaker < altNdxs[mndx]) {
  783. var possibilityPos, possibilities;
  784. for (var dp = decisionPos - 1; dp >= 0; dp--) {
  785. possibilityPos = getMaskSet()["validPositions"][dp];
  786. if (possibilityPos != undefined) {
  787. possibilities = possibilityPos.locator[alternation]; //store to reset
  788. possibilityPos.alternation = undefined;
  789. possibilityPos.locator[alternation] = parseInt(altNdxs[mndx]);
  790. break;
  791. }
  792. }
  793. if (decisionTaker != possibilityPos.locator[alternation]) {
  794. var validInputs = [];
  795. for (var i = decisionPos; i < getLastValidPosition() + 1; i++) {
  796. var validPos = getMaskSet()["validPositions"][i];
  797. if (validPos && validPos.match.fn != null) {
  798. //console.log(validPos.input);
  799. validInputs.push(validPos.input);
  800. }
  801. delete getMaskSet()["validPositions"][i];
  802. delete getMaskSet()["tests"][i];
  803. }
  804. resetMaskSet(true); //clear getbuffer
  805. opts.keepStatic = !opts.keepStatic; //disable keepStatic on getMaskLength
  806. isValidRslt = true;
  807. while (validInputs.length > 0) {
  808. var input = validInputs.shift();
  809. //console.log(input);
  810. if (input != opts.skipOptionalPartCharacter) {
  811. if (!(isValidRslt = isValid(getLastValidPosition() + 1, input, false, true))) {
  812. break;
  813. }
  814. }
  815. }
  816. possibilityPos.alternation = alternation;
  817. possibilityPos.locator[alternation] = possibilities; //reset forceddecision ~ needed for proper delete
  818. if (isValidRslt)
  819. isValidRslt = isValid(pos, c, strict, fromSetValid);
  820. opts.keepStatic = !opts.keepStatic; //enable keepStatic on getMaskLength
  821. if (!isValidRslt) {
  822. resetMaskSet();
  823. getMaskSet()["validPositions"] = $.extend(true, {}, validPsClone);
  824. } else
  825. return isValidRslt;
  826. }
  827. }
  828. }
  829. break;
  830. }
  831. }
  832. }
  833. return false;
  834. }
  835. //set alternator choice on previous skipped placeholder positions
  836. function trackbackAlternations(originalPos, newPos) {
  837. var vp = getMaskSet()["validPositions"][newPos],
  838. targetLocator = vp.locator,
  839. tll = targetLocator.length;
  840. for (var ps = originalPos; ps < newPos; ps++) {
  841. if (!isMask(ps)) {
  842. var tests = getTests(ps),
  843. bestMatch = tests[0], equality = -1;
  844. $.each(tests, function (ndx, tst) {
  845. for (var i = 0; i < tll; i++) {
  846. if (tst.locator[i] && checkAlternationMatch(tst.locator[i].toString().split(','), targetLocator[i].toString().split(',')) && equality < i) {
  847. equality = i;
  848. bestMatch = tst;
  849. }
  850. }
  851. });
  852. setValidPosition(ps, $.extend({}, bestMatch, { "input": bestMatch["match"].def }), true)
  853. }
  854. }
  855. }
  856. //Check for a nonmask before the pos
  857. var buffer = getBuffer();
  858. //find previous valid
  859. for (var pndx = pos - 1; pndx > -1; pndx--) {
  860. if (getMaskSet()["validPositions"][pndx])
  861. break;
  862. }
  863. ////fill missing nonmask and valid placeholders
  864. pndx++;
  865. for (; pndx < pos; pndx++) {
  866. //console.log("missing " + pndx + " " + buffer[pndx] + " ismask " + isMask(pndx) + " plchldr " + getPlaceholder(pndx) + " nrt " + getTests(pndx).len);
  867. if (getMaskSet()["validPositions"][pndx] == undefined
  868. && (((!isMask(pndx)
  869. || buffer[pndx] != getPlaceholder(pndx))
  870. && getTests(pndx).length > 1)
  871. || (buffer[pndx] == opts.radixPoint || buffer[pndx] == "0" && $.inArray(opts.radixPoint, buffer) < pndx))) //special case for decimals ~ = placeholder but yet valid input
  872. {
  873. //console.log("inject " + pndx + " " + buffer[pndx]);
  874. _isValid(pndx, buffer[pndx], true);
  875. }
  876. }
  877. var maskPos = pos,
  878. result = false,
  879. positionsClone = $.extend(true, {}, getMaskSet()["validPositions"]); //clone the currentPositions
  880. //if (fromSetValid && maskPos >= getMaskLength()) {
  881. // resetMaskSet(true); //masklenght can be altered on the process => reset to get the actual length
  882. //}
  883. if (maskPos < getMaskLength()) {
  884. result = _isValid(maskPos, c, strict, fromSetValid);
  885. if ((!strict || fromSetValid) && result === false) {
  886. var currentPosValid = getMaskSet()["validPositions"][maskPos];
  887. if (currentPosValid && currentPosValid["match"].fn == null && (currentPosValid["match"].def == c || c == opts.skipOptionalPartCharacter)) {
  888. result = { "caret": seekNext(maskPos) };
  889. } else if ((opts.insertMode || getMaskSet()["validPositions"][seekNext(maskPos)] == undefined) && !isMask(maskPos)) { //does the input match on a further position?
  890. for (var nPos = maskPos + 1, snPos = seekNext(maskPos) ; nPos <= snPos; nPos++) {
  891. result = _isValid(nPos, c, strict, fromSetValid);
  892. if (result !== false) {
  893. trackbackAlternations(maskPos, nPos);
  894. maskPos = nPos;
  895. break;
  896. }
  897. }
  898. }
  899. }
  900. }
  901. if (result === false && opts.keepStatic && isComplete(buffer)) { //try fuzzy alternator logic
  902. result = alternate(pos, c, strict, fromSetValid);
  903. }
  904. if (result === true) result = { "pos": maskPos };
  905. if ($.isFunction(opts.postValidation) && result != false && !strict) {
  906. resetMaskSet(true);
  907. var postValidResult = opts.postValidation(getBuffer(), opts);
  908. if (!postValidResult) {
  909. resetMaskSet(true);
  910. getMaskSet()["validPositions"] = $.extend(true, {}, positionsClone); //revert validation changes
  911. return false;
  912. }
  913. }
  914. return result;
  915. }
  916. function isMask(pos) {
  917. var test = getTest(pos);
  918. if (test.fn != null)
  919. return test.fn
  920. else if (!opts.keepStatic && getMaskSet()["validPositions"][pos] == undefined) {
  921. var tests = getTests(pos), testsLength = tests.length;
  922. if (tests[tests.length - 1].match.def == "")
  923. testsLength--;
  924. return testsLength > 1;
  925. }
  926. return false;
  927. }
  928. function getMaskLength() {
  929. var maskLength;
  930. maxLength = $el.prop('maxLength');
  931. if (maxLength == -1) maxLength = undefined; /* FF sets no defined max length to -1 */
  932. var pos, lvp = getLastValidPosition(), testPos = getMaskSet()["validPositions"][lvp],
  933. ndxIntlzr = testPos != undefined ? testPos["locator"].slice() : undefined;
  934. for (pos = lvp + 1; testPos == undefined || (testPos["match"]["fn"] != null || (testPos["match"]["fn"] == null && testPos["match"]["def"] != "")) ; pos++) {
  935. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  936. ndxIntlzr = testPos["locator"].slice();
  937. }
  938. maskLength = pos;
  939. return (maxLength == undefined || maskLength < maxLength) ? maskLength : maxLength;
  940. }
  941. function seekNext(pos) {
  942. var maskL = getMaskLength();
  943. if (pos >= maskL) return maskL;
  944. var position = pos;
  945. while (++position < maskL && !isMask(position) && (opts.nojumps !== true || opts.nojumpsThreshold > position)) {
  946. }
  947. return position;
  948. }
  949. function seekPrevious(pos) {
  950. var position = pos;
  951. if (position <= 0) return 0;
  952. while (--position > 0 && !isMask(position)) {
  953. };
  954. return position;
  955. }
  956. function getBufferElement(position) {
  957. return getMaskSet()["validPositions"][position] == undefined ? getPlaceholder(position) : getMaskSet()["validPositions"][position]["input"];
  958. }
  959. function writeBuffer(input, buffer, caretPos, event, triggerInputEvent) {
  960. if (event && $.isFunction(opts.onBeforeWrite)) {
  961. var result = opts.onBeforeWrite.call(input, event, buffer, caretPos, opts);
  962. if (result) {
  963. if (result["refreshFromBuffer"]) {
  964. var refresh = result["refreshFromBuffer"];
  965. refreshFromBuffer(refresh === true ? refresh : refresh["start"], refresh["end"], result["buffer"]);
  966. resetMaskSet(true);
  967. buffer = getBuffer();
  968. }
  969. caretPos = result.caret || caretPos;
  970. }
  971. }
  972. input._valueSet(buffer.join(''));
  973. if (caretPos != undefined) {
  974. caret(input, caretPos);
  975. }
  976. if (triggerInputEvent === true) {
  977. skipInputEvent = true;
  978. $(input).trigger("input");
  979. }
  980. }
  981. function getPlaceholder(pos, test) {
  982. test = test || getTest(pos);
  983. return test["placeholder"] != undefined ? test["placeholder"] : (test["fn"] == null ? test["def"] : opts.placeholder.charAt(pos % opts.placeholder.length));
  984. }
  985. function checkVal(input, writeOut, strict, nptvl) {
  986. function isTemplateMatch() {
  987. var isMatch = false;
  988. var charCodeNdx = getBufferTemplate().slice(initialNdx, seekNext(initialNdx)).join('').indexOf(charCodes);
  989. if (charCodeNdx != -1 && !isMask(initialNdx)) {
  990. isMatch = true;
  991. var bufferTemplateArr = getBufferTemplate().slice(initialNdx, initialNdx + charCodeNdx);
  992. for (var i = 0; i < bufferTemplateArr.length; i++) {
  993. if (bufferTemplateArr[i] != " ") {
  994. isMatch = false; break;
  995. }
  996. }
  997. }
  998. return isMatch;
  999. }
  1000. var inputValue = nptvl != undefined ? nptvl.slice() : input._valueGet().split(''), charCodes = "", initialNdx = 0;
  1001. resetMaskSet();
  1002. getMaskSet()["p"] = seekNext(-1);
  1003. if (writeOut) input._valueSet(""); //initial clear
  1004. var staticInput = getBufferTemplate().slice(0, seekNext(-1)).join(''), matches = inputValue.join('').match(new RegExp(escapeRegex(staticInput), "g"));
  1005. if (matches && matches.length > 0) {
  1006. inputValue.splice(0, matches.length * staticInput.length);
  1007. initialNdx = seekNext(initialNdx);
  1008. }
  1009. $.each(inputValue, function (ndx, charCode) {
  1010. var keypress = $.Event("keypress");
  1011. keypress.which = charCode.charCodeAt(0);
  1012. charCodes += charCode;
  1013. var lvp = getLastValidPosition(undefined, true), lvTest = getMaskSet()["validPositions"][lvp], nextTest = getTestTemplate(lvp + 1, lvTest ? lvTest.locator.slice() : undefined, lvp);
  1014. if (!isTemplateMatch() || strict) {
  1015. var pos = strict ? ndx : (nextTest["match"].fn == null && nextTest["match"].optionality && (lvp + 1) < getMaskSet()["p"] ? lvp + 1 : getMaskSet()["p"]);
  1016. keypressEvent.call(input, keypress, true, false, strict, pos);
  1017. initialNdx = pos + 1;
  1018. charCodes = "";
  1019. } else {
  1020. keypressEvent.call(input, keypress, true, false, true, lvp + 1);
  1021. }
  1022. });
  1023. if (writeOut) {
  1024. writeBuffer(input, getBuffer(), $(input).is(":focus") ? seekNext(getLastValidPosition(0)) : undefined, $.Event("checkval"));
  1025. }
  1026. }
  1027. function escapeRegex(str) {
  1028. return $.inputmask.escapeRegex(str);
  1029. }
  1030. function unmaskedvalue($input) {
  1031. if ($input.data('_inputmask') && !$input.hasClass('hasDatepicker')) {
  1032. var umValue = [], vps = getMaskSet()["validPositions"];
  1033. for (var pndx in vps) {
  1034. if (vps[pndx]["match"] && vps[pndx]["match"].fn != null) {
  1035. umValue.push(vps[pndx]["input"]);
  1036. }
  1037. }
  1038. var unmaskedValue = (isRTL ? umValue.reverse() : umValue).join('');
  1039. var bufferValue = (isRTL ? getBuffer().slice().reverse() : getBuffer()).join('');
  1040. if ($.isFunction(opts.onUnMask)) {
  1041. unmaskedValue = (opts.onUnMask.call($input, bufferValue, unmaskedValue, opts) || unmaskedValue);
  1042. }
  1043. return unmaskedValue;
  1044. } else {
  1045. return $input[0]._valueGet();
  1046. }
  1047. }
  1048. function TranslatePosition(pos) {
  1049. if (isRTL && typeof pos == 'number' && (!opts.greedy || opts.placeholder != "")) {
  1050. var bffrLght = getBuffer().length;
  1051. pos = bffrLght - pos;
  1052. }
  1053. return pos;
  1054. }
  1055. function caret(input, begin, end) {
  1056. var npt = input.jquery && input.length > 0 ? input[0] : input, range;
  1057. if (typeof begin == 'number') {
  1058. begin = TranslatePosition(begin);
  1059. end = TranslatePosition(end);
  1060. end = (typeof end == 'number') ? end : begin;
  1061. if (!$(npt).is(":visible")) {
  1062. return;
  1063. }
  1064. var scrollCalc = $(npt).css("font-size").replace("px", "") * end;
  1065. npt.scrollLeft = scrollCalc > npt.scrollWidth ? scrollCalc : 0;
  1066. if (!androidchrome && opts.insertMode == false && begin == end) end++; //set visualization for insert/overwrite mode
  1067. if (npt.setSelectionRange) {
  1068. npt.selectionStart = begin;
  1069. npt.selectionEnd = end;
  1070. } else if (window.getSelection) {
  1071. range = document.createRange();
  1072. range.setStart(npt.firstChild, begin < npt._valueGet().length ? begin : npt._valueGet().length);
  1073. range.setEnd(npt.firstChild, end < npt._valueGet().length ? end : npt._valueGet().length);
  1074. range.collapse(true);
  1075. var sel = window.getSelection();
  1076. sel.removeAllRanges();
  1077. sel.addRange(range);
  1078. //npt.focus();
  1079. } else if (npt.createTextRange) {
  1080. range = npt.createTextRange();
  1081. range.collapse(true);
  1082. range.moveEnd('character', end);
  1083. range.moveStart('character', begin);
  1084. range.select();
  1085. }
  1086. } else {
  1087. if (npt.setSelectionRange) {
  1088. begin = npt.selectionStart;
  1089. end = npt.selectionEnd;
  1090. } else if (window.getSelection) {
  1091. range = window.getSelection().getRangeAt(0);
  1092. if (range.commonAncestorContainer.parentNode == npt) {
  1093. begin = range.startOffset;
  1094. end = range.endOffset;
  1095. }
  1096. } else if (document.selection && document.selection.createRange) {
  1097. range = document.selection.createRange();
  1098. begin = 0 - range.duplicate().moveStart('character', -100000);
  1099. end = begin + range.text.length;
  1100. }
  1101. return { "begin": TranslatePosition(begin), "end": TranslatePosition(end) };
  1102. }
  1103. }
  1104. function determineLastRequiredPosition(returnDefinition) {
  1105. var buffer = getBuffer(), bl = buffer.length,
  1106. pos, lvp = getLastValidPosition(), positions = {}, lvTest = getMaskSet()["validPositions"][lvp],
  1107. ndxIntlzr = lvTest != undefined ? lvTest["locator"].slice() : undefined, testPos;
  1108. for (pos = lvp + 1; pos < buffer.length; pos++) {
  1109. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  1110. ndxIntlzr = testPos["locator"].slice();
  1111. positions[pos] = $.extend(true, {}, testPos);
  1112. }
  1113. var lvTestAlt = lvTest && lvTest.alternation != undefined ? lvTest["locator"][lvTest.alternation] : undefined;
  1114. for (pos = bl - 1; pos > lvp; pos--) {
  1115. testPos = positions[pos]["match"];
  1116. if ((testPos.optionality ||
  1117. testPos.optionalQuantifier ||
  1118. (lvTestAlt && lvTestAlt != positions[pos]["locator"][lvTest.alternation]))
  1119. && buffer[pos] == getPlaceholder(pos, testPos)) {
  1120. bl--;
  1121. } else break;
  1122. }
  1123. return returnDefinition ? { "l": bl, "def": positions[bl] ? positions[bl]["match"] : undefined } : bl;
  1124. }
  1125. function clearOptionalTail(buffer) {
  1126. var rl = determineLastRequiredPosition(), lmib = buffer.length - 1;
  1127. for (; lmib > rl; lmib--) {
  1128. if (isMask(lmib)) break; //fixme ismask is not good enough
  1129. }
  1130. buffer.splice(rl, lmib + 1 - rl);
  1131. return buffer
  1132. }
  1133. function isComplete(buffer) { //return true / false / undefined (repeat *)
  1134. if ($.isFunction(opts.isComplete)) return opts.isComplete.call($el, buffer, opts);
  1135. if (opts.repeat == "*") return undefined;
  1136. var complete = false, lrp = determineLastRequiredPosition(true), aml = seekPrevious(lrp["l"]), lvp = getLastValidPosition();
  1137. if (lrp["def"] == undefined || lrp["def"].newBlockMarker || lrp["def"].optionality || lrp["def"].optionalQuantifier) {
  1138. complete = true;
  1139. for (var i = 0; i <= aml; i++) {
  1140. var mask = isMask(i), test = getTest(i);
  1141. if ((mask && getMaskSet()["validPositions"][i] == undefined && test.optionality !== true && test.optionalQuantifier !== true) || (!mask && buffer[i] != getPlaceholder(i))) {
  1142. complete = false;
  1143. break;
  1144. }
  1145. }
  1146. }
  1147. return complete;
  1148. }
  1149. function isSelection(begin, end) {
  1150. return isRTL ? (begin - end) > 1 || ((begin - end) == 1 && opts.insertMode) :
  1151. (end - begin) > 1 || ((end - begin) == 1 && opts.insertMode);
  1152. }
  1153. function installEventRuler(npt) {
  1154. var events = $._data(npt).events,
  1155. inComposition = false;
  1156. $.each(events, function (eventType, eventHandlers) {
  1157. $.each(eventHandlers, function (ndx, eventHandler) {
  1158. if (eventHandler.namespace == "inputmask") {
  1159. if (eventHandler.type != "setvalue") {
  1160. var handler = eventHandler.handler;
  1161. eventHandler.handler = function (e) {
  1162. //console.log("triggered " + e.type);
  1163. if (this.disabled || (this.readOnly && !(e.type == "keydown" && e.ctrlKey && e.keyCode == 67)))
  1164. e.preventDefault();
  1165. else {
  1166. switch (e.type) {
  1167. case "input":
  1168. if (skipInputEvent === true || inComposition === true) {
  1169. skipInputEvent = false;
  1170. return e.preventDefault();
  1171. }
  1172. break;
  1173. case "keydown":
  1174. //Safari 5.1.x - modal dialog fires keypress twice workaround
  1175. skipKeyPressEvent = false;
  1176. inComposition = false;
  1177. break;
  1178. case "keypress":
  1179. if (skipKeyPressEvent === true)
  1180. return e.preventDefault();
  1181. skipKeyPressEvent = true;
  1182. break;
  1183. case "compositionstart":
  1184. inComposition = true;
  1185. break;
  1186. case "compositionupdate":
  1187. skipInputEvent = true;
  1188. break;
  1189. case "compositionend":
  1190. inComposition = false;
  1191. break;
  1192. }
  1193. //console.log("executed " + e.type);
  1194. return handler.apply(this, arguments);
  1195. }
  1196. };
  1197. }
  1198. }
  1199. });
  1200. });
  1201. }
  1202. function patchValueProperty(npt) {
  1203. var valueGet;
  1204. var valueSet;
  1205. function PatchValhook(type) {
  1206. if ($.valHooks[type] == undefined || $.valHooks[type].inputmaskpatch != true) {
  1207. var valhookGet = $.valHooks[type] && $.valHooks[type].get ? $.valHooks[type].get : function (elem) { return elem.value; };
  1208. var valhookSet = $.valHooks[type] && $.valHooks[type].set ? $.valHooks[type].set : function (elem, value) {
  1209. elem.value = value;
  1210. return elem;
  1211. };
  1212. $.valHooks[type] = {
  1213. get: function (elem) {
  1214. var $elem = $(elem);
  1215. if ($elem.data('_inputmask')) {
  1216. if ($elem.data('_inputmask')['opts'].autoUnmask)
  1217. return $elem.inputmask('unmaskedvalue');
  1218. else {
  1219. var result = valhookGet(elem),
  1220. inputData = $elem.data('_inputmask'),
  1221. maskset = inputData['maskset'],
  1222. bufferTemplate = maskset['_buffer'];
  1223. bufferTemplate = bufferTemplate ? bufferTemplate.join('') : '';
  1224. return result != bufferTemplate ? result : '';
  1225. }
  1226. } else return valhookGet(elem);
  1227. },
  1228. set: function (elem, value) {
  1229. var $elem = $(elem), inputData = $elem.data('_inputmask'), result;
  1230. result = valhookSet(elem, value);
  1231. if (inputData)
  1232. $elem.triggerHandler('setvalue.inputmask');
  1233. return result;
  1234. },
  1235. inputmaskpatch: true
  1236. };
  1237. }
  1238. }
  1239. function getter() {
  1240. var $self = $(this), inputData = $(this).data('_inputmask');
  1241. if (inputData) {
  1242. return inputData['opts'].autoUnmask ? $self.inputmask('unmaskedvalue') : (valueGet.call(this) != getBufferTemplate().join('') ? valueGet.call(this) : '');
  1243. } else return valueGet.call(this);
  1244. }
  1245. function setter(value) {
  1246. var inputData = $(this).data('_inputmask');
  1247. valueSet.call(this, value);
  1248. if (inputData)
  1249. $(this).triggerHandler('setvalue.inputmask');
  1250. }
  1251. function InstallNativeValueSetFallback(npt) {
  1252. $(npt).bind("mouseenter.inputmask", function (event) {
  1253. var $input = $(this), input = this, value = input._valueGet();
  1254. if (value != "" && value != getBuffer().join(''))
  1255. $input.triggerHandler('setvalue.inputmask');
  1256. });
  1257. //!! the bound handlers are executed in the order they where bound
  1258. //reorder the events - the mouseenter event is internally mapped to the mouseover event
  1259. var events = $._data(npt).events;
  1260. var handlers = events["mouseover"];
  1261. if (handlers) {
  1262. var ourHandler = handlers[handlers.length - 1];
  1263. for (var i = handlers.length - 1; i > 0; i--) {
  1264. handlers[i] = handlers[i - 1];
  1265. }
  1266. handlers[0] = ourHandler;
  1267. }
  1268. }
  1269. if (!npt._valueGet) {
  1270. var valueProperty;
  1271. if (Object.getOwnPropertyDescriptor && npt.value == undefined) { // && npt.isContentEditable) {
  1272. valueGet = function () {
  1273. return this.textContent;
  1274. }
  1275. valueSet = function (value) {
  1276. this.textContent = value;
  1277. }
  1278. Object.defineProperty(npt, "value", {
  1279. get: getter,
  1280. set: setter
  1281. });
  1282. } else if ((valueProperty = (Object.getOwnPropertyDescriptor && Object.getOwnPropertyDescriptor(npt, "value"))) && valueProperty.configurable && false) { //experimental for chrome
  1283. npt._value = valueProperty.value;
  1284. valueGet = function () {
  1285. return this._value || "";
  1286. }
  1287. valueSet = function (value) {
  1288. this._value = value;
  1289. this.select();
  1290. this.setRangeText(value);
  1291. this.selectionStart = this.selectionEnd;
  1292. }
  1293. Object.defineProperty(npt, "value", {
  1294. get: getter,
  1295. set: setter
  1296. });
  1297. } else if (document.__lookupGetter__ && npt.__lookupGetter__("value")) {
  1298. valueGet = npt.__lookupGetter__("value");
  1299. valueSet = npt.__lookupSetter__("value");
  1300. npt.__defineGetter__("value", getter);
  1301. npt.__defineSetter__("value", setter);
  1302. } else { //jquery.val
  1303. valueGet = function () { return npt.value; }
  1304. valueSet = function (value) { npt.value = value; }
  1305. PatchValhook(npt.type);
  1306. InstallNativeValueSetFallback(npt);
  1307. }
  1308. npt._valueGet = function (overruleRTL) {
  1309. return isRTL && overruleRTL !== true ? valueGet.call(this).split('').reverse().join('') : valueGet.call(this);
  1310. };
  1311. npt._valueSet = function (value) {
  1312. valueSet.call(this, isRTL ? value.split('').reverse().join('') : value);
  1313. };
  1314. }
  1315. }
  1316. function handleRemove(input, k, pos, strict) {
  1317. function generalize() {
  1318. if (opts.keepStatic) {
  1319. resetMaskSet(true);
  1320. var validInputs = [],
  1321. lastAlt, positionsClone = $.extend(true, {}, getMaskSet()["validPositions"]);
  1322. //find last alternation
  1323. for (lastAlt = getLastValidPosition() ; lastAlt >= 0; lastAlt--) {
  1324. var validPos = getMaskSet()["validPositions"][lastAlt];
  1325. if (validPos) {
  1326. if (validPos.alternation != undefined && validPos.locator[validPos.alternation] == getTestTemplate(lastAlt).locator[validPos.alternation]) {
  1327. break;
  1328. }
  1329. if (validPos.match.fn != null)
  1330. validInputs.push(validPos.input);
  1331. delete getMaskSet()["validPositions"][lastAlt];
  1332. }
  1333. }
  1334. if (lastAlt > 0) {
  1335. while (validInputs.length > 0) {
  1336. getMaskSet()["p"] = seekNext(getLastValidPosition());
  1337. var keypress = $.Event("keypress");
  1338. keypress.which = validInputs.pop().charCodeAt(0);
  1339. keypressEvent.call(input, keypress, true, false, false, getMaskSet()["p"]);
  1340. }
  1341. } else {
  1342. //restore original positions
  1343. getMaskSet()["validPositions"] = $.extend(true, {}, positionsClone);
  1344. }
  1345. }
  1346. }
  1347. if (opts.numericInput || isRTL) {
  1348. if (k == $.inputmask.keyCode.BACKSPACE)
  1349. k = $.inputmask.keyCode.DELETE;
  1350. else if (k == $.inputmask.keyCode.DELETE)
  1351. k = $.inputmask.keyCode.BACKSPACE;
  1352. if (isRTL) {
  1353. var pend = pos.end;
  1354. pos.end = pos.begin;
  1355. pos.begin = pend;
  1356. }
  1357. }
  1358. if (k == $.inputmask.keyCode.BACKSPACE && (pos.end - pos.begin < 1 || opts.insertMode == false))
  1359. pos.begin = seekPrevious(pos.begin);
  1360. else if (k == $.inputmask.keyCode.DELETE && pos.begin == pos.end)
  1361. pos.end = isMask(pos.end) ? pos.end + 1 : seekNext(pos.end) + 1;
  1362. stripValidPositions(pos.begin, pos.end, false, strict);
  1363. if (strict !== true) {
  1364. generalize(); //revert the alternation
  1365. var lvp = getLastValidPosition(pos.begin);
  1366. if (lvp < pos.begin) {
  1367. if (lvp == -1) resetMaskSet();
  1368. getMaskSet()["p"] = seekNext(lvp);
  1369. } else {
  1370. getMaskSet()["p"] = pos.begin;
  1371. }
  1372. }
  1373. }
  1374. //postprocessing of the validpositions according to the buffer manipulations
  1375. function handleOnKeyResult(input, keyResult, caretPos) {
  1376. if (keyResult && keyResult["refreshFromBuffer"]) {
  1377. var refresh = keyResult["refreshFromBuffer"];
  1378. refreshFromBuffer(refresh === true ? refresh : refresh["start"], refresh["end"], keyResult["buffer"]);
  1379. resetMaskSet(true);
  1380. if (caretPos != undefined) {
  1381. writeBuffer(input, getBuffer());
  1382. caret(input, keyResult.caret || caretPos.begin, keyResult.caret || caretPos.end);
  1383. }
  1384. }
  1385. }
  1386. function keydownEvent(e) {
  1387. var input = this, $input = $(input), k = e.keyCode, pos = caret(input);
  1388. //backspace, delete, and escape get special treatment
  1389. if (k == $.inputmask.keyCode.BACKSPACE || k == $.inputmask.keyCode.DELETE || (iphone && k == 127) || (e.ctrlKey && k == 88 && !isInputEventSupported("cut"))) { //backspace/delete
  1390. e.preventDefault(); //stop default action but allow propagation
  1391. if (k == 88) undoValue = getBuffer().join('');
  1392. handleRemove(input, k, pos);
  1393. writeBuffer(input, getBuffer(), getMaskSet()["p"], e, undoValue != getBuffer().join(''));
  1394. if (input._valueGet() == getBufferTemplate().join(''))
  1395. $input.trigger('cleared');
  1396. else if (isComplete(getBuffer()) === true)
  1397. $input.trigger("complete");
  1398. if (opts.showTooltip) { //update tooltip
  1399. $input.prop("title", getMaskSet()["mask"]);
  1400. }
  1401. } else if (k == $.inputmask.keyCode.END || k == $.inputmask.keyCode.PAGE_DOWN) { //when END or PAGE_DOWN pressed set position at lastmatch
  1402. setTimeout(function () {
  1403. var caretPos = seekNext(getLastValidPosition());
  1404. if (!opts.insertMode && caretPos == getMaskLength() && !e.shiftKey) caretPos--;
  1405. caret(input, e.shiftKey ? pos.begin : caretPos, caretPos);
  1406. }, 0);
  1407. } else if ((k == $.inputmask.keyCode.HOME && !e.shiftKey) || k == $.inputmask.keyCode.PAGE_UP) { //Home or page_up
  1408. caret(input, 0, e.shiftKey ? pos.begin : 0);
  1409. } else if (((opts.undoOnEscape && k == $.inputmask.keyCode.ESCAPE) || (k == 90 && e.ctrlKey)) && e.altKey !== true) { //escape && undo && #762
  1410. checkVal(input, true, false, undoValue.split(''));
  1411. $input.click();
  1412. } else if (k == $.inputmask.keyCode.INSERT && !(e.shiftKey || e.ctrlKey)) { //insert
  1413. opts.insertMode = !opts.insertMode;
  1414. caret(input, !opts.insertMode && pos.begin == getMaskLength() ? pos.begin - 1 : pos.begin);
  1415. } else if (opts.insertMode == false && !e.shiftKey) {
  1416. if (k == $.inputmask.keyCode.RIGHT) {
  1417. setTimeout(function () {
  1418. var caretPos = caret(input);
  1419. caret(input, caretPos.begin);
  1420. }, 0);
  1421. } else if (k == $.inputmask.keyCode.LEFT) {
  1422. setTimeout(function () {
  1423. var caretPos = caret(input);
  1424. caret(input, isRTL ? caretPos.begin + 1 : caretPos.begin - 1);
  1425. }, 0);
  1426. }
  1427. }
  1428. opts.onKeyDown.call(this, e, getBuffer(), caret(input).begin, opts);
  1429. ignorable = $.inArray(k, opts.ignorables) != -1;
  1430. }
  1431. function keypressEvent(e, checkval, writeOut, strict, ndx) {
  1432. var input = this, $input = $(input),
  1433. k = e.which || e.charCode || e.keyCode;
  1434. if (checkval !== true && (!(e.ctrlKey && e.altKey) && (e.ctrlKey || e.metaKey || ignorable))) {
  1435. return true;
  1436. } else {
  1437. if (k) {
  1438. //special treat the decimal separator
  1439. if (k == 46 && e.shiftKey == false && opts.radixPoint == ",") k = 44;
  1440. var pos = checkval ? { begin: ndx, end: ndx } : caret(input), forwardPosition, c = String.fromCharCode(k);
  1441. //should we clear a possible selection??
  1442. var isSlctn = isSelection(pos.begin, pos.end);
  1443. if (isSlctn) {
  1444. getMaskSet()["undoPositions"] = $.extend(true, {}, getMaskSet()["validPositions"]); //init undobuffer for recovery when not valid
  1445. handleRemove(input, $.inputmask.keyCode.DELETE, pos, true);
  1446. pos.begin = getMaskSet()["p"];
  1447. if (!opts.insertMode) { //preserve some space
  1448. opts.insertMode = !opts.insertMode;
  1449. setValidPosition(pos.begin, strict);
  1450. opts.insertMode = !opts.insertMode;
  1451. }
  1452. isSlctn = !opts.multi;
  1453. }
  1454. getMaskSet()["writeOutBuffer"] = true;
  1455. var p = isRTL && !isSlctn ? pos.end : pos.begin;
  1456. var valResult = isValid(p, c, strict);
  1457. if (valResult !== false) {
  1458. if (valResult !== true) {
  1459. p = valResult.pos != undefined ? valResult.pos : p; //set new position from isValid
  1460. c = valResult.c != undefined ? valResult.c : c; //set new char from isValid
  1461. }
  1462. resetMaskSet(true);
  1463. if (valResult.caret != undefined)
  1464. forwardPosition = valResult.caret;
  1465. else {
  1466. var vps = getMaskSet()["validPositions"];
  1467. if (!opts.keepStatic && (vps[p + 1] != undefined && getTests(p + 1, vps[p].locator.slice(), p).length > 1 || vps[p].alternation != undefined))
  1468. forwardPosition = p + 1;
  1469. else
  1470. forwardPosition = seekNext(p);
  1471. }
  1472. getMaskSet()["p"] = forwardPosition; //needed for checkval
  1473. }
  1474. if (writeOut !== false) {
  1475. var self = this;
  1476. setTimeout(function () { opts.onKeyValidation.call(self, valResult, opts); }, 0);
  1477. if (getMaskSet()["writeOutBuffer"] && valResult !== false) {
  1478. var buffer = getBuffer();
  1479. writeBuffer(input, buffer, checkval ? undefined : opts.numericInput ? seekPrevious(forwardPosition) : forwardPosition, e, checkval !== true);
  1480. if (checkval !== true) {
  1481. setTimeout(function () { //timeout needed for IE
  1482. if (isComplete(buffer) === true)
  1483. $input.trigger("complete");
  1484. }, 0);
  1485. }
  1486. } else if (isSlctn) {
  1487. getMaskSet()["buffer"] = undefined;
  1488. getMaskSet()["validPositions"] = getMaskSet()["undoPositions"];
  1489. }
  1490. } else if (isSlctn) {
  1491. getMaskSet()["buffer"] = undefined;
  1492. getMaskSet()["validPositions"] = getMaskSet()["undoPositions"];
  1493. }
  1494. if (opts.showTooltip) { //update tooltip
  1495. $input.prop("title", getMaskSet()["mask"]);
  1496. }
  1497. if (checkval && $.isFunction(opts.onBeforeWrite)) {
  1498. var result = opts.onBeforeWrite.call(this, e, getBuffer(), forwardPosition, opts);
  1499. if (result && result["refreshFromBuffer"]) {
  1500. var refresh = result["refreshFromBuffer"];
  1501. refreshFromBuffer(refresh === true ? refresh : refresh["start"], refresh["end"], result["buffer"]);
  1502. resetMaskSet(true);
  1503. if (result.caret) {
  1504. getMaskSet()["p"] = result.caret;
  1505. }
  1506. }
  1507. }
  1508. e.preventDefault();
  1509. }
  1510. }
  1511. }
  1512. function pasteEvent(e) {
  1513. var input = this, $input = $(input), inputValue = input._valueGet(true), caretPos = caret(input);
  1514. //paste event for IE8 and lower I guess ;-)
  1515. if (e.type == "propertychange" && input._valueGet().length <= getMaskLength()) {
  1516. return true;
  1517. } else if (e.type == "paste") {
  1518. var valueBeforeCaret = inputValue.substr(0, caretPos.begin),
  1519. valueAfterCaret = inputValue.substr(caretPos.end, inputValue.length);
  1520. if (valueBeforeCaret == getBufferTemplate().slice(0, caretPos.begin).join('')) valueBeforeCaret = "";
  1521. if (valueAfterCaret == getBufferTemplate().slice(caretPos.end).join('')) valueAfterCaret = "";
  1522. if (window.clipboardData && window.clipboardData.getData) { // IE
  1523. inputValue = valueBeforeCaret + window.clipboardData.getData('Text') + valueAfterCaret;
  1524. } else if (e.originalEvent && e.originalEvent.clipboardData && e.originalEvent.clipboardData.getData) {
  1525. inputValue = valueBeforeCaret + e.originalEvent.clipboardData.getData('text/plain') + valueAfterCaret;
  1526. }
  1527. }
  1528. var pasteValue = inputValue;
  1529. if ($.isFunction(opts.onBeforePaste)) {
  1530. pasteValue = opts.onBeforePaste.call(input, inputValue, opts);
  1531. if (pasteValue === false) {
  1532. e.preventDefault();
  1533. return false;
  1534. }
  1535. if (!pasteValue)
  1536. pasteValue = inputValue;
  1537. }
  1538. checkVal(input, true, false, isRTL ? pasteValue.split('').reverse() : pasteValue.split(''));
  1539. $input.click();
  1540. if (isComplete(getBuffer()) === true)
  1541. $input.trigger("complete");
  1542. return false;
  1543. }
  1544. //function mobileInputEvent(e) {
  1545. // var input = this;
  1546. // //backspace in chrome32 only fires input event - detect & treat
  1547. // var caretPos = caret(input),
  1548. // currentValue = input._valueGet();
  1549. // currentValue = currentValue.replace(new RegExp("(" + escapeRegex(getBufferTemplate().join('')) + ")*"), "");
  1550. // //correct caretposition for chrome
  1551. // if (caretPos.begin > currentValue.length) {
  1552. // caret(input, currentValue.length);
  1553. // caretPos = caret(input);
  1554. // }
  1555. // if ((getBuffer().length - currentValue.length) == 1 && currentValue.charAt(caretPos.begin) != getBuffer()[caretPos.begin]
  1556. // && currentValue.charAt(caretPos.begin + 1) != getBuffer()[caretPos.begin]
  1557. // && !isMask(caretPos.begin)) {
  1558. // e.keyCode = $.inputmask.keyCode.BACKSPACE;
  1559. // keydownEvent.call(input, e);
  1560. // }
  1561. // e.preventDefault();
  1562. //}
  1563. function inputFallBackEvent(e) { //fallback when keypress & compositionevents fail
  1564. var input = this;
  1565. checkVal(input, true, false);
  1566. if (isComplete(getBuffer()) === true)
  1567. $(input).trigger("complete");
  1568. e.preventDefault();
  1569. }
  1570. function compositionStartEvent(e) {
  1571. var input = this;
  1572. undoValue = getBuffer().join('');
  1573. if (compositionData == "" || e.originalEvent.data.indexOf(compositionData) != 0) {
  1574. compositionCaretPos = caret(input);
  1575. }
  1576. }
  1577. function compositionUpdateEvent(e) {
  1578. var input = this, caretPos = compositionCaretPos || caret(input);
  1579. if (e.originalEvent.data.indexOf(compositionData) == 0) {
  1580. resetMaskSet();
  1581. caretPos = { begin: 0, end: 0 };
  1582. }
  1583. var newData = e.originalEvent.data;
  1584. caret(input, caretPos.begin, caretPos.end);
  1585. for (var i = 0; i < newData.length; i++) {
  1586. var keypress = $.Event("keypress");
  1587. keypress.which = newData.charCodeAt(i);
  1588. skipKeyPressEvent = false;
  1589. ignorable = false;
  1590. keypressEvent.call(input, keypress); //needs update
  1591. }
  1592. setTimeout(function () {
  1593. var forwardPosition = getMaskSet()["p"];
  1594. writeBuffer(input, getBuffer(), opts.numericInput ? seekPrevious(forwardPosition) : forwardPosition);
  1595. }, 0);
  1596. compositionData = e.originalEvent.data;
  1597. }
  1598. function compositionEndEvent(e) {
  1599. //pickup by inputfallback
  1600. }
  1601. function mask(el) {
  1602. $el = $(el);
  1603. if (($el.is(":input") && isInputTypeSupported($el.attr("type"))) || el.isContentEditable || $el.is("div")) {
  1604. //store tests & original buffer in the input element - used to get the unmasked value
  1605. $el.data('_inputmask', {
  1606. 'maskset': maskset,
  1607. 'opts': opts,
  1608. 'isRTL': false
  1609. });
  1610. //show tooltip
  1611. if (opts.showTooltip) {
  1612. $el.prop("title", getMaskSet()["mask"]);
  1613. }
  1614. if (el.dir == "rtl" || opts.rightAlign)
  1615. $el.css("text-align", "right");
  1616. if (el.dir == "rtl" || opts.numericInput) {
  1617. el.dir = "ltr";
  1618. $el.removeAttr("dir");
  1619. var inputData = $el.data('_inputmask');
  1620. inputData['isRTL'] = true;
  1621. $el.data('_inputmask', inputData);
  1622. isRTL = true;
  1623. }
  1624. //unbind all events - to make sure that no other mask will interfere when re-masking
  1625. $el.unbind(".inputmask");
  1626. if ($el.is(":input") || el.isContentEditable) {
  1627. //bind events
  1628. $el.closest('form').bind("submit", function (e) { //trigger change on submit if any
  1629. if (undoValue != getBuffer().join('')) {
  1630. $el.change();
  1631. }
  1632. if ($el[0]._valueGet && $el[0]._valueGet() == getBufferTemplate().join('')) {
  1633. $el[0]._valueSet(''); //clear masktemplete on submit and still has focus
  1634. }
  1635. if (opts.removeMaskOnSubmit) {
  1636. $el.inputmask("remove");
  1637. }
  1638. }).bind('reset', function () {
  1639. setTimeout(function () {
  1640. $el.triggerHandler('setvalue.inputmask');
  1641. }, 0);
  1642. });
  1643. $el.bind("mouseenter.inputmask", function () {
  1644. var $input = $(this), input = this;
  1645. if (!$input.is(":focus") && opts.showMaskOnHover) {
  1646. if (input._valueGet() != getBuffer().join('')) {
  1647. writeBuffer(input, getBuffer());
  1648. }
  1649. }
  1650. }).bind("blur.inputmask", function (e) {
  1651. var $input = $(this), input = this;
  1652. if ($input.data('_inputmask')) {
  1653. var nptValue = input._valueGet(), buffer = getBuffer().slice();
  1654. firstClick = true;
  1655. if (undoValue != buffer.join('')) {
  1656. setTimeout(function () { //change event should be triggered after the other buffer manipulations on blur
  1657. $input.change();
  1658. undoValue = buffer.join('');
  1659. }, 0);
  1660. }
  1661. if (nptValue != '') {
  1662. if (opts.clearMaskOnLostFocus) {
  1663. if (nptValue == getBufferTemplate().join(''))
  1664. buffer = [];
  1665. else { //clearout optional tail of the mask
  1666. clearOptionalTail(buffer);
  1667. }
  1668. }
  1669. if (isComplete(buffer) === false) {
  1670. $input.trigger("incomplete");
  1671. if (opts.clearIncomplete) {
  1672. resetMaskSet();
  1673. if (opts.clearMaskOnLostFocus)
  1674. buffer = [];
  1675. else {
  1676. buffer = getBufferTemplate().slice();
  1677. }
  1678. }
  1679. }
  1680. writeBuffer(input, buffer, undefined, e);
  1681. }
  1682. }
  1683. }).bind("focus.inputmask", function (e) {
  1684. var $input = $(this), input = this, nptValue = input._valueGet();
  1685. if (opts.showMaskOnFocus && (!opts.showMaskOnHover || (opts.showMaskOnHover && nptValue == ''))) {
  1686. if (input._valueGet() != getBuffer().join('')) {
  1687. writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()));
  1688. }
  1689. }
  1690. undoValue = getBuffer().join('');
  1691. }).bind("mouseleave.inputmask", function () {
  1692. var $input = $(this), input = this;
  1693. if (opts.clearMaskOnLostFocus) {
  1694. var buffer = getBuffer().slice(), nptValue = input._valueGet();
  1695. if (!$input.is(":focus") && nptValue != $input.attr("placeholder") && nptValue != '') {
  1696. if (nptValue == getBufferTemplate().join(''))
  1697. buffer = [];
  1698. else { //clearout optional tail of the mask
  1699. clearOptionalTail(buffer);
  1700. }
  1701. writeBuffer(input, buffer);
  1702. }
  1703. }
  1704. }).bind("click.inputmask", function () {
  1705. var $input = $(this), input = this;
  1706. if ($input.is(":focus")) {
  1707. var selectedCaret = caret(input);
  1708. if (selectedCaret.begin == selectedCaret.end) {
  1709. if (opts.radixFocus && opts.radixPoint != "" && $.inArray(opts.radixPoint, getBuffer()) != -1 && (firstClick || getBuffer().join('') == getBufferTemplate().join(''))) {
  1710. caret(input, $.inArray(opts.radixPoint, getBuffer()));
  1711. firstClick = false;
  1712. } else {
  1713. var clickPosition = isRTL ? TranslatePosition(selectedCaret.begin) : selectedCaret.begin,
  1714. lastPosition = seekNext(getLastValidPosition(clickPosition));
  1715. if (clickPosition < lastPosition) {
  1716. caret(input, isMask(clickPosition) ? clickPosition : seekNext(clickPosition));
  1717. } else {
  1718. caret(input, lastPosition);
  1719. }
  1720. }
  1721. }
  1722. }
  1723. }).bind('dblclick.inputmask', function () {
  1724. var input = this;
  1725. setTimeout(function () {
  1726. caret(input, 0, seekNext(getLastValidPosition()));
  1727. }, 0);
  1728. }).bind(PasteEventType + ".inputmask dragdrop.inputmask drop.inputmask", pasteEvent
  1729. ).bind('cut.inputmask', function (e) {
  1730. skipInputEvent = true; //stop inputFallback
  1731. var input = this, $input = $(input), pos = caret(input);
  1732. handleRemove(input, $.inputmask.keyCode.DELETE, pos);
  1733. writeBuffer(input, getBuffer(), getMaskSet()["p"], e, undoValue != getBuffer().join(''));
  1734. if (input._valueGet() == getBufferTemplate().join(''))
  1735. $input.trigger('cleared');
  1736. if (opts.showTooltip) { //update tooltip
  1737. $input.prop("title", getMaskSet()["mask"]);
  1738. }
  1739. }).bind('complete.inputmask', opts.oncomplete
  1740. ).bind('incomplete.inputmask', opts.onincomplete
  1741. ).bind('cleared.inputmask', opts.oncleared);
  1742. $el.bind("keydown.inputmask", keydownEvent
  1743. ).bind("keypress.inputmask", keypressEvent);
  1744. if (!androidfirefox) {
  1745. $el.bind("compositionstart.inputmask", compositionStartEvent
  1746. ).bind("compositionupdate.inputmask", compositionUpdateEvent
  1747. ).bind("compositionend.inputmask", compositionEndEvent);
  1748. }
  1749. if (PasteEventType === "paste") {
  1750. $el.bind("input.inputmask", inputFallBackEvent);
  1751. }
  1752. //if (android || androidfirefox || androidchrome || kindle) {
  1753. // $el.unbind("input.inputmask");
  1754. // $el.bind("input.inputmask", mobileInputEvent);
  1755. //}
  1756. }
  1757. $el.bind('setvalue.inputmask', function () {
  1758. var input = this, value = input._valueGet();
  1759. input._valueSet($.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask.call(input, value, opts) || value) : value);
  1760. checkVal(input, true, false);
  1761. undoValue = getBuffer().join('');
  1762. if ((opts.clearMaskOnLostFocus || opts.clearIncomplete) && input._valueGet() == getBufferTemplate().join(''))
  1763. input._valueSet('');
  1764. });
  1765. patchValueProperty(el);
  1766. //apply mask
  1767. var initialValue = $.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask.call(el, el._valueGet(), opts) || el._valueGet()) : el._valueGet();
  1768. checkVal(el, true, false, initialValue.split(''));
  1769. var buffer = getBuffer().slice();
  1770. undoValue = buffer.join('');
  1771. // Wrap document.activeElement in a try/catch block since IE9 throw "Unspecified error" if document.activeElement is undefined when we are in an IFrame.
  1772. var activeElement;
  1773. try {
  1774. activeElement = document.activeElement;
  1775. } catch (e) {
  1776. }
  1777. if (isComplete(buffer) === false) {
  1778. if (opts.clearIncomplete)
  1779. resetMaskSet();
  1780. }
  1781. if (opts.clearMaskOnLostFocus) {
  1782. if (buffer.join('') == getBufferTemplate().join('')) {
  1783. buffer = [];
  1784. } else {
  1785. clearOptionalTail(buffer);
  1786. }
  1787. }
  1788. writeBuffer(el, buffer);
  1789. if (activeElement === el) { //position the caret when in focus
  1790. caret(el, seekNext(getLastValidPosition()));
  1791. }
  1792. installEventRuler(el);
  1793. }
  1794. }
  1795. //action object
  1796. if (actionObj != undefined) {
  1797. switch (actionObj["action"]) {
  1798. case "isComplete":
  1799. $el = $(actionObj["el"]);
  1800. maskset = $el.data('_inputmask')['maskset'];
  1801. opts = $el.data('_inputmask')['opts'];
  1802. return isComplete(actionObj["buffer"]);
  1803. case "unmaskedvalue":
  1804. $el = actionObj["$input"];
  1805. maskset = $el.data('_inputmask')['maskset'];
  1806. opts = $el.data('_inputmask')['opts'];
  1807. isRTL = actionObj["$input"].data('_inputmask')['isRTL'];
  1808. return unmaskedvalue(actionObj["$input"]);
  1809. case "mask":
  1810. undoValue = getBuffer().join('');
  1811. mask(actionObj["el"]);
  1812. break;
  1813. case "format":
  1814. $el = $({});
  1815. $el.data('_inputmask', {
  1816. 'maskset': maskset,
  1817. 'opts': opts,
  1818. 'isRTL': opts.numericInput
  1819. });
  1820. if (opts.numericInput) {
  1821. isRTL = true;
  1822. }
  1823. var valueBuffer = ($.isFunction(opts.onBeforeMask) ? (opts.onBeforeMask.call($el, actionObj["value"], opts) || actionObj["value"]) : actionObj["value"]).split('');
  1824. checkVal($el, false, false, isRTL ? valueBuffer.reverse() : valueBuffer);
  1825. $.isFunction(opts.onBeforeWrite) && opts.onBeforeWrite.call(this, undefined, getBuffer(), 0, opts);
  1826. if (actionObj["metadata"]) {
  1827. return {
  1828. value: isRTL ? getBuffer().slice().reverse().join('') : getBuffer().join(''),
  1829. metadata: $el.inputmask("getmetadata")
  1830. }
  1831. }
  1832. return isRTL ? getBuffer().slice().reverse().join('') : getBuffer().join('');
  1833. case "isValid":
  1834. $el = $({});
  1835. $el.data('_inputmask', {
  1836. 'maskset': maskset,
  1837. 'opts': opts,
  1838. 'isRTL': opts.numericInput
  1839. });
  1840. if (opts.numericInput) {
  1841. isRTL = true;
  1842. }
  1843. var valueBuffer = actionObj["value"].split('');
  1844. checkVal($el, false, true, isRTL ? valueBuffer.reverse() : valueBuffer);
  1845. var buffer = getBuffer();
  1846. var rl = determineLastRequiredPosition(), lmib = buffer.length - 1;
  1847. for (; lmib > rl; lmib--) {
  1848. if (isMask(lmib)) break;
  1849. }
  1850. buffer.splice(rl, lmib + 1 - rl);
  1851. return isComplete(buffer) && actionObj["value"] == buffer.join('');
  1852. case "getemptymask":
  1853. $el = $(actionObj["el"]);
  1854. maskset = $el.data('_inputmask')['maskset'];
  1855. opts = $el.data('_inputmask')['opts'];
  1856. return getBufferTemplate();
  1857. case "remove":
  1858. var el = actionObj["el"];
  1859. $el = $(el);
  1860. maskset = $el.data('_inputmask')['maskset'];
  1861. opts = $el.data('_inputmask')['opts'];
  1862. //writeout the unmaskedvalue
  1863. el._valueSet(unmaskedvalue($el));
  1864. //unbind all events
  1865. $el.unbind(".inputmask");
  1866. //clear data
  1867. $el.removeData('_inputmask');
  1868. //restore the value property
  1869. var valueProperty;
  1870. if (Object.getOwnPropertyDescriptor)
  1871. valueProperty = Object.getOwnPropertyDescriptor(el, "value");
  1872. if (valueProperty && valueProperty.get) {
  1873. if (el._valueGet) {
  1874. Object.defineProperty(el, "value", {
  1875. get: el._valueGet,
  1876. set: el._valueSet
  1877. });
  1878. }
  1879. } else if (document.__lookupGetter__ && el.__lookupGetter__("value")) {
  1880. if (el._valueGet) {
  1881. el.__defineGetter__("value", el._valueGet);
  1882. el.__defineSetter__("value", el._valueSet);
  1883. }
  1884. }
  1885. try { //try catch needed for IE7 as it does not supports deleting fns
  1886. delete el._valueGet;
  1887. delete el._valueSet;
  1888. } catch (e) {
  1889. el._valueGet = undefined;
  1890. el._valueSet = undefined;
  1891. }
  1892. break;
  1893. case "getmetadata":
  1894. $el = $(actionObj["el"]);
  1895. maskset = $el.data('_inputmask')['maskset'];
  1896. opts = $el.data('_inputmask')['opts'];
  1897. if ($.isArray(maskset["metadata"])) {
  1898. //find last alternation
  1899. var alternation, lvp = getLastValidPosition();
  1900. for (var firstAlt = lvp; firstAlt >= 0; firstAlt--) {
  1901. if (getMaskSet()["validPositions"][firstAlt] && getMaskSet()["validPositions"][firstAlt].alternation != undefined) {
  1902. alternation = getMaskSet()["validPositions"][firstAlt].alternation;
  1903. break;
  1904. }
  1905. }
  1906. if (alternation != undefined) {
  1907. return maskset["metadata"][getMaskSet()["validPositions"][lvp].locator[alternation]];
  1908. } else return maskset["metadata"][0];
  1909. }
  1910. return maskset["metadata"];
  1911. }
  1912. }
  1913. }
  1914. $.inputmask = {
  1915. //options default
  1916. defaults: {
  1917. placeholder: "_",
  1918. optionalmarker: { start: "[", end: "]" },
  1919. quantifiermarker: { start: "{", end: "}" },
  1920. groupmarker: { start: "(", end: ")" },
  1921. alternatormarker: "|",
  1922. escapeChar: "\\",
  1923. mask: null,
  1924. oncomplete: $.noop, //executes when the mask is complete
  1925. onincomplete: $.noop, //executes when the mask is incomplete and focus is lost
  1926. oncleared: $.noop, //executes when the mask is cleared
  1927. repeat: 0, //repetitions of the mask: * ~ forever, otherwise specify an integer
  1928. greedy: true, //true: allocated buffer for the mask and repetitions - false: allocate only if needed
  1929. autoUnmask: false, //automatically unmask when retrieving the value with $.fn.val or value if the browser supports __lookupGetter__ or getOwnPropertyDescriptor
  1930. removeMaskOnSubmit: false, //remove the mask before submitting the form.
  1931. clearMaskOnLostFocus: true,
  1932. insertMode: true, //insert the input or overwrite the input
  1933. clearIncomplete: false, //clear the incomplete input on blur
  1934. aliases: {}, //aliases definitions => see jquery.inputmask.extensions.js
  1935. alias: null,
  1936. onKeyDown: $.noop, //callback to implement autocomplete on certain keys for example. args => event, buffer, caretPos, opts
  1937. onBeforeMask: undefined, //executes before masking the initial value to allow preprocessing of the initial value. args => initialValue, opts => return processedValue
  1938. onBeforePaste: undefined, //executes before masking the pasted value to allow preprocessing of the pasted value. args => pastedValue, opts => return processedValue
  1939. onBeforeWrite: undefined, //executes before writing to the masked element. args => event, opts
  1940. onUnMask: undefined, //executes after unmasking to allow postprocessing of the unmaskedvalue. args => maskedValue, unmaskedValue, opts
  1941. showMaskOnFocus: true, //show the mask-placeholder when the input has focus
  1942. showMaskOnHover: true, //show the mask-placeholder when hovering the empty input
  1943. onKeyValidation: $.noop, //executes on every key-press with the result of isValid. Params: result, opts
  1944. skipOptionalPartCharacter: " ", //a character which can be used to skip an optional part of a mask
  1945. showTooltip: false, //show the activemask as tooltip
  1946. numericInput: false, //numericInput input direction style (input shifts to the left while holding the caret position)
  1947. rightAlign: false, //align to the right
  1948. undoOnEscape: true, //pressing escape reverts the value to the value before focus
  1949. //numeric basic properties
  1950. radixPoint: "", //".", // | ","
  1951. radixFocus: false, //position caret to radixpoint on initial click
  1952. //numeric basic properties
  1953. nojumps: false, //do not jump over fixed parts in the mask
  1954. nojumpsThreshold: 0, //start nojumps as of
  1955. keepStatic: undefined, //try to keep the mask static while typing. Decisions to alter the mask will be posponed if possible - undefined see auto selection for multi masks
  1956. definitions: {
  1957. '9': {
  1958. validator: "[0-9]",
  1959. cardinality: 1,
  1960. definitionSymbol: "*"
  1961. },
  1962. 'a': {
  1963. validator: "[A-Za-z\u0410-\u044F\u0401\u0451\u00C0-\u00FF\u00B5]",
  1964. cardinality: 1,
  1965. definitionSymbol: "*"
  1966. },
  1967. '*': {
  1968. validator: "[0-9A-Za-z\u0410-\u044F\u0401\u0451\u00C0-\u00FF\u00B5]",
  1969. cardinality: 1
  1970. }
  1971. },
  1972. //specify keyCodes which should not be considered in the keypress event, otherwise the preventDefault will stop their default behavior especially in FF
  1973. ignorables: [8, 9, 13, 19, 27, 33, 34, 35, 36, 37, 38, 39, 40, 45, 46, 93, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123],
  1974. isComplete: undefined, //override for isComplete - args => buffer, opts - return true || false
  1975. canClearPosition: $.noop, //hook to alter the clear behavior in the stripValidPositions args => maskset, position, lastValidPosition, opts => return true|false
  1976. postValidation: undefined //hook to postValidate the result from isValid. Usefull for validating the entry as a whole. args => buffer, opts => return true/false
  1977. },
  1978. keyCode: {
  1979. ALT: 18, BACKSPACE: 8, CAPS_LOCK: 20, COMMA: 188, COMMAND: 91, COMMAND_LEFT: 91, COMMAND_RIGHT: 93, CONTROL: 17, DELETE: 46, DOWN: 40, END: 35, ENTER: 13, ESCAPE: 27, HOME: 36, INSERT: 45, LEFT: 37, MENU: 93, NUMPAD_ADD: 107, NUMPAD_DECIMAL: 110, NUMPAD_DIVIDE: 111, NUMPAD_ENTER: 108,
  1980. NUMPAD_MULTIPLY: 106, NUMPAD_SUBTRACT: 109, PAGE_DOWN: 34, PAGE_UP: 33, PERIOD: 190, RIGHT: 39, SHIFT: 16, SPACE: 32, TAB: 9, UP: 38, WINDOWS: 91
  1981. },
  1982. masksCache: {},
  1983. escapeRegex: function (str) {
  1984. var specials = ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\', '$', '^'];
  1985. return str.replace(new RegExp('(\\' + specials.join('|\\') + ')', 'gim'), '\\$1');
  1986. },
  1987. format: function (value, options, metadata) {
  1988. var opts = $.extend(true, {}, $.inputmask.defaults, options);
  1989. resolveAlias(opts.alias, options, opts);
  1990. return maskScope({ "action": "format", "value": value, "metadata": metadata }, generateMaskSet(opts, options && options.definitions !== undefined), opts);
  1991. },
  1992. isValid: function (value, options) {
  1993. var opts = $.extend(true, {}, $.inputmask.defaults, options);
  1994. resolveAlias(opts.alias, options, opts);
  1995. return maskScope({ "action": "isValid", "value": value }, generateMaskSet(opts, options && options.definitions !== undefined), opts);
  1996. }
  1997. };
  1998. $.fn.inputmask = function (fn, options) {
  1999. function importAttributeOptions(npt, opts, importedOptionsContainer) {
  2000. var $npt = $(npt);
  2001. if ($npt.data("inputmask-alias")) {
  2002. resolveAlias($npt.data("inputmask-alias"), $.extend(true, {}, opts), opts);
  2003. }
  2004. for (var option in opts) {
  2005. var optionData = $npt.data("inputmask-" + option.toLowerCase());
  2006. if (optionData != undefined) {
  2007. if (option == "mask" && optionData.indexOf("[") == 0) {
  2008. opts[option] = optionData.replace(/[\s[\]]/g, "").split("','");
  2009. opts[option][0] = opts[option][0].replace("'", "");
  2010. opts[option][opts[option].length - 1] = opts[option][opts[option].length - 1].replace("'", "");
  2011. } else
  2012. opts[option] = typeof optionData == "boolean" ? optionData : optionData.toString();
  2013. if (importedOptionsContainer)
  2014. importedOptionsContainer[option] = opts[option];
  2015. }
  2016. }
  2017. return opts;
  2018. }
  2019. var opts = $.extend(true, {}, $.inputmask.defaults, options),
  2020. maskset;
  2021. if (typeof fn === "string") {
  2022. switch (fn) {
  2023. case "mask":
  2024. resolveAlias(opts.alias, options, opts);
  2025. return this.each(function () {
  2026. importAttributeOptions(this, opts)
  2027. maskset = generateMaskSet(opts, options && options.definitions !== undefined);
  2028. if (maskset == undefined) { return this; }
  2029. maskScope({ "action": "mask", "el": this }, maskset, opts);
  2030. });
  2031. case "unmaskedvalue":
  2032. var $input = $(this);
  2033. if ($input.data("_inputmask")) {
  2034. return maskScope({ "action": "unmaskedvalue", "$input": $input });
  2035. } else return $input.val();
  2036. case "remove":
  2037. return this.each(function () {
  2038. var $input = $(this);
  2039. if ($input.data("_inputmask")) {
  2040. maskScope({ "action": "remove", "el": this });
  2041. }
  2042. });
  2043. case "getemptymask": //return the default (empty) mask value, usefull for setting the default value in validation
  2044. if (this.data("_inputmask")) {
  2045. return maskScope({ "action": "getemptymask", "el": this });
  2046. }
  2047. else return "";
  2048. case "hasMaskedValue": //check wheter the returned value is masked or not; currently only works reliable when using jquery.val fn to retrieve the value
  2049. return this.data("_inputmask") ? !this.data("_inputmask")['opts'].autoUnmask : false;
  2050. case "isComplete":
  2051. if (this.data("_inputmask")) {
  2052. return maskScope({ "action": "isComplete", "buffer": this[0]._valueGet().split(''), "el": this });
  2053. } else return true;
  2054. case "getmetadata": //return mask metadata if exists
  2055. if (this.data("_inputmask")) {
  2056. return maskScope({ "action": "getmetadata", "el": this });
  2057. }
  2058. else return undefined;
  2059. default:
  2060. resolveAlias(opts.alias, options, opts);
  2061. //check if the fn is an alias
  2062. if (!resolveAlias(fn, options, opts)) {
  2063. //maybe fn is a mask so we try
  2064. //set mask
  2065. opts.mask = fn;
  2066. }
  2067. return this.each(function () {
  2068. importAttributeOptions(this, opts);
  2069. maskset = generateMaskSet(opts, options && options.definitions !== undefined);
  2070. if (maskset == undefined) { return this; }
  2071. maskScope({ "action": "mask", "el": this }, maskset, opts);
  2072. });
  2073. }
  2074. } else if (typeof fn == "object") {
  2075. opts = $.extend(true, {}, $.inputmask.defaults, fn);
  2076. resolveAlias(opts.alias, fn, opts); //resolve aliases
  2077. return this.each(function () {
  2078. importAttributeOptions(this, opts);
  2079. maskset = generateMaskSet(opts, fn && fn.definitions !== undefined);
  2080. if (maskset == undefined) { return this; }
  2081. maskScope({ "action": "mask", "el": this }, maskset, opts);
  2082. });
  2083. } else if (fn == undefined) {
  2084. //look for data-inputmask atribute - the attribute should only contain optipns
  2085. return this.each(function () {
  2086. var attrOptions = $(this).attr("data-inputmask");
  2087. if (attrOptions && attrOptions != "") {
  2088. try {
  2089. attrOptions = attrOptions.replace(new RegExp("'", "g"), '"');
  2090. var dataoptions = $.parseJSON("{" + attrOptions + "}");
  2091. $.extend(true, dataoptions, options);
  2092. opts = $.extend(true, {}, $.inputmask.defaults, dataoptions);
  2093. opts = importAttributeOptions(this, opts);
  2094. resolveAlias(opts.alias, dataoptions, opts);
  2095. opts.alias = undefined;
  2096. $(this).inputmask("mask", opts);
  2097. } catch (ex) { } //need a more relax parseJSON
  2098. }
  2099. if ($(this).attr("data-inputmask-mask") || $(this).attr("data-inputmask-alias")) {
  2100. opts = $.extend(true, {}, $.inputmask.defaults, {});
  2101. var dataOptions = {};
  2102. opts = importAttributeOptions(this, opts, dataOptions);
  2103. resolveAlias(opts.alias, dataOptions, opts);
  2104. opts.alias = undefined;
  2105. $(this).inputmask("mask", opts);
  2106. }
  2107. });
  2108. }
  2109. };
  2110. }
  2111. return $.fn.inputmask;
  2112. })(jQuery);