1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
|
# bankaccount.py - functions for handling New Zealand bank account numbers
# coding: utf-8
#
# Copyright (C) 2019 Arthur de Jong
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA
"""New Zealand bank account number
The New Zealand bank account numbers consist of 16 digits. The first two
represent the bank, followed by four for the branch, seven digits for the
account base number and three for the account type.
More information:
* https://en.wikipedia.org/wiki/New_Zealand_bank_account_number
>>> validate('01-0242-0100194-00')
'0102420100194000'
>>> validate('01-0242-0100195-00') # invalid check digits
Traceback (most recent call last):
...
InvalidChecksum: ...
>>> validate('01-9999-0100197-00') # invalid branch
Traceback (most recent call last):
...
InvalidComponent: ...
>>> format('0102420100194000')
'01-0242-0100194-000'
"""
from stdnum.exceptions import *
from stdnum.util import clean, isdigits
# The following algorithms and weights were taken from:
# https://www.ird.govt.nz/software-providers/explore-products-contents/reporting/withholding-taxes/rwt-and-nrwt-certificate-filing-options.html#02
# with the modification to use max 7 digits for the account base
# instead of 8 (and leaving out algorithm C).
# The algorithm to choose based on the bank
_algorithms = {
'01': 'A', '02': 'A', '03': 'A', '04': 'A', '06': 'A', '08': 'D',
'09': 'E', '10': 'A', '11': 'A', '12': 'A', '13': 'A', '14': 'A',
'15': 'A', '16': 'A', '17': 'A', '18': 'A', '19': 'A', '20': 'A',
'21': 'A', '22': 'A', '23': 'A', '24': 'A', '25': 'F', '26': 'G',
'27': 'A', '28': 'G', '29': 'G', '30': 'A', '31': 'X', '33': 'F',
'35': 'A', '38': 'A',
}
# The different weights for the different checksum algorithms
_weights = {
'A': (0, 0, 6, 3, 7, 9, 0, 10, 5, 8, 4, 2, 1, 0, 0, 0),
'B': (0, 0, 0, 0, 0, 0, 0, 10, 5, 8, 4, 2, 1, 0, 0, 0),
'D': (0, 0, 0, 0, 0, 0, 7, 6, 5, 4, 3, 2, 1, 0, 0, 0),
'E': (0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 3, 2, 0, 0, 1),
'F': (0, 0, 0, 0, 0, 0, 1, 7, 3, 1, 7, 3, 1, 0, 0, 0),
'G': (0, 0, 0, 0, 0, 0, 1, 3, 7, 1, 3, 7, 1, 3, 7, 1),
'X': (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0),
}
# The moduli to use per algorithm
_moduli = {
'A': (11, 11),
'B': (11, 11),
'D': (11, 11),
'E': (9, 11),
'F': (10, 10),
'G': (9, 10),
'X': (1, 1),
}
def compact(number):
"""Convert the number to the minimal representation. This strips the
number of any valid separators and removes surrounding whitespace."""
number = clean(number).strip().replace(' ', '-').split('-')
if len(number) == 4:
# zero pad the different sections if they are found
lengths = (2, 4, 7, 3)
return ''.join(n.zfill(l) for n, l in zip(number, lengths))
else:
# otherwise zero pad the account type
number = ''.join(number)
return number[:13] + number[13:].zfill(3)
def info(number):
"""Return a dictionary of data about the supplied number. This typically
returns the name of the bank and branch and a BIC if it is valid."""
number = compact(number)
from stdnum import numdb
info = {}
for nr, found in numdb.get('nz/banks').info(number):
info.update(found)
return info
def _calc_checksum(number):
# pick the algorithm and parameters
algorithm = _algorithms.get(number[:2], 'X')
if algorithm == 'A' and number[6:13] >= '0990000':
algorithm = 'B'
weights = _weights[algorithm]
mod1, mod2 = _moduli[algorithm]
# calculate the checksum
return sum(
c % mod1 if c > mod1 else c for c in
(w * int(n) for w, n in zip(weights, number))) % mod2
def validate(number):
"""Check if the number provided is a valid bank account number."""
number = compact(number)
if not isdigits(number):
raise InvalidFormat()
if len(number) != 16:
raise InvalidLength()
if _calc_checksum(number) != 0:
raise InvalidChecksum()
i = info(number)
if 'bank' not in i or 'branch' not in i:
raise InvalidComponent()
return number
def is_valid(number):
"""Check if the number provided is a valid bank account number."""
try:
return bool(validate(number))
except ValidationError:
return False
def format(number):
"""Reformat the number to the standard presentation format."""
number = compact(number)
return '-'.join([
number[:2],
number[2:6],
number[6:13],
number[13:]])
|