2021-03-10 07:42:45 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Appwrite\GraphQL;
|
|
|
|
|
|
|
|
|
|
use Appwrite\GraphQL\Types\JsonType;
|
2022-04-07 14:02:48 +00:00
|
|
|
use Appwrite\Utopia\Request;
|
2021-03-10 07:42:45 +00:00
|
|
|
use Appwrite\Utopia\Response;
|
|
|
|
|
use Appwrite\Utopia\Response\Model;
|
2022-04-05 13:48:51 +00:00
|
|
|
use GraphQL\Error\Error;
|
|
|
|
|
use GraphQL\Error\FormattedError;
|
2021-03-10 07:42:45 +00:00
|
|
|
use GraphQL\Type\Definition\ObjectType;
|
|
|
|
|
use GraphQL\Type\Definition\Type;
|
|
|
|
|
use GraphQL\Type\Schema;
|
2022-04-07 06:41:36 +00:00
|
|
|
use Utopia\App;
|
2021-03-18 19:26:45 +00:00
|
|
|
use Utopia\CLI\Console;
|
2022-04-06 23:23:20 +00:00
|
|
|
use Utopia\Database\Database;
|
|
|
|
|
use Utopia\Database\Document;
|
|
|
|
|
use Utopia\Database\Validator\Authorization;
|
|
|
|
|
use Utopia\Registry\Registry;
|
2021-03-10 07:42:45 +00:00
|
|
|
|
2022-04-05 13:48:51 +00:00
|
|
|
class Builder
|
|
|
|
|
{
|
|
|
|
|
protected static ?JsonType $jsonParser = null;
|
2021-03-10 07:42:45 +00:00
|
|
|
|
2022-04-05 13:48:51 +00:00
|
|
|
protected static array $typeMapping = [];
|
2021-03-10 07:42:45 +00:00
|
|
|
|
2021-03-12 18:00:41 +00:00
|
|
|
/**
|
2022-04-05 13:48:51 +00:00
|
|
|
* Function to initialise the typeMapping array with the base cases of the recursion
|
|
|
|
|
*
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public static function init()
|
2021-03-12 18:00:41 +00:00
|
|
|
{
|
2021-03-10 07:42:45 +00:00
|
|
|
self::$typeMapping = [
|
|
|
|
|
Model::TYPE_BOOLEAN => Type::boolean(),
|
|
|
|
|
Model::TYPE_STRING => Type::string(),
|
|
|
|
|
Model::TYPE_INTEGER => Type::int(),
|
|
|
|
|
Model::TYPE_FLOAT => Type::float(),
|
2021-03-12 18:00:41 +00:00
|
|
|
Model::TYPE_JSON => self::json(),
|
2021-03-17 21:17:50 +00:00
|
|
|
Response::MODEL_NONE => self::json(),
|
2021-03-12 18:00:41 +00:00
|
|
|
Response::MODEL_ANY => self::json(),
|
2021-03-10 07:42:45 +00:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-12 18:00:41 +00:00
|
|
|
/**
|
2022-04-05 13:48:51 +00:00
|
|
|
* Function to create a singleton for $jsonParser
|
|
|
|
|
*
|
|
|
|
|
* @return JsonType
|
|
|
|
|
*/
|
2022-04-07 06:41:36 +00:00
|
|
|
public static function json(): JsonType
|
2021-03-12 18:00:41 +00:00
|
|
|
{
|
2021-03-16 20:05:48 +00:00
|
|
|
if (is_null(self::$jsonParser)) {
|
2021-03-12 18:00:41 +00:00
|
|
|
self::$jsonParser = new JsonType();
|
|
|
|
|
}
|
|
|
|
|
return self::$jsonParser;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2022-04-05 13:48:51 +00:00
|
|
|
* If the map already contains the type, end the recursion and return.
|
|
|
|
|
* Iterate through all the rules in the response model. Each rule is of the form
|
|
|
|
|
* [
|
|
|
|
|
* [KEY 1] => [
|
|
|
|
|
* 'type' => A string from Appwrite/Utopia/Response
|
|
|
|
|
* 'description' => A description of the type
|
|
|
|
|
* 'default' => A default value for this type
|
|
|
|
|
* 'example' => An example of this type
|
|
|
|
|
* 'require' => a boolean representing whether this field is required
|
|
|
|
|
* 'array' => a boolean representing whether this field is an array
|
|
|
|
|
* ],
|
|
|
|
|
* [KEY 2] => [
|
|
|
|
|
* ],
|
|
|
|
|
* [KEY 3] => [
|
|
|
|
|
* ] .....
|
|
|
|
|
* ]
|
|
|
|
|
* If there are any field names containing characters other than a-z, A-Z, 0-9, _ ,
|
|
|
|
|
* we need to remove all those characters. Currently Appwrite's Response model has only the
|
|
|
|
|
* $ sign which is prohibited by the GraphQL spec. So we're only replacing that. We need to replace this with a regex
|
|
|
|
|
* based approach.
|
|
|
|
|
*
|
|
|
|
|
* @param Model $model
|
|
|
|
|
* @param Response $response
|
|
|
|
|
* @return Type
|
|
|
|
|
*/
|
2021-03-16 20:05:48 +00:00
|
|
|
static function getTypeMapping(Model $model, Response $response): Type
|
2021-03-12 18:00:41 +00:00
|
|
|
{
|
2021-03-16 20:05:48 +00:00
|
|
|
if (isset(self::$typeMapping[$model->getType()])) {
|
|
|
|
|
return self::$typeMapping[$model->getType()];
|
|
|
|
|
}
|
2021-03-10 07:42:45 +00:00
|
|
|
|
|
|
|
|
$rules = $model->getRules();
|
|
|
|
|
$name = $model->getType();
|
|
|
|
|
$fields = [];
|
|
|
|
|
$type = null;
|
2022-04-05 13:48:51 +00:00
|
|
|
|
2021-03-10 07:42:45 +00:00
|
|
|
foreach ($rules as $key => $props) {
|
2022-04-07 06:41:36 +00:00
|
|
|
$escapedKey = str_replace('$', '_', $key);
|
|
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
$types = \is_array($props['type'])
|
|
|
|
|
? $props['type']
|
|
|
|
|
: [$props['type']];
|
|
|
|
|
|
|
|
|
|
foreach ($types as $type) {
|
|
|
|
|
if (isset(self::$typeMapping[$type])) {
|
|
|
|
|
$type = self::$typeMapping[$type];
|
|
|
|
|
} else {
|
|
|
|
|
try {
|
|
|
|
|
$complexModel = $response->getModel($type);
|
|
|
|
|
$type = self::getTypeMapping($complexModel, $response);
|
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
|
Console::error("Could not find model for : {$type}");
|
|
|
|
|
}
|
2021-03-10 07:42:45 +00:00
|
|
|
}
|
2022-04-07 06:41:36 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
if ($props['array']) {
|
|
|
|
|
$type = Type::listOf($type);
|
2021-03-10 07:42:45 +00:00
|
|
|
}
|
2022-04-07 14:02:48 +00:00
|
|
|
|
|
|
|
|
$fields[$escapedKey] = [
|
|
|
|
|
'type' => $type,
|
|
|
|
|
'description' => $props['description'],
|
|
|
|
|
'resolve' => function ($object, $args, $context, $info) use ($key) {
|
|
|
|
|
return $object[$key];
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
}
|
2021-03-10 07:42:45 +00:00
|
|
|
}
|
|
|
|
|
$objectType = [
|
2022-04-05 13:48:51 +00:00
|
|
|
'name' => $name,
|
2021-03-10 07:42:45 +00:00
|
|
|
'fields' => $fields
|
|
|
|
|
];
|
2022-04-05 13:48:51 +00:00
|
|
|
self::$typeMapping[$name] = new ObjectType($objectType);
|
|
|
|
|
|
2021-03-16 20:05:48 +00:00
|
|
|
return self::$typeMapping[$name];
|
2021-03-10 07:42:45 +00:00
|
|
|
}
|
|
|
|
|
|
2022-04-05 13:48:51 +00:00
|
|
|
/**
|
|
|
|
|
* Function to map a Utopia\Validator to a valid GraphQL Type
|
|
|
|
|
*
|
|
|
|
|
* @param $validator
|
|
|
|
|
* @param bool $required
|
|
|
|
|
* @param $utopia
|
|
|
|
|
* @param $injections
|
2022-04-07 06:41:36 +00:00
|
|
|
* @return Type
|
2022-04-07 14:02:48 +00:00
|
|
|
* @throws \Exception
|
2022-04-05 13:48:51 +00:00
|
|
|
*/
|
2022-04-07 14:02:48 +00:00
|
|
|
private static function getParameterArgType($validator, bool $required, $utopia, $injections): Type
|
2021-03-18 19:41:38 +00:00
|
|
|
{
|
2022-04-07 06:41:36 +00:00
|
|
|
$validator = \is_callable($validator)
|
|
|
|
|
? \call_user_func_array($validator, $utopia->getResources($injections))
|
|
|
|
|
: $validator;
|
|
|
|
|
|
2021-03-10 07:42:45 +00:00
|
|
|
switch ((!empty($validator)) ? \get_class($validator) : '') {
|
2022-04-05 13:48:51 +00:00
|
|
|
case 'Utopia\Validator\Email':
|
|
|
|
|
case 'Utopia\Validator\Host':
|
|
|
|
|
case 'Utopia\Validator\Length':
|
|
|
|
|
case 'Appwrite\Auth\Validator\Password':
|
|
|
|
|
case 'Utopia\Validator\URL':
|
|
|
|
|
case 'Appwrite\Database\Validator\UID':
|
|
|
|
|
case 'Appwrite\Storage\Validator\File':
|
|
|
|
|
case 'Utopia\Validator\WhiteList':
|
2021-03-10 07:42:45 +00:00
|
|
|
case 'Utopia\Validator\Text':
|
|
|
|
|
$type = Type::string();
|
|
|
|
|
break;
|
|
|
|
|
case 'Utopia\Validator\Boolean':
|
|
|
|
|
$type = Type::boolean();
|
|
|
|
|
break;
|
|
|
|
|
case 'Utopia\Validator\ArrayList':
|
2022-04-07 14:02:48 +00:00
|
|
|
$nested = (fn() => $this->validator)->bindTo($validator, $validator)();
|
|
|
|
|
$type = Type::listOf(self::getParameterArgType($nested, $required, $utopia, $injections));
|
2021-03-10 07:42:45 +00:00
|
|
|
break;
|
|
|
|
|
case 'Utopia\Validator\Numeric':
|
2022-04-05 13:48:51 +00:00
|
|
|
case 'Utopia\Validator\Range':
|
2021-03-10 07:42:45 +00:00
|
|
|
$type = Type::int();
|
|
|
|
|
break;
|
2022-04-05 13:48:51 +00:00
|
|
|
case 'Utopia\Validator\Assoc':
|
2022-04-07 14:02:48 +00:00
|
|
|
case 'Utopia\Validator\JSON':
|
2021-03-10 07:42:45 +00:00
|
|
|
default:
|
2021-03-16 13:34:11 +00:00
|
|
|
$type = self::json();
|
2021-03-10 07:42:45 +00:00
|
|
|
break;
|
|
|
|
|
}
|
2022-04-05 13:48:51 +00:00
|
|
|
|
2021-03-10 07:42:45 +00:00
|
|
|
if ($required) {
|
|
|
|
|
$type = Type::nonNull($type);
|
|
|
|
|
}
|
2022-04-05 13:48:51 +00:00
|
|
|
|
2021-03-10 07:42:45 +00:00
|
|
|
return $type;
|
|
|
|
|
}
|
2021-11-25 08:04:39 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
/**
|
|
|
|
|
* Function to map an attribute type to a valid GraphQL Type
|
|
|
|
|
*
|
|
|
|
|
* @param $validator
|
|
|
|
|
* @param bool $required
|
|
|
|
|
* @param $utopia
|
|
|
|
|
* @param $injections
|
|
|
|
|
* @return Type
|
|
|
|
|
* @throws \Exception
|
|
|
|
|
*/
|
|
|
|
|
private static function getAttributeArgType($type, $array, $required): Type
|
|
|
|
|
{
|
|
|
|
|
if ($array) {
|
|
|
|
|
return Type::listOf(self::getAttributeArgType($type, false, $required));
|
|
|
|
|
}
|
|
|
|
|
$type = match ($type) {
|
|
|
|
|
'boolean' => Type::boolean(),
|
|
|
|
|
'integer' => Type::int(),
|
|
|
|
|
'double' => Type::float(),
|
|
|
|
|
default => Type::string(),
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if ($required) {
|
|
|
|
|
$type = Type::nonNull($type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $type;
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-07 06:41:36 +00:00
|
|
|
/**
|
|
|
|
|
* @throws \Exception
|
|
|
|
|
*/
|
|
|
|
|
public static function appendProjectSchema(
|
|
|
|
|
array $apiSchema,
|
|
|
|
|
Registry $register,
|
|
|
|
|
Database $dbForProject
|
|
|
|
|
): Schema
|
2022-04-05 13:48:51 +00:00
|
|
|
{
|
2022-04-07 14:02:48 +00:00
|
|
|
Console::info("[INFO] Merging Schema...");
|
|
|
|
|
|
2022-04-05 13:48:51 +00:00
|
|
|
$start = microtime(true);
|
|
|
|
|
|
2022-04-07 06:41:36 +00:00
|
|
|
$db = self::buildCollectionsSchema($register, $dbForProject);
|
2022-04-05 13:48:51 +00:00
|
|
|
|
2022-04-07 06:41:36 +00:00
|
|
|
$queryFields = \array_merge($apiSchema['query'], $db['query']);
|
|
|
|
|
$mutationFields = \array_merge($apiSchema['mutation'], $db['mutation']);
|
2022-04-05 13:48:51 +00:00
|
|
|
|
|
|
|
|
ksort($queryFields);
|
|
|
|
|
ksort($mutationFields);
|
|
|
|
|
|
|
|
|
|
$schema = new Schema([
|
|
|
|
|
'query' => new ObjectType([
|
|
|
|
|
'name' => 'Query',
|
|
|
|
|
'description' => 'The root of all queries',
|
|
|
|
|
'fields' => $queryFields
|
|
|
|
|
]),
|
|
|
|
|
'mutation' => new ObjectType([
|
|
|
|
|
'name' => 'Mutation',
|
|
|
|
|
'description' => 'The root of all mutations',
|
|
|
|
|
'fields' => $mutationFields
|
|
|
|
|
])
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
$time_elapsed_secs = microtime(true) - $start;
|
|
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
Console::info("[INFO] Time Taken To Merge Schema : ${time_elapsed_secs}s");
|
2022-04-05 13:48:51 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
return $schema;
|
2022-04-05 13:48:51 +00:00
|
|
|
}
|
|
|
|
|
|
2021-11-25 08:04:39 +00:00
|
|
|
/**
|
2022-04-05 13:48:51 +00:00
|
|
|
* This function goes through all the project attributes and builds a
|
|
|
|
|
* GraphQL schema for all the collections they make up.
|
2021-11-25 08:04:39 +00:00
|
|
|
*
|
2022-04-07 06:41:36 +00:00
|
|
|
* @param Registry $register
|
2022-04-06 23:23:20 +00:00
|
|
|
* @param Database $dbForProject
|
2022-04-05 13:48:51 +00:00
|
|
|
* @return array
|
2022-04-06 23:23:20 +00:00
|
|
|
* @throws \Exception
|
2021-11-25 08:04:39 +00:00
|
|
|
*/
|
2022-04-07 06:41:36 +00:00
|
|
|
public static function buildCollectionsSchema(Registry &$register, Database $dbForProject): array
|
2021-11-25 08:04:39 +00:00
|
|
|
{
|
2022-04-07 14:02:48 +00:00
|
|
|
Console::info("[INFO] Building GraphQL Project Collection Schema...");
|
2021-11-25 08:04:39 +00:00
|
|
|
$start = microtime(true);
|
2022-04-05 13:48:51 +00:00
|
|
|
|
2022-04-06 23:23:20 +00:00
|
|
|
$collections = [];
|
2022-04-05 13:48:51 +00:00
|
|
|
$queryFields = [];
|
|
|
|
|
$mutationFields = [];
|
2022-04-07 14:02:48 +00:00
|
|
|
$limit = 50;
|
2022-04-06 23:23:20 +00:00
|
|
|
$offset = 0;
|
|
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
Authorization::skip(function () use (&$mutationFields, &$queryFields, &$collections, $register, $limit, $offset, $dbForProject) {
|
2022-04-06 23:23:20 +00:00
|
|
|
while (!empty($attrs = $dbForProject->find(
|
|
|
|
|
'attributes',
|
2022-04-07 14:02:48 +00:00
|
|
|
limit: $limit,
|
2022-04-06 23:23:20 +00:00
|
|
|
offset: $offset
|
|
|
|
|
))) {
|
2022-04-07 14:02:48 +00:00
|
|
|
foreach ($attrs as $attr) {
|
|
|
|
|
$collectionId = $attr->getAttribute('collectionId');
|
2022-04-06 23:23:20 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
if ($attr->getAttribute('status') !== 'available') {
|
|
|
|
|
return;
|
2022-04-06 23:23:20 +00:00
|
|
|
}
|
2022-04-05 13:48:51 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
$key = $attr->getAttribute('key');
|
|
|
|
|
$type = $attr->getAttribute('type');
|
|
|
|
|
$array = $attr->getAttribute('array');
|
|
|
|
|
$required = $attr->getAttribute('required');
|
2022-04-05 13:48:51 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
$escapedKey = str_replace('$', '_', $key);
|
2022-04-05 13:48:51 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
$collections[$collectionId][$escapedKey] = [
|
|
|
|
|
'type' => self::getAttributeArgType($type, $array, $required),
|
|
|
|
|
'resolve' => function ($object, $args, $context, $info) use ($key) {
|
|
|
|
|
return $object->getAttribute($key);
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
}
|
2022-04-05 13:48:51 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
foreach ($collections as $collectionId => $attributes) {
|
|
|
|
|
$objectType = new ObjectType([
|
|
|
|
|
'name' => $collectionId,
|
|
|
|
|
'fields' => $attributes
|
|
|
|
|
]);
|
2022-04-06 23:23:20 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
$idArgs = [
|
|
|
|
|
'id' => [
|
|
|
|
|
'type' => Type::string()
|
|
|
|
|
]
|
|
|
|
|
];
|
2022-04-06 23:23:20 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
$listArgs = [
|
|
|
|
|
'limit' => [
|
|
|
|
|
'type' => Type::int(),
|
|
|
|
|
'defaultValue' => $limit,
|
|
|
|
|
],
|
|
|
|
|
'offset' => [
|
|
|
|
|
'type' => Type::int(),
|
|
|
|
|
'defaultValue' => 0,
|
|
|
|
|
],
|
|
|
|
|
'cursor' => [
|
|
|
|
|
'type' => Type::string(),
|
|
|
|
|
'defaultValue' => null,
|
|
|
|
|
],
|
|
|
|
|
'orderAttributes' => [
|
|
|
|
|
'type' => Type::listOf(Type::string()),
|
|
|
|
|
'defaultValue' => [],
|
|
|
|
|
],
|
|
|
|
|
'orderType' => [
|
|
|
|
|
'types' => Type::listOf(Type::string()),
|
|
|
|
|
'defaultValue' => [],
|
|
|
|
|
]
|
|
|
|
|
];
|
2022-04-06 23:23:20 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
self::createCollectionGetQuery($collectionId, $register, $dbForProject, $idArgs, $queryFields, $objectType);
|
|
|
|
|
self::createCollectionListQuery($collectionId, $register, $dbForProject, $listArgs, $queryFields, $objectType);
|
|
|
|
|
self::createCollectionCreateMutation($collectionId, $register, $dbForProject, $attributes, $mutationFields, $objectType);
|
|
|
|
|
self::createCollectionUpdateMutation($collectionId, $register, $dbForProject, $attributes, $mutationFields, $objectType);
|
|
|
|
|
self::createCollectionDeleteMutation($collectionId, $register, $dbForProject, $idArgs, $mutationFields, $objectType);
|
|
|
|
|
}
|
2022-04-05 13:48:51 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
$offset += $limit;
|
2022-04-06 23:23:20 +00:00
|
|
|
}
|
|
|
|
|
});
|
2022-04-05 13:48:51 +00:00
|
|
|
|
|
|
|
|
$time_elapsed_secs = microtime(true) - $start;
|
2022-04-07 14:02:48 +00:00
|
|
|
Console::info("[INFO] Time Taken To Build Project Collection Schema : ${time_elapsed_secs}s");
|
2022-04-05 13:48:51 +00:00
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'query' => $queryFields,
|
|
|
|
|
'mutation' => $mutationFields
|
|
|
|
|
];
|
2021-11-25 08:04:39 +00:00
|
|
|
}
|
2021-03-18 19:53:24 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
private static function createCollectionGetQuery($collectionId, $register, $dbForProject, $args, &$queryFields, $objectType)
|
2022-04-06 23:23:20 +00:00
|
|
|
{
|
2022-04-07 14:02:48 +00:00
|
|
|
$resolve = fn($type, $args, $context, $info) => new SwoolePromise(
|
|
|
|
|
function (callable $resolve, callable $reject) use ($collectionId, $type, $args, $dbForProject) {
|
2022-04-06 23:23:20 +00:00
|
|
|
try {
|
|
|
|
|
$resolve($dbForProject->getDocument($collectionId, $args['id']));
|
|
|
|
|
} catch (\Throwable $e) {
|
|
|
|
|
$reject($e);
|
|
|
|
|
}
|
2022-04-07 14:02:48 +00:00
|
|
|
}
|
|
|
|
|
);
|
2022-04-06 23:23:20 +00:00
|
|
|
$get = [
|
2022-04-07 14:02:48 +00:00
|
|
|
'type' => $objectType,
|
2022-04-06 23:23:20 +00:00
|
|
|
'args' => $args,
|
|
|
|
|
'resolve' => $resolve
|
|
|
|
|
];
|
2022-04-07 14:02:48 +00:00
|
|
|
$queryFields[$collectionId . 'Get'] = $get;
|
2022-04-06 23:23:20 +00:00
|
|
|
}
|
|
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
private static function createCollectionListQuery($collectionId, $register, $dbForProject, $args, &$queryFields, $objectType)
|
2022-04-06 23:23:20 +00:00
|
|
|
{
|
2022-04-07 14:02:48 +00:00
|
|
|
$resolve = fn($type, $args, $context, $info) => new SwoolePromise(
|
|
|
|
|
function (callable $resolve, callable $reject) use ($collectionId, $type, $args, $dbForProject) {
|
2022-04-06 23:23:20 +00:00
|
|
|
try {
|
|
|
|
|
$resolve($dbForProject->getCollection($collectionId));
|
|
|
|
|
} catch (\Throwable $e) {
|
|
|
|
|
$reject($e);
|
|
|
|
|
}
|
2022-04-07 14:02:48 +00:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2022-04-06 23:23:20 +00:00
|
|
|
$list = [
|
2022-04-07 14:02:48 +00:00
|
|
|
'type' => $objectType,
|
2022-04-06 23:23:20 +00:00
|
|
|
'args' => $args,
|
|
|
|
|
'resolve' => $resolve
|
|
|
|
|
];
|
2022-04-07 14:02:48 +00:00
|
|
|
$queryFields[$collectionId . 'List'] = $list;
|
2022-04-06 23:23:20 +00:00
|
|
|
}
|
|
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
private static function createCollectionCreateMutation($collectionId, $register, $dbForProject, $args, &$mutationFields, $objectType)
|
2022-04-06 23:23:20 +00:00
|
|
|
{
|
2022-04-07 14:02:48 +00:00
|
|
|
$resolve = fn($type, $args, $context, $info) => new SwoolePromise(
|
|
|
|
|
function (callable $resolve, callable $reject) use ($collectionId, $type, $args, $dbForProject) {
|
2022-04-06 23:23:20 +00:00
|
|
|
try {
|
|
|
|
|
$resolve($dbForProject->createDocument($collectionId, new Document($args)));
|
|
|
|
|
} catch (\Throwable $e) {
|
|
|
|
|
$reject($e);
|
|
|
|
|
}
|
2022-04-07 14:02:48 +00:00
|
|
|
}
|
|
|
|
|
);
|
2022-04-06 23:23:20 +00:00
|
|
|
$create = [
|
2022-04-07 14:02:48 +00:00
|
|
|
'type' => $objectType,
|
2022-04-06 23:23:20 +00:00
|
|
|
'args' => $args,
|
|
|
|
|
'resolve' => $resolve
|
|
|
|
|
];
|
2022-04-07 14:02:48 +00:00
|
|
|
$mutationFields[$collectionId . 'Create'] = $create;
|
2022-04-06 23:23:20 +00:00
|
|
|
}
|
|
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
private static function createCollectionUpdateMutation($collectionId, $register, $dbForProject, $args, &$mutationFields, $objectType)
|
2022-04-06 23:23:20 +00:00
|
|
|
{
|
2022-04-07 14:02:48 +00:00
|
|
|
$resolve = fn($type, $args, $context, $info) => new SwoolePromise(
|
|
|
|
|
function (callable $resolve, callable $reject) use ($collectionId, $type, $args, $dbForProject) {
|
2022-04-06 23:23:20 +00:00
|
|
|
try {
|
|
|
|
|
$resolve($dbForProject->updateDocument($collectionId, $args['id'], new Document($args)));
|
|
|
|
|
} catch (\Throwable $e) {
|
|
|
|
|
$reject($e);
|
|
|
|
|
}
|
2022-04-07 14:02:48 +00:00
|
|
|
}
|
|
|
|
|
);
|
2022-04-06 23:23:20 +00:00
|
|
|
|
|
|
|
|
$update = [
|
2022-04-07 14:02:48 +00:00
|
|
|
'type' => $objectType,
|
2022-04-06 23:23:20 +00:00
|
|
|
'args' => $args,
|
|
|
|
|
'resolve' => $resolve
|
|
|
|
|
];
|
|
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
$mutationFields[$collectionId . 'Update'] = $update;
|
2022-04-06 23:23:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
private static function createCollectionDeleteMutation($collectionId, $register, $dbForProject, $args, &$mutationFields, $objectType)
|
2022-04-06 23:23:20 +00:00
|
|
|
{
|
2022-04-07 14:02:48 +00:00
|
|
|
$resolve = fn($type, $args, $context, $info) => new SwoolePromise(
|
|
|
|
|
function (callable $resolve, callable $reject) use ($collectionId, $type, $args, $dbForProject) {
|
2022-04-06 23:23:20 +00:00
|
|
|
try {
|
|
|
|
|
$resolve($dbForProject->deleteDocument($collectionId, $args['id']));
|
|
|
|
|
} catch (\Throwable $e) {
|
|
|
|
|
$reject($e);
|
|
|
|
|
}
|
2022-04-07 14:02:48 +00:00
|
|
|
}
|
|
|
|
|
);
|
2022-04-06 23:23:20 +00:00
|
|
|
$delete = [
|
2022-04-07 14:02:48 +00:00
|
|
|
'type' => $objectType,
|
2022-04-06 23:23:20 +00:00
|
|
|
'args' => $args,
|
|
|
|
|
'resolve' => $resolve
|
|
|
|
|
];
|
2022-04-07 14:02:48 +00:00
|
|
|
$mutationFields[$collectionId . 'Delete'] = $delete;
|
2022-04-06 23:23:20 +00:00
|
|
|
}
|
|
|
|
|
|
2021-03-12 18:00:41 +00:00
|
|
|
/**
|
2022-04-05 13:48:51 +00:00
|
|
|
* This function goes through all the REST endpoints in the API and builds a
|
|
|
|
|
* GraphQL schema for all those routes whose response model is neither empty nor NONE
|
|
|
|
|
*
|
2022-04-07 06:41:36 +00:00
|
|
|
* @param App $utopia
|
2022-04-07 14:02:48 +00:00
|
|
|
* @param Request $request
|
2022-04-07 06:41:36 +00:00
|
|
|
* @param Response $response
|
|
|
|
|
* @param Registry $register
|
2022-04-05 13:48:51 +00:00
|
|
|
* @return array
|
2022-04-07 06:41:36 +00:00
|
|
|
* @throws \Exception
|
2022-04-05 13:48:51 +00:00
|
|
|
*/
|
2022-04-07 14:02:48 +00:00
|
|
|
public static function buildAPISchema(App $utopia, Request $request, Response $response, Registry $register): array
|
2022-04-05 13:48:51 +00:00
|
|
|
{
|
2022-04-07 14:02:48 +00:00
|
|
|
Console::info("[INFO] Building GraphQL REST API Schema...");
|
2021-03-10 07:42:45 +00:00
|
|
|
$start = microtime(true);
|
2022-04-05 13:48:51 +00:00
|
|
|
|
2021-03-12 18:09:25 +00:00
|
|
|
self::init();
|
2021-03-10 07:42:45 +00:00
|
|
|
$queryFields = [];
|
|
|
|
|
$mutationFields = [];
|
2021-03-12 18:09:25 +00:00
|
|
|
|
2022-04-05 13:48:51 +00:00
|
|
|
foreach ($utopia->getRoutes() as $method => $routes) {
|
|
|
|
|
foreach ($routes as $route) {
|
2022-04-07 14:02:48 +00:00
|
|
|
if (str_starts_with($route->getPath(), '/v1/mock/')) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2021-03-10 07:42:45 +00:00
|
|
|
$namespace = $route->getLabel('sdk.namespace', '');
|
2022-04-06 23:23:20 +00:00
|
|
|
$methodName = $namespace . \ucfirst($route->getLabel('sdk.method', ''));
|
2022-04-07 14:02:48 +00:00
|
|
|
$responseModelNames = $route->getLabel('sdk.response.model', "none");
|
|
|
|
|
|
|
|
|
|
if ($responseModelNames !== "none") {
|
|
|
|
|
$responseModels = \is_array($responseModelNames)
|
|
|
|
|
? \array_map(static fn($m) => $response->getModel($m), $responseModelNames)
|
|
|
|
|
: [$response->getModel($responseModelNames)];
|
|
|
|
|
|
|
|
|
|
foreach ($responseModels as $responseModel) {
|
|
|
|
|
$type = self::getTypeMapping($responseModel, $response);
|
|
|
|
|
$description = $route->getDesc();
|
|
|
|
|
$args = [];
|
|
|
|
|
|
|
|
|
|
foreach ($route->getParams() as $key => $value) {
|
|
|
|
|
$args[$key] = [
|
|
|
|
|
'type' => self::getParameterArgType(
|
|
|
|
|
$value['validator'],
|
|
|
|
|
!$value['optional'],
|
|
|
|
|
$utopia,
|
|
|
|
|
$value['injections']
|
|
|
|
|
),
|
|
|
|
|
'description' => $value['description'],
|
|
|
|
|
'defaultValue' => $value['default']
|
|
|
|
|
];
|
|
|
|
|
}
|
2022-04-05 13:48:51 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
/* Define a resolve function that defines how to fetch data for this type */
|
|
|
|
|
$resolve = fn($type, $args, $context, $info) => new SwoolePromise(
|
|
|
|
|
function (callable $resolve, callable $reject) use ($utopia, $request, $response, &$register, $route, $args) {
|
|
|
|
|
$utopia
|
|
|
|
|
->setRoute($route)
|
|
|
|
|
->execute($route, $request);
|
2021-03-18 19:26:45 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
$result = $response->getPayload();
|
|
|
|
|
|
|
|
|
|
if ($response->getCurrentModel() == Response::MODEL_ERROR_DEV) {
|
|
|
|
|
$reject(new ExceptionDev($result['message'], $result['code'], $result['version'], $result['file'], $result['line'], $result['trace']));
|
|
|
|
|
} else if ($response->getCurrentModel() == Response::MODEL_ERROR) {
|
|
|
|
|
$reject(new \Exception($result['message'], $result['code']));
|
|
|
|
|
}
|
|
|
|
|
$resolve($result);
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$field = [
|
|
|
|
|
'type' => $type,
|
|
|
|
|
'description' => $description,
|
|
|
|
|
'args' => $args,
|
|
|
|
|
'resolve' => $resolve
|
|
|
|
|
];
|
2021-03-18 19:26:45 +00:00
|
|
|
|
2022-04-07 14:02:48 +00:00
|
|
|
if ($method == 'GET') {
|
|
|
|
|
$queryFields[$methodName] = $field;
|
|
|
|
|
} else if ($method == 'POST' || $method == 'PUT' || $method == 'PATCH' || $method == 'DELETE') {
|
|
|
|
|
$mutationFields[$methodName] = $field;
|
|
|
|
|
}
|
2021-03-10 07:42:45 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-03-12 18:09:25 +00:00
|
|
|
|
2021-03-10 07:42:45 +00:00
|
|
|
$time_elapsed_secs = microtime(true) - $start;
|
2022-04-07 14:02:48 +00:00
|
|
|
Console::info("[INFO] Time Taken To Build REST API Schema : ${time_elapsed_secs}s");
|
2022-04-05 13:48:51 +00:00
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
'query' => $queryFields,
|
|
|
|
|
'mutation' => $mutationFields
|
|
|
|
|
];
|
2021-03-10 07:42:45 +00:00
|
|
|
}
|
2021-03-18 18:55:43 +00:00
|
|
|
|
2021-03-18 19:53:24 +00:00
|
|
|
/**
|
|
|
|
|
* Function to create an appropriate GraphQL Error Formatter
|
|
|
|
|
* Based on whether we're on a development build or production
|
2022-04-05 13:48:51 +00:00
|
|
|
* build of Appwrite.
|
|
|
|
|
*
|
2021-03-18 19:53:24 +00:00
|
|
|
* @param bool $isDevelopment
|
2022-04-05 13:48:51 +00:00
|
|
|
* @param string $version
|
2021-03-18 19:53:24 +00:00
|
|
|
* @return callable
|
|
|
|
|
*/
|
2022-04-06 23:23:20 +00:00
|
|
|
public static function getErrorFormatter(bool $isDevelopment, string $version): callable
|
2021-03-18 19:26:45 +00:00
|
|
|
{
|
2022-04-06 23:23:20 +00:00
|
|
|
return function (Error $error) use ($isDevelopment, $version) {
|
2021-03-18 19:26:45 +00:00
|
|
|
$formattedError = FormattedError::createFromException($error);
|
2022-04-06 23:23:20 +00:00
|
|
|
|
|
|
|
|
// Previous error represents the actual error thrown by Appwrite server
|
2021-03-18 21:10:15 +00:00
|
|
|
$previousError = $error->getPrevious() ?? $error;
|
2021-03-18 19:53:24 +00:00
|
|
|
$formattedError['code'] = $previousError->getCode();
|
2021-03-18 19:26:45 +00:00
|
|
|
$formattedError['version'] = $version;
|
2021-03-18 19:53:24 +00:00
|
|
|
if ($isDevelopment) {
|
|
|
|
|
$formattedError['file'] = $previousError->getFile();
|
|
|
|
|
$formattedError['line'] = $previousError->getLine();
|
2021-03-18 19:26:45 +00:00
|
|
|
}
|
|
|
|
|
return $formattedError;
|
|
|
|
|
};
|
2021-03-18 18:55:43 +00:00
|
|
|
}
|
2021-03-10 07:42:45 +00:00
|
|
|
}
|