UNPKG

graphql-yoga

Version:

<div align="center"><img src="./website/public/cover.png" width="720" /></div>

135 lines (134 loc) 3.92 kB
import { createGraphQLError } from '@graphql-tools/utils'; const expectedParameters = new Set([ 'query', 'variables', 'operationName', 'extensions', ]); export function assertInvalidParams(params) { if (params == null || typeof params !== 'object') { throw createGraphQLError('Invalid "params" in the request body', { extensions: { http: { spec: true, status: 400, }, }, }); } for (const paramKey in params) { if (params[paramKey] == null) { continue; } if (!expectedParameters.has(paramKey)) { throw createGraphQLError(`Unexpected parameter "${paramKey}" in the request body.`, { extensions: { http: { spec: true, status: 400, }, }, }); } } } export function checkGraphQLQueryParams(params) { if (!isObject(params)) { throw createGraphQLError(`Expected params to be an object but given ${extendedTypeof(params)}.`, { extensions: { http: { spec: true, status: 400, headers: { Allow: 'GET, POST', }, }, }, }); } assertInvalidParams(params); if (params.query == null) { throw createGraphQLError('Must provide query string.', { extensions: { http: { spec: true, status: 400, headers: { Allow: 'GET, POST', }, }, }, }); } const queryType = extendedTypeof(params.query); if (queryType !== 'string') { throw createGraphQLError(`Expected "query" param to be a string, but given ${queryType}.`, { extensions: { http: { spec: true, status: 400, headers: { Allow: 'GET, POST', }, }, }, }); } const variablesParamType = extendedTypeof(params.variables); if (!['object', 'null', 'undefined'].includes(variablesParamType)) { throw createGraphQLError(`Expected "variables" param to be empty or an object, but given ${variablesParamType}.`, { extensions: { http: { spec: true, status: 400, headers: { Allow: 'GET, POST', }, }, }, }); } const extensionsParamType = extendedTypeof(params.extensions); if (!['object', 'null', 'undefined'].includes(extensionsParamType)) { throw createGraphQLError(`Expected "extensions" param to be empty or an object, but given ${extensionsParamType}.`, { extensions: { http: { spec: true, status: 400, headers: { Allow: 'GET, POST', }, }, }, }); } return params; } export function isValidGraphQLParams(params) { try { checkGraphQLQueryParams(params); return true; } catch { return false; } } export function useCheckGraphQLQueryParams() { return { onParams({ params }) { checkGraphQLQueryParams(params); }, }; } function extendedTypeof(val) { if (val === null) { return 'null'; } if (Array.isArray(val)) { return 'array'; } return typeof val; } function isObject(val) { return extendedTypeof(val) === 'object'; }