All Projects → antonioribeiro → Zipcode

antonioribeiro / Zipcode

Licence: other
Zip code searcher

Projects that are alternatives of or similar to Zipcode

Laravel Ajax Crud
🧐 The Ultimate Guide For Creating Laravel CRUD AJAX Application using Laravel 5.8, Vue 2, Tailwindcss, Vue-router, and Axios
Stars: ✭ 84 (-2.33%)
Mutual labels:  laravel
Weixin
[READ ONLY] Subtree split of the SocialiteProviders/Weixin Provider (see SocialiteProviders/Providers)
Stars: ✭ 84 (-2.33%)
Mutual labels:  laravel
Tall Dashboard
Tailwind CSS + AlpineJS + Laravel + Livewire dashboard (WIP)
Stars: ✭ 83 (-3.49%)
Mutual labels:  laravel
Rabbitevents
Nuwber's events provide a simple observer implementation, allowing you to listen for various events that occur in your current and another application. For example, if you need to react to some event published from another API.
Stars: ✭ 84 (-2.33%)
Mutual labels:  laravel
Laravel Vue Generators
Generate Vue js files via artisan commands
Stars: ✭ 84 (-2.33%)
Mutual labels:  laravel
Circleci Demo Php Laravel
Example CircleCI project using PHP and Laravel
Stars: ✭ 85 (-1.16%)
Mutual labels:  laravel
Config
Config manager for laravel-admin
Stars: ✭ 83 (-3.49%)
Mutual labels:  laravel
Laravel 5 Myblog
The php blog writed by laravel5.1
Stars: ✭ 86 (+0%)
Mutual labels:  laravel
Laravel Schedule List
Laravel package to add command to list all scheduled artisan commands
Stars: ✭ 84 (-2.33%)
Mutual labels:  laravel
Docker Laravel
Laravel 5 with Dockerized Gulp, PHP-FPM, MySQL and nginx using docker-compose
Stars: ✭ 85 (-1.16%)
Mutual labels:  laravel
Voyager Zh
㊙️voyager 的中文汉化版 基于laravel 的管理后台 权限控制,菜单,数据库手脚架,长期更新
Stars: ✭ 84 (-2.33%)
Mutual labels:  laravel
Embedding Reference Apps
Reference applications for common web frameworks showing how to embed Metabase charts
Stars: ✭ 83 (-3.49%)
Mutual labels:  laravel
Laravel Fb Messenger
Laravel Facebook Messenger Provider
Stars: ✭ 85 (-1.16%)
Mutual labels:  laravel
Awesome Laravel Zero
👋 START HERE! A curated list of Laravel Zero libraries, resources and projects
Stars: ✭ 84 (-2.33%)
Mutual labels:  laravel
Dingtalk Exception
Laravel/Lumen exception notify through DingTalk
Stars: ✭ 86 (+0%)
Mutual labels:  laravel
Laravel Blog
基于Laravel5.8构建的轻量博客应用,支持Markdown,支持图片拖拽上传,界面简洁,SEO友好,支持百度链接自动和手动提交
Stars: ✭ 84 (-2.33%)
Mutual labels:  laravel
Bigbluebutton
Package that provides easily communicate between bigbluebutton server and laravel framework
Stars: ✭ 85 (-1.16%)
Mutual labels:  laravel
Laravel Spark Google2fa
Google Authenticator support for Laravel Spark
Stars: ✭ 86 (+0%)
Mutual labels:  laravel
Laravel Api Starter
laravel5.5 + dingo/api + JWT
Stars: ✭ 85 (-1.16%)
Mutual labels:  laravel
Rating
rating system for laravel 5
Stars: ✭ 85 (-1.16%)
Mutual labels:  laravel

ZipCode

Latest Stable Version License

A Laravel WorldWide ZIP code searcher

You can use it in Laravel:

ZipCode::setCountry('US');

return Response::make(
    ZipCode::find('10006')
);

Or outside it:

$z = new PragmaRX\ZipCode\ZipCode;

return $z->find('20250030')->toArray();

It automatically renders a JSON if you try to access it as string, but you still can:

$result = ZipCode::find('10006');

$json = $result->toJson();
$array = $result->toArray();

Select your preferred web service:

ZipCode::setPreferredWebService('Zippopotamus');

Get a web service by name, change things on it and find an address/city with it:

$webService = ZipCode::getWebServiceByName('Zippopotamus');

$webSerivice->setUrl('http://api.zippopotam.ca');

return ZipCode::find('20250030', $webService);

Create a new web service and add it to the list:

$webService = new PragmaRX\ZipCode\Support\WebService;

$webSerivice->setUrl('http://api.zippopotam.ca');
$webSerivice->setQuery('/%country%/%zip_code%');

ZipCode::addWebService($webService);

Change the user agent Guzzle will use to access the web service:

ZipCode::setUserAgent('Googlebot/2.1 (+http://www.google.com/bot.html)');

