2017 © Pedro Peláez
 

yii2-extension yii2-graphql

facebook graphql server side for yii2 php framework

image

tsingsun/yii2-graphql

facebook graphql server side for yii2 php framework

  • Friday, February 23, 2018
  • by tsingsun
  • Repository
  • 9 Watchers
  • 38 Stars
  • 438 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 7 Versions
  • 14 % Grown

The README.md

yii-graphql

Using Facebook GraphQL PHP server implementation. Extends graphql-php to apply to YII2., (*1)

Latest Stable Version Build Status Total Downloads, (*2)


Chinese document, (*3)


Features, (*4)

  • Configuration includes simplifying the definition of standard graphql protocols.
  • Based on the full name defined by the type, implementing on-demand loading and lazy loading, and no need to define all type definitions into the system at load.
  • Mutation input validation support.
  • Provide controller integration and authorization support.

Install

Using composer, (*5)

composer require tsingsun/yii2-graphql

Type

The type system is the core of GraphQL, which is embodied in GraphQLType. By deconstructing the GraphQL protocol and using the graph-php library to achieve fine-grained control of all elements, it is convenient to extend the class according to its own needs, (*6)

The main elements of GraphQLType

The following elements can be declared in the $attributes property of the class, or as a method, unless stated otherwise. This also applies to all elements after this., (*7)

Element Type Description
name string Required Each type needs to be named, with unique names preferred to resolve potential conflicts. The property needs to be defined in the $attributes property.
description string A description of the type and its use. The property needs to be defined in the $attributes property.
fields array Required The included field content is represented by the fields () method.
resolveField callback function($value, $args, $context, GraphQL\Type\Definition\ResolveInfo $info) For the interpretation of a field. For example: the fields definition of the user property, the corresponding method is resolveUserField(), and $value is the passed type instance defined by type.

Query

GraphQLQuery and GraphQLMutation inherit GraphQLField. The element structure is consistent, and if you would like a reusable Field, you can inherit it. Each query of Graphql needs to correspond to a GraphQLQuery object, (*8)

The main elements of GraphQLField

Element Type Description
type ObjectType For the corresponding query type. The single type is specified by GraphQL::type, and a list by Type::listOf(GraphQL::type).
args array The available query parameters, each of which is defined by Field.
resolve callback function($value, $args, $context, GraphQL\Type\Definition\ResolveInfo $info) $value is the root data, $args is the query parameters, $context is the yii\web\Application object, and $info resolves the object for the query. The root object is handled in this method.

Mutation

Definition is similar to GraphQLQuery, please refer to the above., (*9)

Simplified Field Definition

Simplifies the declarations of Field, removing the need to defined as an array with the type key., (*10)

Standard Definition

//...
'id' => [
    'type' => Type::id(),
],
//...

Simplified Definition

//...
'id' => Type::id(),
//...

Yii Implementation

General configuration

JsonParser configuration required, (*11)

'components' => [
    'request' => [
        'parsers' => [
            'application/json' => 'yii\web\JsonParser',
        ],
    ],
];

Module support

Can easily be implemented with yii\graphql\GraphQLModuleTrait. The trait is responsible for initialization., (*12)

class MyModule extends \yii\base\Module
{
    use \yii\graphql\GraphQLModuleTrait;
}

In your application configuration file:, (*13)

'modules'=>[
    'moduleName ' => [
        'class' => 'path\to\module'
        //graphql config
        'schema' => [
            'query' => [
                'user' => 'app\graphql\query\UsersQuery'
            ],
            'mutation' => [
                'login'
            ],
            // you do not need to set the types if your query contains interfaces or fragments
            // the key must same as your defined class
            'types' => [
                'Story' => 'yiiunit\extensions\graphql\objects\types\StoryType'
            ],
        ],
    ],
];

Use the controller to receive requests by using yii\graphql\GraphQLAction, (*14)

class MyController extends Controller
{
   function actions() {
       return [
            'index'=>[
                'class'=>'yii\graphql\GraphQLAction'
            ],
       ];
   }
}

Component Support

also you can include the trait with your own components,then initialization yourself., (*15)

'components'=>[
    'componentsName' => [
        'class' => 'path\to\components'
        //graphql config
        'schema' => [
            'query' => [
                'user' => 'app\graphql\query\UsersQuery'
            ],
            'mutation' => [
                'login'
            ],
            // you do not need to set the types if your query contains interfaces or fragments
            // the key must same as your defined class
            'types'=>[
                'Story'=>'yiiunit\extensions\graphql\objects\types\StoryType'
            ],
        ],
    ],
];

Input validation

Validation rules are supported. In addition to graphql based validation, you can also use Yii Model validation, which is currently used for the validation of input parameters. The rules method is added directly to the mutation definition., (*16)

public function rules() {
    return [
        ['password','boolean']
    ];
}

Authorization verification

Since graphql queries can be combined, such as when a query merges two query, and the two query have different authorization constraints, custom authentication is required. I refer to this query as "graphql actions"; when all graphql actions conditions are configured, it passes the authorization check., (*17)

