Spree Commerce “invalid value for Integer(): "09"” in Spree::Checkout/update
Hello again all. I like to monitor the orders and exceptions of the Spree sites I work on to ensure everything is working as intended. One morning I noticed an unusual error: “invalid value for Integer(): "09"” in Spree::Checkout/update on a Spree 2.1.x site.
The Issue
Given that this is a Spree-powered e-commerce site, a customer’s inability to checkout is quite alarming. In the backtrace I could see that a string of “09” was causing an invalid value for an integer. Why hadn’t I seen this on every order in that case?
I went into the browser and completed some test orders. The bug seemed to affect only credit cards with a leading “0” in the expiration month, and then only certain expiration months. I returned to the backtrace and saw this error was occurring with Active Merchant. So, Spree was passing Active Merchant a string while Active Merchant was expecting an integer.
Armed with a clearer understanding of the problem, I did some Googling. I came across this post. This post describes the source of this issue as being the behavior of sprintf which I will describe below. This topic was discussed in the Ruby Forum.
Octal Numbers
As per Daniel Martin on the aforementioned post:
- sprintf("%d",‘08’) ==> ArgumentError
- sprintf("%d",‘8’) ==> “8”
- sprintf("%d",‘08’.to_i) ==> “8”
- sprintf("%f",‘08’) ==> “8.000000”
As you can see, sprintf cannot convert ‘08’ or ‘09’ to a decimal. Matthias Reitlinger notes,
“%d tells sprintf to expect an Integer as the corresponding argument. Being given a String instead it tries to convert it by calling Kernel#Integer”
In the same post, we can review some documentation of Kernel#Integer
We can see here that if the argument being provided is a string (and it is since that is what Spree is sending), the “0” will be honored. Again, we know
sprintf("%d",'01') => "1" | | | sprintf("%d", 01) => "1" |
By pre-prepending the “0” to the numbers, they are being marked as ‘octal’. Wikipedia defines octal numbers as
“The octal numeral system, or oct for short, is the base-8 number system, and uses the digits 0 to 7. Octal numerals can be made from binary numerals by grouping consecutive binary digits into groups of three (starting from the right).”
So, 08 and 09 are not octal numbers.
Solution
This is why this checkout error did not occur on every order whose payment expiration month had a leading “0”, only August (08) and September (09) were susceptible as the leading ‘0’ indicates we are passing in an octal of which 08 and 09 are not valid examples of. So, I made Spree send integers (sprintf("%d",8) #=> “8” and sprintf("%d",9) #=> “9”) so that the leading “0” would not get sent (thereby not trying to pass them as octals). I created a app/models/spree/credit_card_decorator.rb file with the contents
Spree::CreditCard.class_eval do
def expiry=(expiry)
if expiry.present?
self[:month], self[:year] = expiry.delete(' ').split('/')
self[:year] = "20" + self[:year] if self[:year].length == 2
self[:year] = self[:year].to_i
self[:month] = self[:month].to_i
end
end
end
After adding this, I tested it in the browser and there were no more checkout errors! I hope you’ve found this interesting and helpful, thanks for reading!
Comments