UNSUPPORTED
This library is no longer maintained. Please check other FlexPay libraries at https://github.com/verotel
NAME
Verotel::FlexPay
DESCRIPTION
This library allows merchants to use Verotel payment gateway and get paid by their users via Credit Card and other payment methods.
get_signature($secret, %params)
Returns signature for the given parameters using $secret.
Signature is an SHA-256 hash as hexadecimal number generated from $secret followed by the parameters joined with colon (:). Parameters ("$key=$value") are alphabeticaly orderered by their keys. Only the following parameters are considered for signing:
AUTHOR
Verotel dev team
SUPPORT
Flexpay documentation can be found on https://controlcenter.verotel.com/flexpay-doc/index.html.
version, shopID, saleID, referenceID, priceAmount, priceCurrency, description, name custom1, custom2, custom3 subscriptionType period trialAmount, trialPeriod cancelDiscountPercentage
Example:
get_signature('aaB',
shopID => '123',
custom1 => 'xyz',
custom2 => undef ,
ignored => 'bla'
);
returns the SHA-256 string for "aaB:custom1=xyz:custom2=:shopID=123" converted to lowercase.
validate_signature($secret, %params)
Returns true if the signature passed in the parameters match the signature computed from all parameters (except for the signature itself).
Example:
validate_signature('aaB',
shopID => 123,
saleID => 345,
signature => 'acb4dd91827bc79999a04ac2082d0e43bb018a9ce563dfd3e863fbae32e5f381'
);
returns true as the signature passed as the parameter is the same as the signature computed for "aaB:saleID=345:shopID=123"
Note: It accepts SHA-256 signature, but for now accepts also old SHA-1 signature for backward compatiblity.
get_purchase_URL($secret, %params)
Return URL for purchase with signed parameters (only the parameters listed in the description of get_signature() are considered for signing).
Example:
get_purchase_URL('mySecret', shopID => 65147, priceAmount => '6.99', priceCurrency => 'USD');
returns
"https://secure.verotel.com/startorder?priceAmount=6.99&priceCurrency=USD&shopID=65147&type=purchase&version=3.5&signature=37d56280eae410d2e5d6b67ccd29fd84173f2eed5a329c9b2f7fe9a77ad95441"
get_subscription_URL($secret, %params)
Return URL for subscription with signed parameters (only the parameters listed in the description of get_signature() are considered for signing).
Example:
get_subscription_URL('mySecret', shopID => 65147, subscriptionType => 'recurring', period => 'P1M');
returns
"https://secure.verotel.com/startorder?period=P1M&shopID=65147&subscriptionType=recurring&type=subscription&version=3.5&signature=2f2ffd9ba91dec62be74b143d0093ce7cefc62d1dab237aa3a327d76188cf77c"
get_subscription_URL($secret, %params)
Return URL for upgrade subscription with signed parameters (only the parameters listed in the description of get_signature() are considered for signing).
Example:
get_upgrade_subscription_URL('mySecret', shopID => 65147, subscriptionType => 'recurring', period => 'P1M');
returns
"https://secure.verotel.com/startorder?period=P1M&shopID=65147&subscriptionType=recurring&type=upgradesubscription&version=3.5&signature=2276fd3aea2ca4027641515c731c6783ec2def70504c5276c5f4599039129e52"
get_status_URL($secret, %params)
Return URL for status with signed parameters (only the parameters listed in the description of get_signature() are considered for signing).
Example:
get_status_URL('mySecret', shopID => '65147', saleID => '1485');
returns
"https://secure.verotel.com/salestatus?saleID=1485&shopID=65147&version=3.5&signature=1a24a2d189824c6800d85131f11a2fca0ebbc233f31cad6d45e947496e423ff7"
get_cancel_subscription_URL($secret, %params)
Return URL for cancel subscription with signed parameters (only the parameters listed in the description of get_signature() are considered for signing).
Example:
get_cancel_subscription_URL('mySecret', shopID => '65147', saleID => '1485');
returns
"https://secure.verotel.com/cancel-subscription?saleID=1485&shopID=65147&version=3.5&signature=1a24a2d189824c6800d85131f11a2fca0ebbc233f31cad6d45e947496e423ff7"