1. Go to this page and download the library: Download upgate/laravel-jsonrpc library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
upgate / laravel-jsonrpc example snippets
// ...
use Upgate\LaravelJsonRpc\Contract\ServerInterface as JsonRpcServerContract;
class RouteServiceProvider extends ServiceProvider
{
// ...
public function map(Router $router)
{
$router->group(
['namespace' => $this->namespace],
function (Router $router) {
// Create an instance of JsonRpcServer
$jsonRpcServer = $this->app->make(JsonRpcServerContract::class);
// Set default controller namespace
$jsonRpcServer->setControllerNamespace($this->namespace);
// Register middleware aliases configured for Laravel router
$jsonRpcServer->registerMiddlewareAliases($router->getMiddleware());
$router->post('/jsonrpc', function (Illuminate\Http\Request $request) use ($jsonRpcServer) {
$jsonRpcServer->router()
->addMiddlewares(['fooMiddleware', 'barMiddleware', 'auth:rpcGuard']) // Middleware alias names or class names.
// Parameters may be specified by separating
// the middleware name and parameters with a :
->bindController('foo', 'FooController') // for 'foo.$method' methods invoke FooController->$method(),
// for 'foo' method invoke FooConroller->index()
->bind('bar', 'MyController@bar') // for 'bar' method invoke MyController->bar()
->group(
['bazMiddleware'], // add bazMiddleware for methods in this group
function ($jsonRpcRouter) {
// for 'bar.baz' method invoke MyController->bazz()
$jsonRpcRouter->bind('bar.baz', 'MyController@bazz');
}
);
// Run json-rpc server with $request passed to middlewares as a handle() method argument
return $jsonRpcServer->run($request);
});