2017-07-14 15:08:47 +03:00
|
|
|
<?php
|
|
|
|
namespace GraphQL\Server;
|
|
|
|
|
2017-07-17 16:31:26 +03:00
|
|
|
use GraphQL\Error\Error;
|
2017-07-14 15:08:47 +03:00
|
|
|
use GraphQL\Error\FormattedError;
|
|
|
|
use GraphQL\Error\InvariantViolation;
|
|
|
|
use GraphQL\Executor\ExecutionResult;
|
2017-07-17 16:31:26 +03:00
|
|
|
use GraphQL\Executor\Executor;
|
|
|
|
use GraphQL\Executor\Promise\Adapter\SyncPromiseAdapter;
|
2017-07-14 15:08:47 +03:00
|
|
|
use GraphQL\Executor\Promise\Promise;
|
2017-07-17 16:31:26 +03:00
|
|
|
use GraphQL\Executor\Promise\PromiseAdapter;
|
2017-07-14 15:08:47 +03:00
|
|
|
use GraphQL\Language\AST\DocumentNode;
|
|
|
|
use GraphQL\Language\Parser;
|
|
|
|
use GraphQL\Utils\AST;
|
|
|
|
use GraphQL\Utils\Utils;
|
2017-07-17 16:31:26 +03:00
|
|
|
use GraphQL\Validator\DocumentValidator;
|
2017-07-14 15:08:47 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Helper
|
|
|
|
* Contains functionality that could be re-used by various server implementations
|
|
|
|
*
|
|
|
|
* @package GraphQL\Server
|
|
|
|
*/
|
|
|
|
class Helper
|
|
|
|
{
|
|
|
|
/**
|
2017-07-17 16:31:26 +03:00
|
|
|
* Executes GraphQL operation with given server configuration and returns execution result
|
|
|
|
* (or promise when promise adapter is different from SyncPromiseAdapter)
|
2017-07-14 15:08:47 +03:00
|
|
|
*
|
|
|
|
* @param ServerConfig $config
|
|
|
|
* @param OperationParams $op
|
|
|
|
*
|
|
|
|
* @return ExecutionResult|Promise
|
|
|
|
*/
|
2017-07-16 14:52:38 +03:00
|
|
|
public function executeOperation(ServerConfig $config, OperationParams $op)
|
2017-07-17 16:31:26 +03:00
|
|
|
{
|
|
|
|
$promiseAdapter = $config->getPromiseAdapter() ?: Executor::getPromiseAdapter();
|
2017-07-19 15:55:22 +03:00
|
|
|
$result = $this->promiseToExecuteOperation($promiseAdapter, $config, $op);
|
2017-07-17 16:31:26 +03:00
|
|
|
|
|
|
|
if ($promiseAdapter instanceof SyncPromiseAdapter) {
|
|
|
|
$result = $promiseAdapter->wait($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Executes batched GraphQL operations with shared promise queue
|
|
|
|
* (thus, effectively batching deferreds|promises of all queries at once)
|
|
|
|
*
|
|
|
|
* @param ServerConfig $config
|
|
|
|
* @param OperationParams[] $operations
|
|
|
|
* @return ExecutionResult[]|Promise
|
|
|
|
*/
|
|
|
|
public function executeBatch(ServerConfig $config, array $operations)
|
|
|
|
{
|
|
|
|
$promiseAdapter = $config->getPromiseAdapter() ?: Executor::getPromiseAdapter();
|
|
|
|
$result = [];
|
|
|
|
|
|
|
|
foreach ($operations as $operation) {
|
2017-07-19 15:55:22 +03:00
|
|
|
$result[] = $this->promiseToExecuteOperation($promiseAdapter, $config, $operation);
|
2017-07-17 16:31:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$result = $promiseAdapter->all($result);
|
|
|
|
|
|
|
|
// Wait for promised results when using sync promises
|
|
|
|
if ($promiseAdapter instanceof SyncPromiseAdapter) {
|
|
|
|
$result = $promiseAdapter->wait($result);
|
|
|
|
}
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param PromiseAdapter $promiseAdapter
|
|
|
|
* @param ServerConfig $config
|
|
|
|
* @param OperationParams $op
|
|
|
|
* @return Promise
|
|
|
|
*/
|
|
|
|
private function promiseToExecuteOperation(PromiseAdapter $promiseAdapter, ServerConfig $config, OperationParams $op)
|
2017-07-14 15:08:47 +03:00
|
|
|
{
|
2017-07-19 15:30:39 +03:00
|
|
|
try {
|
2017-07-19 15:55:22 +03:00
|
|
|
$errors = $this->validateOperationParams($op);
|
|
|
|
|
|
|
|
if (!empty($errors)) {
|
|
|
|
return $promiseAdapter->createFulfilled(
|
|
|
|
new ExecutionResult(null, $errors)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-07-19 15:30:39 +03:00
|
|
|
$doc = $op->queryId ? static::loadPersistedQuery($config, $op) : $op->query;
|
2017-07-14 15:08:47 +03:00
|
|
|
|
2017-07-19 15:30:39 +03:00
|
|
|
if (!$doc instanceof DocumentNode) {
|
|
|
|
$doc = Parser::parse($doc);
|
|
|
|
}
|
|
|
|
if ($op->isReadOnly() && AST::getOperation($doc, $op->operation) !== 'query') {
|
|
|
|
throw new Error("GET supports only query operation");
|
|
|
|
}
|
2017-07-14 15:08:47 +03:00
|
|
|
|
2017-07-19 15:30:39 +03:00
|
|
|
$validationErrors = DocumentValidator::validate(
|
|
|
|
$config->getSchema(),
|
|
|
|
$doc,
|
|
|
|
$this->resolveValidationRules($config, $op)
|
|
|
|
);
|
2017-07-17 16:31:26 +03:00
|
|
|
|
2017-07-19 15:30:39 +03:00
|
|
|
if (!empty($validationErrors)) {
|
|
|
|
$result = $promiseAdapter->createFulfilled(
|
|
|
|
new ExecutionResult(null, $validationErrors)
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$result = Executor::promiseToExecute(
|
|
|
|
$promiseAdapter,
|
2017-07-17 16:31:26 +03:00
|
|
|
$config->getSchema(),
|
|
|
|
$doc,
|
2017-07-19 15:30:39 +03:00
|
|
|
$config->getRootValue(),
|
|
|
|
$config->getContext(),
|
|
|
|
$op->variables,
|
|
|
|
$op->operation,
|
|
|
|
$config->getDefaultFieldResolver()
|
2017-07-17 16:31:26 +03:00
|
|
|
);
|
|
|
|
}
|
2017-07-19 15:30:39 +03:00
|
|
|
} catch (Error $e) {
|
|
|
|
$result = $promiseAdapter->createFulfilled(
|
|
|
|
new ExecutionResult(null, [$e])
|
|
|
|
);
|
2017-07-14 15:08:47 +03:00
|
|
|
}
|
|
|
|
|
2017-07-19 15:30:39 +03:00
|
|
|
$applyErrorFormatting = function (ExecutionResult $result) use ($config) {
|
2017-07-14 15:08:47 +03:00
|
|
|
if ($config->getDebug()) {
|
|
|
|
$errorFormatter = function($e) {
|
|
|
|
return FormattedError::createFromException($e, true);
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
$errorFormatter = $config->getErrorFormatter();
|
|
|
|
}
|
|
|
|
$result->setErrorFormatter($errorFormatter);
|
|
|
|
return $result;
|
|
|
|
};
|
|
|
|
|
2017-07-17 16:31:26 +03:00
|
|
|
return $result->then($applyErrorFormatting);
|
2017-07-14 15:08:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param ServerConfig $config
|
|
|
|
* @param OperationParams $op
|
2017-07-17 16:31:26 +03:00
|
|
|
* @return mixed
|
|
|
|
* @throws Error
|
|
|
|
* @throws InvariantViolation
|
2017-07-14 15:08:47 +03:00
|
|
|
*/
|
2017-07-16 14:52:38 +03:00
|
|
|
public function loadPersistedQuery(ServerConfig $config, OperationParams $op)
|
2017-07-14 15:08:47 +03:00
|
|
|
{
|
2017-07-16 14:52:38 +03:00
|
|
|
if (!$op->queryId) {
|
|
|
|
throw new InvariantViolation("Could not load persisted query: queryId is not set");
|
|
|
|
}
|
|
|
|
|
2017-07-14 15:08:47 +03:00
|
|
|
// Load query if we got persisted query id:
|
|
|
|
$loader = $config->getPersistentQueryLoader();
|
|
|
|
|
|
|
|
if (!$loader) {
|
2017-07-19 15:30:39 +03:00
|
|
|
throw new Error("Persisted queries are not supported by this server");
|
2017-07-14 15:08:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$source = $loader($op->queryId, $op);
|
|
|
|
|
|
|
|
if (!is_string($source) && !$source instanceof DocumentNode) {
|
|
|
|
throw new InvariantViolation(sprintf(
|
|
|
|
"Persistent query loader must return query string or instance of %s but got: %s",
|
|
|
|
DocumentNode::class,
|
|
|
|
Utils::printSafe($source)
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $source;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param ServerConfig $config
|
|
|
|
* @param OperationParams $params
|
|
|
|
* @return array
|
|
|
|
*/
|
2017-07-16 14:52:38 +03:00
|
|
|
public function resolveValidationRules(ServerConfig $config, OperationParams $params)
|
2017-07-14 15:08:47 +03:00
|
|
|
{
|
|
|
|
// Allow customizing validation rules per operation:
|
|
|
|
$validationRules = $config->getValidationRules();
|
|
|
|
|
|
|
|
if (is_callable($validationRules)) {
|
|
|
|
$validationRules = $validationRules($params);
|
|
|
|
|
|
|
|
if (!is_array($validationRules)) {
|
2017-07-19 15:30:39 +03:00
|
|
|
throw new InvariantViolation(sprintf(
|
|
|
|
"Expecting validation rules to be array or callable returning array, but got: %s",
|
2017-07-14 15:08:47 +03:00
|
|
|
Utils::printSafe($validationRules)
|
2017-07-19 15:30:39 +03:00
|
|
|
));
|
2017-07-14 15:08:47 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $validationRules;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parses HTTP request and returns GraphQL QueryParams contained in this request.
|
|
|
|
* For batched requests it returns an array of QueryParams.
|
|
|
|
*
|
2017-07-17 12:57:30 +03:00
|
|
|
* This function doesn't check validity of these params.
|
2017-07-16 14:52:38 +03:00
|
|
|
*
|
|
|
|
* If $readRawBodyFn argument is not provided - will attempt to read raw request body from php://input stream
|
|
|
|
*
|
|
|
|
* @param callable|null $readRawBodyFn
|
2017-07-17 12:57:30 +03:00
|
|
|
* @return OperationParams|OperationParams[]
|
2017-07-19 15:30:39 +03:00
|
|
|
* @throws Error
|
2017-07-16 14:52:38 +03:00
|
|
|
*/
|
2017-07-17 12:57:30 +03:00
|
|
|
public function parseHttpRequest(callable $readRawBodyFn = null)
|
2017-07-14 15:08:47 +03:00
|
|
|
{
|
2017-07-16 14:52:38 +03:00
|
|
|
$method = isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : null;
|
2017-07-14 15:08:47 +03:00
|
|
|
|
2017-07-16 14:52:38 +03:00
|
|
|
if ($method === 'GET') {
|
2017-07-19 15:30:39 +03:00
|
|
|
$result = OperationParams::create($_GET, true);
|
2017-07-16 14:52:38 +03:00
|
|
|
} else if ($method === 'POST') {
|
|
|
|
$contentType = isset($_SERVER['CONTENT_TYPE']) ? $_SERVER['CONTENT_TYPE'] : null;
|
|
|
|
|
|
|
|
if (stripos($contentType, 'application/graphql') !== false) {
|
|
|
|
$rawBody = $readRawBodyFn ? $readRawBodyFn() : $this->readRawBody();
|
2017-07-17 12:57:30 +03:00
|
|
|
$result = OperationParams::create(['query' => $rawBody ?: '']);
|
2017-07-16 14:52:38 +03:00
|
|
|
} else if (stripos($contentType, 'application/json') !== false) {
|
|
|
|
$rawBody = $readRawBodyFn ? $readRawBodyFn() : $this->readRawBody();
|
|
|
|
$body = json_decode($rawBody ?: '', true);
|
|
|
|
|
|
|
|
if (json_last_error()) {
|
2017-07-19 15:30:39 +03:00
|
|
|
throw new Error("Could not parse JSON: " . json_last_error_msg());
|
2017-07-16 14:52:38 +03:00
|
|
|
}
|
|
|
|
if (!is_array($body)) {
|
2017-07-19 15:30:39 +03:00
|
|
|
throw new Error(
|
2017-07-16 14:52:38 +03:00
|
|
|
"GraphQL Server expects JSON object or array, but got " .
|
|
|
|
Utils::printSafeJson($body)
|
|
|
|
);
|
|
|
|
}
|
2017-07-17 12:57:30 +03:00
|
|
|
if (isset($body[0])) {
|
|
|
|
$result = [];
|
|
|
|
foreach ($body as $index => $entry) {
|
2017-07-19 15:30:39 +03:00
|
|
|
$op = OperationParams::create($entry);
|
2017-07-17 12:57:30 +03:00
|
|
|
$result[] = $op;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$result = OperationParams::create($body);
|
|
|
|
}
|
2017-07-16 14:52:38 +03:00
|
|
|
} else if (stripos($contentType, 'application/x-www-form-urlencoded') !== false) {
|
2017-07-17 12:57:30 +03:00
|
|
|
$result = OperationParams::create($_POST);
|
2017-07-16 14:52:38 +03:00
|
|
|
} else if (null === $contentType) {
|
2017-07-19 15:30:39 +03:00
|
|
|
throw new Error('Missing "Content-Type" header');
|
2017-07-16 14:52:38 +03:00
|
|
|
} else {
|
2017-07-19 15:30:39 +03:00
|
|
|
throw new Error("Unexpected content type: " . Utils::printSafeJson($contentType));
|
2017-07-16 14:52:38 +03:00
|
|
|
}
|
|
|
|
} else {
|
2017-07-19 15:30:39 +03:00
|
|
|
throw new Error('HTTP Method "' . $method . '" is not supported');
|
2017-07-16 14:52:38 +03:00
|
|
|
}
|
2017-07-17 12:57:30 +03:00
|
|
|
return $result;
|
2017-07-16 14:52:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-07-17 12:57:30 +03:00
|
|
|
* @return bool|string
|
2017-07-16 14:52:38 +03:00
|
|
|
*/
|
2017-07-17 12:57:30 +03:00
|
|
|
public function readRawBody()
|
2017-07-16 14:52:38 +03:00
|
|
|
{
|
2017-07-17 12:57:30 +03:00
|
|
|
return file_get_contents('php://input');
|
2017-07-16 14:52:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-07-17 12:57:30 +03:00
|
|
|
* Checks validity of operation params and returns array of errors (empty array when params are valid)
|
|
|
|
*
|
|
|
|
* @param OperationParams $params
|
2017-07-19 15:30:39 +03:00
|
|
|
* @return Error[]
|
2017-07-16 14:52:38 +03:00
|
|
|
*/
|
2017-07-17 12:57:30 +03:00
|
|
|
public function validateOperationParams(OperationParams $params)
|
2017-07-16 14:52:38 +03:00
|
|
|
{
|
2017-07-17 12:57:30 +03:00
|
|
|
$errors = [];
|
|
|
|
if (!$params->query && !$params->queryId) {
|
2017-07-19 15:30:39 +03:00
|
|
|
$errors[] = new Error('GraphQL Request must include at least one of those two parameters: "query" or "queryId"');
|
2017-07-17 12:57:30 +03:00
|
|
|
}
|
|
|
|
if ($params->query && $params->queryId) {
|
2017-07-19 15:30:39 +03:00
|
|
|
$errors[] = new Error('GraphQL Request parameters "query" and "queryId" are mutually exclusive');
|
2017-07-17 12:57:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($params->query !== null && (!is_string($params->query) || empty($params->query))) {
|
2017-07-19 15:30:39 +03:00
|
|
|
$errors[] = new Error(
|
|
|
|
'GraphQL Request parameter "query" must be string, but got ' .
|
|
|
|
Utils::printSafeJson($params->query)
|
|
|
|
);
|
2017-07-17 12:57:30 +03:00
|
|
|
}
|
|
|
|
if ($params->queryId !== null && (!is_string($params->queryId) || empty($params->queryId))) {
|
2017-07-19 15:30:39 +03:00
|
|
|
$errors[] = new Error(
|
|
|
|
'GraphQL Request parameter "queryId" must be string, but got ' .
|
|
|
|
Utils::printSafeJson($params->queryId)
|
|
|
|
);
|
2017-07-17 12:57:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($params->operation !== null && (!is_string($params->operation) || empty($params->operation))) {
|
2017-07-19 15:30:39 +03:00
|
|
|
$errors[] = new Error(
|
|
|
|
'GraphQL Request parameter "operation" must be string, but got ' .
|
|
|
|
Utils::printSafeJson($params->operation)
|
|
|
|
);
|
2017-07-17 12:57:30 +03:00
|
|
|
}
|
|
|
|
if ($params->variables !== null && (!is_array($params->variables) || isset($params->variables[0]))) {
|
2017-07-19 15:30:39 +03:00
|
|
|
$errors[] = new Error(
|
|
|
|
'GraphQL Request parameter "variables" must be object or JSON string parsed to object, but got ' .
|
|
|
|
Utils::printSafeJson($params->getOriginalInput('variables'))
|
|
|
|
);
|
2017-07-17 12:57:30 +03:00
|
|
|
}
|
|
|
|
return $errors;
|
2017-07-16 14:52:38 +03:00
|
|
|
}
|
2017-07-14 15:08:47 +03:00
|
|
|
}
|