mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 12:56:05 +03:00
84 lines
2.8 KiB
PHP
84 lines
2.8 KiB
PHP
<?php
|
|
// Test this using following command
|
|
// php -S localhost:8080 ./index.php
|
|
require_once '../../vendor/autoload.php';
|
|
|
|
use \GraphQL\Examples\Blog\TypeSystem;
|
|
use \GraphQL\Examples\Blog\AppContext;
|
|
use \GraphQL\Examples\Blog\Data\DataSource;
|
|
use \GraphQL\Schema;
|
|
use \GraphQL\GraphQL;
|
|
use \GraphQL\Type\Definition\Config;
|
|
|
|
// Disable default PHP error reporting - we have better one for debug mode (see bellow)
|
|
ini_set('display_errors', 0);
|
|
|
|
if (!empty($_GET['debug'])) {
|
|
// Enable additional validation of type configs
|
|
// (disabled by default because it is costly)
|
|
Config::enableValidation();
|
|
|
|
// Catch custom errors (to report them in query results if debugging is enabled)
|
|
$phpErrors = [];
|
|
set_error_handler(function($severity, $message, $file, $line) use (&$phpErrors) {
|
|
$phpErrors[] = new ErrorException($message, 0, $severity, $file, $line);
|
|
});
|
|
}
|
|
|
|
try {
|
|
// Initialize user-land registry/factory of our app types:
|
|
$typeSystem = new TypeSystem();
|
|
|
|
// Init stub data source
|
|
// (in real-world apps this might be Doctrine's EntityManager for instance, or just DB connection):
|
|
$dataSource = new DataSource();
|
|
|
|
// Prepare context that will be available in all field resolvers (as 3rd argument):
|
|
$appContext = new AppContext();
|
|
$appContext->viewer = $dataSource->findUser(1); // simulated "currently logged-in user"
|
|
$appContext->dataSource = $dataSource;
|
|
$appContext->rootUrl = 'http://localhost:8080';
|
|
$appContext->request = $_REQUEST;
|
|
|
|
// Parse incoming query and variables
|
|
if (isset($_SERVER['CONTENT_TYPE']) && strpos($_SERVER['CONTENT_TYPE'], 'application/json') !== false) {
|
|
$raw = file_get_contents('php://input') ?: '';
|
|
$data = json_decode($raw, true);
|
|
} else {
|
|
$data = $_REQUEST;
|
|
}
|
|
$data += ['query' => null, 'variables' => null];
|
|
|
|
// GraphQL schema to be passed to query executor:
|
|
$schema = new Schema([
|
|
'query' => $typeSystem->query()
|
|
]);
|
|
|
|
$result = GraphQL::execute(
|
|
$schema,
|
|
$data['query'],
|
|
null,
|
|
$appContext,
|
|
(array) $data['variables']
|
|
);
|
|
|
|
// Add reported PHP errors to result (if any)
|
|
if (!empty($_GET['debug']) && !empty($phpErrors)) {
|
|
$result['extensions']['phpErrors'] = array_map(
|
|
['GraphQL\Error\FormattedError', 'createFromPHPError'],
|
|
$phpErrors
|
|
);
|
|
}
|
|
$httpStatus = 200;
|
|
} catch (\Exception $error) {
|
|
$httpStatus = 500;
|
|
if (!empty($_GET['debug'])) {
|
|
$result['extensions']['exception'] = \GraphQL\Error\FormattedError::createFromException($error);
|
|
} else {
|
|
$result['errors'] = \GraphQL\Error\FormattedError::create('Unexpected Error');
|
|
}
|
|
}
|
|
|
|
header('Content-Type: application/json', true, $httpStatus);
|
|
echo json_encode($result);
|