Download the PHP package ali-alharthi/saudiaddress without Composer
On this page you can find all versions of the php package ali-alharthi/saudiaddress. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ali-alharthi/saudiaddress
More information about ali-alharthi/saudiaddress
Files in ali-alharthi/saudiaddress
Package saudiaddress
Short Description Saudi National Address API PHP Library with Laravel support.
License MIT
Homepage https://github.com/ali-alharthi/saudiaddress
Informations about the package saudiaddress
Saudi National Address API
SaudiAddress is a PHP package/library built to consume the Saudi National Address API (api.address.gov.sa). It makes it simple to use most of what the API has to offer.
You can for example retrieve regions, cities, districts, services and addresses from geo coordinates, verify an address and more!
Installation
You can install the package via composer:
Laravel
This package supports Laravel out of the box :smile:.
However, you need to add the following to the config/services.php
file:
Then, append the following to the .env
file:
Replace YOUR-API-KEY-HERE
with your SNA API key, Development
with your SNA subscription type and SNA_CACHE
with true or false (enable/disable cache).
After that you can use the facade: AliAlharthi\SaudiAddress\Facades\SaudiAddress
to access the library.
Usage
As a regualr PHP package:
Laravel:
In the following examples, parameter 'E'
stands for English. Default language is Arabic 'A'
:mag: Short Address :new:
- Get the full address using the Saudi short address:
- parameter
short
is the "short address".
- parameter
:white_check_mark: Verify a Short Address
- Verify a Short Address.
- parameters
ECAB2823
andRAHA3443
are the short addresses.
- parameters
Short address should consists of 4 letters followed by 4 numbers
An exception will be thrown if an incorrect short address was provided
:earth_asia: Regions
-
Get all regions:
- Get a region by ID:
getId()
aliases: byId()
and id()
.
- Get a region by Name:
getName()
aliases: byName()
, name()
and named()
.
:earth_asia: Cities
using -1
as the region ID (on the all()
method - before the language parameter) or leaving it empty will get all the cities of Saudi Arabia
-
Get all cities of Saudi Arabia:
- parameter
-1
is the region ID.
- parameter
-
Get all cities of a region ID:
- parameter
3
is the region ID.
- parameter
- Get a city by ID:
getId()
aliases: byId()
and id()
.
- Get a city by Name:
getName()
aliases: byName()
, name()
and named()
.
- Get a city by Governorate Name:
getGov()
aliases: byGovernorate()
, byGov()
and govName()
.
:city_sunset: Districts
-
Get all districts from a city ID:
- parameter
13
is the city ID.
- parameter
- Get a district by ID:
- parameter
13
is the city ID.
- parameter
getId()
aliases: byId()
and id()
.
- Get a district by Name:
- parameter
13
is the city ID.
- parameter
getName()
aliases: byName()
, name()
and named()
.
:convenience_store: Services
- Get the service categories:
categories()
aliases: cat()
and main()
.
- Get the sub services of from a category ID:
- parameter
102
is the service category ID.
- parameter
sub()
aliases: subCategories()
and subServices()
.
- Get a service category / sub service by ID:
- parameter
102
is the service category ID. - parameter
10210
is the sub service ID.
- parameter
getId()
aliases: byId()
and id()
.
- Get a service category / sub service by Name:
- parameter
102
is the service category ID.
- parameter
getName()
aliases: byName()
, name()
, serviceName()
and named()
.
:round_pushpin: GEO
- Address reverse (Get the address from geo coordinates):
- parameter
24.65017630
is latitude and parameter46.71670870
is longitude.
- parameter
coordinates()
aliases: coords()
and location()
.
- Get the city from geo:
- parameter
24.65017630
represents latitude and parameter46.71670870
represents longitude.
- parameter
getCity()
aliases: city()
.
- Get the address line 1 from geo:
- parameter
24.65017630
represents latitude and parameter46.71670870
represents longitude.
- parameter
getAddressOne()
aliases: addressOne()
.
- Get the address line 2 from geo:
- parameter
24.65017630
represents latitude and parameter46.71670870
represents longitude.
- parameter
getAddressTwo()
aliases: addressTwo()
.
- Get the street name from geo:
- parameter
24.65017630
represents latitude and parameter46.71670870
represents longitude.
- parameter
getStreet()
aliases: street()
.
- Get the region from geo:
- parameter
24.65017630
represents latitude and parameter46.71670870
represents longitude.
- parameter
getRegion()
aliases: region()
.
- Get the district from geo:
- parameter
24.65017630
represents latitude and parameter46.71670870
represents longitude.
- parameter
getDistrict()
aliases: district()
.
- Get the building number from geo:
- parameter
24.65017630
represents latitude and parameter46.71670870
represents longitude.
- parameter
getBuildingNumber()
aliases: buildingNumber()
.
- Get the post code (zip) from geo:
- parameter
24.65017630
represents latitude and parameter46.71670870
represents longitude.
- parameter
getPostCode()
aliases: postCode()
, getZip()
and zip()
.
- Get the additional number from geo:
- parameter
24.65017630
represents latitude and parameter46.71670870
represents longitude.
- parameter
getAdditionalNumber()
aliases: additionalNumber()
.
:mag: Address Lookup
- Find all the addresses using a string:
- parameter
address string
is the "search string" and parameter1
is the page #.
- parameter
if page is set to 1
the package will loop through the pages and combine the results
Developer Subscriptions will sleep for 5 seconds before fetching the next page!
:white_check_mark: Verify an Address
- Verify an Address by building number, zip code and additional number.
- parameters
8228
and9999
are the building numbers. - parameters
12643
and99999
are the zip codes. - parameters
2121
and9999
are the additional numbers.
- parameters
:bell: Other Information
This package was built by a single person within 2-3 days due to an actual need in a real-world project.
This is still considered simple but gets the job done. Plus contributions (CONTRIBUTING) are welcomed :grin:.
:zap: Cache
This package has a simple file cache system. Most of the API requests will be saved in the Api/Cache/
directory due to the limitation on the Development subscription (1000 requests per month).
Redis and other cache methods will be added in the future versions
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.