View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  package org.apache.commons.validator.routines;
18  
19  import java.util.ArrayList;
20  import java.util.Arrays;
21  import java.util.List;
22  import java.util.concurrent.ConcurrentHashMap;
23  import java.util.concurrent.ConcurrentMap;
24  
25  import org.apache.commons.validator.routines.checkdigit.IBANCheckDigit;
26  
27  /**
28   * IBAN Validator.
29   * <p>
30   * The validator includes a default set of formats derived from the IBAN registry at
31   * https://www.swift.com/standards/data-standards/iban.
32   * </p>
33   * <p>
34   * This can get out of date, but the set can be adjusted by creating a validator and using the
35   * {@link #setValidator(String, int, String)} or
36   * {@link #setValidator(Validator)}
37   * method to add (or remove) an entry.
38   * </p>
39   * <p>
40   * For example:
41   * </p>
42   * <pre>
43   * IBANValidator ibv = new IBANValidator();
44   * ibv.setValidator("XX", 12, "XX\\d{10}")
45   * </pre>
46   * <p>
47   * The singleton default instance cannot be modified in this way.
48   * </p>
49   * @since 1.5.0
50   */
51  public class IBANValidator {
52  
53      /**
54       * The validation class
55       */
56      public static class Validator {
57          /*
58           * The minimum length does not appear to be defined by the standard.
59           * Norway is currently the shortest at 15.
60           *
61           * There is no standard for BBANs; they vary between countries.
62           * But a BBAN must consist of a branch id and account number.
63           * Each of these must be at least 2 chars (generally more) so an absolute minimum is
64           * 4 characters for the BBAN and 8 for the IBAN.
65           */
66          private static final int MIN_LEN = 8;
67          private static final int MAX_LEN = 34; // defined by [3]
68  
69          final String countryCode;
70          final String[] otherCountryCodes;
71          final RegexValidator regexValidator;
72          final int ibanLength; // used to avoid unnecessary regex matching
73  
74          /**
75           * Creates the validator.
76           * @param countryCode the country code
77           * @param ibanLength the length of the IBAN
78           * @param regexWithCC the regex to use to check the format, the regex MUST start with the country code.
79           */
80          public Validator(final String countryCode, final int ibanLength, final String regexWithCC) {
81              this(countryCode, ibanLength, regexWithCC.substring(countryCode.length()), new String[] {});
82          }
83  
84          /**
85           * Creates the validator.
86           * @param countryCode the country code
87           * @param ibanLength the length of the IBAN
88           * @param regexWithoutCC the regex to use to check the format, the regex MUST NOT start with the country code.
89           */
90          Validator(final String countryCode, final int ibanLength, final String regexWithoutCC, final String... otherCountryCodes) {
91              if (!(countryCode.length() == 2 && Character.isUpperCase(countryCode.charAt(0)) && Character.isUpperCase(countryCode.charAt(1)))) {
92                  throw new IllegalArgumentException("Invalid country Code; must be exactly 2 upper-case characters");
93              }
94              if (ibanLength > MAX_LEN || ibanLength < MIN_LEN) {
95                  throw new IllegalArgumentException("Invalid length parameter, must be in range " + MIN_LEN + " to " + MAX_LEN + " inclusive: " + ibanLength);
96              }
97              final String regex = countryCode + regexWithoutCC;
98              if (!regex.startsWith(countryCode)) {
99                  throw new IllegalArgumentException("countryCode '" + countryCode + "' does not agree with format: " + regex);
100             }
101             this.countryCode = countryCode;
102             this.otherCountryCodes = otherCountryCodes.clone();
103             final List<String> regexList = new ArrayList<>(this.otherCountryCodes.length + 1);
104             regexList.add(countryCode + regexWithoutCC);
105             for (String otherCc : otherCountryCodes) {
106                 regexList.add(otherCc + regexWithoutCC);
107             }
108             this.ibanLength = ibanLength;
109             this.regexValidator = new RegexValidator(regexList);
110         }
111 
112         /**
113          * Gets the RegexValidator.
114          *
115          * @return the RegexValidator.
116          * @since 1.8
117          */
118         public RegexValidator getRegexValidator() {
119             return regexValidator;
120         }
121     }
122 
123     private static final int SHORT_CODE_LEN = 2;
124 
125     private static final Validator[] DEFAULT_VALIDATORS = {                   //
126             new Validator("AD", 24, "AD\\d{10}[A-Z0-9]{12}"),                 // Andorra
127             new Validator("AE", 23, "AE\\d{21}"),                             // United Arab Emirates (The)
128             new Validator("AL", 28, "AL\\d{10}[A-Z0-9]{16}"),                 // Albania
129             new Validator("AT", 20, "AT\\d{18}"),                             // Austria
130             new Validator("AZ", 28, "AZ\\d{2}[A-Z]{4}[A-Z0-9]{20}"),          // Azerbaijan
131             new Validator("BA", 20, "BA\\d{18}"),                             // Bosnia and Herzegovina
132             new Validator("BE", 16, "BE\\d{14}"),                             // Belgium
133             new Validator("BG", 22, "BG\\d{2}[A-Z]{4}\\d{6}[A-Z0-9]{8}"),     // Bulgaria
134             new Validator("BH", 22, "BH\\d{2}[A-Z]{4}[A-Z0-9]{14}"),          // Bahrain
135             new Validator("BI", 27, "BI\\d{25}"),                             // Burundi
136             new Validator("BR", 29, "BR\\d{25}[A-Z]{1}[A-Z0-9]{1}"),          // Brazil
137             new Validator("BY", 28, "BY\\d{2}[A-Z0-9]{4}\\d{4}[A-Z0-9]{16}"), // Republic of Belarus
138             new Validator("CH", 21, "CH\\d{7}[A-Z0-9]{12}"),                  // Switzerland
139             new Validator("CR", 22, "CR\\d{20}"),                             // Costa Rica
140             new Validator("CY", 28, "CY\\d{10}[A-Z0-9]{16}"),                 // Cyprus
141             new Validator("CZ", 24, "CZ\\d{22}"),                             // Czechia
142             new Validator("DE", 22, "DE\\d{20}"),                             // Germany
143             new Validator("DJ", 27, "DJ\\d{25}"),                             // Djibouti
144             new Validator("DK", 18, "DK\\d{16}"),                             // Denmark
145             new Validator("DO", 28, "DO\\d{2}[A-Z0-9]{4}\\d{20}"),            // Dominican Republic
146             new Validator("EE", 20, "EE\\d{18}"),                             // Estonia
147             new Validator("EG", 29, "EG\\d{27}"),                             // Egypt
148             new Validator("ES", 24, "ES\\d{22}"),                             // Spain
149             new Validator("FI", 18, "\\d{16}", "AX"),                         // Finland
150             new Validator("FO", 18, "FO\\d{16}"),                             // Faroe Islands
151             new Validator("FR", 27, "\\d{12}[A-Z0-9]{11}\\d{2}", "GF", "GP", "MQ", "RE", "PF", "TF", "YT", "NC", "BL", "MF", "PM", "WF"), // France
152             new Validator("GB", 22, "\\d{2}[A-Z]{4}\\d{14}", "IM", "JE", "GG"), // United Kingdom
153             new Validator("GE", 22, "GE\\d{2}[A-Z]{2}\\d{16}"),               // Georgia
154             new Validator("GI", 23, "GI\\d{2}[A-Z]{4}[A-Z0-9]{15}"),          // Gibraltar
155             new Validator("GL", 18, "GL\\d{16}"),                             // Greenland
156             new Validator("GR", 27, "GR\\d{9}[A-Z0-9]{16}"),                  // Greece
157             new Validator("GT", 28, "GT\\d{2}[A-Z0-9]{24}"),                  // Guatemala
158             new Validator("HR", 21, "HR\\d{19}"),                             // Croatia
159             new Validator("HU", 28, "HU\\d{26}"),                             // Hungary
160             new Validator("IE", 22, "IE\\d{2}[A-Z]{4}\\d{14}"),               // Ireland
161             new Validator("IL", 23, "IL\\d{21}"),                             // Israel
162             new Validator("IQ", 23, "IQ\\d{2}[A-Z]{4}\\d{15}"),               // Iraq
163             new Validator("IS", 26, "IS\\d{24}"),                             // Iceland
164             new Validator("IT", 27, "IT\\d{2}[A-Z]{1}\\d{10}[A-Z0-9]{12}"),   // Italy
165             new Validator("JO", 30, "JO\\d{2}[A-Z]{4}\\d{4}[A-Z0-9]{18}"),    // Jordan
166             new Validator("KW", 30, "KW\\d{2}[A-Z]{4}[A-Z0-9]{22}"),          // Kuwait
167             new Validator("KZ", 20, "KZ\\d{5}[A-Z0-9]{13}"),                  // Kazakhstan
168             new Validator("LB", 28, "LB\\d{6}[A-Z0-9]{20}"),                  // Lebanon
169             new Validator("LC", 32, "LC\\d{2}[A-Z]{4}[A-Z0-9]{24}"),          // Saint Lucia
170             new Validator("LI", 21, "LI\\d{7}[A-Z0-9]{12}"),                  // Liechtenstein
171             new Validator("LT", 20, "LT\\d{18}"),                             // Lithuania
172             new Validator("LU", 20, "LU\\d{5}[A-Z0-9]{13}"),                  // Luxembourg
173             new Validator("LV", 21, "LV\\d{2}[A-Z]{4}[A-Z0-9]{13}"),          // Latvia
174             new Validator("LY", 25, "LY\\d{23}"),                             // Libya
175             new Validator("MC", 27, "MC\\d{12}[A-Z0-9]{11}\\d{2}"),           // Monaco
176             new Validator("MD", 24, "MD\\d{2}[A-Z0-9]{20}"),                  // Moldova
177             new Validator("ME", 22, "ME\\d{20}"),                             // Montenegro
178             new Validator("MK", 19, "MK\\d{5}[A-Z0-9]{10}\\d{2}"),            // Macedonia
179             new Validator("MR", 27, "MR\\d{25}"),                             // Mauritania
180             new Validator("MT", 31, "MT\\d{2}[A-Z]{4}\\d{5}[A-Z0-9]{18}"),    // Malta
181             new Validator("MU", 30, "MU\\d{2}[A-Z]{4}\\d{19}[A-Z]{3}"),       // Mauritius
182             new Validator("NL", 18, "NL\\d{2}[A-Z]{4}\\d{10}"),               // Netherlands (The)
183             new Validator("NO", 15, "NO\\d{13}"),                             // Norway
184             new Validator("PK", 24, "PK\\d{2}[A-Z]{4}[A-Z0-9]{16}"),          // Pakistan
185             new Validator("PL", 28, "PL\\d{26}"),                             // Poland
186             new Validator("PS", 29, "PS\\d{2}[A-Z]{4}[A-Z0-9]{21}"),          // Palestine, State of
187             new Validator("PT", 25, "PT\\d{23}"),                             // Portugal
188             new Validator("QA", 29, "QA\\d{2}[A-Z]{4}[A-Z0-9]{21}"),          // Qatar
189             new Validator("RO", 24, "RO\\d{2}[A-Z]{4}[A-Z0-9]{16}"),          // Romania
190             new Validator("RS", 22, "RS\\d{20}"),                             // Serbia
191             new Validator("RU", 33, "RU\\d{31}"),                             // Russia
192             new Validator("SA", 24, "SA\\d{4}[A-Z0-9]{18}"),                  // Saudi Arabia
193             new Validator("SC", 31, "SC\\d{2}[A-Z]{4}\\d{20}[A-Z]{3}"),       // Seychelles
194             new Validator("SD", 18, "SD\\d{16}"),                             // Sudan
195             new Validator("SE", 24, "SE\\d{22}"),                             // Sweden
196             new Validator("SI", 19, "SI\\d{17}"),                             // Slovenia
197             new Validator("SK", 24, "SK\\d{22}"),                             // Slovakia
198             new Validator("SM", 27, "SM\\d{2}[A-Z]{1}\\d{10}[A-Z0-9]{12}"),   // San Marino
199             new Validator("ST", 25, "ST\\d{23}"),                             // Sao Tome and Principe
200             new Validator("SV", 28, "SV\\d{2}[A-Z]{4}\\d{20}"),               // El Salvador
201             new Validator("TL", 23, "TL\\d{21}"),                             // Timor-Leste
202             new Validator("TN", 24, "TN\\d{22}"),                             // Tunisia
203             new Validator("TR", 26, "TR\\d{8}[A-Z0-9]{16}"),                  // Turkey
204             new Validator("UA", 29, "UA\\d{8}[A-Z0-9]{19}"),                  // Ukraine
205             new Validator("VA", 22, "VA\\d{20}"),                             // Vatican City State
206             new Validator("VG", 24, "VG\\d{2}[A-Z]{4}\\d{16}"),               // Virgin Islands
207             new Validator("XK", 20, "XK\\d{18}"),                             // Kosovo
208     };
209 
210     /*
211      * Wikipedia [1] says that only uppercase is allowed.
212      * The SWIFT PDF file [2] implies that lower case is allowed.
213      * However there are no examples using lower-case.
214      * Unfortunately the relevant ISO documents (ISO 13616-1) are not available for free.
215      * The IBANCheckDigit code treats upper and lower case the same,
216      * so any case validation has to be done in this class.
217      *
218      * Note: the European Payments council has a document [3] which includes a description
219      * of the IBAN. Section 5 clearly states that only upper case is allowed.
220      * Also the maximum length is 34 characters (including the country code),
221      * and the length is fixed for each country.
222      *
223      * It looks like lower-case is permitted in BBANs, but they must be converted to
224      * upper case for IBANs.
225      *
226      * [1] https://en.wikipedia.org/wiki/International_Bank_Account_Number
227      * [2] http://www.swift.com/dsp/resources/documents/IBAN_Registry.pdf (404)
228      * => https://www.swift.com/sites/default/files/resources/iban_registry.pdf
229      * The above is an old version (62, Jan 2016)
230      * As of May 2020, the current IBAN standards are located at:
231      * https://www.swift.com/standards/data-standards/iban
232      * The above page contains links for the PDF and TXT (CSV) versions of the registry
233      * Warning: these may not agree -- in the past there have been discrepancies.
234      * The TXT file can be used to determine changes which can be cross-checked in the PDF file.
235      * [3] http://www.europeanpaymentscouncil.eu/documents/ECBS%20IBAN%20standard%20EBS204_V3.2.pdf
236      */
237 
238     /** The singleton instance which uses the default formats */
239     public static final IBANValidator DEFAULT_IBAN_VALIDATOR = new IBANValidator();
240 
241     /**
242      * Return a singleton instance of the IBAN validator using the default formats
243      *
244      * @return A singleton instance of the IBAN validator
245      */
246     public static IBANValidator getInstance() {
247         return DEFAULT_IBAN_VALIDATOR;
248     }
249 
250     private final ConcurrentMap<String, Validator> validatorMap;
251 
252     /**
253      * Create a default IBAN validator.
254      */
255     public IBANValidator() {
256         this(DEFAULT_VALIDATORS);
257     }
258 
259     /**
260      * Create an IBAN validator from the specified map of IBAN formats.
261      *
262      * @param validators map of IBAN formats
263      */
264     public IBANValidator(final Validator[] validators) {
265         this.validatorMap = createValidators(validators);
266     }
267 
268     private ConcurrentMap<String, Validator> createValidators(final Validator[] validators) {
269         final ConcurrentMap<String, Validator> map = new ConcurrentHashMap<>();
270         for (final Validator validator : validators) {
271             map.put(validator.countryCode, validator);
272             for (String otherCC : validator.otherCountryCodes) {
273                 map.put(otherCC, validator);
274             }
275         }
276         return map;
277     }
278 
279     /**
280      * Gets a copy of the default Validators.
281      *
282      * @return a copy of the default Validator array
283      */
284     public Validator[] getDefaultValidators() {
285         return Arrays.copyOf(DEFAULT_VALIDATORS, DEFAULT_VALIDATORS.length);
286     }
287 
288     /**
289      * Gets the Validator for a given IBAN
290      *
291      * @param code a string starting with the ISO country code (e.g. an IBAN)
292      *
293      * @return the validator or {@code null} if there is not one registered.
294      */
295     public Validator getValidator(final String code) {
296         if (code == null || code.length() < SHORT_CODE_LEN) { // ensure we can extract the code
297             return null;
298         }
299         final String key = code.substring(0, SHORT_CODE_LEN);
300         return validatorMap.get(key);
301     }
302 
303     /**
304      * Does the class have the required validator?
305      *
306      * @param code the code to check
307      * @return true if there is a validator
308      */
309     public boolean hasValidator(final String code) {
310         return getValidator(code) != null;
311     }
312 
313     /**
314      * Validate an IBAN Code
315      *
316      * @param code The value validation is being performed on
317      * @return {@code true} if the value is valid
318      */
319     public boolean isValid(final String code) {
320         final Validator formatValidator = getValidator(code);
321         if (formatValidator == null || code.length() != formatValidator.ibanLength || !formatValidator.regexValidator.isValid(code)) {
322             return false;
323         }
324         return IBANCheckDigit.IBAN_CHECK_DIGIT.isValid(code);
325     }
326 
327     /**
328      * Installs a validator.
329      * Will replace any existing entry which has the same countryCode.
330      *
331      * @param countryCode the country code
332      * @param length the length of the IBAN. Must be &ge; 8 and &le; 32.
333      * If the length is &lt; 0, the validator is removed, and the format is not used.
334      * @param format the format of the IBAN (as a regular expression)
335      * @return the previous Validator, or {@code null} if there was none
336      * @throws IllegalArgumentException if there is a problem
337      * @throws IllegalStateException if an attempt is made to modify the singleton validator
338      */
339     public Validator setValidator(final String countryCode, final int length, final String format) {
340         if (this == DEFAULT_IBAN_VALIDATOR) {
341             throw new IllegalStateException("The singleton validator cannot be modified");
342         }
343         if (length < 0) {
344             return validatorMap.remove(countryCode);
345         }
346         return setValidator(new Validator(countryCode, length, format));
347     }
348 
349     /**
350      * Installs a validator.
351      * Will replace any existing entry which has the same countryCode
352      *
353      * @param validator the instance to install.
354      * @return the previous Validator, or {@code null} if there was none
355      * @throws IllegalStateException if an attempt is made to modify the singleton validator
356      */
357     public Validator setValidator(final Validator validator) {
358         if (this == DEFAULT_IBAN_VALIDATOR) {
359             throw new IllegalStateException("The singleton validator cannot be modified");
360         }
361         return validatorMap.put(validator.countryCode, validator);
362     }
363 }