gdinko/speedy
Composer 安装命令:
composer require gdinko/speedy
包简介
Laravel Speedy API Wrapper
README 文档
README
Installation
You can install the package via composer:
composer require gdinko/speedy
If you plan to use database for storing nomenclatures:
php artisan migrate
If you need to export configuration file:
php artisan vendor:publish --tag=speedy-config
If you need to export migrations:
php artisan vendor:publish --tag=speedy-migrations
If you need to export models:
php artisan vendor:publish --tag=speedy-models
If you need to export commands:
php artisan vendor:publish --tag=speedy-commands
Configuration
SPEEDY_API_USER= #Get this from Speedy SPEEDY_API_PASS= #Get this from Speedy SPEEDY_API_BASE_URL= #default=https://api.speedy.bg/v1/ SPEEDY_API_TIMEOUT= #default=5
Usage
Runtime Setup
Speedy::setAccount('user', 'pass'); Speedy::setBaseUrl('endpoint'); Speedy::setTimeout(99); Speedy::addAccountToStore('AccountUser', 'AccountPass'); Speedy::getAccountFromStore('AccountUser'); Speedy::setAccountFromStore('AccountUser');
Multiple Account Support In AppServiceProvider add accounts in boot method
public function boot() { Speedy::addAccountToStore( 'AccountUser', 'AccountPass' ); Speedy::addAccountToStore( 'AccountUser_XXX', 'AccountPass_XXX' ); }
Methods
use Gdinko\Speedy\Facades\Speedy; //Shipment Service Speedy::createShipment(Hydrator $hydrator): array Speedy::cancelShipment(Hydrator $hydrator): array Speedy::addParcel(Hydrator $hydrator): array Speedy::finalizePendingShipment(Hydrator $hydrator): array Speedy::shipmentInformation(Hydrator $hydrator): array Speedy::secondaryShipments($shipmentId, Hydrator $hydrator): array Speedy::updateShipment(Hydrator $hydrator): array Speedy::updateShipmentProperties(Hydrator $hydrator): array Speedy::findParcelsByReference(Hydrator $hydrator): array Speedy::handoverToCourier(Hydrator $hydrator): array //Print Service Speedy::print(Hydrator $hydrator): string Speedy::extendedPrint(Hydrator $hydrator): array Speedy::labelInfo(Hydrator $hydrator): array Speedy::printVoucher(Hydrator $hydrator): string //Track And Trace Service Speedy::track(Hydrator $hydrator): array Speedy::bulkTrackingDataFiles(Hydrator $hydrator): array //Pickup Service Speedy::pickup(Hydrator $hydrator): array Speedy::pickupTerms(Hydrator $hydrator): array //Location Service Speedy::getCountry($id, Hydrator $hydrator): array Speedy::findCountry(Hydrator $hydrator): array Speedy::getAllCountries(Hydrator $hydrator): object Speedy::getState($id, Hydrator $hydrator): array Speedy::findState(Hydrator $hydrator): array Speedy::getAllStates($countryId, Hydrator $hydrator): object Speedy::getSite($id, Hydrator $hydrator): array Speedy::findSite(Hydrator $hydrator): array Speedy::getAllSites($countryId, Hydrator $hydrator): object Speedy::getStreet($id, Hydrator $hydrator): array Speedy::findStreet(Hydrator $hydrator): array Speedy::getAllStreets($countryId, Hydrator $hydrator): object Speedy::getComplex($id, Hydrator $hydrator): array Speedy::findComplex(Hydrator $hydrator): array Speedy::getAllComplexes($countryId, Hydrator $hydrator): object Speedy::findBlock(Hydrator $hydrator): array Speedy::getPoi($id, Hydrator $hydrator): array Speedy::findPoi(Hydrator $hydrator): array Speedy::getAllPoi($countryId, Hydrator $hydrator): object Speedy::getAllPostcodes($countryId, Hydrator $hydrator): object Speedy::getOffice($id, Hydrator $hydrator): array Speedy::findOffice(Hydrator $hydrator): array //Calculation Service Speedy::calculate(Hydrator $hydrator): array //Client Service Speedy::getClient($id, Hydrator $hydrator): array Speedy::getContractClients(Hydrator $hydrator): array Speedy::createContact(Hydrator $hydrator): array Speedy::getContactByExternalId($id, Hydrator $hydrator): array Speedy::getOwnClientId(Hydrator $hydrator): array //Validation Service Speedy::validateAddress(Hydrator $hydrator): array Speedy::validatePostcode(Hydrator $hydrator): array Speedy::validatePhone(Hydrator $hydrator): array Speedy::validateShipment(Hydrator $hydrator): array //Services Service Speedy::services(Hydrator $hydrator): array Speedy::destinationServices(Hydrator $hydrator): array //Payments Service Speedy::payments(Hydrator $hydrator): array
Commands
#get payments (use -h to view options) php artisan speedy:get-payments #get speedy api status (use -h to view options) php artisan speedy:api-status #sync countries with database (use -h to view options) php artisan speedy:sync-countries #sync cities with database (use -h to view options) php artisan speedy:sync-cities #create cities map with other carriers in database (use -h to view options) php artisan speedy:map-cities #sync offices with database (use -h to view options) php artisan speedy:sync-offices #track parcels (use -h to view options) php artisan speedy:track
Models
CarrierSpeedyCountry CarrierSpeedyCity CarrierSpeedyOffice CarrierSpeedyTracking CarrierSpeedyPayment CarrierSpeedyApiStatus CarrierCityMap
Events
CarrierSpeedyTrackingEvent CarrierSpeedyPaymentEvent
Parcels Tracking
- Subscribe to tracking event, you will recieve last tracking info, if tracking command is schduled
Event::listen(function (CarrierSpeedyTrackingEvent $event) { echo $event->account; dd($event->tracking); });
- Before use of tracking command you need to create your own command and define setUp method
php artisan make:command TrackCarrierSpeedy
- In app/Console/Commands/TrackCarrierSpeedy define your logic for parcels to be tracked
use Gdinko\Speedy\Commands\TrackCarrierSpeedyBase; class TrackCarrierSpeedySetup extends TrackCarrierSpeedyBase { protected function setup() { //define parcel selection logic here // $this->parcels = []; } }
- Use the command
php artisan speedy:track
Examples
Subscribe to payment event
Event::listen(function (CarrierSpeedyPaymentEvent $event) { echo $event->account; dd($event->payment); });
Check for payments from today
php artisan speedy:get-payments
Get All Countries
use Gdinko\Speedy\Facades\Speedy; use Gdinko\Speedy\Hydrators\Request; dd( Speedy::getAllCountries( new Request() )->toArray() );
Find Country
use Gdinko\Speedy\Facades\Speedy; use Gdinko\Speedy\Hydrators\Request; dd( Speedy::findCountry( new Request([ 'name' => 'bulgaria' ]) ) );
Testing
composer test
Changelog
Please see CHANGELOG for more information what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email dinko359@gmail.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
gdinko/speedy 适用场景与选型建议
gdinko/speedy 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 7.31k 次下载、GitHub Stars 达 20, 最近一次更新时间为 2022 年 05 月 18 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「laravel」 「speedy」 「gdinko」 「speedy laravel」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 gdinko/speedy 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 gdinko/speedy 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 gdinko/speedy 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Laravel Econt API Wrapper
pdfMatrix Laravel SDK
Laravel Prim API Wrapper
Collection of Listeners to log spec times, prioritise specs, and free memory after each spec
Laravel Dynamic Express API Wrapper
Alfabank REST API integration
统计信息
- 总下载量: 7.31k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 20
- 点击次数: 25
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-05-18