Code Monkey home page Code Monkey logo

grpc-laravel-base's Introduction

About package

This is a product of programmer sun*.

This package has some class and method help yan can implement Grpc to Laravel easier. So improve system performance thanks to Grpc

How to use

composer require phunq/grpc-base-laravel

then run command to publish config.

php artisan vendor:publish --tag=phunq-grpc-config

You need know how to compile files proto with php

Client

  • Autoload file proto generated:
"autoload": {
        "psr-4": {
        ...
            "": "protos/generated/"
        },
        ...
    },
  • Quick call to server (recommend using)

    step 1: create class extend BaseGrpcApi;
<?php

namespace App\Services\MicroserviceGrpc;

use phunq\GrpcLaravel\Client\Contracts\BaseGrpcApi;
use Google\Protobuf\Internal\Message;
use Illuminate\Http\Request;
use Protobuf\Company\ExampleServiceClient;

/**
 * @method Message ExampleMethod(array|Request $request)
 */

class ExampleGrpcClient extends BaseGrpcApi
{
    public function grpcClient(): string
    {
        return ExampleServiceClient::class;
    }
}

step 2: call method in that class;

<?php
 ...
// ExampleMethod is a method of ExampleServiceClient;
 (new ExampleGrpcClient())->ExampleMethod($request);
 ...
  • Or create new client Grpc
$clientGrpc = (new GrpcFactory)->make(ExampleServiceClient::class);
  • Use traits;
 ...
 use phunq\GrpcLaravel\Client\Traits\HandleDataRequest;
 ...
 class ExampleController extends Controller
 {
    use HandleDataRequest;
 }
  • methods:
Name Params Return Description
mergeRequestToGrpcRequest - An object instance of Illuminate\Http\Request;
- Path of GRPC request class
object: grpc request Convert laravel request to grpc request
dataGrpc - An object instance of request or response GRPC Array: Array have a key is 'data' Create a array have key is 'data' and value is data grpc
prepareDataRequestFromGrpc - An object instance of request or response GRPC object: instance of Illuminate\Http\Request Convert grpc request to laravel request
removeLinkPagination - An array array Remove key 'links' and 'path' in array

Serve

  • Start serve:
./vendor/phunq/grpc-base-laravel/rr-grpc serve -v -d
  • Example worker file:
<?php

declare(strict_types=1);

use App\Grpc\ExampleGrpcController;
use Spiral\Goridge\StreamRelay;
use Spiral\RoadRunner\Worker;

ini_set('display_errors', 'stderr');

require __DIR__.'/vendor/autoload.php';

$app = require_once __DIR__.'/bootstrap/app.php';

$app->singleton(
    phunq\GrpcLaravel\Server\Contracts\Kernel::class,
    phunq\GrpcLaravel\Server\Kernel::class
);

$app->singleton(
    phunq\GrpcLaravel\Server\Contracts\ServiceInvoker::class,
    phunq\GrpcLaravel\Server\LaravelServiceInvoker::class
);

$kernel = $app->make(phunq\GrpcLaravel\Server\Kernel::class);

$kernel->registerService(ExampleGrpcController::class);

$w = new Worker(new StreamRelay(STDIN, STDOUT));

$kernel->serve($w);

grpc-laravel-base's People

Contributors

binhtv-2701 avatar phunq-0851 avatar tranbinh161998 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.