mirror of
https://github.com/strapi/strapi.git
synced 2025-07-25 09:56:53 +00:00
149 lines
4.4 KiB
JavaScript
149 lines
4.4 KiB
JavaScript
'use strict';
|
|
|
|
const { get, getOr, isFunction, first, isNil } = require('lodash/fp');
|
|
|
|
const { GraphQLObjectType } = require('graphql');
|
|
const { ForbiddenError } = require('@strapi/utils').errors;
|
|
const { createPoliciesMiddleware } = require('./policy');
|
|
|
|
const introspectionQueries = [
|
|
'__Schema',
|
|
'__Type',
|
|
'__Field',
|
|
'__InputValue',
|
|
'__EnumValue',
|
|
'__Directive',
|
|
];
|
|
|
|
/**
|
|
* Get & parse middlewares definitions from the resolver's config
|
|
* @param {object} resolverConfig
|
|
* @param {object} strapi
|
|
* @return {function[]}
|
|
*/
|
|
const parseMiddlewares = (resolverConfig, strapi) => {
|
|
const resolverMiddlewares = getOr([], 'middlewares', resolverConfig);
|
|
|
|
// TODO: [v4] to factorize with compose endpoints (routes)
|
|
return resolverMiddlewares.map((middleware) => {
|
|
if (isFunction(middleware)) {
|
|
return middleware;
|
|
}
|
|
|
|
if (typeof middleware === 'string') {
|
|
return strapi.middleware(middleware);
|
|
}
|
|
|
|
if (typeof middleware === 'object') {
|
|
const { name, options = {} } = middleware;
|
|
|
|
return strapi.middleware(name)(options);
|
|
}
|
|
|
|
throw new Error(
|
|
`Invalid middleware type, expected (function,string,object), received ${typeof middleware}`
|
|
);
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Wrap the schema's resolvers if they've been
|
|
* customized using the GraphQL extension service
|
|
* @param {object} options
|
|
* @param {GraphQLSchema} options.schema
|
|
* @param {object} options.strapi
|
|
* @param {object} options.extension
|
|
* @return {GraphQLSchema}
|
|
*/
|
|
const wrapResolvers = ({ schema, strapi, extension = {} }) => {
|
|
// Get all the registered resolvers configuration
|
|
const { resolversConfig = {} } = extension;
|
|
|
|
// Fields filters
|
|
const isValidFieldName = ([field]) => !field.startsWith('__');
|
|
|
|
const typeMap = schema.getTypeMap();
|
|
|
|
Object.entries(typeMap).forEach(([type, definition]) => {
|
|
const isGraphQLObjectType = definition instanceof GraphQLObjectType;
|
|
const isIgnoredType = introspectionQueries.includes(type);
|
|
|
|
if (!isGraphQLObjectType || isIgnoredType) {
|
|
return;
|
|
}
|
|
|
|
const fields = definition.getFields();
|
|
const fieldsToProcess = Object.entries(fields).filter(isValidFieldName);
|
|
|
|
for (const [fieldName, fieldDefinition] of fieldsToProcess) {
|
|
const defaultResolver = get(fieldName);
|
|
|
|
const path = `${type}.${fieldName}`;
|
|
const resolverConfig = getOr({}, path, resolversConfig);
|
|
|
|
const { resolve: baseResolver = defaultResolver } = fieldDefinition;
|
|
|
|
// Parse & initialize the middlewares
|
|
const middlewares = parseMiddlewares(resolverConfig, strapi);
|
|
|
|
// Generate the policy middleware
|
|
const policyMiddleware = createPoliciesMiddleware(resolverConfig, { strapi });
|
|
|
|
// Add the policyMiddleware at the end of the middlewares collection
|
|
middlewares.push(policyMiddleware);
|
|
|
|
// Bind every middleware to the next one
|
|
const boundMiddlewares = middlewares.map((middleware, index, collection) => {
|
|
return (...args) =>
|
|
middleware(
|
|
// Make sure the last middleware in the list calls the baseResolver
|
|
index >= collection.length - 1 ? baseResolver : boundMiddlewares[index + 1],
|
|
...args
|
|
);
|
|
});
|
|
|
|
/**
|
|
* GraphQL authorization flow
|
|
* @param {object} context
|
|
* @return {Promise<void>}
|
|
*/
|
|
const authorize = async ({ context }) => {
|
|
const authConfig = get('auth', resolverConfig);
|
|
const authContext = get('state.auth', context);
|
|
|
|
const isValidType = ['Mutation', 'Query', 'Subscription'].includes(type);
|
|
const hasConfig = !isNil(authConfig);
|
|
|
|
const isAuthDisabled = authConfig === false;
|
|
|
|
if ((isValidType || hasConfig) && !isAuthDisabled) {
|
|
try {
|
|
await strapi.auth.verify(authContext, authConfig);
|
|
} catch (error) {
|
|
throw new ForbiddenError();
|
|
}
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Base resolver wrapper that handles authorization, middlewares & policies
|
|
* @param {object} parent
|
|
* @param {object} args
|
|
* @param {object} context
|
|
* @param {object} info
|
|
* @return {Promise<any>}
|
|
*/
|
|
fieldDefinition.resolve = async (parent, args, context, info) => {
|
|
await authorize({ context });
|
|
|
|
// Execute middlewares (including the policy middleware which will always be included)
|
|
return first(boundMiddlewares).call(null, parent, args, context, info);
|
|
};
|
|
}
|
|
});
|
|
|
|
return schema;
|
|
};
|
|
|
|
module.exports = { wrapResolvers };
|