New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

opal_card_api

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

opal_card_api

  • 0.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

OpalCardApi

Build Status

Do you live in Sydney? Do you have an Opal card and want to scrape your data? Then this is the gem for you.

It caches aggressively to minimize the number of "api calls".

This is a screen-scraping gem, so it is liable to stop working at any moment.

Installation

Add this line to your application's Gemfile:

gem 'opal_card_api'

And then execute:

$ bundle

Or install it yourself as:

$ gem install opal_card_api

Usage

Create a new instance using named parameters:

client = OpalCardApi.new username: 'GladysBerejiklian', password: 'TR41NL0V3R'

Or if you like, you can use environment variables: OPAL_USERNAME & OPAL_PASSWORD

client = OpalCardApi.new

Now that you have a client, you can retrieve your cards:

cards = client.cards
# => [{"cardNumber"=>"3083857629546364",
#   "displayCardNumber"=>nil,
#   "fareCategoryCode"=>nil,
#   "fareCategoryTitle"=>nil,
#   "cardNickName"=>"Lobster",
#   "cardState"=>"ISSUED",
#   "cardBalance"=>2307,
#   "active"=>true,
#   "svPending"=>0,
#   "toBeActivated"=>false,
#   "displayName"=>"Lobster",
#   "cardBalanceInDollars"=>"$23.07",
#   "currentCardBalanceInDollars"=>"$23.07",
#   "svPendingInDollars"=>nil}]

Typically you'll only have one card, and by calling transactions you can get all of the transactions associated with that card:

transactions = client.transactions

Now, because we're screen-scraping behind the scenes, and because we probably only want the most recent transactions, transactions returns an Enumerator that only requests as many pages of transactions as required. Care must be taken to avoid downloading your entire transaction history (unless that is what you want to do).

# GOOD
two_most_recent = transactions.take 2
# => [{:id=>1301,
#   :timestamp=>2019-06-13 18:36:00 +1000,
#   :mode=>"train",
#   :description=>"Central to Strathfield",
#   :journey_number=>7,
#   :fare_applied=>"Off-peak",
#   :fare=>"$4.40",
#   :discount=>"$1.32",
#   :amount=>"-$3.08"},
#  {:id=>1299,
#   :timestamp=>2019-06-13 08:53:00 +1000,
#   :mode=>"train",
#   :description=>"Strathfield to Central",
#   :journey_number=>6,
#   :fare_applied=>"",
#   :fare=>"$4.40",
#   :discount=>"$0.00",
#   :amount=>"-$4.40"}]

# GOOD - watch out for time zones though
transactions.take_while { |t| t[:timestamp] > Time.new(2019, 6, 11, 12, 0, 0) }

# BAD - using select like this forces every transaction to be downloaded
transactions.select { |t| t[:id] >= 1100 }

# GOOD - we can rely on the reverse chronological order of the results
transactions.take_while { |t| t[:id] >= 1100 }

# PRETTY AWESOME - using Enumerable#lazy to postpone filtering
transactions.lazy.select { |t| t[:mode] == 'train' }.first 5

# Just get all transactions:
transactions.to_a

If you have more than one card you'll probably want to specify which card to retrieve transactions for. The default behaviour (as illustrated above) is to show transactions for the first card in the card array returned by OpalCardApi#cards.

To retrieve transactions for other cards, you must specify which one

# By specifying the ID of the card:
client.transactions('3083857629546364')

# By specifying then name of the card:
client.transactions('Lobster')

# By specifying the index of the card:
client.transactions(3) # your fourth card

# By using one of the hashes returned by client.cards:
client.transactions(client.cards.last)

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/cyclotron3k/opal_card_api. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the OpalCardApi project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

FAQs

Package last updated on 14 Jun 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc