A Laravel package to use the Skynet Courier API.
Require the package using composer:
composer require claassenmarius/laravel-skynet
Add the following environment variables to your .env
file and add your Skynet account username, password, system id and account number.
SKYNET_ACCOUNT_USERNAME=
SKYNET_ACCOUNT_PASSWORD=
SKYNET_SYSTEM_ID=
SKYNET_ACCOUNT_NUMBER=
You can obtain an instance of Claassenmarius\LaravelSkynet\Skynet
in any of the following ways:
When type-hinting Skynet
in a method, Laravel will automatically resolve it from the IOC container for you.
use Claassenmarius\LaravelSkynet\Skynet;
class QuoteController extends Controller
{
public function __invoke(Skynet $skynet)
{
$response = $skynet->quote(...);
// do somethin with the $response
}
}
You can use the Skynet
Facade.
use Claassenmarius\LaravelSkynet\Facades\Skynet;
class QuoteController extends Controller
{
public function __invoke()
{
$response = Skynet::quote(...);
// do somethin with the $response
}
}
use Claassenmarius\LaravelSkynet\Skynet;
class QuoteController extends Controller
{
public function __invoke()
{
$skynet = app()->make(Skynet::class);
$response = $skynet->quote(...);
// do somethin with the $response
}
}
If you plan on instantiating Skynet
manually throughout your project it won't be neccessary to add your Skynet credentials to the .env
file. Instead, pass
your credentials to the constructor.
use Claassenmarius\LaravelSkynet\Skynet;
class QuoteController extends Controller
{
public function __invoke()
{
$skynet = new Skynet(
'skynet_username',
'skynet_password',
'skynet_system_id',
'skynet_account_number'
);
$response = $skynet->quote(...);
// do somethin with the $response
}
}
The following methods are available to get a security token, validate a suburb/postcode combination, get a list of postal
codes for a suburb, get a quote for a parcel, get an ETA between two locations, generate a waybill, obtain a POD image and
track a waybill. Each method returns a new Illuminate\Http\Client\Response
which
exposes methods to inspect the response.
$response = $skynet->securityToken();
$response = $skynet->validateSuburbAndPostalCode([
'suburb' => 'Brackenfell',
'postal-code' => '7560'
]);
$response = $skynet->postalCodesFromSuburb('Brackenfell');
$response = $skynet->quote([
'collect-city' => 'Brackenfell',
'deliver-city' => 'Stellenbosch',
'deliver-postcode' => '7600',
'service-type' => 'ON1',
'insurance-type' => '1',
'parcel-insurance' => '0',
'parcel-length' => 10, //cm
'parcel-width' => 20, // cm
'parcel-height' => 30, //cm
'parcel-weight' => 20 //kg
]);
$response = $skynet->deliveryETA([
'from-suburb' => 'Brackenfell',
'from-postcode' => '7560',
'to-suburb' => 'Stellenbosch',
'to-postcode' => '7600',
'service-type' => 'ON1'
]);
$response = $skynet->createWaybill([
"customer-reference" => "Customer Reference",
"GenerateWaybillNumber" => true,
"service-type" => "ON1",
"collection-date" => "2021-06-26",
"from-address-1" => "3 Janie Street, Ferndale, Brackenfell",
"from-suburb" => "Brackenfell",
"from-postcode" => "7560",
"to-address-1" => "15 Verreweide Street, Universiteitsoord, Stellenbosch",
"to-suburb" => "Stellenbosch",
"to-postcode" => "7600",
"insurance-type" => "1",
"insurance-amount" => "0",
"security" => "N",
"parcel-number" => "1",
"parcel-length" => 10,
"parcel-width" => 20,
"parcel-height" => 30,
"parcel-weight" => 10,
"parcel-reference" => "12345",
"offsite-collection" => true
]);
$response = $skynet->waybillPOD('your-waybill-number');
$response = $skynet->trackWaybill('your-waybill-number');
Illuminate\Http\Client\Response
provides the following methods to inspect the response.
$securityToken = $response->body();
// "{"SecurityToken":"2_f77e4922-1407-485e-a0fa-4fdd5c29e9ca"}"
$securityToken = $response->json($key);
// ["SecurityToken" => "2_c767aa41-bca8-4084-82a0-69d8e27fba2c"]
$securityToken = $response->object();
// { +"SecurityToken": "2_c767aa41-bca8-4084-82a0-69d8e27fba2c" }
$securityToken = $response->collect($key);
$header = $response->header($header);
// "application/json; charset=utf-8"
$headers = $response->headers();
// Return an array of all headers
$headers = $response->status();
// 200
$headers = $response->successful();
// true
$headers = $response->ok();
// true
$headers = $response->serverError();
// false
$headers = $response->failed();
// false
You can inspect the Laravel documentation for more information on the methods that Illuminate\Http\Client\Response
provide.
This package uses Laravel's Http Client behind the scenes, which does not throw exceptions on client or server errors (400 and 500 level responses from servers). You may determine if one of these errors was returned using the successful, clientError, or serverError methods.
If you have a response instance and would like to throw an instance of Illuminate\Http\Client\RequestException
if the response status code indicates a client or
server error, you may use the throw method:
response = $skynet->quote(...);
if($response->failed()) {
// Throw an exception if a client or server error occurred...
$response->throw();
}
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT Licence (MIT). Please see Licence File for more information.