How much time it took to find a zip?:

$result = ZipCode::find('0200');

echo $result->getTimer();

Get a list of all available countries:

$array = ZipCode::getAvailableCountries();

Dynamically change query parameters, so if you have a Geonames login, you can set it by doing:

ZipCode::setQueryParameter('geonames_username', 'yourusername');

Web Services

This package uses web services all around the world to provide addresses and cities information. There are at least 2 web services available to all countries (Brazil currently has 6), if ZipCode cannot access one or doesn't find a zip on it, it automatically falls back to the others. If you know of any other web services available that could be better than those, please create an issue or PR with it.

Result

This is an example of what you get when you search a Zip with it:

{
   country_id:"CH",
   country_name:"Switzerland",
   zip_code:"1005",
   web_service:"Geonames",
   timer:"0.7808",
   service_query_url:"http://api.geonames.org/postalCodeSearch?country=CH&postalcode=1005&username=demo",
   addresses:[
      {
         postal_code:"1005",
         state_name:"Canton de Vaud",
         state_id:"VD",
         city:"Lausanne",
         latitude:"46.51985",
         longitude:"6.64252",
         department:"District de Lausanne",
         department_id:"2225",
         district:"Lausanne"
      }
   ],
   result_raw:{
      totalResultsCount:"1",
      code:{
         postalcode:"1005",
         name:"Lausanne",
         countryCode:"CH",
         lat:"46.51985",
         lng:"6.64252",
         adminCode1:"VD",
         adminName1:"Canton de Vaud",
         adminCode2:"2225",
         adminName2:"District de Lausanne",
         adminCode3:"5586",
         adminName3:"Lausanne"
      }
   },
   success:true
}

ZipCode returns a PragmaRX\ZipCode\Support\Result object and all properties can be accessed:

  • As array
  • As string, which will make it return a JSON
  • Using camel cased getters:
$result->getWebService();
$result->getCountryName();

Laravel Form Example

This is an unconventionally hacked Laravel router which renders a form to query zips on a selected country:

Route::any('zipcode', function() {

    echo
        Form::open(array('url' => 'zipcode')) .
        Form::select('country', ZipCode::getAvailableCountries(), Input::get('country')) .
        Form::text('zipcode', Input::get('zipcode')) .
        Form::submit('go!') .
        Form::close();

    if (Input::get('country'))
    {
        ZipCode::setCountry(Input::get('country'));

        ZipCode::setQueryParameter('geonames_username', 'demo');

        echo '<pre>';
        var_dump(ZipCode::find(Input::get('zipcode'))->toArray());
        echo '</pre>';
    }

});

Available countries

There are web services tested for the following countries:

  • Argentine (AR)
  • Australia (AU)
  • Brazil (BR)
  • Canada (CA)
  • Czech Republic (CZ)
  • France (FR)
  • Germany (DE)
  • Great Britain (GB)
  • India (IN)
  • Italy (IT)
  • Japan (JP)
  • Lithuania (LT)
  • Mexico (MX)
  • Pakistan (PK)
  • Poland (PL)
  • Portugal (PT)
  • Russia (RU)
  • South Africa (ZA)
  • Spain (ES)
  • Switzerland (CH)
  • Turkey (TR)
  • United States (US)

If you need a different one, please ask or just send a pull request with it.

Requirements

  • Laravel 4.1+ or 5+
  • PHP 5.4+

Installing

Install it using Composer:

composer require "pragmarx/zipcode"

Edit your app/config/app.php and add the Service Provider

'PragmaRX\ZipCode\Vendor\Laravel\ServiceProvider',

And the Facade

'ZipCode' => 'PragmaRX\ZipCode\Vendor\Laravel\Facade',

Using It

Instantiate it directly

use PragmaRX\ZipCode\ZipCode;

$zipcode = new ZipCode();

return $zipcode->generateSecretKey()

In Laravel you can use the IoC Container and the contract

$zipcode = app()->make('PragmaRX\ZipCode\Contracts\ZipCode');

return $zipcode->find('20250-030')

Or Method Injection, in Laravel 5

use PragmaRX\ZipCode\Contracts\ZipCode;

class WelcomeController extends Controller {

	public function generateKey(ZipCode $zipcode)
	{
		return $zipcode->find('20250-030');
	}

}

About Geonames

This is a really nice service and you should use it as your first option, but for it to be free (for 30,000 credits/day) you have to create an user account and enable the free webservices. And configure ZipCode to use your username:

ZipCode::setCountry('GB');

ZipCode::setQueryParameter('geonames_username', 'yourusername');

ZipCode::find('L23YL');

And you can also use config.php to set it:

return array(

	...

	'query_parameters' => array(
		'geonames_username' => 'demo',
	)

);

Author

Antonio Carlos Ribeiro

License

ZipCode is licensed under the BSD 3-Clause License - see the LICENSE file for details

Contributing

Pull requests and issues are more than welcome.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].