jquery.inputmask.bundle.js 165 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132
  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: 3.1.1
  7. */
  8. (function (factory) {
  9. if (typeof define === 'function' && define.amd) {
  10. define(['jquery'], factory);
  11. } else {
  12. factory(jQuery);
  13. }
  14. }(function ($) {
  15. if ($.fn.inputmask === undefined) {
  16. //helper functions
  17. function isInputEventSupported(eventName) {
  18. var el = document.createElement('input'),
  19. eventName = 'on' + eventName,
  20. isSupported = (eventName in el);
  21. if (!isSupported) {
  22. el.setAttribute(eventName, 'return;');
  23. isSupported = typeof el[eventName] == 'function';
  24. }
  25. el = null;
  26. return isSupported;
  27. }
  28. function resolveAlias(aliasStr, options, opts) {
  29. var aliasDefinition = opts.aliases[aliasStr];
  30. if (aliasDefinition) {
  31. if (aliasDefinition.alias) resolveAlias(aliasDefinition.alias, undefined, opts); //alias is another alias
  32. $.extend(true, opts, aliasDefinition); //merge alias definition in the options
  33. $.extend(true, opts, options); //reapply extra given options
  34. return true;
  35. }
  36. return false;
  37. }
  38. function generateMaskSet(opts, multi) {
  39. var ms = [];
  40. function analyseMask(mask) {
  41. var tokenizer = /(?:[?*+]|\{[0-9\+\*]+(?:,[0-9\+\*]*)?\})\??|[^.?*+^${[]()|\\]+|./g,
  42. escaped = false;
  43. function maskToken(isGroup, isOptional, isQuantifier, isAlternator) {
  44. this.matches = [];
  45. this.isGroup = isGroup || false;
  46. this.isOptional = isOptional || false;
  47. this.isQuantifier = isQuantifier || false;
  48. this.isAlternator = isAlternator || false;
  49. this.quantifier = { min: 1, max: 1 };
  50. };
  51. //test definition => {fn: RegExp/function, cardinality: int, optionality: bool, newBlockMarker: bool, casing: null/upper/lower, def: definitionSymbol, placeholder: placeholder, mask: real maskDefinition}
  52. function insertTestDefinition(mtoken, element, position) {
  53. var maskdef = opts.definitions[element];
  54. var newBlockMarker = mtoken.matches.length == 0;
  55. position = position != undefined ? position : mtoken.matches.length;
  56. if (maskdef && !escaped) {
  57. var prevalidators = maskdef["prevalidator"], prevalidatorsL = prevalidators ? prevalidators.length : 0;
  58. for (var i = 1; i < maskdef.cardinality; i++) {
  59. var prevalidator = prevalidatorsL >= i ? prevalidators[i - 1] : [], validator = prevalidator["validator"], cardinality = prevalidator["cardinality"];
  60. 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 });
  61. }
  62. 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 });
  63. } else {
  64. mtoken.matches.splice(position++, 0, { fn: null, cardinality: 0, optionality: mtoken.isOptional, newBlockMarker: newBlockMarker, casing: null, def: element, placeholder: undefined, mask: element });
  65. escaped = false;
  66. }
  67. }
  68. var currentToken = new maskToken(),
  69. match,
  70. m,
  71. openenings = [],
  72. maskTokens = [],
  73. openingToken,
  74. currentOpeningToken,
  75. alternator,
  76. lastMatch;
  77. while (match = tokenizer.exec(mask)) {
  78. m = match[0];
  79. switch (m.charAt(0)) {
  80. case opts.optionalmarker.end:
  81. // optional closing
  82. case opts.groupmarker.end:
  83. // Group closing
  84. openingToken = openenings.pop();
  85. if (openenings.length > 0) {
  86. currentOpeningToken = openenings[openenings.length - 1];
  87. currentOpeningToken["matches"].push(openingToken);
  88. if (currentOpeningToken.isAlternator) { //handle alternator (a) | (b) case
  89. alternator = openenings.pop();
  90. for (var mndx = 0; mndx < alternator.matches.length; mndx++) {
  91. alternator.matches[mndx].isGroup = false; //don't mark alternate groups as group
  92. }
  93. if (openenings.length > 0) {
  94. currentOpeningToken = openenings[openenings.length - 1];
  95. currentOpeningToken["matches"].push(alternator);
  96. } else {
  97. currentToken.matches.push(alternator);
  98. }
  99. }
  100. } else {
  101. currentToken.matches.push(openingToken);
  102. }
  103. break;
  104. case opts.optionalmarker.start:
  105. // optional opening
  106. openenings.push(new maskToken(false, true));
  107. break;
  108. case opts.groupmarker.start:
  109. // Group opening
  110. openenings.push(new maskToken(true));
  111. break;
  112. case opts.quantifiermarker.start:
  113. //Quantifier
  114. var quantifier = new maskToken(false, false, true);
  115. m = m.replace(/[{}]/g, "");
  116. var mq = m.split(","),
  117. mq0 = isNaN(mq[0]) ? mq[0] : parseInt(mq[0]),
  118. mq1 = mq.length == 1 ? mq0 : (isNaN(mq[1]) ? mq[1] : parseInt(mq[1]));
  119. if (mq1 == "*" || mq1 == "+") {
  120. mq0 = mq1 == "*" ? 0 : 1;
  121. }
  122. quantifier.quantifier = { min: mq0, max: mq1 };
  123. if (openenings.length > 0) {
  124. var matches = openenings[openenings.length - 1]["matches"];
  125. match = matches.pop();
  126. if (!match["isGroup"]) {
  127. var groupToken = new maskToken(true);
  128. groupToken.matches.push(match);
  129. match = groupToken;
  130. }
  131. matches.push(match);
  132. matches.push(quantifier);
  133. } else {
  134. match = currentToken.matches.pop();
  135. if (!match["isGroup"]) {
  136. var groupToken = new maskToken(true);
  137. groupToken.matches.push(match);
  138. match = groupToken;
  139. }
  140. currentToken.matches.push(match);
  141. currentToken.matches.push(quantifier);
  142. }
  143. break;
  144. case opts.escapeChar:
  145. escaped = true;
  146. break;
  147. case opts.alternatormarker:
  148. if (openenings.length > 0) {
  149. currentOpeningToken = openenings[openenings.length - 1];
  150. lastMatch = currentOpeningToken.matches.pop();
  151. } else {
  152. lastMatch = currentToken.matches.pop();
  153. }
  154. if (lastMatch.isAlternator) {
  155. openenings.push(lastMatch);
  156. } else {
  157. alternator = new maskToken(false, false, false, true);
  158. alternator.matches.push(lastMatch);
  159. openenings.push(alternator);
  160. }
  161. break;
  162. default:
  163. if (openenings.length > 0) {
  164. currentOpeningToken = openenings[openenings.length - 1];
  165. if (currentOpeningToken.matches.length > 0) {
  166. lastMatch = currentOpeningToken.matches[currentOpeningToken.matches.length - 1];
  167. if (lastMatch["isGroup"]) { //this is not a group but a normal mask => convert
  168. lastMatch.isGroup = false;
  169. insertTestDefinition(lastMatch, opts.groupmarker.start, 0);
  170. insertTestDefinition(lastMatch, opts.groupmarker.end);
  171. }
  172. }
  173. insertTestDefinition(currentOpeningToken, m);
  174. if (currentOpeningToken.isAlternator) { //handle alternator a | b case
  175. alternator = openenings.pop();
  176. for (var mndx = 0; mndx < alternator.matches.length; mndx++) {
  177. alternator.matches[mndx].isGroup = false; //don't mark alternate groups as group
  178. }
  179. if (openenings.length > 0) {
  180. currentOpeningToken = openenings[openenings.length - 1];
  181. currentOpeningToken["matches"].push(alternator);
  182. } else {
  183. currentToken.matches.push(alternator);
  184. }
  185. }
  186. } else {
  187. if (currentToken.matches.length > 0) {
  188. lastMatch = currentToken.matches[currentToken.matches.length - 1];
  189. if (lastMatch["isGroup"]) { //this is not a group but a normal mask => convert
  190. lastMatch.isGroup = false;
  191. insertTestDefinition(lastMatch, opts.groupmarker.start, 0);
  192. insertTestDefinition(lastMatch, opts.groupmarker.end);
  193. }
  194. }
  195. insertTestDefinition(currentToken, m);
  196. }
  197. }
  198. }
  199. if (currentToken.matches.length > 0) {
  200. lastMatch = currentToken.matches[currentToken.matches.length - 1];
  201. if (lastMatch["isGroup"]) { //this is not a group but a normal mask => convert
  202. lastMatch.isGroup = false;
  203. insertTestDefinition(lastMatch, opts.groupmarker.start, 0);
  204. insertTestDefinition(lastMatch, opts.groupmarker.end);
  205. }
  206. maskTokens.push(currentToken);
  207. }
  208. //console.log(JSON.stringify(maskTokens));
  209. return maskTokens;
  210. }
  211. function generateMask(mask, metadata) {
  212. if (opts.numericInput && opts.multi !== true) { //TODO FIX FOR DYNAMIC MASKS WITH QUANTIFIERS
  213. mask = mask.split('').reverse();
  214. for (var ndx = 0; ndx < mask.length; ndx++) {
  215. if (mask[ndx] == opts.optionalmarker.start)
  216. mask[ndx] = opts.optionalmarker.end;
  217. else if (mask[ndx] == opts.optionalmarker.end)
  218. mask[ndx] = opts.optionalmarker.start;
  219. else if (mask[ndx] == opts.groupmarker.start)
  220. mask[ndx] = opts.groupmarker.end;
  221. else if (mask[ndx] == opts.groupmarker.end)
  222. mask[ndx] = opts.groupmarker.start;
  223. }
  224. mask = mask.join('');
  225. }
  226. if (mask == undefined || mask == "")
  227. return undefined;
  228. else {
  229. if (opts.repeat > 0 || opts.repeat == "*" || opts.repeat == "+") {
  230. var repeatStart = opts.repeat == "*" ? 0 : (opts.repeat == "+" ? 1 : opts.repeat);
  231. mask = opts.groupmarker.start + mask + opts.groupmarker.end + opts.quantifiermarker.start + repeatStart + "," + opts.repeat + opts.quantifiermarker.end;
  232. }
  233. if ($.inputmask.masksCache[mask] == undefined) {
  234. $.inputmask.masksCache[mask] = {
  235. "mask": mask,
  236. "maskToken": analyseMask(mask),
  237. "validPositions": {},
  238. "_buffer": undefined,
  239. "buffer": undefined,
  240. "tests": {},
  241. "metadata": metadata
  242. };
  243. }
  244. return $.extend(true, {}, $.inputmask.masksCache[mask]);
  245. }
  246. }
  247. if ($.isFunction(opts.mask)) { //allow mask to be a preprocessing fn - should return a valid mask
  248. opts.mask = opts.mask.call(this, opts);
  249. }
  250. if ($.isArray(opts.mask)) {
  251. if (multi) { //remove me
  252. $.each(opts.mask, function (ndx, msk) {
  253. if (msk["mask"] != undefined) {
  254. ms.push(generateMask(msk["mask"].toString(), msk));
  255. } else {
  256. ms.push(generateMask(msk.toString()));
  257. }
  258. });
  259. } else {
  260. opts.keepStatic = opts.keepStatic == undefined ? true : opts.keepStatic; //enable by default when passing multiple masks when the option is not explicitly specified
  261. var hasMetaData = false;
  262. var altMask = "(";
  263. $.each(opts.mask, function (ndx, msk) {
  264. if (altMask.length > 1)
  265. altMask += ")|(";
  266. if (msk["mask"] != undefined) {
  267. hasMetaData = true;
  268. altMask += msk["mask"].toString();
  269. } else {
  270. altMask += msk.toString();
  271. }
  272. });
  273. altMask += ")";
  274. ms = generateMask(altMask, hasMetaData ? opts.mask : undefined);
  275. }
  276. } else {
  277. if (opts.mask.length == 1 && opts.greedy == false && opts.repeat != 0) {
  278. opts.placeholder = "";
  279. } //hide placeholder with single non-greedy mask
  280. if (opts.mask["mask"] != undefined) {
  281. ms = generateMask(opts.mask["mask"].toString(), opts.mask);
  282. } else {
  283. ms = generateMask(opts.mask.toString());
  284. }
  285. }
  286. return ms;
  287. }
  288. var msie1x = typeof ScriptEngineMajorVersion === "function"
  289. ? ScriptEngineMajorVersion() //IE11 detection
  290. : new Function("/*@cc_on return @_jscript_version; @*/")() >= 10, //conditional compilation from mickeysoft trick
  291. ua = navigator.userAgent,
  292. iphone = ua.match(new RegExp("iphone", "i")) !== null,
  293. android = ua.match(new RegExp("android.*safari.*", "i")) !== null,
  294. androidchrome = ua.match(new RegExp("android.*chrome.*", "i")) !== null,
  295. androidfirefox = ua.match(new RegExp("android.*firefox.*", "i")) !== null,
  296. kindle = /Kindle/i.test(ua) || /Silk/i.test(ua) || /KFTT/i.test(ua) || /KFOT/i.test(ua) || /KFJWA/i.test(ua) || /KFJWI/i.test(ua) || /KFSOWI/i.test(ua) || /KFTHWA/i.test(ua) || /KFTHWI/i.test(ua) || /KFAPWA/i.test(ua) || /KFAPWI/i.test(ua),
  297. PasteEventType = isInputEventSupported('paste') ? 'paste' : isInputEventSupported('input') ? 'input' : "propertychange";
  298. //if (androidchrome) {
  299. // var browser = navigator.userAgent.match(new RegExp("chrome.*", "i")),
  300. // version = parseInt(new RegExp(/[0-9]+/).exec(browser));
  301. // androidchrome32 = (version == 32);
  302. //}
  303. //masking scope
  304. //actionObj definition see below
  305. function maskScope(actionObj, maskset, opts) {
  306. var isRTL = false,
  307. valueOnFocus,
  308. $el,
  309. skipKeyPressEvent = false, //Safari 5.1.x - modal dialog fires keypress twice workaround
  310. skipInputEvent = false, //skip when triggered from within inputmask
  311. ignorable = false,
  312. maxLength;
  313. //maskset helperfunctions
  314. function getMaskTemplate(baseOnInput, minimalPos, includeInput) {
  315. minimalPos = minimalPos || 0;
  316. var maskTemplate = [], ndxIntlzr, pos = 0, test, testPos;
  317. do {
  318. if (baseOnInput === true && getMaskSet()['validPositions'][pos]) {
  319. var validPos = getMaskSet()['validPositions'][pos];
  320. test = validPos["match"];
  321. ndxIntlzr = validPos["locator"].slice();
  322. maskTemplate.push(test["fn"] == null ? test["def"] : (includeInput === true ? validPos["input"] : test["placeholder"] || opts.placeholder.charAt(pos % opts.placeholder.length)));
  323. } else {
  324. if (minimalPos > pos) {
  325. var testPositions = getTests(pos, ndxIntlzr, pos - 1);
  326. testPos = testPositions[0];
  327. } else {
  328. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  329. }
  330. test = testPos["match"];
  331. ndxIntlzr = testPos["locator"].slice();
  332. maskTemplate.push(test["fn"] == null ? test["def"] : (test["placeholder"] != undefined ? test["placeholder"] : opts.placeholder.charAt(pos % opts.placeholder.length)));
  333. }
  334. pos++;
  335. } while ((maxLength == undefined || pos - 1 < maxLength) && test["fn"] != null || (test["fn"] == null && test["def"] != "") || minimalPos >= pos);
  336. maskTemplate.pop(); //drop the last one which is empty
  337. return maskTemplate;
  338. }
  339. function getMaskSet() {
  340. return maskset;
  341. }
  342. function resetMaskSet(soft) {
  343. var maskset = getMaskSet();
  344. maskset["buffer"] = undefined;
  345. maskset["tests"] = {};
  346. if (soft !== true) {
  347. maskset["_buffer"] = undefined;
  348. maskset["validPositions"] = {};
  349. maskset["p"] = -1;
  350. }
  351. }
  352. function getLastValidPosition(closestTo) {
  353. var maskset = getMaskSet(), lastValidPosition = -1, valids = maskset["validPositions"];
  354. if (closestTo == undefined) closestTo = -1;
  355. var before = lastValidPosition, after = lastValidPosition;
  356. for (var posNdx in valids) {
  357. var psNdx = parseInt(posNdx);
  358. if (closestTo == -1 || valids[psNdx]["match"].fn != null) {
  359. if (psNdx < closestTo) before = psNdx;
  360. if (psNdx >= closestTo) after = psNdx;
  361. }
  362. }
  363. lastValidPosition = (closestTo - before) > 1 || after < closestTo ? before : after;
  364. return lastValidPosition;
  365. }
  366. function setValidPosition(pos, validTest, fromSetValid) {
  367. if (opts.insertMode && getMaskSet()["validPositions"][pos] != undefined && fromSetValid == undefined) {
  368. //reposition & revalidate others
  369. var positionsClone = $.extend(true, {}, getMaskSet()["validPositions"]), lvp = getLastValidPosition(), i;
  370. for (i = pos; i <= lvp; i++) { //clear selection
  371. delete getMaskSet()["validPositions"][i];
  372. }
  373. getMaskSet()["validPositions"][pos] = validTest;
  374. var valid = true;
  375. for (i = pos; i <= lvp ; i++) {
  376. var t = positionsClone[i];
  377. if (t != undefined) {
  378. var j = t["match"].fn == null ? i + 1 : seekNext(i);
  379. if (positionCanMatchDefinition(j, t["match"].def)) {
  380. valid = valid && isValid(j, t["input"], true, true) !== false;
  381. } else valid = false;
  382. }
  383. if (!valid) break;
  384. }
  385. if (!valid) {
  386. getMaskSet()["validPositions"] = $.extend(true, {}, positionsClone);
  387. return false;
  388. }
  389. } else
  390. getMaskSet()["validPositions"][pos] = validTest;
  391. return true;
  392. }
  393. function stripValidPositions(start, end) {
  394. var i, startPos = start, lvp;
  395. for (i = start; i < end; i++) { //clear selection
  396. //TODO FIXME BETTER CHECK
  397. delete getMaskSet()["validPositions"][i];
  398. }
  399. for (i = end ; i <= getLastValidPosition() ;) {
  400. var t = getMaskSet()["validPositions"][i];
  401. var s = getMaskSet()["validPositions"][startPos];
  402. if (t != undefined && s == undefined) {
  403. if (positionCanMatchDefinition(startPos, t.match.def) && isValid(startPos, t["input"], true) !== false) {
  404. delete getMaskSet()["validPositions"][i];
  405. i++;
  406. }
  407. startPos++;
  408. } else i++;
  409. }
  410. lvp = getLastValidPosition();
  411. //catchup
  412. while (lvp > 0 && (getMaskSet()["validPositions"][lvp] == undefined || getMaskSet()["validPositions"][lvp].match.fn == null)) {
  413. delete getMaskSet()["validPositions"][lvp];
  414. lvp--;
  415. }
  416. resetMaskSet(true);
  417. }
  418. function getTestTemplate(pos, ndxIntlzr, tstPs) {
  419. var testPositions = getTests(pos, ndxIntlzr, tstPs),
  420. testPos,
  421. lvp = getLastValidPosition(),
  422. lvTest = getMaskSet()["validPositions"][lvp] || getTests(0)[0],
  423. lvTestAltArr = (lvTest.alternation != undefined) ? lvTest["locator"][lvTest.alternation].split(",") : [];
  424. for (var ndx = 0; ndx < testPositions.length; ndx++) {
  425. testPos = testPositions[ndx];
  426. if (opts.greedy ||
  427. ((testPos["match"] && (testPos["match"].optionality === false || testPos["match"].newBlockMarker === false) && testPos["match"].optionalQuantifier !== true) &&
  428. (lvTest.alternation == undefined || (testPos["locator"][lvTest.alternation] != undefined && $.inArray(testPos["locator"][lvTest.alternation].toString(), lvTestAltArr) == -1)))) {
  429. break;
  430. }
  431. }
  432. return testPos;
  433. }
  434. function getTest(pos) {
  435. if (getMaskSet()['validPositions'][pos]) {
  436. return getMaskSet()['validPositions'][pos]["match"];
  437. }
  438. return getTests(pos)[0]["match"];
  439. }
  440. function positionCanMatchDefinition(pos, def) {
  441. var valid = false, tests = getTests(pos);
  442. for (var tndx = 0; tndx < tests.length; tndx++) {
  443. if (tests[tndx]["match"] && tests[tndx]["match"].def == def) {
  444. valid = true;
  445. break;
  446. }
  447. }
  448. return valid;
  449. };
  450. function getTests(pos, ndxIntlzr, tstPs) {
  451. var maskTokens = getMaskSet()["maskToken"], testPos = ndxIntlzr ? tstPs : 0, ndxInitializer = ndxIntlzr || [0], matches = [], insertStop = false;
  452. function ResolveTestFromToken(maskToken, ndxInitializer, loopNdx, quantifierRecurse) { //ndxInitilizer contains a set of indexes to speedup searches in the mtokens
  453. function handleMatch(match, loopNdx, quantifierRecurse) {
  454. if (testPos > 10000) {
  455. 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"]);
  456. return true;
  457. }
  458. if (testPos == pos && match.matches == undefined) {
  459. matches.push({ "match": match, "locator": loopNdx.reverse() });
  460. return true;
  461. } else if (match.matches != undefined) {
  462. if (match.isGroup && quantifierRecurse !== true) { //when a group pass along to the quantifier
  463. match = handleMatch(maskToken.matches[tndx + 1], loopNdx);
  464. if (match) return true;
  465. } else if (match.isOptional) {
  466. var optionalToken = match;
  467. match = ResolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
  468. if (match) {
  469. var latestMatch = matches[matches.length - 1]["match"];
  470. var isFirstMatch = $.inArray(latestMatch, optionalToken.matches) == 0;
  471. if (isFirstMatch) {
  472. insertStop = true; //insert a stop for non greedy
  473. }
  474. testPos = pos; //match the position after the group
  475. }
  476. } else if (match.isAlternator) {
  477. var alternateToken = match, malternateMatches = [], maltMatches,
  478. currentMatches = matches.slice(), loopNdxCnt = loopNdx.length;
  479. var altIndex = ndxInitializer.length > 0 ? ndxInitializer.shift() : -1;
  480. if (altIndex == -1 || typeof altIndex == "string") {
  481. var currentPos = testPos, ndxInitializerClone = ndxInitializer.slice(), altIndexArr;
  482. if (typeof altIndex == "string") altIndexArr = altIndex.split(",");
  483. for (var amndx = 0; amndx < alternateToken.matches.length; amndx++) {
  484. matches = [];
  485. match = handleMatch(alternateToken.matches[amndx], [amndx].concat(loopNdx), quantifierRecurse) || match;
  486. maltMatches = matches.slice();
  487. testPos = currentPos;
  488. matches = [];
  489. //cloneback
  490. for (var i = 0; i < ndxInitializerClone.length; i++) {
  491. ndxInitializer[i] = ndxInitializerClone[i];
  492. }
  493. //fuzzy merge matches
  494. for (var ndx1 = 0; ndx1 < maltMatches.length; ndx1++) {
  495. var altMatch = maltMatches[ndx1];
  496. for (var ndx2 = 0; ndx2 < malternateMatches.length; ndx2++) {
  497. var altMatch2 = malternateMatches[ndx2];
  498. //verify equality
  499. if (altMatch.match.mask == altMatch2.match.mask && (typeof altIndex != "string" || $.inArray(altMatch.locator[loopNdxCnt].toString(), altIndexArr) != -1)) {
  500. maltMatches.splice(ndx1, 1);
  501. altMatch2.locator[loopNdxCnt] = altMatch2.locator[loopNdxCnt] + "," + altMatch.locator[loopNdxCnt];
  502. altMatch2.alternation = loopNdxCnt; //we pass the alternation index => used in determineLastRequiredPosition
  503. break;
  504. }
  505. }
  506. }
  507. malternateMatches = malternateMatches.concat(maltMatches);
  508. }
  509. if (typeof altIndex == "string") { //filter matches
  510. malternateMatches = $.map(malternateMatches, function (lmnt, ndx) {
  511. if (isFinite(ndx)) {
  512. var altLocArr = lmnt.locator[loopNdxCnt].toString().split(",");
  513. var mamatch;
  514. lmnt.locator[loopNdxCnt] = undefined;
  515. lmnt.alternation = undefined;
  516. for (var alndx = 0; alndx < altLocArr.length; alndx++) {
  517. mamatch = $.inArray(altLocArr[alndx], altIndexArr) != -1;
  518. if (mamatch) { //rebuild the locator with valid entries
  519. if (lmnt.locator[loopNdxCnt] != undefined) {
  520. lmnt.locator[loopNdxCnt] += ",";
  521. lmnt.alternation = loopNdxCnt; //only define alternation when there is more then 1 possibility
  522. lmnt.locator[loopNdxCnt] += altLocArr[alndx];
  523. } else
  524. lmnt.locator[loopNdxCnt] = parseInt(altLocArr[alndx]);
  525. }
  526. }
  527. if (lmnt.locator[loopNdxCnt] != undefined) return lmnt;
  528. }
  529. });
  530. }
  531. matches = currentMatches.concat(malternateMatches);
  532. //console.log("alternates " + pos + " -> " + JSON.stringify(matches));
  533. insertStop = true; //insert a stopelemnt when there is an alternate
  534. } else {
  535. match = handleMatch(alternateToken.matches[altIndex], [altIndex].concat(loopNdx), quantifierRecurse);
  536. }
  537. if (match) return true;
  538. } else if (match.isQuantifier && quantifierRecurse !== true) {
  539. var qt = match;
  540. opts.greedy = opts.greedy && isFinite(qt.quantifier.max); //greedy must be off when * or + is used (always!!)
  541. for (var qndx = (ndxInitializer.length > 0 && quantifierRecurse !== true) ? ndxInitializer.shift() : 0; (qndx < (isNaN(qt.quantifier.max) ? qndx + 1 : qt.quantifier.max)) && testPos <= pos; qndx++) {
  542. var tokenGroup = maskToken.matches[$.inArray(qt, maskToken.matches) - 1];
  543. match = handleMatch(tokenGroup, [qndx].concat(loopNdx), true);
  544. if (match) {
  545. //get latest match
  546. var latestMatch = matches[matches.length - 1]["match"];
  547. latestMatch.optionalQuantifier = qndx > (qt.quantifier.min - 1);
  548. var isFirstMatch = $.inArray(latestMatch, tokenGroup.matches) == 0;
  549. if (isFirstMatch) { //search for next possible match
  550. if (qndx > (qt.quantifier.min - 1)) {
  551. insertStop = true;
  552. testPos = pos; //match the position after the group
  553. break; //stop quantifierloop
  554. } else return true;
  555. } else {
  556. return true;
  557. }
  558. }
  559. }
  560. } else {
  561. match = ResolveTestFromToken(match, ndxInitializer, loopNdx, quantifierRecurse);
  562. if (match)
  563. return true;
  564. }
  565. } else testPos++;
  566. }
  567. for (var tndx = (ndxInitializer.length > 0 ? ndxInitializer.shift() : 0) ; tndx < maskToken.matches.length; tndx++) {
  568. if (maskToken.matches[tndx]["isQuantifier"] !== true) {
  569. var match = handleMatch(maskToken.matches[tndx], [tndx].concat(loopNdx), quantifierRecurse);
  570. if (match && testPos == pos) {
  571. return match;
  572. } else if (testPos > pos) {
  573. break;
  574. }
  575. }
  576. }
  577. }
  578. //if (disableCache !== true && getMaskSet()['tests'][pos] && !getMaskSet()['validPositions'][pos]) {
  579. // return getMaskSet()['tests'][pos];
  580. //}
  581. if (ndxIntlzr == undefined) {
  582. var previousPos = pos - 1, test;
  583. while ((test = getMaskSet()['validPositions'][previousPos]) == undefined && previousPos > -1) {
  584. previousPos--;
  585. }
  586. if (test != undefined && previousPos > -1) {
  587. testPos = previousPos;
  588. ndxInitializer = test["locator"].slice();
  589. } else {
  590. previousPos = pos - 1;
  591. while ((test = getMaskSet()['tests'][previousPos]) == undefined && previousPos > -1) {
  592. previousPos--;
  593. }
  594. if (test != undefined && previousPos > -1) {
  595. testPos = previousPos;
  596. ndxInitializer = test[0]["locator"].slice();
  597. }
  598. }
  599. }
  600. for (var mtndx = ndxInitializer.shift() ; mtndx < maskTokens.length; mtndx++) {
  601. var match = ResolveTestFromToken(maskTokens[mtndx], ndxInitializer, [mtndx]);
  602. if ((match && testPos == pos) || testPos > pos) {
  603. break;
  604. }
  605. }
  606. if (matches.length == 0 || insertStop)
  607. matches.push({ "match": { fn: null, cardinality: 0, optionality: true, casing: null, def: "" }, "locator": [] });
  608. getMaskSet()['tests'][pos] = $.extend(true, [], matches); //set a clone to prevent overwriting some props
  609. //console.log(pos + " - " + JSON.stringify(matches));
  610. return getMaskSet()['tests'][pos];
  611. }
  612. function getBufferTemplate() {
  613. if (getMaskSet()['_buffer'] == undefined) {
  614. //generate template
  615. getMaskSet()["_buffer"] = getMaskTemplate(false, 1);
  616. }
  617. return getMaskSet()['_buffer'];
  618. }
  619. function getBuffer() {
  620. if (getMaskSet()['buffer'] == undefined) {
  621. getMaskSet()['buffer'] = getMaskTemplate(true, getLastValidPosition(), true);
  622. }
  623. return getMaskSet()['buffer'];
  624. }
  625. function refreshFromBuffer(start, end) {
  626. var buffer = getBuffer().slice(); //work on clone
  627. if (start === true) {
  628. resetMaskSet();
  629. start = 0;
  630. end = buffer.length;
  631. } else {
  632. for (var i = start; i < end; i++) {
  633. delete getMaskSet()["validPositions"][i];
  634. delete getMaskSet()["tests"][i];
  635. }
  636. }
  637. for (var i = start; i < end; i++) {
  638. if (buffer[i] != opts.skipOptionalPartCharacter) {
  639. isValid(i, buffer[i], true, true);
  640. }
  641. }
  642. }
  643. function casing(elem, test) {
  644. switch (test.casing) {
  645. case "upper":
  646. elem = elem.toUpperCase();
  647. break;
  648. case "lower":
  649. elem = elem.toLowerCase();
  650. break;
  651. }
  652. return elem;
  653. }
  654. function isValid(pos, c, strict, fromSetValid) { //strict true ~ no correction or autofill
  655. strict = strict === true; //always set a value to strict to prevent possible strange behavior in the extensions
  656. function _isValid(position, c, strict, fromSetValid) {
  657. var rslt = false;
  658. $.each(getTests(position), function (ndx, tst) {
  659. var test = tst["match"];
  660. var loopend = c ? 1 : 0, chrs = '', buffer = getBuffer();
  661. for (var i = test.cardinality; i > loopend; i--) {
  662. chrs += getBufferElement(position - (i - 1));
  663. }
  664. if (c) {
  665. chrs += c;
  666. }
  667. //return is false or a json object => { pos: ??, c: ??} or true
  668. rslt = test.fn != null ?
  669. test.fn.test(chrs, getMaskSet(), position, strict, opts)
  670. : (c == test["def"] || c == opts.skipOptionalPartCharacter) && test["def"] != "" ? //non mask
  671. { c: test["def"], pos: position }
  672. : false;
  673. if (rslt !== false) {
  674. var elem = rslt.c != undefined ? rslt.c : c;
  675. elem = (elem == opts.skipOptionalPartCharacter && test["fn"] === null) ? test["def"] : elem;
  676. var validatedPos = position;
  677. if (rslt["remove"] != undefined) { //remove position
  678. stripValidPositions(rslt["remove"], rslt["remove"] + 1);
  679. }
  680. if (rslt["refreshFromBuffer"]) {
  681. var refresh = rslt["refreshFromBuffer"];
  682. strict = true;
  683. refreshFromBuffer(refresh === true ? refresh : refresh["start"], refresh["end"]);
  684. if (rslt.pos == undefined && rslt.c == undefined) {
  685. rslt.pos = getLastValidPosition();
  686. return false;//breakout if refreshFromBuffer && nothing to insert
  687. }
  688. validatedPos = rslt.pos != undefined ? rslt.pos : position;
  689. if (validatedPos != position) {
  690. rslt = $.extend(rslt, isValid(validatedPos, elem, true)); //revalidate new position strict
  691. return false;
  692. }
  693. } else if (rslt !== true && rslt.pos != undefined && rslt["pos"] != position) { //their is a position offset
  694. validatedPos = rslt["pos"];
  695. refreshFromBuffer(position, validatedPos);
  696. if (validatedPos != position) {
  697. rslt = $.extend(rslt, isValid(validatedPos, elem, true)); //revalidate new position strict
  698. return false;
  699. }
  700. }
  701. if (rslt != true && rslt.pos == undefined && rslt.c == undefined) {
  702. return false; //breakout if nothing to insert
  703. }
  704. if (ndx > 0) {
  705. resetMaskSet(true);
  706. }
  707. if (!setValidPosition(validatedPos, $.extend({}, tst, { "input": casing(elem, test) }), fromSetValid))
  708. rslt = false;
  709. return false; //break from $.each
  710. }
  711. });
  712. return rslt;
  713. }
  714. function alternate(pos, c, strict, fromSetValid) {
  715. if (opts.keepStatic) {
  716. var validPsClone = $.extend(true, {}, getMaskSet()["validPositions"]),
  717. firstAlt,
  718. alternation;
  719. //find last alternation
  720. for (firstAlt = getLastValidPosition() ; firstAlt >= 0; firstAlt--) {
  721. if (getMaskSet()["validPositions"][firstAlt] && getMaskSet()["validPositions"][firstAlt].alternation != undefined) {
  722. alternation = getMaskSet()["validPositions"][firstAlt].alternation;
  723. break;
  724. }
  725. }
  726. if (alternation != undefined) {
  727. //find first decision making position
  728. for (var decisionPos in getMaskSet()["validPositions"]) {
  729. if (parseInt(decisionPos) > parseInt(firstAlt) && getMaskSet()["validPositions"][decisionPos].alternation === undefined) {
  730. var altPos = getMaskSet()["validPositions"][decisionPos],
  731. decisionTaker = altPos.locator[alternation],
  732. altNdxs = getMaskSet()["validPositions"][firstAlt].locator[alternation].split(",");
  733. for (var mndx = 0; mndx < altNdxs.length; mndx++) {
  734. if (decisionTaker < altNdxs[mndx]) {
  735. var possibilityPos, possibilities;
  736. for (var dp = decisionPos - 1; dp >= 0; dp--) {
  737. possibilityPos = getMaskSet()["validPositions"][dp];
  738. if (possibilityPos != undefined) {
  739. possibilities = possibilityPos.locator[alternation]; //store to reset
  740. possibilityPos.locator[alternation] = altNdxs[mndx];
  741. break;
  742. }
  743. }
  744. if (decisionTaker != possibilityPos.locator[alternation]) {
  745. var buffer = getBuffer().slice(); //work on clone
  746. for (var i = decisionPos; i < getLastValidPosition() + 1; i++) {
  747. delete getMaskSet()["validPositions"][i];
  748. delete getMaskSet()["tests"][i];
  749. }
  750. resetMaskSet(true); //clear getbuffer
  751. opts.keepStatic = !opts.keepStatic; //disable keepStatic on getMaskLength
  752. for (var i = decisionPos; i < buffer.length; i++) {
  753. if (buffer[i] != opts.skipOptionalPartCharacter) {
  754. isValid(getLastValidPosition() + 1, buffer[i], false, true);
  755. }
  756. }
  757. possibilityPos.locator[alternation] = possibilities; //reset forceddecision ~ needed for proper delete
  758. var isValidRslt = getLastValidPosition() + 1 == pos && isValid(pos, c, strict, fromSetValid);
  759. opts.keepStatic = !opts.keepStatic; //enable keepStatic on getMaskLength
  760. if (!isValidRslt) {
  761. resetMaskSet();
  762. getMaskSet()["validPositions"] = $.extend(true, {}, validPsClone);
  763. } else
  764. return isValidRslt;
  765. }
  766. }
  767. }
  768. break;
  769. }
  770. }
  771. }
  772. }
  773. return false;
  774. }
  775. //Check for a nonmask before the pos
  776. var buffer = getBuffer();
  777. for (var pndx = pos - 1; pndx > -1; pndx--) {
  778. if (getMaskSet()["validPositions"][pndx] && getMaskSet()["validPositions"][pndx]["match"].fn == null)
  779. break;
  780. else if (getMaskSet()["validPositions"][pndx] == undefined && (!isMask(pndx) || buffer[pndx] != getPlaceholder(pndx)) && getTests(pndx).length > 1) {
  781. _isValid(pndx, buffer[pndx], true);
  782. }
  783. }
  784. var maskPos = pos;
  785. if (maskPos >= getMaskLength()) { //try fuzzy alternator logic
  786. return alternate(pos, c, strict, fromSetValid);
  787. }
  788. var result = _isValid(maskPos, c, strict, fromSetValid);
  789. if (!strict && result === false) {
  790. var currentPosValid = getMaskSet()["validPositions"][maskPos];
  791. if (currentPosValid && currentPosValid["match"].fn == null && (currentPosValid["match"].def == c || c == opts.skipOptionalPartCharacter)) {
  792. result = { "caret": seekNext(maskPos) };
  793. } else if ((opts.insertMode || getMaskSet()["validPositions"][seekNext(maskPos)] == undefined) && !isMask(maskPos)) { //does the input match on a further position?
  794. for (var nPos = maskPos + 1, snPos = seekNext(maskPos) ; nPos <= snPos; nPos++) {
  795. result = _isValid(nPos, c, strict, fromSetValid);
  796. if (result !== false) {
  797. maskPos = nPos;
  798. break;
  799. }
  800. }
  801. }
  802. }
  803. if (result === true) result = { "pos": maskPos };
  804. return result;
  805. }
  806. function isMask(pos) {
  807. var test = getTest(pos);
  808. return test.fn != null ? test.fn : false;
  809. }
  810. function getMaskLength() {
  811. var maskLength;
  812. maxLength = $el.prop('maxLength');
  813. if (maxLength == -1) maxLength = undefined; /* FF sets no defined max length to -1 */
  814. if (opts.greedy == false) {
  815. var pos, lvp = getLastValidPosition(), testPos = getMaskSet()["validPositions"][lvp],
  816. ndxIntlzr = testPos != undefined ? testPos["locator"].slice() : undefined;
  817. for (pos = lvp + 1; testPos == undefined || (testPos["match"]["fn"] != null || (testPos["match"]["fn"] == null && testPos["match"]["def"] != "")) ; pos++) {
  818. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  819. ndxIntlzr = testPos["locator"].slice();
  820. }
  821. maskLength = pos;
  822. } else
  823. maskLength = getBuffer().length;
  824. return (maxLength == undefined || maskLength < maxLength) ? maskLength : maxLength;
  825. }
  826. function seekNext(pos) {
  827. var maskL = getMaskLength();
  828. if (pos >= maskL) return maskL;
  829. var position = pos;
  830. while (++position < maskL && !isMask(position) && (opts.nojumps !== true || opts.nojumpsThreshold > position)) {
  831. }
  832. return position;
  833. }
  834. function seekPrevious(pos) {
  835. var position = pos;
  836. if (position <= 0) return 0;
  837. while (--position > 0 && !isMask(position)) {
  838. };
  839. return position;
  840. }
  841. function getBufferElement(position) {
  842. return getMaskSet()["validPositions"][position] == undefined ? getPlaceholder(position) : getMaskSet()["validPositions"][position]["input"];
  843. }
  844. function writeBuffer(input, buffer, caretPos) {
  845. input._valueSet(buffer.join(''));
  846. if (caretPos != undefined) {
  847. caret(input, caretPos);
  848. }
  849. }
  850. function getPlaceholder(pos, test) {
  851. test = test || getTest(pos);
  852. return test["placeholder"] || (test["fn"] == null ? test["def"] : opts.placeholder.charAt(pos % opts.placeholder.length));
  853. }
  854. function checkVal(input, writeOut, strict, nptvl, intelliCheck) {
  855. var inputValue = nptvl != undefined ? nptvl.slice() : truncateInput(input._valueGet()).split('');
  856. resetMaskSet();
  857. if (writeOut) input._valueSet(""); //initial clear
  858. $.each(inputValue, function (ndx, charCode) {
  859. if (intelliCheck === true) {
  860. var lvp = getLastValidPosition(),
  861. pos = lvp == -1 ? ndx : seekNext(lvp);
  862. if ($.inArray(charCode, getBufferTemplate().slice(lvp + 1, pos)) == -1) {
  863. keypressEvent.call(input, undefined, true, charCode.charCodeAt(0), false, strict, ndx);
  864. }
  865. } else {
  866. keypressEvent.call(input, undefined, true, charCode.charCodeAt(0), false, strict, ndx);
  867. strict = strict || (ndx > 0 && ndx > getMaskSet()["p"]);
  868. }
  869. });
  870. if (writeOut) {
  871. var keypressResult = opts.onKeyPress.call(this, undefined, getBuffer(), 0, opts);
  872. handleOnKeyResult(input, keypressResult);
  873. writeBuffer(input, getBuffer(), $(input).is(":focus") ? seekNext(getLastValidPosition(0)) : undefined);
  874. }
  875. }
  876. function escapeRegex(str) {
  877. return $.inputmask.escapeRegex.call(this, str);
  878. }
  879. function truncateInput(inputValue) {
  880. return inputValue.replace(new RegExp("(" + escapeRegex(getBufferTemplate().join('')) + ")*$"), "");
  881. }
  882. function unmaskedvalue($input) {
  883. if ($input.data('_inputmask') && !$input.hasClass('hasDatepicker')) {
  884. var umValue = [], vps = getMaskSet()["validPositions"];
  885. for (var pndx in vps) {
  886. if (vps[pndx]["match"] && vps[pndx]["match"].fn != null) {
  887. umValue.push(vps[pndx]["input"]);
  888. }
  889. }
  890. var unmaskedValue = (isRTL ? umValue.reverse() : umValue).join('');
  891. var bufferValue = (isRTL ? getBuffer().slice().reverse() : getBuffer()).join('');
  892. if ($.isFunction(opts.onUnMask)) {
  893. unmaskedValue = opts.onUnMask.call($input, bufferValue, unmaskedValue, opts);
  894. }
  895. return unmaskedValue;
  896. } else {
  897. return $input[0]._valueGet();
  898. }
  899. }
  900. function TranslatePosition(pos) {
  901. if (isRTL && typeof pos == 'number' && (!opts.greedy || opts.placeholder != "")) {
  902. var bffrLght = getBuffer().length;
  903. pos = bffrLght - pos;
  904. }
  905. return pos;
  906. }
  907. function caret(input, begin, end) {
  908. var npt = input.jquery && input.length > 0 ? input[0] : input, range;
  909. if (typeof begin == 'number') {
  910. begin = TranslatePosition(begin);
  911. end = TranslatePosition(end);
  912. end = (typeof end == 'number') ? end : begin;
  913. //store caret for multi scope
  914. var data = $(npt).data('_inputmask') || {};
  915. data["caret"] = { "begin": begin, "end": end };
  916. $(npt).data('_inputmask', data);
  917. if (!$(npt).is(":visible")) {
  918. return;
  919. }
  920. npt.scrollLeft = npt.scrollWidth;
  921. if (opts.insertMode == false && begin == end) end++; //set visualization for insert/overwrite mode
  922. if (npt.setSelectionRange) {
  923. npt.selectionStart = begin;
  924. npt.selectionEnd = end;
  925. } else if (npt.createTextRange) {
  926. range = npt.createTextRange();
  927. range.collapse(true);
  928. range.moveEnd('character', end);
  929. range.moveStart('character', begin);
  930. range.select();
  931. }
  932. } else {
  933. var data = $(npt).data('_inputmask');
  934. if (!$(npt).is(":visible") && data && data["caret"] != undefined) {
  935. begin = data["caret"]["begin"];
  936. end = data["caret"]["end"];
  937. } else if (npt.setSelectionRange) {
  938. begin = npt.selectionStart;
  939. end = npt.selectionEnd;
  940. } else if (document.selection && document.selection.createRange) {
  941. range = document.selection.createRange();
  942. begin = 0 - range.duplicate().moveStart('character', -100000);
  943. end = begin + range.text.length;
  944. }
  945. begin = TranslatePosition(begin);
  946. end = TranslatePosition(end);
  947. return { "begin": begin, "end": end };
  948. }
  949. }
  950. function determineLastRequiredPosition(returnDefinition) {
  951. var buffer = getBuffer(), bl = buffer.length,
  952. pos, lvp = getLastValidPosition(), positions = {}, lvTest = getMaskSet()["validPositions"][lvp],
  953. ndxIntlzr = lvTest != undefined ? lvTest["locator"].slice() : undefined, testPos;
  954. for (pos = lvp + 1; pos < buffer.length; pos++) {
  955. testPos = getTestTemplate(pos, ndxIntlzr, pos - 1);
  956. ndxIntlzr = testPos["locator"].slice();
  957. positions[pos] = $.extend(true, {}, testPos);
  958. }
  959. var lvTestAltArr = lvTest && lvTest.alternation != undefined ? lvTest["locator"][lvTest.alternation].split(",") : [];
  960. for (pos = bl - 1; pos > lvp; pos--) {
  961. testPos = positions[pos]["match"];
  962. if ((testPos.optionality ||
  963. testPos.optionalQuantifier ||
  964. (lvTest && lvTest.alternation != undefined && positions[pos]["locator"][lvTest.alternation] != undefined && $.inArray(positions[pos]["locator"][lvTest.alternation].toString(), lvTestAltArr) != -1))
  965. && buffer[pos] == getPlaceholder(pos, testPos)) {
  966. bl--;
  967. } else break;
  968. }
  969. return returnDefinition ? { "l": bl, "def": positions[bl] ? positions[bl]["match"] : undefined } : bl;
  970. }
  971. function clearOptionalTail(input) {
  972. var buffer = getBuffer(), tmpBuffer = buffer.slice();
  973. var rl = determineLastRequiredPosition();
  974. tmpBuffer.length = rl;
  975. writeBuffer(input, tmpBuffer);
  976. }
  977. function isComplete(buffer) { //return true / false / undefined (repeat *)
  978. if ($.isFunction(opts.isComplete)) return opts.isComplete.call($el, buffer, opts);
  979. if (opts.repeat == "*") return undefined;
  980. var complete = false, lrp = determineLastRequiredPosition(true), aml = seekPrevious(lrp["l"]), lvp = getLastValidPosition();
  981. if (lvp == aml) {
  982. if (lrp["def"] == undefined || lrp["def"].newBlockMarker || lrp["def"].optionalQuantifier) {
  983. complete = true;
  984. for (var i = 0; i <= aml; i++) {
  985. var mask = isMask(i);
  986. if ((mask && (buffer[i] == undefined || buffer[i] == getPlaceholder(i))) || (!mask && buffer[i] != getPlaceholder(i))) {
  987. complete = false;
  988. break;
  989. }
  990. }
  991. }
  992. }
  993. return complete;
  994. }
  995. function isSelection(begin, end) {
  996. return isRTL ? (begin - end) > 1 || ((begin - end) == 1 && opts.insertMode) :
  997. (end - begin) > 1 || ((end - begin) == 1 && opts.insertMode);
  998. }
  999. function installEventRuler(npt) {
  1000. var events = $._data(npt).events;
  1001. $.each(events, function (eventType, eventHandlers) {
  1002. $.each(eventHandlers, function (ndx, eventHandler) {
  1003. if (eventHandler.namespace == "inputmask") {
  1004. if (eventHandler.type != "setvalue") {
  1005. var handler = eventHandler.handler;
  1006. eventHandler.handler = function (e) {
  1007. if (this.readOnly || this.disabled)
  1008. e.preventDefault;
  1009. else
  1010. return handler.apply(this, arguments);
  1011. };
  1012. }
  1013. }
  1014. });
  1015. });
  1016. }
  1017. function patchValueProperty(npt) {
  1018. var valueGet;
  1019. var valueSet;
  1020. function PatchValhook(type) {
  1021. if ($.valHooks[type] == undefined || $.valHooks[type].inputmaskpatch != true) {
  1022. var valueGet = $.valHooks[type] && $.valHooks[type].get ? $.valHooks[type].get : function (elem) { return elem.value; };
  1023. var valueSet = $.valHooks[type] && $.valHooks[type].set ? $.valHooks[type].set : function (elem, value) {
  1024. elem.value = value;
  1025. return elem;
  1026. };
  1027. $.valHooks[type] = {
  1028. get: function (elem) {
  1029. var $elem = $(elem);
  1030. if ($elem.data('_inputmask')) {
  1031. if ($elem.data('_inputmask')['opts'].autoUnmask)
  1032. return $elem.inputmask('unmaskedvalue');
  1033. else {
  1034. var result = valueGet(elem),
  1035. inputData = $elem.data('_inputmask'),
  1036. maskset = inputData['maskset'],
  1037. bufferTemplate = maskset['_buffer'];
  1038. bufferTemplate = bufferTemplate ? bufferTemplate.join('') : '';
  1039. return result != bufferTemplate ? result : '';
  1040. }
  1041. } else return valueGet(elem);
  1042. },
  1043. set: function (elem, value) {
  1044. var $elem = $(elem), inputData = $elem.data('_inputmask'), result;
  1045. if (inputData) {
  1046. result = valueSet(elem, $.isFunction(inputData['opts'].onBeforeMask) ? inputData['opts'].onBeforeMask.call(el, value, inputData['opts']) : value);
  1047. $elem.triggerHandler('setvalue.inputmask');
  1048. } else {
  1049. result = valueSet(elem, value);
  1050. }
  1051. return result;
  1052. },
  1053. inputmaskpatch: true
  1054. };
  1055. }
  1056. }
  1057. function getter() {
  1058. var $self = $(this), inputData = $(this).data('_inputmask');
  1059. if (inputData) {
  1060. return inputData['opts'].autoUnmask ? $self.inputmask('unmaskedvalue') : (valueGet.call(this) != getBufferTemplate().join('') ? valueGet.call(this) : '');
  1061. } else return valueGet.call(this);
  1062. }
  1063. function setter(value) {
  1064. var inputData = $(this).data('_inputmask');
  1065. if (inputData) {
  1066. valueSet.call(this, $.isFunction(inputData['opts'].onBeforeMask) ? inputData['opts'].onBeforeMask.call(el, value, inputData['opts']) : value);
  1067. $(this).triggerHandler('setvalue.inputmask');
  1068. } else {
  1069. valueSet.call(this, value);
  1070. }
  1071. }
  1072. function InstallNativeValueSetFallback(npt) {
  1073. $(npt).bind("mouseenter.inputmask", function (event) {
  1074. var $input = $(this), input = this, value = input._valueGet();
  1075. if (value != "" && value != getBuffer().join('')) {
  1076. $input.trigger("setvalue");
  1077. }
  1078. });
  1079. //!! the bound handlers are executed in the order they where bound
  1080. //reorder the events
  1081. var events = $._data(npt).events;
  1082. var handlers = events["mouseover"];
  1083. if (handlers) {
  1084. var ourHandler = handlers[handlers.length - 1];
  1085. for (var i = handlers.length - 1; i > 0; i--) {
  1086. handlers[i] = handlers[i - 1];
  1087. }
  1088. handlers[0] = ourHandler;
  1089. }
  1090. }
  1091. if (!npt._valueGet) {
  1092. //var valueProperty;
  1093. if (Object.getOwnPropertyDescriptor)
  1094. var valueProperty = Object.getOwnPropertyDescriptor(npt, "value");
  1095. if (valueProperty && valueProperty.configurable && false) { //experimental for chrome
  1096. npt._value = valueProperty.value;
  1097. valueGet = function () {
  1098. return this._value || "";
  1099. }
  1100. valueSet = function (value) {
  1101. this._value = value;
  1102. this.select();
  1103. this.setRangeText(value);
  1104. this.selectionStart = this.selectionEnd;
  1105. }
  1106. Object.defineProperty(npt, "value", {
  1107. get: getter,
  1108. set: setter
  1109. });
  1110. } else if (document.__lookupGetter__ && npt.__lookupGetter__("value")) {
  1111. valueGet = npt.__lookupGetter__("value");
  1112. valueSet = npt.__lookupSetter__("value");
  1113. npt.__defineGetter__("value", getter);
  1114. npt.__defineSetter__("value", setter);
  1115. } else { //jquery.val
  1116. valueGet = function () { return npt.value; }
  1117. valueSet = function (value) { npt.value = value; }
  1118. PatchValhook(npt.type);
  1119. InstallNativeValueSetFallback(npt);
  1120. }
  1121. npt._valueGet = function () {
  1122. return isRTL ? valueGet.call(this).split('').reverse().join('') : valueGet.call(this);
  1123. };
  1124. npt._valueSet = function (value) {
  1125. valueSet.call(this, isRTL ? value.split('').reverse().join('') : value);
  1126. };
  1127. }
  1128. }
  1129. function handleRemove(input, k, pos) {
  1130. if (opts.numericInput || isRTL) {
  1131. if (k == opts.keyCode.BACKSPACE)
  1132. k = opts.keyCode.DELETE;
  1133. else if (k == opts.keyCode.DELETE)
  1134. k = opts.keyCode.BACKSPACE;
  1135. if (isRTL) {
  1136. var pend = pos.end;
  1137. pos.end = pos.begin;
  1138. pos.begin = pend;
  1139. }
  1140. }
  1141. if (k == opts.keyCode.BACKSPACE && pos.end - pos.begin <= 1)
  1142. pos.begin = seekPrevious(pos.begin);
  1143. else if (k == opts.keyCode.DELETE && pos.begin == pos.end)
  1144. pos.end++;
  1145. stripValidPositions(pos.begin, pos.end);
  1146. var firstMaskedPos = getLastValidPosition(pos.begin);
  1147. if (firstMaskedPos < pos.begin) {
  1148. getMaskSet()["p"] = seekNext(firstMaskedPos);
  1149. } else {
  1150. getMaskSet()["p"] = pos.begin;
  1151. }
  1152. }
  1153. function handleOnKeyResult(input, keyResult, caretPos) {
  1154. if (keyResult && keyResult["refreshFromBuffer"]) {
  1155. var refresh = keyResult["refreshFromBuffer"];
  1156. refreshFromBuffer(refresh === true ? refresh : refresh["start"], refresh["end"]);
  1157. resetMaskSet(true);
  1158. if (caretPos != undefined) {
  1159. writeBuffer(input, getBuffer());
  1160. caret(input, keyResult.caret || caretPos.begin, keyResult.caret || caretPos.end);
  1161. }
  1162. }
  1163. }
  1164. function keydownEvent(e) {
  1165. //Safari 5.1.x - modal dialog fires keypress twice workaround
  1166. skipKeyPressEvent = false;
  1167. var input = this, $input = $(input), k = e.keyCode, pos = caret(input);
  1168. //backspace, delete, and escape get special treatment
  1169. if (k == opts.keyCode.BACKSPACE || k == opts.keyCode.DELETE || (iphone && k == 127) || e.ctrlKey && k == 88) { //backspace/delete
  1170. e.preventDefault(); //stop default action but allow propagation
  1171. if (k == 88) valueOnFocus = getBuffer().join('');
  1172. handleRemove(input, k, pos);
  1173. writeBuffer(input, getBuffer(), getMaskSet()["p"]);
  1174. if (input._valueGet() == getBufferTemplate().join(''))
  1175. $input.trigger('cleared');
  1176. if (opts.showTooltip) { //update tooltip
  1177. $input.prop("title", getMaskSet()["mask"]);
  1178. }
  1179. } else if (k == opts.keyCode.END || k == opts.keyCode.PAGE_DOWN) { //when END or PAGE_DOWN pressed set position at lastmatch
  1180. setTimeout(function () {
  1181. var caretPos = seekNext(getLastValidPosition());
  1182. if (!opts.insertMode && caretPos == getMaskLength() && !e.shiftKey) caretPos--;
  1183. caret(input, e.shiftKey ? pos.begin : caretPos, caretPos);
  1184. }, 0);
  1185. } else if ((k == opts.keyCode.HOME && !e.shiftKey) || k == opts.keyCode.PAGE_UP) { //Home or page_up
  1186. caret(input, 0, e.shiftKey ? pos.begin : 0);
  1187. } else if (k == opts.keyCode.ESCAPE || (k == 90 && e.ctrlKey)) { //escape && undo
  1188. checkVal(input, true, false, valueOnFocus.split(''));
  1189. $input.click();
  1190. } else if (k == opts.keyCode.INSERT && !(e.shiftKey || e.ctrlKey)) { //insert
  1191. opts.insertMode = !opts.insertMode;
  1192. caret(input, !opts.insertMode && pos.begin == getMaskLength() ? pos.begin - 1 : pos.begin);
  1193. } else if (opts.insertMode == false && !e.shiftKey) {
  1194. if (k == opts.keyCode.RIGHT) {
  1195. setTimeout(function () {
  1196. var caretPos = caret(input);
  1197. caret(input, caretPos.begin);
  1198. }, 0);
  1199. } else if (k == opts.keyCode.LEFT) {
  1200. setTimeout(function () {
  1201. var caretPos = caret(input);
  1202. caret(input, isRTL ? caretPos.begin + 1 : caretPos.begin - 1);
  1203. }, 0);
  1204. }
  1205. }
  1206. var currentCaretPos = caret(input);
  1207. var keydownResult = opts.onKeyDown.call(this, e, getBuffer(), currentCaretPos.begin, opts);
  1208. handleOnKeyResult(input, keydownResult, currentCaretPos);
  1209. ignorable = $.inArray(k, opts.ignorables) != -1;
  1210. }
  1211. function keypressEvent(e, checkval, k, writeOut, strict, ndx) {
  1212. //Safari 5.1.x - modal dialog fires keypress twice workaround
  1213. if (k == undefined && skipKeyPressEvent) return false;
  1214. skipKeyPressEvent = true;
  1215. var input = this, $input = $(input);
  1216. e = e || window.event;
  1217. var k = checkval ? k : (e.which || e.charCode || e.keyCode);
  1218. if (checkval !== true && (!(e.ctrlKey && e.altKey) && (e.ctrlKey || e.metaKey || ignorable))) {
  1219. return true;
  1220. } else {
  1221. if (k) {
  1222. //special treat the decimal separator
  1223. if (checkval !== true && k == 46 && e.shiftKey == false && opts.radixPoint == ",") k = 44;
  1224. var pos, forwardPosition, c = String.fromCharCode(k);
  1225. if (checkval) {
  1226. var pcaret = strict ? ndx : getLastValidPosition() + 1;
  1227. pos = { begin: pcaret, end: pcaret };
  1228. } else {
  1229. pos = caret(input);
  1230. }
  1231. //should we clear a possible selection??
  1232. var isSlctn = isSelection(pos.begin, pos.end);
  1233. if (isSlctn) {
  1234. getMaskSet()["undoPositions"] = $.extend(true, {}, getMaskSet()["validPositions"]); //init undobuffer for recovery when not valid
  1235. handleRemove(input, opts.keyCode.DELETE, pos);
  1236. if (!opts.insertMode) { //preserve some space
  1237. opts.insertMode = !opts.insertMode;
  1238. setValidPosition(pos.begin, strict);
  1239. opts.insertMode = !opts.insertMode;
  1240. }
  1241. isSlctn = !opts.multi;
  1242. }
  1243. getMaskSet()["writeOutBuffer"] = true;
  1244. var p = isRTL && !isSlctn ? pos.end : pos.begin;
  1245. var valResult = isValid(p, c, strict);
  1246. if (valResult !== false) {
  1247. if (valResult !== true) {
  1248. p = valResult.pos != undefined ? valResult.pos : p; //set new position from isValid
  1249. c = valResult.c != undefined ? valResult.c : c; //set new char from isValid
  1250. }
  1251. resetMaskSet(true);
  1252. if (valResult.caret != undefined)
  1253. forwardPosition = valResult.caret;
  1254. else {
  1255. var vps = getMaskSet()["validPositions"];
  1256. if (!opts.keepStatic && (vps[p + 1] != undefined && getTests(p + 1, vps[p].locator.slice(), p).length > 1 || vps[p].alternation != undefined))
  1257. forwardPosition = p + 1;
  1258. else
  1259. forwardPosition = seekNext(p);
  1260. }
  1261. getMaskSet()["p"] = forwardPosition; //needed for checkval
  1262. }
  1263. if (writeOut !== false) {
  1264. var self = this;
  1265. setTimeout(function () { opts.onKeyValidation.call(self, valResult, opts); }, 0);
  1266. if (getMaskSet()["writeOutBuffer"] && valResult !== false) {
  1267. var buffer = getBuffer();
  1268. writeBuffer(input, buffer, checkval ? undefined : opts.numericInput ? seekPrevious(forwardPosition) : forwardPosition);
  1269. if (checkval !== true) {
  1270. setTimeout(function () { //timeout needed for IE
  1271. if (isComplete(buffer) === true)
  1272. $input.trigger("complete");
  1273. skipInputEvent = true;
  1274. $input.trigger("input");
  1275. }, 0);
  1276. }
  1277. } else if (isSlctn) {
  1278. getMaskSet()["buffer"] = undefined;
  1279. getMaskSet()["validPositions"] = getMaskSet()["undoPositions"];
  1280. }
  1281. } else if (isSlctn) {
  1282. getMaskSet()["buffer"] = undefined;
  1283. getMaskSet()["validPositions"] = getMaskSet()["undoPositions"];
  1284. }
  1285. if (opts.showTooltip) { //update tooltip
  1286. $input.prop("title", getMaskSet()["mask"]);
  1287. }
  1288. //needed for IE8 and below
  1289. if (e && checkval != true) {
  1290. e.preventDefault ? e.preventDefault() : e.returnValue = false;
  1291. var currentCaretPos = caret(input);
  1292. var keypressResult = opts.onKeyPress.call(this, e, getBuffer(), currentCaretPos.begin, opts);
  1293. handleOnKeyResult(input, keypressResult, currentCaretPos);
  1294. }
  1295. }
  1296. }
  1297. }
  1298. function keyupEvent(e) {
  1299. var $input = $(this), input = this, k = e.keyCode, buffer = getBuffer();
  1300. var currentCaretPos = caret(input);
  1301. var keyupResult = opts.onKeyUp.call(this, e, buffer, currentCaretPos.begin, opts);
  1302. handleOnKeyResult(input, keyupResult, currentCaretPos);
  1303. if (k == opts.keyCode.TAB && opts.showMaskOnFocus) {
  1304. if ($input.hasClass('focus-inputmask') && input._valueGet().length == 0) {
  1305. resetMaskSet();
  1306. buffer = getBuffer();
  1307. writeBuffer(input, buffer);
  1308. caret(input, 0);
  1309. valueOnFocus = getBuffer().join('');
  1310. } else {
  1311. writeBuffer(input, buffer);
  1312. caret(input, TranslatePosition(0), TranslatePosition(getMaskLength()));
  1313. }
  1314. }
  1315. }
  1316. function pasteEvent(e) {
  1317. if (skipInputEvent === true && e.type == "input") {
  1318. skipInputEvent = false;
  1319. return true;
  1320. }
  1321. var input = this, $input = $(input), inputValue = input._valueGet();
  1322. //paste event for IE8 and lower I guess ;-)
  1323. if (e.type == "propertychange" && input._valueGet().length <= getMaskLength()) {
  1324. return true;
  1325. } else if (e.type == "paste") {
  1326. if (window.clipboardData && window.clipboardData.getData) { // IE
  1327. inputValue = window.clipboardData.getData('Text');
  1328. } else if (e.originalEvent && e.originalEvent.clipboardData && e.originalEvent.clipboardData.getData) {
  1329. inputValue = e.originalEvent.clipboardData.getData('text/plain');
  1330. }
  1331. }
  1332. var pasteValue = $.isFunction(opts.onBeforePaste) ? opts.onBeforePaste.call(input, inputValue, opts) : inputValue;
  1333. checkVal(input, true, false, pasteValue.split(''), true);
  1334. $input.click();
  1335. if (isComplete(getBuffer()) === true)
  1336. $input.trigger("complete");
  1337. return false;
  1338. }
  1339. function mobileInputEvent(e) {
  1340. if (skipInputEvent === true && e.type == "input") {
  1341. skipInputEvent = false;
  1342. return true;
  1343. }
  1344. var input = this;
  1345. //backspace in chrome32 only fires input event - detect & treat
  1346. var caretPos = caret(input),
  1347. currentValue = input._valueGet();
  1348. currentValue = currentValue.replace(new RegExp("(" + escapeRegex(getBufferTemplate().join('')) + ")*"), "");
  1349. //correct caretposition for chrome
  1350. if (caretPos.begin > currentValue.length) {
  1351. caret(input, currentValue.length);
  1352. caretPos = caret(input);
  1353. }
  1354. if ((getBuffer().length - currentValue.length) == 1 && currentValue.charAt(caretPos.begin) != getBuffer()[caretPos.begin]
  1355. && currentValue.charAt(caretPos.begin + 1) != getBuffer()[caretPos.begin]
  1356. && !isMask(caretPos.begin)) {
  1357. e.keyCode = opts.keyCode.BACKSPACE;
  1358. keydownEvent.call(input, e);
  1359. }
  1360. e.preventDefault();
  1361. }
  1362. function inputFallBackEvent(e) { //fallback when keypress & compositionevents fail
  1363. if (skipInputEvent === true && e.type == "input") {
  1364. skipInputEvent = false;
  1365. return true;
  1366. }
  1367. var input = this;
  1368. var caretPos = caret(input),
  1369. currentValue = input._valueGet();
  1370. caret(input, caretPos.begin - 1);
  1371. var keypress = $.Event("keypress");
  1372. keypress.which = currentValue.charCodeAt(caretPos.begin - 1);
  1373. skipKeyPressEvent = false;
  1374. ignorable = false;
  1375. keypressEvent.call(input, keypress, undefined, undefined, false);
  1376. var forwardPosition = getMaskSet()["p"];
  1377. writeBuffer(input, getBuffer(), opts.numericInput ? seekPrevious(forwardPosition) : forwardPosition);
  1378. e.preventDefault();
  1379. }
  1380. function compositionupdateEvent(e) { //fix for special latin-charset FF/Linux
  1381. skipInputEvent = true; //stop inutFallback
  1382. var input = this;
  1383. setTimeout(function () {
  1384. caret(input, caret(input).begin - 1);
  1385. var keypress = $.Event("keypress");
  1386. keypress.which = e.originalEvent.data.charCodeAt(0);
  1387. skipKeyPressEvent = false;
  1388. ignorable = false;
  1389. keypressEvent.call(input, keypress, undefined, undefined, false);
  1390. var forwardPosition = getMaskSet()["p"];
  1391. writeBuffer(input, getBuffer(), opts.numericInput ? seekPrevious(forwardPosition) : forwardPosition);
  1392. }, 0);
  1393. return false;
  1394. }
  1395. function mask(el) {
  1396. $el = $(el);
  1397. if ($el.is(":input") && $el.attr("type") != "number") {
  1398. //store tests & original buffer in the input element - used to get the unmasked value
  1399. $el.data('_inputmask', {
  1400. 'maskset': maskset,
  1401. 'opts': opts,
  1402. 'isRTL': false
  1403. });
  1404. //show tooltip
  1405. if (opts.showTooltip) {
  1406. $el.prop("title", getMaskSet()["mask"]);
  1407. }
  1408. if (el.dir == "rtl" || opts.rightAlign)
  1409. $el.css("text-align", "right");
  1410. if (el.dir == "rtl" || opts.numericInput) {
  1411. el.dir = "ltr";
  1412. $el.removeAttr("dir");
  1413. var inputData = $el.data('_inputmask');
  1414. inputData['isRTL'] = true;
  1415. $el.data('_inputmask', inputData);
  1416. isRTL = true;
  1417. }
  1418. //unbind all events - to make sure that no other mask will interfere when re-masking
  1419. $el.unbind(".inputmask");
  1420. $el.removeClass('focus-inputmask');
  1421. //bind events
  1422. $el.closest('form').bind("submit", function () { //trigger change on submit if any
  1423. if (valueOnFocus != getBuffer().join('')) {
  1424. $el.change();
  1425. } else if ($el[0]._valueGet() == getBufferTemplate().join(''))
  1426. $el[0]._valueSet(''); //clear masktemplete on submit and still has focus
  1427. if (opts.autoUnmask && opts.removeMaskOnSubmit) {
  1428. $el.inputmask("remove");
  1429. }
  1430. }).bind('reset', function () {
  1431. setTimeout(function () {
  1432. $el.trigger("setvalue");
  1433. }, 0);
  1434. });
  1435. $el.bind("mouseenter.inputmask", function () {
  1436. var $input = $(this), input = this;
  1437. if (!$input.hasClass('focus-inputmask') && opts.showMaskOnHover) {
  1438. if (input._valueGet() != getBuffer().join('')) {
  1439. writeBuffer(input, getBuffer());
  1440. }
  1441. }
  1442. }).bind("blur.inputmask", function () {
  1443. var $input = $(this), input = this;
  1444. if ($input.data('_inputmask')) {
  1445. var nptValue = input._valueGet(), buffer = getBuffer();
  1446. $input.removeClass('focus-inputmask');
  1447. if (valueOnFocus != getBuffer().join('')) {
  1448. $input.change();
  1449. }
  1450. if (opts.clearMaskOnLostFocus && nptValue != '') {
  1451. if (nptValue == getBufferTemplate().join(''))
  1452. input._valueSet('');
  1453. else { //clearout optional tail of the mask
  1454. clearOptionalTail(input);
  1455. }
  1456. }
  1457. if (isComplete(buffer) === false) {
  1458. $input.trigger("incomplete");
  1459. if (opts.clearIncomplete) {
  1460. resetMaskSet();
  1461. if (opts.clearMaskOnLostFocus)
  1462. input._valueSet('');
  1463. else {
  1464. buffer = getBufferTemplate().slice();
  1465. writeBuffer(input, buffer);
  1466. }
  1467. }
  1468. }
  1469. }
  1470. }).bind("focus.inputmask", function () {
  1471. var $input = $(this), input = this, nptValue = input._valueGet();
  1472. if (opts.showMaskOnFocus && !$input.hasClass('focus-inputmask') && (!opts.showMaskOnHover || (opts.showMaskOnHover && nptValue == ''))) {
  1473. if (input._valueGet() != getBuffer().join('')) {
  1474. writeBuffer(input, getBuffer(), seekNext(getLastValidPosition()));
  1475. }
  1476. }
  1477. $input.addClass('focus-inputmask');
  1478. valueOnFocus = getBuffer().join('');
  1479. }).bind("mouseleave.inputmask", function () {
  1480. var $input = $(this), input = this;
  1481. if (opts.clearMaskOnLostFocus) {
  1482. if (!$input.hasClass('focus-inputmask') && input._valueGet() != $input.attr("placeholder")) {
  1483. if (input._valueGet() == getBufferTemplate().join('') || input._valueGet() == '')
  1484. input._valueSet('');
  1485. else { //clearout optional tail of the mask
  1486. clearOptionalTail(input);
  1487. }
  1488. }
  1489. }
  1490. }).bind("click.inputmask", function () {
  1491. var input = this;
  1492. if ($(input).is(":focus")) {
  1493. setTimeout(function () {
  1494. var selectedCaret = caret(input);
  1495. if (selectedCaret.begin == selectedCaret.end) {
  1496. var clickPosition = isRTL ? TranslatePosition(selectedCaret.begin) : selectedCaret.begin,
  1497. lvp = getLastValidPosition(clickPosition),
  1498. lastPosition = seekNext(lvp);
  1499. if (clickPosition < lastPosition) {
  1500. if (isMask(clickPosition))
  1501. caret(input, clickPosition);
  1502. else caret(input, seekNext(clickPosition));
  1503. } else
  1504. caret(input, lastPosition);
  1505. }
  1506. }, 0);
  1507. }
  1508. }).bind('dblclick.inputmask', function () {
  1509. var input = this;
  1510. setTimeout(function () {
  1511. caret(input, 0, seekNext(getLastValidPosition()));
  1512. }, 0);
  1513. }).bind(PasteEventType + ".inputmask dragdrop.inputmask drop.inputmask", pasteEvent
  1514. ).bind('setvalue.inputmask', function () {
  1515. var input = this;
  1516. checkVal(input, true, false, undefined, true);
  1517. valueOnFocus = getBuffer().join('');
  1518. }).bind('complete.inputmask', opts.oncomplete
  1519. ).bind('incomplete.inputmask', opts.onincomplete
  1520. ).bind('cleared.inputmask', opts.oncleared);
  1521. $el.bind("keydown.inputmask", keydownEvent
  1522. ).bind("keypress.inputmask", keypressEvent
  1523. ).bind("keyup.inputmask", keyupEvent
  1524. ).bind("compositionupdate.inputmask", compositionupdateEvent);
  1525. if (PasteEventType === "paste") {
  1526. $el.bind("input.inputmask", inputFallBackEvent);
  1527. }
  1528. if (android || androidfirefox || androidchrome || kindle) {
  1529. if (PasteEventType == "input") {
  1530. $el.unbind(PasteEventType + ".inputmask");
  1531. }
  1532. $el.bind("input.inputmask", mobileInputEvent);
  1533. }
  1534. if (msie1x)
  1535. $el.bind("input.inputmask", pasteEvent);
  1536. patchValueProperty(el);
  1537. //apply mask
  1538. var initialValue = $.isFunction(opts.onBeforeMask) ? opts.onBeforeMask.call(el, el._valueGet(), opts) : el._valueGet();
  1539. checkVal(el, true, false, initialValue.split(''), true);
  1540. valueOnFocus = getBuffer().join('');
  1541. // Wrap document.activeElement in a try/catch block since IE9 throw "Unspecified error" if document.activeElement is undefined when we are in an IFrame.
  1542. var activeElement;
  1543. try {
  1544. activeElement = document.activeElement;
  1545. } catch (e) {
  1546. }
  1547. if (isComplete(getBuffer()) === false) {
  1548. if (opts.clearIncomplete)
  1549. resetMaskSet();
  1550. }
  1551. if (opts.clearMaskOnLostFocus) {
  1552. if (getBuffer().join('') == getBufferTemplate().join('')) {
  1553. el._valueSet('');
  1554. } else {
  1555. clearOptionalTail(el);
  1556. }
  1557. } else {
  1558. writeBuffer(el, getBuffer());
  1559. }
  1560. if (activeElement === el) { //position the caret when in focus
  1561. $el.addClass('focus-inputmask');
  1562. caret(el, seekNext(getLastValidPosition()));
  1563. }
  1564. installEventRuler(el);
  1565. }
  1566. }
  1567. //action object
  1568. if (actionObj != undefined) {
  1569. switch (actionObj["action"]) {
  1570. case "isComplete":
  1571. $el = $(actionObj["el"]);
  1572. maskset = $el.data('_inputmask')['maskset'];
  1573. opts = $el.data('_inputmask')['opts'];
  1574. return isComplete(actionObj["buffer"]);
  1575. case "unmaskedvalue":
  1576. $el = actionObj["$input"];
  1577. maskset = $el.data('_inputmask')['maskset'];
  1578. opts = $el.data('_inputmask')['opts'];
  1579. isRTL = actionObj["$input"].data('_inputmask')['isRTL'];
  1580. return unmaskedvalue(actionObj["$input"]);
  1581. case "mask":
  1582. valueOnFocus = getBuffer().join('');
  1583. mask(actionObj["el"]);
  1584. break;
  1585. case "format":
  1586. $el = $({});
  1587. $el.data('_inputmask', {
  1588. 'maskset': maskset,
  1589. 'opts': opts,
  1590. 'isRTL': opts.numericInput
  1591. });
  1592. if (opts.numericInput) {
  1593. isRTL = true;
  1594. }
  1595. var valueBuffer = ($.isFunction(opts.onBeforeMask) ? opts.onBeforeMask.call($el, actionObj["value"], opts) : actionObj["value"]).split('');
  1596. checkVal($el, false, false, isRTL ? valueBuffer.reverse() : valueBuffer, true);
  1597. opts.onKeyPress.call(this, undefined, getBuffer(), 0, opts);
  1598. return isRTL ? getBuffer().slice().reverse().join('') : getBuffer().join('');
  1599. case "isValid":
  1600. $el = $({});
  1601. $el.data('_inputmask', {
  1602. 'maskset': maskset,
  1603. 'opts': opts,
  1604. 'isRTL': opts.numericInput
  1605. });
  1606. if (opts.numericInput) {
  1607. isRTL = true;
  1608. }
  1609. var valueBuffer = actionObj["value"].split('');
  1610. checkVal($el, false, true, isRTL ? valueBuffer.reverse() : valueBuffer);
  1611. var buffer = getBuffer();
  1612. var rl = determineLastRequiredPosition();
  1613. buffer.length = rl;
  1614. return isComplete(buffer) && actionObj["value"] == buffer.join('');
  1615. case "getemptymask":
  1616. $el = $(actionObj["el"]);
  1617. maskset = $el.data('_inputmask')['maskset'];
  1618. opts = $el.data('_inputmask')['opts'];
  1619. return getBufferTemplate();
  1620. case "remove":
  1621. var el = actionObj["el"];
  1622. $el = $(el);
  1623. maskset = $el.data('_inputmask')['maskset'];
  1624. opts = $el.data('_inputmask')['opts'];
  1625. //writeout the unmaskedvalue
  1626. el._valueSet(unmaskedvalue($el));
  1627. //unbind all events
  1628. $el.unbind(".inputmask");
  1629. $el.removeClass('focus-inputmask');
  1630. //clear data
  1631. $el.removeData('_inputmask');
  1632. //restore the value property
  1633. var valueProperty;
  1634. if (Object.getOwnPropertyDescriptor)
  1635. valueProperty = Object.getOwnPropertyDescriptor(el, "value");
  1636. if (valueProperty && valueProperty.get) {
  1637. if (el._valueGet) {
  1638. Object.defineProperty(el, "value", {
  1639. get: el._valueGet,
  1640. set: el._valueSet
  1641. });
  1642. }
  1643. } else if (document.__lookupGetter__ && el.__lookupGetter__("value")) {
  1644. if (el._valueGet) {
  1645. el.__defineGetter__("value", el._valueGet);
  1646. el.__defineSetter__("value", el._valueSet);
  1647. }
  1648. }
  1649. try { //try catch needed for IE7 as it does not supports deleting fns
  1650. delete el._valueGet;
  1651. delete el._valueSet;
  1652. } catch (e) {
  1653. el._valueGet = undefined;
  1654. el._valueSet = undefined;
  1655. }
  1656. break;
  1657. case "getmetadata":
  1658. $el = $(actionObj["el"]);
  1659. maskset = $el.data('_inputmask')['maskset'];
  1660. opts = $el.data('_inputmask')['opts'];
  1661. if ($.isArray(maskset["metadata"])) {
  1662. //find last alternation
  1663. var alternation, lvp = getLastValidPosition();
  1664. for (var firstAlt = lvp; firstAlt >= 0; firstAlt--) {
  1665. if (getMaskSet()["validPositions"][firstAlt] && getMaskSet()["validPositions"][firstAlt].alternation != undefined) {
  1666. alternation = getMaskSet()["validPositions"][firstAlt].alternation;
  1667. break;
  1668. }
  1669. }
  1670. if (alternation != undefined) {
  1671. return maskset["metadata"][getMaskSet()["validPositions"][lvp].locator[alternation]];
  1672. } else return maskset["metadata"][0];
  1673. }
  1674. return maskset["metadata"];
  1675. }
  1676. }
  1677. }
  1678. $.inputmask = {
  1679. //options default
  1680. defaults: {
  1681. placeholder: "_",
  1682. optionalmarker: { start: "[", end: "]" },
  1683. quantifiermarker: { start: "{", end: "}" },
  1684. groupmarker: { start: "(", end: ")" },
  1685. alternatormarker: "|",
  1686. escapeChar: "\\",
  1687. mask: null,
  1688. oncomplete: $.noop, //executes when the mask is complete
  1689. onincomplete: $.noop, //executes when the mask is incomplete and focus is lost
  1690. oncleared: $.noop, //executes when the mask is cleared
  1691. repeat: 0, //repetitions of the mask: * ~ forever, otherwise specify an integer
  1692. greedy: true, //true: allocated buffer for the mask and repetitions - false: allocate only if needed
  1693. autoUnmask: false, //automatically unmask when retrieving the value with $.fn.val or value if the browser supports __lookupGetter__ or getOwnPropertyDescriptor
  1694. removeMaskOnSubmit: true, //remove the mask before submitting the form. Use in combination with autoUnmask: true
  1695. clearMaskOnLostFocus: true,
  1696. insertMode: true, //insert the input or overwrite the input
  1697. clearIncomplete: false, //clear the incomplete input on blur
  1698. aliases: {}, //aliases definitions => see jquery.inputmask.extensions.js
  1699. alias: null,
  1700. onKeyUp: $.noop, //callback to implement autocomplete on certain keys for example
  1701. onKeyPress: $.noop, //callback to implement autocomplete on certain keys for example
  1702. onKeyDown: $.noop, //callback to implement autocomplete on certain keys for example
  1703. onBeforeMask: undefined, //executes before masking the initial value to allow preprocessing of the initial value. args => initialValue, opts => return processedValue
  1704. onBeforePaste: undefined, //executes before masking the pasted value to allow preprocessing of the pasted value. args => pastedValue, opts => return processedValue
  1705. onUnMask: undefined, //executes after unmasking to allow postprocessing of the unmaskedvalue. args => maskedValue, unmaskedValue, opts
  1706. showMaskOnFocus: true, //show the mask-placeholder when the input has focus
  1707. showMaskOnHover: true, //show the mask-placeholder when hovering the empty input
  1708. onKeyValidation: $.noop, //executes on every key-press with the result of isValid. Params: result, opts
  1709. skipOptionalPartCharacter: " ", //a character which can be used to skip an optional part of a mask
  1710. showTooltip: false, //show the activemask as tooltip
  1711. numericInput: false, //numericInput input direction style (input shifts to the left while holding the caret position)
  1712. rightAlign: false, //align to the right
  1713. //numeric basic properties
  1714. radixPoint: "", //".", // | ","
  1715. //numeric basic properties
  1716. nojumps: false, //do not jump over fixed parts in the mask
  1717. nojumpsThreshold: 0, //start nojumps as of
  1718. 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
  1719. definitions: {
  1720. '9': {
  1721. validator: "[0-9]",
  1722. cardinality: 1,
  1723. definitionSymbol: "*"
  1724. },
  1725. 'a': {
  1726. validator: "[A-Za-z\u0410-\u044F\u0401\u0451\u00C0-\u00FF\u00B5]",
  1727. cardinality: 1,
  1728. definitionSymbol: "*"
  1729. },
  1730. '*': {
  1731. validator: "[0-9A-Za-z\u0410-\u044F\u0401\u0451\u00C0-\u00FF\u00B5]",
  1732. cardinality: 1
  1733. }
  1734. },
  1735. keyCode: {
  1736. 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,
  1737. 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
  1738. },
  1739. //specify keycodes which should not be considered in the keypress event, otherwise the preventDefault will stop their default behavior especially in FF
  1740. 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],
  1741. isComplete: undefined //override for isComplete - args => buffer, opts - return true || false
  1742. },
  1743. masksCache: {},
  1744. escapeRegex: function (str) {
  1745. var specials = ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\'];
  1746. return str.replace(new RegExp('(\\' + specials.join('|\\') + ')', 'gim'), '\\$1');
  1747. },
  1748. format: function (value, options) {
  1749. var opts = $.extend(true, {}, $.inputmask.defaults, options);
  1750. resolveAlias(opts.alias, options, opts);
  1751. return maskScope({ "action": "format", "value": value }, generateMaskSet(opts), opts);
  1752. },
  1753. isValid: function (value, options) {
  1754. var opts = $.extend(true, {}, $.inputmask.defaults, options);
  1755. resolveAlias(opts.alias, options, opts);
  1756. return maskScope({ "action": "isValid", "value": value }, generateMaskSet(opts), opts);
  1757. }
  1758. };
  1759. $.fn.inputmask = function (fn, options, targetScope, targetData, msk) {
  1760. targetScope = targetScope || maskScope;
  1761. targetData = targetData || "_inputmask";
  1762. function importAttributeOptions(npt, opts) {
  1763. var $npt = $(npt);
  1764. for (var option in opts) {
  1765. var optionData = $npt.data("inputmask-" + option.toLowerCase());
  1766. if (optionData != undefined)
  1767. opts[option] = optionData;
  1768. }
  1769. return opts;
  1770. }
  1771. var opts = $.extend(true, {}, $.inputmask.defaults, options),
  1772. maskset;
  1773. if (typeof fn === "string") {
  1774. switch (fn) {
  1775. case "mask":
  1776. //resolve possible aliases given by options
  1777. resolveAlias(opts.alias, options, opts);
  1778. maskset = generateMaskSet(opts, targetScope !== maskScope);
  1779. if (maskset.length == 0) { return this; }
  1780. return this.each(function () {
  1781. targetScope({ "action": "mask", "el": this }, $.extend(true, {}, maskset), importAttributeOptions(this, opts));
  1782. });
  1783. case "unmaskedvalue":
  1784. var $input = $(this);
  1785. if ($input.data(targetData)) {
  1786. return targetScope({ "action": "unmaskedvalue", "$input": $input });
  1787. } else return $input.val();
  1788. case "remove":
  1789. return this.each(function () {
  1790. var $input = $(this);
  1791. if ($input.data(targetData)) {
  1792. targetScope({ "action": "remove", "el": this });
  1793. }
  1794. });
  1795. case "getemptymask": //return the default (empty) mask value, usefull for setting the default value in validation
  1796. if (this.data(targetData)) {
  1797. return targetScope({ "action": "getemptymask", "el": this });
  1798. }
  1799. else return "";
  1800. case "hasMaskedValue": //check wheter the returned value is masked or not; currently only works reliable when using jquery.val fn to retrieve the value
  1801. return this.data(targetData) ? !this.data(targetData)['opts'].autoUnmask : false;
  1802. case "isComplete":
  1803. if (this.data(targetData)) {
  1804. return targetScope({ "action": "isComplete", "buffer": this[0]._valueGet().split(''), "el": this });
  1805. } else return true;
  1806. case "getmetadata": //return mask metadata if exists
  1807. if (this.data(targetData)) {
  1808. return targetScope({ "action": "getmetadata", "el": this });
  1809. }
  1810. else return undefined;
  1811. case "_detectScope":
  1812. resolveAlias(opts.alias, options, opts);
  1813. if (msk != undefined && !resolveAlias(msk, options, opts) && $.inArray(msk, ["mask", "unmaskedvalue", "remove", "getemptymask", "hasMaskedValue", "isComplete", "getmetadata", "_detectScope"]) == -1) {
  1814. opts.mask = msk;
  1815. }
  1816. if ($.isFunction(opts.mask)) {
  1817. opts.mask = opts.mask.call(this, opts);
  1818. }
  1819. return $.isArray(opts.mask);
  1820. default:
  1821. resolveAlias(opts.alias, options, opts);
  1822. //check if the fn is an alias
  1823. if (!resolveAlias(fn, options, opts)) {
  1824. //maybe fn is a mask so we try
  1825. //set mask
  1826. opts.mask = fn;
  1827. }
  1828. maskset = generateMaskSet(opts, targetScope !== maskScope);
  1829. if (maskset == undefined) { return this; }
  1830. return this.each(function () {
  1831. targetScope({ "action": "mask", "el": this }, $.extend(true, {}, maskset), importAttributeOptions(this, opts));
  1832. });
  1833. }
  1834. } else if (typeof fn == "object") {
  1835. opts = $.extend(true, {}, $.inputmask.defaults, fn);
  1836. resolveAlias(opts.alias, fn, opts); //resolve aliases
  1837. maskset = generateMaskSet(opts, targetScope !== maskScope);
  1838. if (maskset == undefined) { return this; }
  1839. return this.each(function () {
  1840. targetScope({ "action": "mask", "el": this }, $.extend(true, {}, maskset), importAttributeOptions(this, opts));
  1841. });
  1842. } else if (fn == undefined) {
  1843. //look for data-inputmask atribute - the attribute should only contain optipns
  1844. return this.each(function () {
  1845. var attrOptions = $(this).attr("data-inputmask");
  1846. if (attrOptions && attrOptions != "") {
  1847. try {
  1848. attrOptions = attrOptions.replace(new RegExp("'", "g"), '"');
  1849. var dataoptions = $.parseJSON("{" + attrOptions + "}");
  1850. $.extend(true, dataoptions, options);
  1851. opts = $.extend(true, {}, $.inputmask.defaults, dataoptions);
  1852. resolveAlias(opts.alias, dataoptions, opts);
  1853. opts.alias = undefined;
  1854. $(this).inputmask("mask", opts, targetScope);
  1855. } catch (ex) { } //need a more relax parseJSON
  1856. }
  1857. });
  1858. }
  1859. };
  1860. }
  1861. return $.fn.inputmask;
  1862. }));
  1863. /*
  1864. Input Mask plugin extensions
  1865. http://github.com/RobinHerbots/jquery.inputmask
  1866. Copyright (c) 2010 - 2014 Robin Herbots
  1867. Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  1868. Version: 3.1.1
  1869. Optional extensions on the jquery.inputmask base
  1870. */
  1871. (function (factory) {
  1872. if (typeof define === 'function' && define.amd) {
  1873. define(['jquery', './jquery.inputmask'], factory);
  1874. } else {
  1875. factory(jQuery);
  1876. }
  1877. }(function ($) {
  1878. //extra definitions
  1879. $.extend($.inputmask.defaults.definitions, {
  1880. 'A': {
  1881. validator: "[A-Za-z\u0410-\u044F\u0401\u0451\u00C0-\u00FF\u00B5]",
  1882. cardinality: 1,
  1883. casing: "upper" //auto uppercasing
  1884. },
  1885. '#': {
  1886. validator: "[0-9A-Za-z\u0410-\u044F\u0401\u0451\u00C0-\u00FF\u00B5]",
  1887. cardinality: 1,
  1888. casing: "upper"
  1889. }
  1890. });
  1891. $.extend($.inputmask.defaults.aliases, {
  1892. 'url': {
  1893. mask: "ir",
  1894. placeholder: "",
  1895. separator: "",
  1896. defaultPrefix: "http://",
  1897. regex: {
  1898. urlpre1: new RegExp("[fh]"),
  1899. urlpre2: new RegExp("(ft|ht)"),
  1900. urlpre3: new RegExp("(ftp|htt)"),
  1901. urlpre4: new RegExp("(ftp:|http|ftps)"),
  1902. urlpre5: new RegExp("(ftp:/|ftps:|http:|https)"),
  1903. urlpre6: new RegExp("(ftp://|ftps:/|http:/|https:)"),
  1904. urlpre7: new RegExp("(ftp://|ftps://|http://|https:/)"),
  1905. urlpre8: new RegExp("(ftp://|ftps://|http://|https://)")
  1906. },
  1907. definitions: {
  1908. 'i': {
  1909. validator: function (chrs, maskset, pos, strict, opts) {
  1910. return true;
  1911. },
  1912. cardinality: 8,
  1913. prevalidator: (function () {
  1914. var result = [], prefixLimit = 8;
  1915. for (var i = 0; i < prefixLimit; i++) {
  1916. result[i] = (function () {
  1917. var j = i;
  1918. return {
  1919. validator: function (chrs, maskset, pos, strict, opts) {
  1920. if (opts.regex["urlpre" + (j + 1)]) {
  1921. var tmp = chrs, k;
  1922. if (((j + 1) - chrs.length) > 0) {
  1923. tmp = maskset.buffer.join('').substring(0, ((j + 1) - chrs.length)) + "" + tmp;
  1924. }
  1925. var isValid = opts.regex["urlpre" + (j + 1)].test(tmp);
  1926. if (!strict && !isValid) {
  1927. pos = pos - j;
  1928. for (k = 0; k < opts.defaultPrefix.length; k++) {
  1929. maskset.buffer[pos] = opts.defaultPrefix[k]; pos++;
  1930. }
  1931. for (k = 0; k < tmp.length - 1; k++) {
  1932. maskset.buffer[pos] = tmp[k]; pos++;
  1933. }
  1934. return { "pos": pos };
  1935. }
  1936. return isValid;
  1937. } else {
  1938. return false;
  1939. }
  1940. }, cardinality: j
  1941. };
  1942. })();
  1943. }
  1944. return result;
  1945. })()
  1946. },
  1947. "r": {
  1948. validator: ".",
  1949. cardinality: 50
  1950. }
  1951. },
  1952. insertMode: false,
  1953. autoUnmask: false
  1954. },
  1955. "ip": { //ip-address mask
  1956. mask: "i[i[i]].i[i[i]].i[i[i]].i[i[i]]",
  1957. definitions: {
  1958. 'i': {
  1959. validator: function (chrs, maskset, pos, strict, opts) {
  1960. if (pos - 1 > -1 && maskset.buffer[pos - 1] != ".") {
  1961. chrs = maskset.buffer[pos - 1] + chrs;
  1962. if (pos - 2 > -1 && maskset.buffer[pos - 2] != ".") {
  1963. chrs = maskset.buffer[pos - 2] + chrs;
  1964. } else chrs = "0" + chrs;
  1965. } else chrs = "00" + chrs;
  1966. return new RegExp("25[0-5]|2[0-4][0-9]|[01][0-9][0-9]").test(chrs);
  1967. },
  1968. cardinality: 1
  1969. }
  1970. }
  1971. },
  1972. "email": {
  1973. mask: "*{1,20}[.*{1,20}][.*{1,20}][.*{1,20}]@*{1,20}[.*{2,6}][.*{1,2}]",
  1974. greedy: false,
  1975. onBeforePaste: function (pastedValue, opts) {
  1976. pastedValue = pastedValue.toLowerCase();
  1977. return pastedValue.replace("mailto:", "");
  1978. },
  1979. definitions: {
  1980. '*': {
  1981. validator: "[0-9A-Za-z!#$%&'*+/=?^_`{|}~\-]",
  1982. cardinality: 1,
  1983. casing: "lower"
  1984. }
  1985. }
  1986. }
  1987. });
  1988. return $.fn.inputmask;
  1989. }));
  1990. /*
  1991. Input Mask plugin extensions
  1992. http://github.com/RobinHerbots/jquery.inputmask
  1993. Copyright (c) 2010 - 2014 Robin Herbots
  1994. Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  1995. Version: 3.1.1
  1996. Optional extensions on the jquery.inputmask base
  1997. */
  1998. (function (factory) {
  1999. if (typeof define === 'function' && define.amd) {
  2000. define(['jquery', './jquery.inputmask'], factory);
  2001. } else {
  2002. factory(jQuery);
  2003. }
  2004. }(function ($) {
  2005. //date & time aliases
  2006. $.extend($.inputmask.defaults.definitions, {
  2007. 'h': { //hours
  2008. validator: "[01][0-9]|2[0-3]",
  2009. cardinality: 2,
  2010. prevalidator: [{ validator: "[0-2]", cardinality: 1 }]
  2011. },
  2012. 's': { //seconds || minutes
  2013. validator: "[0-5][0-9]",
  2014. cardinality: 2,
  2015. prevalidator: [{ validator: "[0-5]", cardinality: 1 }]
  2016. },
  2017. 'd': { //basic day
  2018. validator: "0[1-9]|[12][0-9]|3[01]",
  2019. cardinality: 2,
  2020. prevalidator: [{ validator: "[0-3]", cardinality: 1 }]
  2021. },
  2022. 'm': { //basic month
  2023. validator: "0[1-9]|1[012]",
  2024. cardinality: 2,
  2025. prevalidator: [{ validator: "[01]", cardinality: 1 }]
  2026. },
  2027. 'y': { //basic year
  2028. validator: "(19|20)\\d{2}",
  2029. cardinality: 4,
  2030. prevalidator: [
  2031. { validator: "[12]", cardinality: 1 },
  2032. { validator: "(19|20)", cardinality: 2 },
  2033. { validator: "(19|20)\\d", cardinality: 3 }
  2034. ]
  2035. }
  2036. });
  2037. $.extend($.inputmask.defaults.aliases, {
  2038. 'dd/mm/yyyy': {
  2039. mask: "1/2/y",
  2040. placeholder: "dd/mm/yyyy",
  2041. regex: {
  2042. val1pre: new RegExp("[0-3]"), //daypre
  2043. val1: new RegExp("0[1-9]|[12][0-9]|3[01]"), //day
  2044. val2pre: function (separator) { var escapedSeparator = $.inputmask.escapeRegex.call(this, separator); return new RegExp("((0[1-9]|[12][0-9]|3[01])" + escapedSeparator + "[01])"); }, //monthpre
  2045. val2: function (separator) { var escapedSeparator = $.inputmask.escapeRegex.call(this, separator); return new RegExp("((0[1-9]|[12][0-9])" + escapedSeparator + "(0[1-9]|1[012]))|(30" + escapedSeparator + "(0[13-9]|1[012]))|(31" + escapedSeparator + "(0[13578]|1[02]))"); }//month
  2046. },
  2047. leapday: "29/02/",
  2048. separator: '/',
  2049. yearrange: { minyear: 1900, maxyear: 2099 },
  2050. isInYearRange: function (chrs, minyear, maxyear) {
  2051. if (isNaN(chrs)) return false;
  2052. var enteredyear = parseInt(chrs.concat(minyear.toString().slice(chrs.length)));
  2053. var enteredyear2 = parseInt(chrs.concat(maxyear.toString().slice(chrs.length)));
  2054. return (!isNaN(enteredyear) ? minyear <= enteredyear && enteredyear <= maxyear : false) ||
  2055. (!isNaN(enteredyear2) ? minyear <= enteredyear2 && enteredyear2 <= maxyear : false);
  2056. },
  2057. determinebaseyear: function (minyear, maxyear, hint) {
  2058. var currentyear = (new Date()).getFullYear();
  2059. if (minyear > currentyear) return minyear;
  2060. if (maxyear < currentyear) {
  2061. var maxYearPrefix = maxyear.toString().slice(0, 2);
  2062. var maxYearPostfix = maxyear.toString().slice(2, 4);
  2063. while (maxyear < maxYearPrefix + hint) {
  2064. maxYearPrefix--;
  2065. }
  2066. var maxxYear = maxYearPrefix + maxYearPostfix;
  2067. return minyear > maxxYear ? minyear : maxxYear;
  2068. }
  2069. return currentyear;
  2070. },
  2071. onKeyUp: function (e, buffer, caretPos, opts) {
  2072. var $input = $(this);
  2073. if (e.ctrlKey && e.keyCode == opts.keyCode.RIGHT) {
  2074. var today = new Date();
  2075. $input.val(today.getDate().toString() + (today.getMonth() + 1).toString() + today.getFullYear().toString());
  2076. }
  2077. },
  2078. definitions: {
  2079. '1': { //val1 ~ day or month
  2080. validator: function (chrs, maskset, pos, strict, opts) {
  2081. var isValid = opts.regex.val1.test(chrs);
  2082. if (!strict && !isValid) {
  2083. if (chrs.charAt(1) == opts.separator || "-./".indexOf(chrs.charAt(1)) != -1) {
  2084. isValid = opts.regex.val1.test("0" + chrs.charAt(0));
  2085. if (isValid) {
  2086. maskset.buffer[pos - 1] = "0";
  2087. return { "refreshFromBuffer": { start: pos - 1, end: pos }, "pos": pos, "c": chrs.charAt(0) };
  2088. }
  2089. }
  2090. }
  2091. return isValid;
  2092. },
  2093. cardinality: 2,
  2094. prevalidator: [{
  2095. validator: function (chrs, maskset, pos, strict, opts) {
  2096. if (!isNaN(maskset.buffer[pos + 1])) chrs += maskset.buffer[pos + 1];
  2097. var isValid = chrs.length == 1 ? opts.regex.val1pre.test(chrs) : opts.regex.val1.test(chrs);
  2098. if (!strict && !isValid) {
  2099. isValid = opts.regex.val1.test("0" + chrs);
  2100. if (isValid) {
  2101. maskset.buffer[pos] = "0";
  2102. pos++;
  2103. return { "pos": pos };
  2104. }
  2105. }
  2106. return isValid;
  2107. }, cardinality: 1
  2108. }]
  2109. },
  2110. '2': { //val2 ~ day or month
  2111. validator: function (chrs, maskset, pos, strict, opts) {
  2112. var frontValue = (opts.mask.indexOf("2") == opts.mask.length - 1) ? maskset.buffer.join('').substr(5, 3) : maskset.buffer.join('').substr(0, 3);
  2113. if (frontValue.indexOf(opts.placeholder[0]) != -1) frontValue = "01" + opts.separator;
  2114. var isValid = opts.regex.val2(opts.separator).test(frontValue + chrs);
  2115. if (!strict && !isValid) {
  2116. if (chrs.charAt(1) == opts.separator || "-./".indexOf(chrs.charAt(1)) != -1) {
  2117. isValid = opts.regex.val2(opts.separator).test(frontValue + "0" + chrs.charAt(0));
  2118. if (isValid) {
  2119. maskset.buffer[pos - 1] = "0";
  2120. return { "refreshFromBuffer": { start: pos - 1, end: pos }, "pos": pos, "c": chrs.charAt(0) };
  2121. }
  2122. }
  2123. }
  2124. //check leap yeap
  2125. if ((opts.mask.indexOf("2") == opts.mask.length - 1) && isValid) {
  2126. var dayMonthValue = maskset.buffer.join('').substr(4, 4) + chrs;
  2127. if (dayMonthValue != opts.leapday)
  2128. return true;
  2129. else {
  2130. var year = parseInt(maskset.buffer.join('').substr(0, 4), 10); //detect leap year
  2131. if (year % 4 === 0)
  2132. if (year % 100 === 0)
  2133. if (year % 400 === 0)
  2134. return true;
  2135. else return false;
  2136. else return true;
  2137. else return false;
  2138. }
  2139. }
  2140. return isValid;
  2141. },
  2142. cardinality: 2,
  2143. prevalidator: [{
  2144. validator: function (chrs, maskset, pos, strict, opts) {
  2145. if (!isNaN(maskset.buffer[pos + 1])) chrs += maskset.buffer[pos + 1];
  2146. var frontValue = (opts.mask.indexOf("2") == opts.mask.length - 1) ? maskset.buffer.join('').substr(5, 3) : maskset.buffer.join('').substr(0, 3);
  2147. if (frontValue.indexOf(opts.placeholder[0]) != -1) frontValue = "01" + opts.separator;
  2148. var isValid = chrs.length == 1 ? opts.regex.val2pre(opts.separator).test(frontValue + chrs) : opts.regex.val2(opts.separator).test(frontValue + chrs);
  2149. if (!strict && !isValid) {
  2150. isValid = opts.regex.val2(opts.separator).test(frontValue + "0" + chrs);
  2151. if (isValid) {
  2152. maskset.buffer[pos] = "0";
  2153. pos++;
  2154. return { "pos": pos };
  2155. }
  2156. }
  2157. return isValid;
  2158. }, cardinality: 1
  2159. }]
  2160. },
  2161. 'y': { //year
  2162. validator: function (chrs, maskset, pos, strict, opts) {
  2163. if (opts.isInYearRange(chrs, opts.yearrange.minyear, opts.yearrange.maxyear)) {
  2164. var dayMonthValue = maskset.buffer.join('').substr(0, 6);
  2165. if (dayMonthValue != opts.leapday)
  2166. return true;
  2167. else {
  2168. var year = parseInt(chrs, 10);//detect leap year
  2169. if (year % 4 === 0)
  2170. if (year % 100 === 0)
  2171. if (year % 400 === 0)
  2172. return true;
  2173. else return false;
  2174. else return true;
  2175. else return false;
  2176. }
  2177. } else return false;
  2178. },
  2179. cardinality: 4,
  2180. prevalidator: [
  2181. {
  2182. validator: function (chrs, maskset, pos, strict, opts) {
  2183. var isValid = opts.isInYearRange(chrs, opts.yearrange.minyear, opts.yearrange.maxyear);
  2184. if (!strict && !isValid) {
  2185. var yearPrefix = opts.determinebaseyear(opts.yearrange.minyear, opts.yearrange.maxyear, chrs + "0").toString().slice(0, 1);
  2186. isValid = opts.isInYearRange(yearPrefix + chrs, opts.yearrange.minyear, opts.yearrange.maxyear);
  2187. if (isValid) {
  2188. maskset.buffer[pos++] = yearPrefix.charAt(0);
  2189. return { "pos": pos };
  2190. }
  2191. yearPrefix = opts.determinebaseyear(opts.yearrange.minyear, opts.yearrange.maxyear, chrs + "0").toString().slice(0, 2);
  2192. isValid = opts.isInYearRange(yearPrefix + chrs, opts.yearrange.minyear, opts.yearrange.maxyear);
  2193. if (isValid) {
  2194. maskset.buffer[pos++] = yearPrefix.charAt(0);
  2195. maskset.buffer[pos++] = yearPrefix.charAt(1);
  2196. return { "pos": pos };
  2197. }
  2198. }
  2199. return isValid;
  2200. },
  2201. cardinality: 1
  2202. },
  2203. {
  2204. validator: function (chrs, maskset, pos, strict, opts) {
  2205. var isValid = opts.isInYearRange(chrs, opts.yearrange.minyear, opts.yearrange.maxyear);
  2206. if (!strict && !isValid) {
  2207. var yearPrefix = opts.determinebaseyear(opts.yearrange.minyear, opts.yearrange.maxyear, chrs).toString().slice(0, 2);
  2208. isValid = opts.isInYearRange(chrs[0] + yearPrefix[1] + chrs[1], opts.yearrange.minyear, opts.yearrange.maxyear);
  2209. if (isValid) {
  2210. maskset.buffer[pos++] = yearPrefix.charAt(1);
  2211. return { "pos": pos };
  2212. }
  2213. yearPrefix = opts.determinebaseyear(opts.yearrange.minyear, opts.yearrange.maxyear, chrs).toString().slice(0, 2);
  2214. if (opts.isInYearRange(yearPrefix + chrs, opts.yearrange.minyear, opts.yearrange.maxyear)) {
  2215. var dayMonthValue = maskset.buffer.join('').substr(0, 6);
  2216. if (dayMonthValue != opts.leapday)
  2217. isValid = true;
  2218. else {
  2219. var year = parseInt(chrs, 10);//detect leap year
  2220. if (year % 4 === 0)
  2221. if (year % 100 === 0)
  2222. if (year % 400 === 0)
  2223. isValid = true;
  2224. else isValid = false;
  2225. else isValid = true;
  2226. else isValid = false;
  2227. }
  2228. } else isValid = false;
  2229. if (isValid) {
  2230. maskset.buffer[pos - 1] = yearPrefix.charAt(0);
  2231. maskset.buffer[pos++] = yearPrefix.charAt(1);
  2232. maskset.buffer[pos++] = chrs.charAt(0);
  2233. return { "refreshFromBuffer": { start: pos - 3, end: pos }, "pos": pos };
  2234. }
  2235. }
  2236. return isValid;
  2237. }, cardinality: 2
  2238. },
  2239. {
  2240. validator: function (chrs, maskset, pos, strict, opts) {
  2241. return opts.isInYearRange(chrs, opts.yearrange.minyear, opts.yearrange.maxyear);
  2242. }, cardinality: 3
  2243. }
  2244. ]
  2245. }
  2246. },
  2247. insertMode: false,
  2248. autoUnmask: false
  2249. },
  2250. 'mm/dd/yyyy': {
  2251. placeholder: "mm/dd/yyyy",
  2252. alias: "dd/mm/yyyy", //reuse functionality of dd/mm/yyyy alias
  2253. regex: {
  2254. val2pre: function (separator) { var escapedSeparator = $.inputmask.escapeRegex.call(this, separator); return new RegExp("((0[13-9]|1[012])" + escapedSeparator + "[0-3])|(02" + escapedSeparator + "[0-2])"); }, //daypre
  2255. val2: function (separator) { var escapedSeparator = $.inputmask.escapeRegex.call(this, separator); return new RegExp("((0[1-9]|1[012])" + escapedSeparator + "(0[1-9]|[12][0-9]))|((0[13-9]|1[012])" + escapedSeparator + "30)|((0[13578]|1[02])" + escapedSeparator + "31)"); }, //day
  2256. val1pre: new RegExp("[01]"), //monthpre
  2257. val1: new RegExp("0[1-9]|1[012]") //month
  2258. },
  2259. leapday: "02/29/",
  2260. onKeyUp: function (e, buffer, caretPos, opts) {
  2261. var $input = $(this);
  2262. if (e.ctrlKey && e.keyCode == opts.keyCode.RIGHT) {
  2263. var today = new Date();
  2264. $input.val((today.getMonth() + 1).toString() + today.getDate().toString() + today.getFullYear().toString());
  2265. }
  2266. }
  2267. },
  2268. 'yyyy/mm/dd': {
  2269. mask: "y/1/2",
  2270. placeholder: "yyyy/mm/dd",
  2271. alias: "mm/dd/yyyy",
  2272. leapday: "/02/29",
  2273. onKeyUp: function (e, buffer, caretPos, opts) {
  2274. var $input = $(this);
  2275. if (e.ctrlKey && e.keyCode == opts.keyCode.RIGHT) {
  2276. var today = new Date();
  2277. $input.val(today.getFullYear().toString() + (today.getMonth() + 1).toString() + today.getDate().toString());
  2278. }
  2279. }
  2280. },
  2281. 'dd.mm.yyyy': {
  2282. mask: "1.2.y",
  2283. placeholder: "dd.mm.yyyy",
  2284. leapday: "29.02.",
  2285. separator: '.',
  2286. alias: "dd/mm/yyyy"
  2287. },
  2288. 'dd-mm-yyyy': {
  2289. mask: "1-2-y",
  2290. placeholder: "dd-mm-yyyy",
  2291. leapday: "29-02-",
  2292. separator: '-',
  2293. alias: "dd/mm/yyyy"
  2294. },
  2295. 'mm.dd.yyyy': {
  2296. mask: "1.2.y",
  2297. placeholder: "mm.dd.yyyy",
  2298. leapday: "02.29.",
  2299. separator: '.',
  2300. alias: "mm/dd/yyyy"
  2301. },
  2302. 'mm-dd-yyyy': {
  2303. mask: "1-2-y",
  2304. placeholder: "mm-dd-yyyy",
  2305. leapday: "02-29-",
  2306. separator: '-',
  2307. alias: "mm/dd/yyyy"
  2308. },
  2309. 'yyyy.mm.dd': {
  2310. mask: "y.1.2",
  2311. placeholder: "yyyy.mm.dd",
  2312. leapday: ".02.29",
  2313. separator: '.',
  2314. alias: "yyyy/mm/dd"
  2315. },
  2316. 'yyyy-mm-dd': {
  2317. mask: "y-1-2",
  2318. placeholder: "yyyy-mm-dd",
  2319. leapday: "-02-29",
  2320. separator: '-',
  2321. alias: "yyyy/mm/dd"
  2322. },
  2323. 'datetime': {
  2324. mask: "1/2/y h:s",
  2325. placeholder: "dd/mm/yyyy hh:mm",
  2326. alias: "dd/mm/yyyy",
  2327. regex: {
  2328. hrspre: new RegExp("[012]"), //hours pre
  2329. hrs24: new RegExp("2[0-4]|1[3-9]"),
  2330. hrs: new RegExp("[01][0-9]|2[0-4]"), //hours
  2331. ampm: new RegExp("^[a|p|A|P][m|M]"),
  2332. mspre: new RegExp("[0-5]"), //minutes/seconds pre
  2333. ms: new RegExp("[0-5][0-9]")
  2334. },
  2335. timeseparator: ':',
  2336. hourFormat: "24", // or 12
  2337. definitions: {
  2338. 'h': { //hours
  2339. validator: function (chrs, maskset, pos, strict, opts) {
  2340. if (opts.hourFormat == "24") {
  2341. if (parseInt(chrs, 10) == 24) {
  2342. maskset.buffer[pos - 1] = "0";
  2343. maskset.buffer[pos] = "0";
  2344. return { "refreshFromBuffer": { start: pos - 1, end: pos }, "c": "0" };
  2345. }
  2346. }
  2347. var isValid = opts.regex.hrs.test(chrs);
  2348. if (!strict && !isValid) {
  2349. if (chrs.charAt(1) == opts.timeseparator || "-.:".indexOf(chrs.charAt(1)) != -1) {
  2350. isValid = opts.regex.hrs.test("0" + chrs.charAt(0));
  2351. if (isValid) {
  2352. maskset.buffer[pos - 1] = "0";
  2353. maskset.buffer[pos] = chrs.charAt(0);
  2354. pos++;
  2355. return { "refreshFromBuffer": { start: pos - 2, end: pos }, "pos": pos, "c": opts.timeseparator };
  2356. }
  2357. }
  2358. }
  2359. if (isValid && opts.hourFormat !== "24" && opts.regex.hrs24.test(chrs)) {
  2360. var tmp = parseInt(chrs, 10);
  2361. if (tmp == 24) {
  2362. maskset.buffer[pos + 5] = "a";
  2363. maskset.buffer[pos + 6] = "m";
  2364. } else {
  2365. maskset.buffer[pos + 5] = "p";
  2366. maskset.buffer[pos + 6] = "m";
  2367. }
  2368. tmp = tmp - 12;
  2369. if (tmp < 10) {
  2370. maskset.buffer[pos] = tmp.toString();
  2371. maskset.buffer[pos - 1] = "0";
  2372. } else {
  2373. maskset.buffer[pos] = tmp.toString().charAt(1);
  2374. maskset.buffer[pos - 1] = tmp.toString().charAt(0);
  2375. }
  2376. return { "refreshFromBuffer": { start: pos - 1, end: pos + 6 }, "c": maskset.buffer[pos] };
  2377. }
  2378. return isValid;
  2379. },
  2380. cardinality: 2,
  2381. prevalidator: [{
  2382. validator: function (chrs, maskset, pos, strict, opts) {
  2383. var isValid = opts.regex.hrspre.test(chrs);
  2384. if (!strict && !isValid) {
  2385. isValid = opts.regex.hrs.test("0" + chrs);
  2386. if (isValid) {
  2387. maskset.buffer[pos] = "0";
  2388. pos++;
  2389. return { "pos": pos };
  2390. }
  2391. }
  2392. return isValid;
  2393. }, cardinality: 1
  2394. }]
  2395. },
  2396. 's': { //seconds || minutes
  2397. validator: "[0-5][0-9]",
  2398. cardinality: 2,
  2399. prevalidator: [
  2400. {
  2401. validator: function (chrs, maskset, pos, strict, opts) {
  2402. var isValid = opts.regex.mspre.test(chrs);
  2403. if (!strict && !isValid) {
  2404. isValid = opts.regex.ms.test("0" + chrs);
  2405. if (isValid) {
  2406. maskset.buffer[pos] = "0";
  2407. pos++;
  2408. return { "pos": pos };
  2409. }
  2410. }
  2411. return isValid;
  2412. }, cardinality: 1
  2413. }]
  2414. },
  2415. 't': { //am/pm
  2416. validator: function (chrs, maskset, pos, strict, opts) {
  2417. return opts.regex.ampm.test(chrs + "m");
  2418. },
  2419. casing: "lower",
  2420. cardinality: 1
  2421. }
  2422. },
  2423. insertMode: false,
  2424. autoUnmask: false
  2425. },
  2426. 'datetime12': {
  2427. mask: "1/2/y h:s t\\m",
  2428. placeholder: "dd/mm/yyyy hh:mm xm",
  2429. alias: "datetime",
  2430. hourFormat: "12"
  2431. },
  2432. 'hh:mm t': {
  2433. mask: "h:s t\\m",
  2434. placeholder: "hh:mm xm",
  2435. alias: "datetime",
  2436. hourFormat: "12"
  2437. },
  2438. 'h:s t': {
  2439. mask: "h:s t\\m",
  2440. placeholder: "hh:mm xm",
  2441. alias: "datetime",
  2442. hourFormat: "12"
  2443. },
  2444. 'hh:mm:ss': {
  2445. mask: "h:s:s",
  2446. placeholder: "hh:mm:ss",
  2447. alias: "datetime",
  2448. autoUnmask: false
  2449. },
  2450. 'hh:mm': {
  2451. mask: "h:s",
  2452. placeholder: "hh:mm",
  2453. alias: "datetime",
  2454. autoUnmask: false
  2455. },
  2456. 'date': {
  2457. alias: "dd/mm/yyyy" // "mm/dd/yyyy"
  2458. },
  2459. 'mm/yyyy': {
  2460. mask: "1/y",
  2461. placeholder: "mm/yyyy",
  2462. leapday: "donotuse",
  2463. separator: '/',
  2464. alias: "mm/dd/yyyy"
  2465. }
  2466. });
  2467. return $.fn.inputmask;
  2468. }));
  2469. /*
  2470. Input Mask plugin extensions
  2471. http://github.com/RobinHerbots/jquery.inputmask
  2472. Copyright (c) 2010 - 2014 Robin Herbots
  2473. Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  2474. Version: 3.1.1
  2475. Optional extensions on the jquery.inputmask base
  2476. */
  2477. (function (factory) {
  2478. if (typeof define === 'function' && define.amd) {
  2479. define(['jquery', './jquery.inputmask'], factory);
  2480. } else {
  2481. factory(jQuery);
  2482. }
  2483. }(function ($) {
  2484. //number aliases
  2485. $.extend($.inputmask.defaults.aliases, {
  2486. 'numeric': {
  2487. mask: function (opts) {
  2488. if (opts.repeat !== 0 && isNaN(opts.integerDigits)) {
  2489. opts.integerDigits = opts.repeat;
  2490. }
  2491. opts.repeat = 0;
  2492. opts.autoGroup = opts.autoGroup && opts.groupSeparator != "";
  2493. if (opts.autoGroup && isFinite(opts.integerDigits)) {
  2494. var seps = Math.floor(opts.integerDigits / opts.groupSize);
  2495. var mod = opts.integerDigits % opts.groupSize;
  2496. opts.integerDigits += mod == 0 ? seps - 1 : seps;
  2497. }
  2498. opts.definitions[":"].placeholder = opts.radixPoint;
  2499. var mask = opts.prefix;
  2500. mask += "[+]";
  2501. mask += "~{1," + opts.integerDigits + "}";
  2502. if (opts.digits != undefined && (isNaN(opts.digits) || parseInt(opts.digits) > 0)) {
  2503. if (opts.digitsOptional)
  2504. mask += "[" + ":" + "~{" + opts.digits + "}]";
  2505. else mask += ":" + "~{" + opts.digits + "}";
  2506. }
  2507. mask += opts.suffix;
  2508. return mask;
  2509. },
  2510. placeholder: "",
  2511. greedy: false,
  2512. digits: "*", //number of fractionalDigits
  2513. digitsOptional: true,
  2514. groupSeparator: "",//",", // | "."
  2515. radixPoint: ".",
  2516. groupSize: 3,
  2517. autoGroup: false,
  2518. allowPlus: true,
  2519. allowMinus: true,
  2520. integerDigits: "+", //number of integerDigits
  2521. prefix: "",
  2522. suffix: "",
  2523. rightAlign: true,
  2524. postFormat: function (buffer, pos, reformatOnly, opts) { //this needs to be removed // this is crap
  2525. var needsRefresh = false, charAtPos = buffer[pos];
  2526. if (opts.groupSeparator == "" ||
  2527. ($.inArray(opts.radixPoint, buffer) != -1 && pos >= $.inArray(opts.radixPoint, buffer)) ||
  2528. new RegExp('[-\+]').test(charAtPos)
  2529. ) return { pos: pos };
  2530. var cbuf = buffer.slice();
  2531. if (charAtPos == opts.groupSeparator) {
  2532. cbuf.splice(pos--, 1);
  2533. charAtPos = cbuf[pos];
  2534. }
  2535. if (reformatOnly) cbuf[pos] = "?"; else cbuf.splice(pos, 0, "?"); //set position indicator
  2536. var bufVal = cbuf.join('');
  2537. if (opts.autoGroup || (reformatOnly && bufVal.indexOf(opts.groupSeparator) != -1)) {
  2538. var escapedGroupSeparator = $.inputmask.escapeRegex.call(this, opts.groupSeparator);
  2539. needsRefresh = bufVal.indexOf(opts.groupSeparator) == 0;
  2540. bufVal = bufVal.replace(new RegExp(escapedGroupSeparator, "g"), '');
  2541. var radixSplit = bufVal.split(opts.radixPoint);
  2542. bufVal = radixSplit[0];
  2543. if (bufVal != (opts.prefix + "?0") && bufVal.length >= (opts.groupSize + opts.prefix.length)) {
  2544. needsRefresh = true;
  2545. var reg = new RegExp('([-\+]?[\\d\?]+)([\\d\?]{' + opts.groupSize + '})');
  2546. while (reg.test(bufVal)) {
  2547. bufVal = bufVal.replace(reg, '$1' + opts.groupSeparator + '$2');
  2548. bufVal = bufVal.replace(opts.groupSeparator + opts.groupSeparator, opts.groupSeparator);
  2549. }
  2550. }
  2551. if (radixSplit.length > 1)
  2552. bufVal += opts.radixPoint + radixSplit[1];
  2553. }
  2554. buffer.length = bufVal.length; //align the length
  2555. for (var i = 0, l = bufVal.length; i < l; i++) {
  2556. buffer[i] = bufVal.charAt(i);
  2557. }
  2558. var newPos = $.inArray("?", buffer);
  2559. if (reformatOnly) buffer[newPos] = charAtPos; else buffer.splice(newPos, 1);
  2560. return { pos: newPos, "refreshFromBuffer": needsRefresh };
  2561. },
  2562. onKeyDown: function (e, buffer, caretPos, opts) {
  2563. if (e.keyCode == opts.keyCode.TAB && opts.placeholder.charAt(0) != "0") {
  2564. var radixPosition = $.inArray(opts.radixPoint, buffer);
  2565. if (radixPosition != -1 && isFinite(opts.digits)) {
  2566. for (var i = 1; i <= opts.digits; i++) {
  2567. if (buffer[radixPosition + i] == undefined || buffer[radixPosition + i] == opts.placeholder.charAt(0)) buffer[radixPosition + i] = "0";
  2568. }
  2569. return { "refreshFromBuffer": { start: ++radixPosition, end: radixPosition + opts.digits } };
  2570. }
  2571. } else if (opts.autoGroup && (e.keyCode == opts.keyCode.DELETE || e.keyCode == opts.keyCode.BACKSPACE)) {
  2572. var rslt = opts.postFormat(buffer, caretPos - 1, true, opts);
  2573. rslt.caret = rslt.pos + 1;
  2574. return rslt;
  2575. }
  2576. },
  2577. onKeyPress: function (e, buffer, caretPos, opts) {
  2578. if (opts.autoGroup /*&& String.fromCharCode(k) == opts.radixPoint*/) {
  2579. var rslt = opts.postFormat(buffer, caretPos - 1, true, opts);
  2580. rslt.caret = rslt.pos + 1;
  2581. return rslt;
  2582. }
  2583. },
  2584. regex: {
  2585. integerPart: function (opts) { return new RegExp('[-\+]?\\d+'); }
  2586. },
  2587. negationhandler: function (chrs, buffer, pos, strict, opts) {
  2588. if (!strict && opts.allowMinus && chrs === "-") {
  2589. var matchRslt = buffer.join('').match(opts.regex.integerPart(opts));
  2590. if (matchRslt.length > 0) {
  2591. if (buffer[matchRslt.index] == "+") {
  2592. return { "pos": matchRslt.index, "c": "-", "remove": matchRslt.index, "caret": pos };
  2593. } else if (buffer[matchRslt.index] == "-") {
  2594. return { "remove": matchRslt.index, "caret": pos - 1 };
  2595. } else {
  2596. return { "pos": matchRslt.index, "c": "-", "caret": pos + 1 };
  2597. }
  2598. }
  2599. }
  2600. return false;
  2601. },
  2602. definitions: {
  2603. '~': {
  2604. validator: function (chrs, maskset, pos, strict, opts) {
  2605. var isValid = opts.negationhandler(chrs, maskset.buffer, pos, strict, opts);
  2606. if (!isValid) {
  2607. isValid = strict ? new RegExp("[0-9" + $.inputmask.escapeRegex.call(this, opts.groupSeparator) + "]").test(chrs) : new RegExp("[0-9]").test(chrs);
  2608. if (isValid === true) isValid = { pos: pos };
  2609. if (isValid != false && !strict) {
  2610. //handle 0 for integerpart
  2611. var matchRslt = maskset.buffer.join('').match(opts.regex.integerPart(opts)), radixPosition = $.inArray(opts.radixPoint, maskset.buffer);
  2612. if (matchRslt) {
  2613. if (matchRslt["0"].indexOf("0") == 0 && pos >= opts.prefix.length) {
  2614. if (radixPosition == -1 || (pos <= radixPosition && maskset["validPositions"][radixPosition] == undefined)) {
  2615. maskset.buffer.splice(matchRslt.index, 1);
  2616. pos = pos > matchRslt.index ? pos - 1 : matchRslt.index;
  2617. $.extend(isValid, { "pos": pos, "remove": matchRslt.index });
  2618. } else if (pos > matchRslt.index && pos <= radixPosition) {
  2619. maskset.buffer.splice(matchRslt.index, 1);
  2620. pos = pos > matchRslt.index ? pos - 1 : matchRslt.index;
  2621. $.extend(isValid, { "pos": pos, "remove": matchRslt.index });
  2622. }
  2623. } else if (chrs == "0" && pos <= matchRslt.index) {
  2624. return false;
  2625. }
  2626. }
  2627. //handle overwrite when fixed precision
  2628. if (opts.digitsOptional === false && pos > radixPosition) {
  2629. return { "pos": pos, "remove": pos };
  2630. }
  2631. }
  2632. }
  2633. return isValid;
  2634. },
  2635. cardinality: 1,
  2636. prevalidator: null
  2637. },
  2638. '+': {
  2639. validator: function (chrs, maskset, pos, strict, opts) {
  2640. var signed = "[";
  2641. if (opts.allowMinus === true) signed += "-";
  2642. if (opts.allowPlus === true) signed += "\+";
  2643. signed += "]";
  2644. var isValid = new RegExp(signed).test(chrs);
  2645. return isValid;
  2646. },
  2647. cardinality: 1,
  2648. prevalidator: null,
  2649. placeholder: ""
  2650. },
  2651. ':': {
  2652. validator: function (chrs, maskset, pos, strict, opts) {
  2653. var isValid = opts.negationhandler(chrs, maskset.buffer, pos, strict, opts);
  2654. if (!isValid) {
  2655. var radix = "[" + $.inputmask.escapeRegex.call(this, opts.radixPoint) + "]";
  2656. isValid = new RegExp(radix).test(chrs);
  2657. if (isValid && maskset["validPositions"][pos] && maskset["validPositions"][pos]["match"].placeholder == opts.radixPoint) {
  2658. isValid = { "pos": pos, "remove": pos };
  2659. }
  2660. }
  2661. return isValid;
  2662. },
  2663. cardinality: 1,
  2664. prevalidator: null,
  2665. placeholder: "" //radixpoint will be set in the mask function
  2666. }
  2667. },
  2668. insertMode: true,
  2669. autoUnmask: false,
  2670. onUnMask: function (maskedValue, unmaskedValue, opts) {
  2671. var processValue = maskedValue.replace(opts.prefix, "");
  2672. processValue = processValue.replace(opts.suffix, "");
  2673. processValue = processValue.replace(new RegExp($.inputmask.escapeRegex.call(this, opts.groupSeparator), "g"), "");
  2674. //processValue = processValue.replace($.inputmask.escapeRegex.call(this, opts.radixPoint), ".");
  2675. return processValue;
  2676. },
  2677. isComplete: function (buffer, opts) {
  2678. var maskedValue = buffer.join(''), bufClone = buffer.slice();
  2679. //verify separator positions
  2680. opts.postFormat(bufClone, 0, true, opts);
  2681. if (bufClone.join('') != maskedValue) return false;
  2682. var processValue = maskedValue.replace(opts.prefix, "");
  2683. processValue = processValue.replace(opts.suffix, "");
  2684. processValue = processValue.replace(new RegExp($.inputmask.escapeRegex.call(this, opts.groupSeparator), "g"), "");
  2685. processValue = processValue.replace($.inputmask.escapeRegex.call(this, opts.radixPoint), ".");
  2686. return isFinite(processValue);
  2687. },
  2688. onBeforeMask: function (initialValue, opts) {
  2689. if (isFinite(initialValue)) {
  2690. return initialValue.toString().replace(".", opts.radixPoint);
  2691. } else {
  2692. var kommaMatches = initialValue.match(/,/g);
  2693. var dotMatches = initialValue.match(/\./g);
  2694. if (dotMatches && kommaMatches) {
  2695. if (dotMatches.length > kommaMatches.length) {
  2696. initialValue = initialValue.replace(/\./g, "");
  2697. initialValue = initialValue.replace(",", opts.radixPoint);
  2698. } else if (kommaMatches.length > dotMatches.length) {
  2699. initialValue = initialValue.replace(/,/g, "");
  2700. initialValue = initialValue.replace(".", opts.radixPoint);
  2701. }
  2702. } else {
  2703. initialValue = initialValue.replace(new RegExp($.inputmask.escapeRegex.call(this, opts.groupSeparator), "g"), "");
  2704. }
  2705. return initialValue;
  2706. }
  2707. }
  2708. },
  2709. 'decimal': {
  2710. alias: "numeric"
  2711. },
  2712. 'integer': {
  2713. alias: "numeric",
  2714. digits: "0"
  2715. }
  2716. });
  2717. return $.fn.inputmask;
  2718. }));
  2719. /*
  2720. Input Mask plugin extensions
  2721. http://github.com/RobinHerbots/jquery.inputmask
  2722. Copyright (c) 2010 - 2014 Robin Herbots
  2723. Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  2724. Version: 3.1.1
  2725. Regex extensions on the jquery.inputmask base
  2726. Allows for using regular expressions as a mask
  2727. */
  2728. (function (factory) {
  2729. if (typeof define === 'function' && define.amd) {
  2730. define(['jquery', './jquery.inputmask'], factory);
  2731. } else {
  2732. factory(jQuery);
  2733. }
  2734. }(function ($) {
  2735. $.extend($.inputmask.defaults.aliases, { // $(selector).inputmask("Regex", { regex: "[0-9]*"}
  2736. 'Regex': {
  2737. mask: "r",
  2738. greedy: false,
  2739. repeat: "*",
  2740. regex: null,
  2741. regexTokens: null,
  2742. //Thx to https://github.com/slevithan/regex-colorizer for the tokenizer regex
  2743. tokenizer: /\[\^?]?(?:[^\\\]]+|\\[\S\s]?)*]?|\\(?:0(?:[0-3][0-7]{0,2}|[4-7][0-7]?)?|[1-9][0-9]*|x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4}|c[A-Za-z]|[\S\s]?)|\((?:\?[:=!]?)?|(?:[?*+]|\{[0-9]+(?:,[0-9]*)?\})\??|[^.?*+^${[()|\\]+|./g,
  2744. quantifierFilter: /[0-9]+[^,]/,
  2745. isComplete: function(buffer, opts){
  2746. return new RegExp(opts.regex).test(buffer.join(''));
  2747. },
  2748. definitions: {
  2749. 'r': {
  2750. validator: function (chrs, maskset, pos, strict, opts) {
  2751. function regexToken(isGroup, isQuantifier) {
  2752. this.matches = [];
  2753. this.isGroup = isGroup || false;
  2754. this.isQuantifier = isQuantifier || false;
  2755. this.quantifier = { min: 1, max: 1 };
  2756. this.repeaterPart = undefined;
  2757. }
  2758. function analyseRegex() {
  2759. var currentToken = new regexToken(), match, m, opengroups = [];
  2760. opts.regexTokens = [];
  2761. // The tokenizer regex does most of the tokenization grunt work
  2762. while (match = opts.tokenizer.exec(opts.regex)) {
  2763. m = match[0];
  2764. switch (m.charAt(0)) {
  2765. case "(": // Group opening
  2766. opengroups.push(new regexToken(true));
  2767. break;
  2768. case ")": // Group closing
  2769. var groupToken = opengroups.pop();
  2770. if (opengroups.length > 0) {
  2771. opengroups[opengroups.length - 1]["matches"].push(groupToken);
  2772. } else {
  2773. currentToken.matches.push(groupToken);
  2774. }
  2775. break;
  2776. case "{": case "+": case "*": //Quantifier
  2777. var quantifierToken = new regexToken(false, true);
  2778. m = m.replace(/[{}]/g, "");
  2779. var mq = m.split(","), mq0 = isNaN(mq[0]) ? mq[0] : parseInt(mq[0]), mq1 = mq.length == 1 ? mq0 : (isNaN(mq[1]) ? mq[1] : parseInt(mq[1]));
  2780. quantifierToken.quantifier = { min: mq0, max: mq1 };
  2781. if (opengroups.length > 0) {
  2782. var matches = opengroups[opengroups.length - 1]["matches"];
  2783. match = matches.pop();
  2784. if (!match["isGroup"]) {
  2785. var groupToken = new regexToken(true);
  2786. groupToken.matches.push(match);
  2787. match = groupToken;
  2788. }
  2789. matches.push(match);
  2790. matches.push(quantifierToken);
  2791. } else {
  2792. match = currentToken.matches.pop();
  2793. if (!match["isGroup"]) {
  2794. var groupToken = new regexToken(true);
  2795. groupToken.matches.push(match);
  2796. match = groupToken;
  2797. }
  2798. currentToken.matches.push(match);
  2799. currentToken.matches.push(quantifierToken);
  2800. }
  2801. break;
  2802. default:
  2803. if (opengroups.length > 0) {
  2804. opengroups[opengroups.length - 1]["matches"].push(m);
  2805. } else {
  2806. currentToken.matches.push(m);
  2807. }
  2808. break;
  2809. }
  2810. }
  2811. if (currentToken.matches.length > 0)
  2812. opts.regexTokens.push(currentToken);
  2813. };
  2814. function validateRegexToken(token, fromGroup) {
  2815. var isvalid = false;
  2816. if (fromGroup) {
  2817. regexPart += "(";
  2818. openGroupCount++;
  2819. }
  2820. for (var mndx = 0; mndx < token["matches"].length; mndx++) {
  2821. var matchToken = token["matches"][mndx];
  2822. if (matchToken["isGroup"] == true) {
  2823. isvalid = validateRegexToken(matchToken, true);
  2824. } else if (matchToken["isQuantifier"] == true) {
  2825. var crrntndx = $.inArray(matchToken, token["matches"]),
  2826. matchGroup = token["matches"][crrntndx - 1];
  2827. var regexPartBak = regexPart;
  2828. if (isNaN(matchToken.quantifier.max)) {
  2829. while (matchToken["repeaterPart"] && matchToken["repeaterPart"] != regexPart && matchToken["repeaterPart"].length > regexPart.length) {
  2830. isvalid = validateRegexToken(matchGroup, true);
  2831. if (isvalid) break;
  2832. }
  2833. isvalid = isvalid || validateRegexToken(matchGroup, true);
  2834. if (isvalid) matchToken["repeaterPart"] = regexPart;
  2835. regexPart = regexPartBak + matchToken.quantifier.max;
  2836. } else {
  2837. for (var i = 0, qm = matchToken.quantifier.max - 1; i < qm; i++) {
  2838. isvalid = validateRegexToken(matchGroup, true);
  2839. if (isvalid) break;
  2840. }
  2841. regexPart = regexPartBak + "{" + matchToken.quantifier.min + "," + matchToken.quantifier.max + "}";
  2842. }
  2843. } else if (matchToken["matches"] != undefined) {
  2844. for (var k = 0; k < matchToken.length; k++) {
  2845. isvalid = validateRegexToken(matchToken[k], fromGroup);
  2846. if (isvalid) break;
  2847. }
  2848. } else {
  2849. var testExp;
  2850. if (matchToken.charAt(0) == "[") {
  2851. testExp = regexPart;
  2852. testExp += matchToken;
  2853. for (var j = 0; j < openGroupCount; j++) {
  2854. testExp += ")";
  2855. }
  2856. var exp = new RegExp("^(" + testExp + ")$");
  2857. isvalid = exp.test(bufferStr);
  2858. } else {
  2859. for (var l = 0, tl = matchToken.length; l < tl; l++) {
  2860. if (matchToken.charAt(l) == "\\") continue;
  2861. testExp = regexPart;
  2862. testExp += matchToken.substr(0, l + 1);
  2863. testExp = testExp.replace(/\|$/, "");
  2864. for (var j = 0; j < openGroupCount; j++) {
  2865. testExp += ")";
  2866. }
  2867. var exp = new RegExp("^(" + testExp + ")$");
  2868. isvalid = exp.test(bufferStr);
  2869. if (isvalid) break;
  2870. }
  2871. }
  2872. regexPart += matchToken;
  2873. }
  2874. if (isvalid) break;
  2875. }
  2876. if (fromGroup) {
  2877. regexPart += ")";
  2878. openGroupCount--;
  2879. }
  2880. return isvalid;
  2881. }
  2882. if (opts.regexTokens == null) {
  2883. analyseRegex();
  2884. }
  2885. var cbuffer = maskset.buffer.slice(), regexPart = "", isValid = false, openGroupCount = 0;
  2886. cbuffer.splice(pos, 0, chrs);
  2887. var bufferStr = cbuffer.join('');
  2888. for (var i = 0; i < opts.regexTokens.length; i++) {
  2889. var regexToken = opts.regexTokens[i];
  2890. isValid = validateRegexToken(regexToken, regexToken["isGroup"]);
  2891. if (isValid) break;
  2892. }
  2893. return isValid;
  2894. },
  2895. cardinality: 1
  2896. }
  2897. }
  2898. }
  2899. });
  2900. return $.fn.inputmask;
  2901. }));
  2902. /*
  2903. Input Mask plugin extensions
  2904. http://github.com/RobinHerbots/jquery.inputmask
  2905. Copyright (c) 2010 - 2014 Robin Herbots
  2906. Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php)
  2907. Version: 3.1.1
  2908. Phone extension.
  2909. When using this extension make sure you specify the correct url to get the masks
  2910. $(selector).inputmask("phone", {
  2911. url: "Scripts/jquery.inputmask/phone-codes/phone-codes.json",
  2912. onKeyValidation: function () { //show some metadata in the console
  2913. console.log($(this).inputmask("getmetadata")["name_en"]);
  2914. }
  2915. });
  2916. */
  2917. (function (factory) {
  2918. if (typeof define === 'function' && define.amd) {
  2919. define(['jquery', './jquery.inputmask'], factory);
  2920. } else {
  2921. factory(jQuery);
  2922. }
  2923. }(function ($) {
  2924. $.extend($.inputmask.defaults.aliases, {
  2925. 'phone': {
  2926. url: "phone-codes/phone-codes.json",
  2927. mask: function (opts) {
  2928. opts.definitions = {
  2929. 'p': {
  2930. validator: function () { return false; },
  2931. cardinality: 1
  2932. },
  2933. '#': {
  2934. validator: "[0-9]",
  2935. cardinality: 1
  2936. }
  2937. };
  2938. var maskList = [];
  2939. $.ajax({
  2940. url: opts.url,
  2941. async: false,
  2942. dataType: 'json',
  2943. success: function (response) {
  2944. maskList = response;
  2945. }
  2946. });
  2947. maskList.splice(0, 0, "+pp(pp)pppppppp");
  2948. return maskList;
  2949. },
  2950. nojumps: true,
  2951. nojumpsThreshold: 1
  2952. },
  2953. 'phonebe': {
  2954. url: "phone-codes/phone-be.json",
  2955. mask: function (opts) {
  2956. opts.definitions = {
  2957. 'p': {
  2958. validator: function () { return false; },
  2959. cardinality: 1
  2960. },
  2961. '#': {
  2962. validator: "[0-9]",
  2963. cardinality: 1
  2964. }
  2965. };
  2966. var maskList = [];
  2967. $.ajax({
  2968. url: opts.url,
  2969. async: false,
  2970. dataType: 'json',
  2971. success: function (response) {
  2972. maskList = response;
  2973. }
  2974. });
  2975. maskList.splice(0, 0, "+32(pp)pppppppp");
  2976. return maskList;
  2977. },
  2978. nojumps: true,
  2979. nojumpsThreshold: 4
  2980. }
  2981. });
  2982. return $.fn.inputmask;
  2983. }));