inputmask.js 90 KB

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