jquery.inputmask.js 116 KB

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