use Thrift in Laravel
-
composer require Gclove/thrift-laravel
-
add provider to
app.providers
:\Gclove\Thrift\ThriftServiceProvider::class
-
setting
thrift.providers
in fileconfig/thrift.php
:// first is service name, defined in thrift file // second in Service implement reference, e.g. // class ImageServcie implement \Gclove\ImageServiceIf ['Gclove.ImageService', \Gclove\ImageService::class],
-
add Middleware
\Gclove\Thrift\Middleware\ThriftServerMiddleware::class
toapp\Http\Kernel
in default, the request to
/rpc
will be process by Middleware, if you want to change this, please extendThriftServerMiddleware
and overwriteprocess
method
composer require Gclove/thrift-laravel
- add provider in
app.providers
:\Gclove\Thrift\ThriftServiceProvider::class
- setting
thrift.depends
in fileconfig/thrift.php
:// key is url // value is array of service name "http://localhost/rpc" => [ 'Gclove.ImageService', ]
- usage:
/** @var \Gclove\Thrift\Contracts\ThriftClient $thriftClient */ $thriftClient = app(\Gclove\Thrift\Contracts\ThriftClient::class); /** @var \Gclove\ImageServiceIf $imageService */ $imageService = $thriftClient->with('Gclove.ImageService'); $result = $imageService->foo();
- Unittest