Authenticate

In the behavior method of controller, the authorization method is set as follows, (*18)

function behaviors() {
    return [
        'authenticator'=>[
            'class' => 'yii\graphql\filter\auth\CompositeAuth',
            'authMethods' => [
                \yii\filters\auth\QueryParamAuth::className(),
            ],
            'except' => ['hello']
        ],
    ];
}

If you want to support IntrospectionQuery authorization, the corresponding graphql action is __schema, (*19)

Authorization

If the user has passed authentication, you may want to check the access for the resource. You can use GraphqlAction's checkAccess method in the controller. It will check all graphql actions., (*20)

class GraphqlController extends Controller
{
    public function actions() {
        return [
            'index' => [
                'class' => 'yii\graphql\GraphQLAction',
                'checkAccess'=> [$this,'checkAccess'],
            ]
        ];
    }

    /**
     * authorization
     * @param $actionName
     * @throws yii\web\ForbiddenHttpException
     */
    public function checkAccess($actionName) {
        $permissionName = $this->module->id . '/' . $actionName;
        $pass = Yii::$app->getAuthManager()->checkAccess(Yii::$app->user->id,$permissionName);
        if (!$pass){
            throw new yii\web\ForbiddenHttpException('Access Denied');
        }
    }
}

Demo

Creating queries based on graphql protocols

Each query corresponds to a GraphQLQuery file., (*21)

class UserQuery extends GraphQLQuery
{
    public function type() {
        return GraphQL::type(UserType::class);
    }

    public function args() {
        return [
            'id'=>[
                'type' => Type::nonNull(Type::id())
            ],
        ];
    }

    public function resolve($value, $args, $context, ResolveInfo $info) {
        return DataSource::findUser($args['id']);
    }


}

Define type files based on query protocols, (*22)


class UserType extends GraphQLType { protected $attributes = [ 'name'=>'user', 'description'=>'user is user' ]; public function fields() { $result = [ 'id' => ['type'=>Type::id()], 'email' => Types::email(), 'email2' => Types::email(), 'photo' => [ 'type' => GraphQL::type(ImageType::class), 'description' => 'User photo URL', 'args' => [ 'size' => Type::nonNull(GraphQL::type(ImageSizeEnumType::class)), ] ], 'firstName' => [ 'type' => Type::string(), ], 'lastName' => [ 'type' => Type::string(), ], 'lastStoryPosted' => GraphQL::type(StoryType::class), 'fieldWithError' => [ 'type' => Type::string(), 'resolve' => function() { throw new \Exception("This is error field"); } ] ]; return $result; } public function resolvePhotoField(User $user,$args){ return DataSource::getUserPhoto($user->id, $args['size']); } public function resolveIdField(User $user, $args) { return $user->id.'test'; } public function resolveEmail2Field(User $user, $args) { return $user->email2.'test'; } }

Query instance

'hello' =>  "
        query hello{hello}
    ",

    'singleObject' =>  "
        query user {
            user(id:\"2\") {
                id
                email
                email2
                photo(size:ICON){
                    id
                    url
                }
                firstName
                lastName

            }
        }
    ",
    'multiObject' =>  "
        query multiObject {
            user(id: \"2\") {
                id
                email
                photo(size:ICON){
                    id
                    url
                }
            }
            stories(after: \"1\") {
                id
                author{
                    id
                }
                body
            }
        }
    ",
    'updateObject' =>  "
        mutation updateUserPwd{
            updateUserPwd(id: \"1001\", password: \"123456\") {
                id,
                username
            }
        }
    "

Exception Handling

You can config the error formater for graph. The default handle uses yii\graphql\ErrorFormatter, which optimizes the processing of Model validation results., (*23)

'modules'=>[
    'moduleName' => [
       'class' => 'path\to\module'
       'errorFormatter' => ['yii\graphql\ErrorFormatter', 'formatError'],
    ],
];

Future

  • ActiveRecord tool for generating query and mutation class.
  • Some of the special syntax for graphql, such as @Directives, has not been tested

The Versions

23/02 2018

dev-master

9999999-dev

facebook graphql server side for yii2 php framework

  Sources   Download

BSD-3-Clause Private

The Requires

 

The Development Requires

by QingShan li

27/01 2018

0.11.4

0.11.4.0

facebook graphql server side for yii2 php framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by QingShan li

19/12 2017

0.11.3

0.11.3.0

facebook graphql server side for yii2 php framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by QingShan li

06/12 2017

0.11.2

0.11.2.0

facebook graphql server side for yii2 php framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by QingShan li

05/12 2017

0.11.1

0.11.1.0

facebook graphql server side for yii2 php framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by QingShan li

18/09 2017

0.9.1

0.9.1.0

facebook graphql server side for yii2 php framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by QingShan li

05/07 2017

0.9

0.9.0.0

facebook graphql server side for yii2 php framework

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

by QingShan li