| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239 |
- /**
- * BootstrapValidator (http://github.com/nghuuphuoc/bootstrapvalidator)
- *
- * A jQuery plugin to validate form fields. Use with Bootstrap 3
- *
- * @version v0.3.1-dev
- * @author https://twitter.com/nghuuphuoc
- * @copyright (c) 2013 - 2014 Nguyen Huu Phuoc
- * @license MIT
- */
- (function($) {
- var BootstrapValidator = function(form, options) {
- this.$form = $(form);
- this.options = $.extend({}, BootstrapValidator.DEFAULT_OPTIONS, options);
- this.dfds = {}; // Array of deferred
- this.results = {}; // Validating results
- this.invalidField = null; // First invalid field
- this.$submitButton = null; // The submit button which is clicked to submit form
- this._init();
- this.STATUS_NOT_VALIDATED = 'NOT_VALIDATED';
- this.STATUS_VALIDATING = 'VALIDATING';
- this.STATUS_INVALID = 'INVALID';
- this.STATUS_VALID = 'VALID';
- };
- // The default options
- BootstrapValidator.DEFAULT_OPTIONS = {
- // The form CSS class
- elementClass: 'bootstrap-validator-form',
- // Default invalid message
- message: 'This value is not valid',
- // Shows ok/error/loading icons based on the field validity.
- // This feature requires Bootstrap v3.1.0 or later (http://getbootstrap.com/css/#forms-control-validation).
- // Since Bootstrap doesn't provide any methods to know its version, this option cannot be on/off automatically.
- // In other word, to use this feature you have to upgrade your Bootstrap to v3.1.0 or later.
- //
- // Examples:
- // - Use Glyphicons icons:
- // feedbackIcons: {
- // valid: 'glyphicon glyphicon-ok',
- // invalid: 'glyphicon glyphicon-remove',
- // validating: 'glyphicon glyphicon-refresh'
- // }
- // - Use FontAwesome icons:
- // feedbackIcons: {
- // valid: 'fa fa-check',
- // invalid: 'fa fa-times',
- // validating: 'fa fa-refresh'
- // }
- feedbackIcons: null,
- // The submit buttons selector
- // These buttons will be disabled to prevent the valid form from multiple submissions
- submitButtons: 'button[type="submit"]',
- // The custom submit handler
- // It will prevent the form from the default submission
- //
- // submitHandler: function(validator, form) {
- // - validator is the BootstrapValidator instance
- // - form is the jQuery object present the current form
- // }
- submitHandler: null,
- // Live validating option
- // Can be one of 3 values:
- // - enabled: The plugin validates fields as soon as they are changed
- // - disabled: Disable the live validating. The error messages are only shown after the form is submitted
- // - submitted: The live validating is enabled after the form is submitted
- live: 'enabled',
- // Map the field name with validator rules
- fields: null
- };
- BootstrapValidator.prototype = {
- constructor: BootstrapValidator,
- /**
- * Init form
- */
- _init: function() {
- if (this.options.fields == null) {
- return;
- }
- var that = this;
- this.$form
- // Disable client side validation in HTML 5
- .attr('novalidate', 'novalidate')
- .addClass(this.options.elementClass)
- // Disable the default submission first
- .on('submit.bootstrapValidator', function(e) {
- e.preventDefault();
- that.validate();
- })
- .find(this.options.submitButtons)
- .on('click', function() {
- that.$submitButton = $(this);
- });
- for (var field in this.options.fields) {
- this._initField(field);
- }
- this._setLiveValidating();
- },
- /**
- * Init field
- *
- * @param {String} field The field name
- */
- _initField: function(field) {
- if (this.options.fields[field] == null || this.options.fields[field].validators == null) {
- return;
- }
- this.dfds[field] = {};
- this.results[field] = {};
- var fields = this.getFieldElements(field);
- // We don't need to validate non-existing fields
- if (fields == null) {
- delete this.options.fields[field];
- delete this.dfds[field];
- return;
- }
- // Create help block elements for showing the error messages
- var $field = $(fields[0]),
- $parent = $field.parents('.form-group'),
- $message = this._getMessageContainer($field);
- $field.data('bootstrapValidator.messageContainer', $message);
- for (var validatorName in this.options.fields[field].validators) {
- if (!$.fn.bootstrapValidator.validators[validatorName]) {
- delete this.options.fields[field].validators[validatorName];
- continue;
- }
- this.results[field][validatorName] = this.STATUS_NOT_VALIDATED;
- $('<small/>')
- .css('display', 'none')
- .attr('data-bs-validator', validatorName)
- .addClass('help-block')
- .appendTo($message);
- }
- // Prepare the feedback icons
- // Available from Bootstrap 3.1 (http://getbootstrap.com/css/#forms-control-validation)
- if (this.options.feedbackIcons) {
- $parent.addClass('has-feedback');
- var $icon = $('<i/>').css('display', 'none').addClass('form-control-feedback').insertAfter($(fields[fields.length - 1]));
- // The feedback icon does not render correctly if there is no label
- // https://github.com/twbs/bootstrap/issues/12873
- if ($parent.find('label').length == 0) {
- $icon.css('top', 0);
- }
- }
- if (this.options.fields[field]['enabled'] == null) {
- this.options.fields[field]['enabled'] = true;
- }
- // Whenever the user change the field value, mark it as not validated yet
- var that = this,
- type = fields.attr('type'),
- event = ('radio' == type || 'checkbox' == type || 'SELECT' == fields[0].tagName) ? 'change' : 'keyup';
- fields.on(event, function() {
- that.setNotValidated(field);
- });
- },
- /**
- * Get the element to place the error messages
- *
- * @param {jQuery} $field The field element
- * @returns {jQuery}
- */
- _getMessageContainer: function($field) {
- var $parent = $field.parent();
- if ($parent.hasClass('form-group')) {
- return $parent;
- }
- var cssClasses = $parent.attr('class');
- if (!cssClasses) {
- return this._getMessageContainer($parent);
- }
- cssClasses = cssClasses.split(' ');
- var n = cssClasses.length;
- for (var i = 0; i < n; i++) {
- if (/^col-(xs|sm|md|lg)-\d+$/.test(cssClasses[i]) || /^col-(xs|sm|md|lg)-offset-\d+$/.test(cssClasses[i])) {
- return $parent;
- }
- }
- return this._getMessageContainer($parent);
- },
- /**
- * Enable live validating
- */
- _setLiveValidating: function() {
- if ('enabled' == this.options.live) {
- var that = this;
- for (var field in this.options.fields) {
- (function(f) {
- var fields = that.getFieldElements(f);
- if (fields) {
- var type = fields.attr('type'),
- event = ('radio' == type || 'checkbox' == type || 'SELECT' == fields[0].tagName) ? 'change' : 'keyup';
- fields.on(event, function() {
- that.validateField(f);
- });
- }
- })(field);
- }
- }
- },
- /**
- * Disable/Enable submit buttons
- *
- * @param {Boolean} disabled
- */
- _disableSubmitButtons: function(disabled) {
- if (!disabled) {
- this.$form.find(this.options.submitButtons).removeAttr('disabled');
- } else if (this.options.live != 'disabled') {
- // Don't disable if the live validating mode is disabled
- this.$form.find(this.options.submitButtons).attr('disabled', 'disabled');
- }
- },
- /**
- * Called when all validations are completed
- */
- _submit: function() {
- if (!this.isValid()) {
- if ('submitted' == this.options.live) {
- this.options.live = 'enabled';
- this._setLiveValidating();
- }
- // Focus to the first invalid field
- if (this.invalidField) {
- this.getFieldElements(this.invalidField).focus();
- }
- return;
- }
- this._disableSubmitButtons(true);
- // Call the custom submission if enabled
- if (this.options.submitHandler && 'function' == typeof this.options.submitHandler) {
- this.options.submitHandler.call(this, this, this.$form, this.$submitButton);
- } else {
- // Submit form
- this.$form.off('submit.bootstrapValidator').submit();
- }
- },
- // --- Public methods ---
- /**
- * Retrieve the field elements by given name
- *
- * @param {String} field The field name
- * @returns {null|jQuery[]}
- */
- getFieldElements: function(field) {
- var fields = this.$form.find('[name="' + field + '"]');
- return (fields.length == 0) ? null : fields;
- },
- /**
- * Validate the form
- *
- * @return {BootstrapValidator}
- */
- validate: function() {
- if (!this.options.fields) {
- return this;
- }
- this._disableSubmitButtons(true);
- for (var field in this.options.fields) {
- this.validateField(field);
- }
- this._submit();
- return this;
- },
- /**
- * Validate given field
- *
- * @param {String} field The field name
- */
- validateField: function(field) {
- if (!this.options.fields[field]['enabled']) {
- return;
- }
- var that = this,
- fields = this.getFieldElements(field),
- $field = $(fields[0]),
- validators = this.options.fields[field].validators,
- validatorName,
- validateResult;
- // We don't need to validate disabled field
- if (fields.length == 1 && fields.is(':disabled')) {
- delete this.options.fields[field];
- delete this.dfds[field];
- return;
- }
- for (validatorName in validators) {
- if (this.dfds[field][validatorName]) {
- this.dfds[field][validatorName].reject();
- }
- // Don't validate field if it is already done
- if (this.results[field][validatorName] == this.STATUS_VALID || this.results[field][validatorName] == this.STATUS_INVALID) {
- continue;
- }
- this.results[field][validatorName] = this.STATUS_VALIDATING;
- validateResult = $.fn.bootstrapValidator.validators[validatorName].validate(this, $field, validators[validatorName]);
- if ('object' == typeof validateResult) {
- this.updateStatus($field, validatorName, this.STATUS_VALIDATING);
- this.dfds[field][validatorName] = validateResult;
- validateResult.done(function(isValid, v) {
- // v is validator name
- delete that.dfds[field][v];
- isValid ? that.updateStatus($field, v, that.STATUS_VALID)
- : that.updateStatus($field, v, that.STATUS_INVALID);
- if (isValid && that.options.live == 'disabled') {
- that._submit();
- }
- });
- } else if ('boolean' == typeof validateResult) {
- validateResult ? this.updateStatus($field, validatorName, this.STATUS_VALID)
- : this.updateStatus($field, validatorName, this.STATUS_INVALID);
- }
- }
- },
- /**
- * Check the form validity
- *
- * @returns {Boolean}
- */
- isValid: function() {
- var field, validatorName;
- for (field in this.results) {
- if (!this.options.fields[field]['enabled']) {
- continue;
- }
- for (validatorName in this.results[field]) {
- if (this.results[field][validatorName] == this.STATUS_NOT_VALIDATED || this.results[field][validatorName] == this.STATUS_VALIDATING) {
- return false;
- }
- if (this.results[field][validatorName] == this.STATUS_INVALID) {
- this.invalidField = field;
- return false;
- }
- }
- }
- return true;
- },
- /**
- * Update field status
- *
- * @param {jQuery} $field The field element
- * @param {String} validatorName The validator name
- * @param {String} status The status
- * Can be STATUS_VALIDATING, STATUS_INVALID, STATUS_VALID
- * @return {BootstrapValidator}
- */
- updateStatus: function($field, validatorName, status) {
- var that = this,
- field = $field.attr('name'),
- validator = this.options.fields[field].validators[validatorName],
- message = validator.message || this.options.message,
- $parent = $field.parents('.form-group'),
- $message = $field.data('bootstrapValidator.messageContainer'),
- $errors = $message.find('.help-block[data-bs-validator]');
- switch (status) {
- case this.STATUS_VALIDATING:
- this.results[field][validatorName] = this.STATUS_VALIDATING;
- this._disableSubmitButtons(true);
- $parent.removeClass('has-success').removeClass('has-error');
- // TODO: Show validating message
- $errors.filter('.help-block[data-bs-validator="' + validatorName + '"]').html(message).hide();
- if (this.options.feedbackIcons) {
- // Show validating icon
- $message.find('.form-control-feedback').removeClass(this.options.feedbackIcons.valid).removeClass(this.options.feedbackIcons.invalid).addClass(this.options.feedbackIcons.validating).show();
- }
- break;
- case this.STATUS_INVALID:
- this.results[field][validatorName] = this.STATUS_INVALID;
- this._disableSubmitButtons(true);
- // Add has-error class to parent element
- $parent.removeClass('has-success').addClass('has-error');
- $errors.filter('[data-bs-validator="' + validatorName + '"]').html(message).show();
- if (this.options.feedbackIcons) {
- // Show invalid icon
- $message.find('.form-control-feedback').removeClass(this.options.feedbackIcons.valid).removeClass(this.options.feedbackIcons.validating).addClass(this.options.feedbackIcons.invalid).show();
- }
- break;
- case this.STATUS_VALID:
- this.results[field][validatorName] = this.STATUS_VALID;
- // Hide error element
- $errors.filter('[data-bs-validator="' + validatorName + '"]').hide();
- // If the field is valid
- if ($errors.filter(function() {
- var display = $(this).css('display'), v = $(this).attr('data-bs-validator');
- return ('block' == display) || (that.results[field][v] != that.STATUS_VALID);
- }).length == 0
- ) {
- this._disableSubmitButtons(false);
- $parent.removeClass('has-error').addClass('has-success');
- // Show valid icon
- if (this.options.feedbackIcons) {
- $message.find('.form-control-feedback').removeClass(this.options.feedbackIcons.invalid).removeClass(this.options.feedbackIcons.validating).addClass(this.options.feedbackIcons.valid).show();
- }
- }
- break;
- default:
- break;
- }
- return this;
- },
- /**
- * Mark a field as not validated yet
- * The plugin doesn't re-validate a field if it is marked as valid.
- * In some cases, we need to force the plugin validate it again
- *
- * @param {String} field The field name
- * @returns {BootstrapValidator}
- */
- setNotValidated: function(field) {
- for (var v in this.options.fields[field].validators) {
- this.results[field][v] = this.STATUS_NOT_VALIDATED;
- }
- return this;
- },
- // Useful APIs which aren't used internally
- /**
- * Reset the form
- *
- * @param {Boolean} resetFormData Reset current form data
- * @return {BootstrapValidator}
- */
- resetForm: function(resetFormData) {
- for (var field in this.options.fields) {
- this.dfds[field] = {};
- this.results[field] = {};
- // Mark field as not validated yet
- this.setNotValidated(field);
- }
- this.invalidField = null;
- this.$submitButton = null;
- // Hide all error elements
- this.$form
- .find('.has-error').removeClass('has-error').end()
- .find('.has-success').removeClass('has-success').end()
- .find('.help-block[data-bs-validator]').hide();
- // Enable submit buttons
- this._disableSubmitButtons(false);
- // Hide all feedback icons
- if (this.options.feedbackIcons) {
- this.$form.find('.form-control-feedback').removeClass(this.options.feedbackIcons.valid).removeClass(this.options.feedbackIcons.invalid).removeClass(this.options.feedbackIcons.validating).hide();
- }
- if (resetFormData) {
- this.$form.get(0).reset();
- }
- return this;
- },
- /**
- * Enable/Disable all validators to given field
- *
- * @param {String} field The field name
- * @param {Boolean} enabled Enable/Disable field validators
- * @return {BootstrapValidator}
- */
- enableFieldValidators: function(field, enabled) {
- this.options.fields[field]['enabled'] = enabled;
- if (enabled) {
- this.setNotValidated(field);
- } else {
- var $field = this.getFieldElements(field),
- $message = $field.data('bootstrapValidator.messageContainer');
- $field.parents('.form-group').removeClass('has-success has-error');
- $message.find('.help-block[data-bs-validator]').hide();
- if (this.options.feedbackIcons) {
- $message.find('.form-control-feedback').removeClass(this.options.feedbackIcons.invalid).removeClass(this.options.feedbackIcons.validating).removeClass(this.options.feedbackIcons.valid).hide();
- }
- this._disableSubmitButtons(false);
- }
- return this;
- }
- };
- // Plugin definition
- $.fn.bootstrapValidator = function(options) {
- return this.each(function() {
- var $this = $(this), data = $this.data('bootstrapValidator');
- if (!data) {
- $this.data('bootstrapValidator', (data = new BootstrapValidator(this, options)));
- }
- if ('string' == typeof options) {
- data[options]();
- }
- });
- };
- // Available validators
- $.fn.bootstrapValidator.validators = {};
- $.fn.bootstrapValidator.Constructor = BootstrapValidator;
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.between = {
- /**
- * Return true if the input value is between (strictly or not) two given numbers
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Can consist of the following keys:
- * - min
- * - max
- * - inclusive [optional]: Can be true or false. Default is true
- * - message: The invalid message
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- value = parseFloat(value);
- return (options.inclusive === true)
- ? (value > options.min && value < options.max)
- : (value >= options.min && value <= options.max);
- }
- };
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.callback = {
- /**
- * Return result from the callback method
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Can consist of the following keys:
- * - callback: The callback method that passes 2 parameters:
- * callback: function(fieldValue, validator) {
- * // fieldValue is the value of field
- * // validator is instance of BootstrapValidator
- * }
- * - message: The invalid message
- * @returns {Boolean|Deferred}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (options.callback && 'function' == typeof options.callback) {
- var dfd = new $.Deferred();
- dfd.resolve(options.callback.call(this, value, validator), 'callback');
- return dfd;
- }
- return true;
- }
- };
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.choice = {
- /**
- * Check if the number of checked boxes are less or more than a given number
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Consists of following keys:
- * - min
- * - max
- * At least one of two keys is required
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var numChoices = validator
- .getFieldElements($field.attr('name'))
- .filter(':checked')
- .length;
- if ((options.min && numChoices < options.min) || (options.max && numChoices > options.max)) {
- return false;
- }
- return true;
- }
- };
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.creditCard = {
- /**
- * Return true if the input value is valid credit card number
- * Based on https://gist.github.com/DiegoSalazar/4075533
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Can consist of the following key:
- * - message: The invalid message
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- // Accept only digits, dashes or spaces
- if (/[^0-9-\s]+/.test(value)) {
- return false;
- }
- // The Luhn Algorithm
- // http://en.wikipedia.org/wiki/Luhn
- value = value.replace(/\D/g, '');
- var check = 0, digit = 0, even = false, length = value.length;
- for (var n = length - 1; n >= 0; n--) {
- digit = parseInt(value.charAt(n), 10);
- if (even) {
- if ((digit *= 2) > 9) {
- digit -= 9;
- }
- }
- check += digit;
- even = !even;
- }
- return (check % 10) == 0;
- }
- };
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.date = {
- /**
- * Return true if the input value is valid date
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Can consist of the following keys:
- * - format: The date format. Default is MM/DD/YYYY
- * Support the following formats:
- * YYYY/DD/MM
- * YYYY/DD/MM h:m A
- * YYYY/MM/DD
- * YYYY/MM/DD h:m A
- *
- * YYYY-DD-MM
- * YYYY-DD-MM h:m A
- * YYYY-MM-DD
- * YYYY-MM-DD h:m A
- *
- * MM/DD/YYYY
- * MM/DD/YYYY h:m A
- * DD/MM/YYYY
- * DD/MM/YYYY h:m A
- *
- * MM-DD-YYYY
- * MM-DD-YYYY h:m A
- * DD-MM-YYYY
- * DD-MM-YYYY h:m A
- * - message: The invalid message
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- // Determine the separator
- options.format = options.format || 'MM/DD/YYYY';
- var separator = (options.format.indexOf('/') != -1)
- ? '/'
- : ((options.format.indexOf('-') != -1) ? '-' : null);
- if (separator == null) {
- return false;
- }
- var month, day, year, minutes = null, hours = null, matches;
- switch (true) {
- case (separator == '/' && (matches = value.match(/^(\d{4})\/(\d{1,2})\/(\d{1,2})$/i)) && options.format == 'YYYY/DD/MM'):
- case (separator == '-' && (matches = value.match(/^(\d{4})-(\d{1,2})-(\d{1,2})$/i)) && options.format == 'YYYY-DD-MM'):
- year = matches[1]; day = matches[2]; month = matches[3];
- break;
- case (separator == '/' && (matches = value.match(/^(\d{1,2})\/(\d{1,2})\/(\d{4})$/i)) && options.format == 'DD/MM/YYYY'):
- case (separator == '-' && (matches = value.match(/^(\d{1,2})-(\d{1,2})-(\d{4})$/i)) && options.format == 'DD-MM-YYYY'):
- day = matches[1]; month = matches[2]; year = matches[3];
- break;
- case (separator == '/' && (matches = value.match(/^(\d{4})\/(\d{1,2})\/(\d{1,2})$/i)) && options.format == 'YYYY/MM/DD'):
- case (separator == '-' && (matches = value.match(/^(\d{4})-(\d{1,2})-(\d{1,2})$/i)) && options.format == 'YYYY-MM-DD'):
- year = matches[1]; month = matches[2]; day = matches[3];
- break;
- case (separator == '/' && (matches = value.match(/^(\d{1,2})\/(\d{1,2})\/(\d{4})$/i)) && options.format == 'MM/DD/YYYY'):
- case (separator == '-' && (matches = value.match(/^(\d{1,2})-(\d{1,2})-(\d{4})$/i)) && options.format == 'MM-DD-YYYY'):
- month = matches[1]; day = matches[2]; year = matches[3];
- break;
- case (separator == '/' && (matches = value.match(/^(\d{4})\/(\d{1,2})\/(\d{1,2})\s+(\d{1,2}):(\d{1,2})\s+(AM|PM)$/i)) && options.format == 'YYYY/DD/MM h:m A'):
- case (separator == '-' && (matches = value.match(/^(\d{4})-(\d{1,2})-(\d{1,2})\s+(\d{1,2}):(\d{1,2})\s+(AM|PM)$/i)) && options.format == 'YYYY-DD-MM h:m A'):
- year = matches[1]; day = matches[2]; month = matches[3]; hours = matches[4]; minutes = matches[5];
- break;
- case (separator == '/' && (matches = value.match(/^(\d{1,2})\/(\d{1,2})\/(\d{4})\s+(\d{1,2}):(\d{1,2})\s+(AM|PM)$/i)) && options.format == 'DD/MM/YYYY h:m A'):
- case (separator == '-' && (matches = value.match(/^(\d{1,2})-(\d{1,2})-(\d{4})\s+(\d{1,2}):(\d{1,2})\s+(AM|PM)$/i)) && options.format == 'DD-MM-YYYY h:m A'):
- day = matches[1]; month = matches[2]; year = matches[3]; hours = matches[4]; minutes = matches[5];
- break;
- case (separator == '/' && (matches = value.match(/^(\d{4})\/(\d{1,2})\/(\d{1,2})\s+(\d{1,2}):(\d{1,2})\s+(AM|PM)$/i)) && options.format == 'YYYY/MM/DD h:m A'):
- case (separator == '-' && (matches = value.match(/^(\d{4})-(\d{1,2})-(\d{1,2})\s+(\d{1,2}):(\d{1,2})\s+(AM|PM)$/i)) && options.format == 'YYYY-MM-DD h:m A'):
- year = matches[1]; month = matches[2]; day = matches[3]; hours = matches[4]; minutes = matches[5];
- break;
- case (separator == '/' && (matches = value.match(/^(\d{1,2})\/(\d{1,2})\/(\d{4})\s+(\d{1,2}):(\d{1,2})\s+(AM|PM)$/i)) && options.format == 'MM/DD/YYYY h:m A'):
- case (separator == '-' && (matches = value.match(/^(\d{1,2})-(\d{1,2})-(\d{4})\s+(\d{1,2}):(\d{1,2})\s+(AM|PM)$/i)) && options.format == 'MM-DD-YYYY h:m A'):
- month = matches[1]; day = matches[2]; year = matches[3]; hours = matches[4]; minutes = matches[5];
- break;
- default:
- return false;
- }
- // Validate hours and minutes
- if (hours && minutes) {
- hours = parseInt(hours, 10);
- minutes = parseInt(minutes, 10);
- if (hours < 1 || hours > 12 || minutes < 0 || minutes > 59) {
- return false;
- }
- }
- // Validate day, month, and year
- day = parseInt(day, 10);
- month = parseInt(month, 10);
- year = parseInt(year, 10);
- if (year < 1000 || year > 9999 || month == 0 || month > 12) {
- return false;
- }
- var numDays = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
- // Update the number of days in Feb of leap year
- if (year % 400 == 0 || (year % 100 != 0 && year % 4 == 0)) {
- numDays[1] = 29;
- }
- // Check the day
- return (day > 0 && day <= numDays[month - 1]);
- }
- };
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.different = {
- /**
- * Return true if the input value is different with given field's value
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Consists of the following key:
- * - field: The name of field that will be used to compare with current one
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- var compareWith = validator.getFieldElements(options.field);
- if (compareWith == null) {
- return true;
- }
- if (value != compareWith.val()) {
- validator.updateStatus(compareWith, 'different', validator.STATUS_VALID);
- return true;
- } else {
- return false;
- }
- }
- };
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.digits = {
- /**
- * Return true if the input value contains digits only
- *
- * @param {BootstrapValidator} validator Validate plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- return /^\d+$/.test(value);
- }
- }
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.emailAddress = {
- /**
- * Return true if and only if the input value is a valid email address
- *
- * @param {BootstrapValidator} validator Validate plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- // Email address regular expression
- // http://stackoverflow.com/questions/46155/validate-email-address-in-javascript
- var emailRegExp = /^(([^<>()[\]\\.,;:\s@\"]+(\.[^<>()[\]\\.,;:\s@\"]+)*)|(\".+\"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
- return emailRegExp.test(value);
- }
- }
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.greaterThan = {
- /**
- * Return true if the input value is greater than or equals to given number
- *
- * @param {BootstrapValidator} validator Validate plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Can consist of the following keys:
- * - value: The number used to compare to
- * - inclusive [optional]: Can be true or false. Default is true
- * - message: The invalid message
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- value = parseFloat(value);
- return (options.inclusive === true) ? (value > options.value) : (value >= options.value);
- }
- }
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.hexColor = {
- /**
- * Return true if the input value is a valid hex color
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Can consist of the following keys:
- * - message: The invalid message
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- return /(^#[0-9A-F]{6}$)|(^#[0-9A-F]{3}$)/i.test(value);
- }
- };
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.identical = {
- /**
- * Check if input value equals to value of particular one
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Consists of the following key:
- * - field: The name of field that will be used to compare with current one
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- var compareWith = validator.getFieldElements(options.field);
- if (compareWith == null) {
- return true;
- }
- if (value == compareWith.val()) {
- validator.updateStatus(compareWith, 'identical', validator.STATUS_VALID);
- return true;
- } else {
- return false;
- }
- }
- };
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.lessThan = {
- /**
- * Return true if the input value is less than or equal to given number
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Can consist of the following keys:
- * - value: The number used to compare to
- * - inclusive [optional]: Can be true or false. Default is true
- * - message: The invalid message
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- value = parseFloat(value);
- return (options.inclusive === true) ? (value < options.value) : (value <= options.value);
- }
- };
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.notEmpty = {
- /**
- * Check if input value is empty or not
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var type = $field.attr('type');
- if ('radio' == type || 'checkbox' == type) {
- return validator
- .getFieldElements($field.attr('name'))
- .filter(':checked')
- .length > 0;
- }
- return $.trim($field.val()) != '';
- }
- };
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.regexp = {
- /**
- * Check if the element value matches given regular expression
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Consists of the following key:
- * - regexp: The regular expression you need to check
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- return options.regexp.test(value);
- }
- };
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.remote = {
- /**
- * Request a remote server to check the input value
- *
- * @param {BootstrapValidator} validator Plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Can consist of the following keys:
- * - url
- * - data [optional]: By default, it will take the value
- * {
- * <fieldName>: <fieldValue>
- * }
- * - message: The invalid message
- * @returns {Boolean|Deferred}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- var name = $field.attr('name'), data = options.data;
- if (data == null) {
- data = {};
- }
- // Support dynamic data
- if ('function' == typeof data) {
- data = data.call(this, validator);
- }
- data[name] = value;
- var dfd = new $.Deferred();
- var xhr = $.ajax({
- type: 'POST',
- url: options.url,
- dataType: 'json',
- data: data
- });
- xhr.then(function(response) {
- dfd.resolve(response.valid === true || response.valid === 'true', 'remote');
- });
- dfd.fail(function() {
- xhr.abort();
- });
- return dfd;
- }
- };
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.stringLength = {
- /**
- * Check if the length of element value is less or more than given number
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Consists of following keys:
- * - min
- * - max
- * At least one of two keys is required
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- var length = $.trim(value).length;
- if ((options.min && length < options.min) || (options.max && length > options.max)) {
- return false;
- }
- return true;
- }
- };
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.uri = {
- /**
- * Return true if the input value is a valid URL
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options
- * @returns {Boolean}
- */
- validate: function(validator, $field, options) {
- var value = $field.val();
- if (value == '') {
- return true;
- }
- // Credit to https://gist.github.com/dperini/729294
- //
- // Regular Expression for URL validation
- //
- // Author: Diego Perini
- // Updated: 2010/12/05
- //
- // the regular expression composed & commented
- // could be easily tweaked for RFC compliance,
- // it was expressly modified to fit & satisfy
- // these test for an URL shortener:
- //
- // http://mathiasbynens.be/demo/url-regex
- //
- // Notes on possible differences from a standard/generic validation:
- //
- // - utf-8 char class take in consideration the full Unicode range
- // - TLDs have been made mandatory so single names like "localhost" fails
- // - protocols have been restricted to ftp, http and https only as requested
- //
- // Changes:
- //
- // - IP address dotted notation validation, range: 1.0.0.0 - 223.255.255.255
- // first and last IP address of each class is considered invalid
- // (since they are broadcast/network addresses)
- //
- // - Added exclusion of private, reserved and/or local networks ranges
- //
- // Compressed one-line versions:
- //
- // Javascript version
- //
- // /^(?:(?:https?|ftp):\/\/)(?:\S+(?::\S*)?@)?(?:(?!10(?:\.\d{1,3}){3})(?!127(?:\.\d{1,3}){3})(?!169\.254(?:\.\d{1,3}){2})(?!192\.168(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\u00a1-\uffff0-9]+-?)*[a-z\u00a1-\uffff0-9]+)(?:\.(?:[a-z\u00a1-\uffff0-9]+-?)*[a-z\u00a1-\uffff0-9]+)*(?:\.(?:[a-z\u00a1-\uffff]{2,})))(?::\d{2,5})?(?:\/[^\s]*)?$/i
- //
- // PHP version
- //
- // _^(?:(?:https?|ftp)://)(?:\S+(?::\S*)?@)?(?:(?!10(?:\.\d{1,3}){3})(?!127(?:\.\d{1,3}){3})(?!169\.254(?:\.\d{1,3}){2})(?!192\.168(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\x{00a1}-\x{ffff}0-9]+-?)*[a-z\x{00a1}-\x{ffff}0-9]+)(?:\.(?:[a-z\x{00a1}-\x{ffff}0-9]+-?)*[a-z\x{00a1}-\x{ffff}0-9]+)*(?:\.(?:[a-z\x{00a1}-\x{ffff}]{2,})))(?::\d{2,5})?(?:/[^\s]*)?$_iuS
- var urlExp = new RegExp(
- "^" +
- // protocol identifier
- "(?:(?:https?|ftp)://)" +
- // user:pass authentication
- "(?:\\S+(?::\\S*)?@)?" +
- "(?:" +
- // IP address exclusion
- // private & local networks
- "(?!10(?:\\.\\d{1,3}){3})" +
- "(?!127(?:\\.\\d{1,3}){3})" +
- "(?!169\\.254(?:\\.\\d{1,3}){2})" +
- "(?!192\\.168(?:\\.\\d{1,3}){2})" +
- "(?!172\\.(?:1[6-9]|2\\d|3[0-1])(?:\\.\\d{1,3}){2})" +
- // IP address dotted notation octets
- // excludes loopback network 0.0.0.0
- // excludes reserved space >= 224.0.0.0
- // excludes network & broacast addresses
- // (first & last IP address of each class)
- "(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])" +
- "(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}" +
- "(?:\\.(?:[1-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))" +
- "|" +
- // host name
- "(?:(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)" +
- // domain name
- "(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-?)*[a-z\\u00a1-\\uffff0-9]+)*" +
- // TLD identifier
- "(?:\\.(?:[a-z\\u00a1-\\uffff]{2,}))" +
- ")" +
- // port number
- "(?::\\d{2,5})?" +
- // resource path
- "(?:/[^\\s]*)?" +
- "$", "i"
- );
- return urlExp.test(value);
- }
- };
- }(window.jQuery));
- ;(function($) {
- $.fn.bootstrapValidator.validators.zipCode = {
- /**
- * Return true if and only if the input value is a valid country zip code
- *
- * @param {BootstrapValidator} validator The validator plugin instance
- * @param {jQuery} $field Field element
- * @param {Object} options Consist of key:
- * - country: The ISO 3166 country code
- *
- * Currently it supports the following countries:
- * - US (United State)
- * - DK (Denmark)
- * - SE (Sweden)
- *
- * @returns {Boolean}
- */
- validate: function(validateInstance, $field, options) {
- var value = $field.val();
- if (value == '' || !options.country) {
- return true;
- }
- switch (options.country.toUpperCase()) {
- case 'DK':
- return /^(DK(-|\s)?)?\d{4}$/i.test(value);
- case 'SE':
- return /^(S-)?\d{3}\s?\d{2}$/i.test(value);
- case 'US':
- default:
- return /^\d{5}([\-]\d{4})?$/.test(value);
- }
- }
- };
- }(window.jQuery));
|