Note: This archived repository is a fork of coinjar/bsb which for a while did not appear to be maintained. Zepto's fork was created to introduce an automated update task to keep the data fresh. The upstream gem now is now actively maintained with a monthly automated task to update data and publish a new version to rubygems.org.
A Bank State Branch (BSB) number is a code that identifies banks and branches in Australia. This gem provides an easy-to-use lookup utility and an ActiveModel validator for use in any Rails project.
This gem aims to provide a scalable and developer-friendly solution for BSB lookup and validation. If you are building a financial application targeting Australian customers, properly validating BSB numbers is an essential component of a hassle-free user experience.
Add this line to your application's Gemfile:
gem 'bsb'
And then execute:
$ bundle
To lookup a BSB number:
BSB.lookup "012003"
You will get a hash back, including the highly-useful full bank name which can be displayed to the user:
{:bsb=>"012003", :mnemonic=>"ANZ", :bank_name=>"Australia & New Zealand Banking Group Limited", :branch=>"115 Pitt St Sydney", :address=>"115 Pitt St", :suburb=>"Sydney", :state=>"NSW", :postcode=>"2000", :flags=>{:paper=>true, :electronic=>true, :high_value=>true}}
BSB lookup with this gem is extremely performant. A decent MacBook Pro can easily run 100,000 lookups a second.
There's a public method for you to normalise a BSB number from a variety of formats, for example:
> BSB.normalize "083-004"
=> "083004"
> BSB.normalize "06 2000"
=> "062000"
If you have included this gem in your Rails project, you can use the custom validator bsb_number
. For example, in your model:
validates :bsb, :account_number, :account_name, presence: true
validates :bsb, length: { is: 6 }, bsb_number: true
This validator ensures that the BSB number entered by the user actually exists.
Included in this gem is also a set of Rake tasks to generate the JSON-formatted compressed database for maximum performance (it's only as readable as the offset data files).
Two data sources are used:
- APCA BSB directory (Updated bi-monthly. This gem will track the changes and push gem updates as frequently as my time allows.)
- APCA Key to Abbreviations and BSB Number (No regular updates)
Other formats of APCA BSB data is available from http://bsb.apca.com.au.
- Go to http://bsb.apca.com.au/
- Click on the Download BSB Files button
- Click on the TEXT link for the full version
- Extract the filename (e.g
BSBDirectoryOct18-271.txt
) - Run:
bundle exec rake bsb:generate_database filename=BSBDirectoryOct18-271.txt > config/bsb_db.json
(Changing the filename as necessary) - Update version number in
/lib/bsb/version.rb
file
- Go to http://bsb.apca.com.au/
- Click on FTP (be patient it takes a while to load)
- Find the latest file with the following pattern:
KEY TO ABBREVIATIONS AND BSB NUMBERS (MMM YYYY).csv
- Copy the file link and replace
ftp
withhttp
- Run:
bundle exec rake bsb:generate_bank_list url='http://bsb.hostedftp.com/~auspaynetftp/BSB/KEY%20TO%20ABBREVIATIONS%20AND%20BSB%20NUMBERS%20(Oct%202018).csv' > config/bsb_bank_list.json
(Changing the filename as necessary)
- Fork it ( https://github.com/zhoutong/bsb/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request