Giter VIP home page Giter VIP logo

net-ups's Introduction

Net-UPS

This is a fork of the CPAN Net::UPS module at: http://search.cpan.org/~sherzodr/Net-UPS-0.04/

I added support for the street level address validation API.

Street level validation usage:

my $address = Net::UPS::StreetAddress->new();
$address->name("John Doe");
$address->address("123 Test Street");
$address->address2("APT A");
$address->city("New York");
$address->state("NY");
$address->postal_code("10007");
$address->country_code("US");

# the new Net::UPS::StreetAddress object must be passed in, not a Net::UPS::Address object 
my $address = $ups->validate_street_address($address);
if ( $ups->errstr )
{
    if ($address)
    {
        # if an address was returned but an errstr is set it means that this is a "candidate" address
        # candidate addresses are not safe to ship to, but it will point you in the right direction
        # so that you can manually correct the address
        print "Possible address (not safe to ship to):\n";
        print $address->building_name . "\n" if $address->building_name;
        print $address->address . "\n";
        print $address->address2 . "\n" if $address->address2;
        print $address->address3 . "\n" if $address->address3;
        print $address->city . ", " . $address->state . " " . $address->postal_code . "-" . $address->postal_code_extended . "\n";
        print $address->country_code . "\n";
    }
    die $ups->errstr;
}
# the API might have made some changes to the address we gave it
# this is the sanitized address that UPS says is safe to ship to
print "Sanitized address:\n";
print $address->building_name . "\n" if $address->building_name;
print $address->address . "\n";
print $address->address2 . "\n" if $address->address2;
print $address->address3 . "\n" if $address->address3;
print $address->city . ", " . $address->state . " " . $address->postal_code . "-" . $address->postal_code_extended . "\n";
print $address->country_code . "\n";

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.