@strapi/strapi 4.0.0-next.8 → 4.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -14
- package/bin/strapi.js +46 -60
- package/lib/Strapi.js +152 -74
- package/lib/commands/build.js +19 -8
- package/lib/commands/console.js +1 -1
- package/lib/commands/content-types/list.js +22 -0
- package/lib/commands/controllers/list.js +22 -0
- package/lib/commands/develop.js +22 -27
- package/lib/commands/generate-template.js +4 -5
- package/lib/commands/hooks/list.js +22 -0
- package/lib/commands/middlewares/list.js +22 -0
- package/lib/commands/new.js +3 -1
- package/lib/commands/policies/list.js +22 -0
- package/lib/commands/routes/list.js +28 -0
- package/lib/commands/services/list.js +22 -0
- package/lib/commands/watchAdmin.js +18 -9
- package/lib/core/app-configuration/index.js +3 -19
- package/lib/core/bootstrap.js +3 -95
- package/lib/core/domain/content-type/index.js +5 -11
- package/lib/core/domain/module/index.js +42 -11
- package/lib/core/domain/module/validation.js +16 -19
- package/lib/core/loaders/admin.js +2 -2
- package/lib/core/loaders/apis.js +148 -9
- package/lib/core/loaders/components.js +4 -6
- package/lib/core/loaders/index.js +1 -0
- package/lib/core/loaders/middlewares.js +23 -123
- package/lib/core/loaders/plugins/get-enabled-plugins.js +55 -19
- package/lib/core/loaders/plugins/get-user-plugins-config.js +37 -0
- package/lib/core/loaders/plugins/index.js +30 -16
- package/lib/core/loaders/policies.js +1 -1
- package/lib/core/loaders/src-index.js +39 -0
- package/lib/core/registries/apis.js +29 -0
- package/lib/core/registries/content-types.js +61 -12
- package/lib/core/registries/controllers.d.ts +7 -0
- package/lib/core/registries/controllers.js +91 -7
- package/lib/core/registries/hooks.d.ts +20 -0
- package/lib/core/registries/hooks.js +87 -0
- package/lib/core/registries/middlewares.d.ts +5 -0
- package/lib/core/registries/middlewares.js +64 -5
- package/lib/core/registries/modules.js +3 -3
- package/lib/core/registries/plugins.js +2 -2
- package/lib/core/registries/policies.d.ts +9 -0
- package/lib/core/registries/policies.js +64 -5
- package/lib/core/registries/services.d.ts +7 -0
- package/lib/core/registries/services.js +86 -17
- package/lib/core/utils.js +22 -0
- package/lib/core-api/controller/collection-type.js +45 -26
- package/lib/core-api/controller/index.d.ts +25 -0
- package/lib/core-api/controller/index.js +33 -11
- package/lib/core-api/controller/single-type.js +29 -15
- package/lib/core-api/controller/transform.js +62 -6
- package/lib/core-api/routes/index.js +71 -0
- package/lib/core-api/service/collection-type.js +43 -21
- package/lib/core-api/service/index.d.ts +21 -0
- package/lib/core-api/service/index.js +8 -67
- package/lib/core-api/service/pagination.js +125 -0
- package/lib/core-api/service/single-type.js +17 -19
- package/lib/factories.d.ts +48 -0
- package/lib/factories.js +84 -0
- package/lib/index.d.ts +10 -31
- package/lib/index.js +5 -1
- package/lib/middlewares/body.js +33 -0
- package/lib/middlewares/compression.js +8 -0
- package/lib/middlewares/cors.js +58 -0
- package/lib/middlewares/errors.js +40 -0
- package/lib/middlewares/favicon.js +19 -0
- package/lib/middlewares/index.d.ts +5 -0
- package/lib/middlewares/index.js +30 -116
- package/lib/middlewares/ip.js +8 -0
- package/lib/middlewares/logger.js +27 -0
- package/lib/middlewares/powered-by.js +20 -0
- package/lib/middlewares/public/index.js +72 -77
- package/lib/middlewares/query.js +46 -0
- package/lib/middlewares/response-time.js +15 -0
- package/lib/middlewares/responses.js +19 -0
- package/lib/middlewares/security.js +51 -0
- package/lib/middlewares/session/index.js +6 -6
- package/lib/migrations/draft-publish.js +57 -0
- package/lib/services/auth/index.js +87 -0
- package/lib/services/core-store.js +64 -49
- package/lib/services/cron.js +54 -0
- package/lib/services/entity-service/attributes/index.js +31 -0
- package/lib/services/entity-service/attributes/transforms.js +20 -0
- package/lib/services/entity-service/components.js +39 -15
- package/lib/services/entity-service/index.d.ts +91 -0
- package/lib/services/entity-service/index.js +118 -60
- package/lib/services/entity-service/params.js +52 -94
- package/lib/services/entity-validator/index.js +76 -43
- package/lib/services/entity-validator/validators.js +131 -43
- package/lib/services/errors.js +77 -0
- package/lib/services/fs.js +1 -1
- package/lib/services/metrics/index.js +38 -36
- package/lib/services/server/admin-api.js +14 -0
- package/lib/services/server/api.js +36 -0
- package/lib/services/server/compose-endpoint.js +141 -0
- package/lib/services/server/content-api.js +16 -0
- package/lib/{server.js → services/server/http-server.js} +0 -0
- package/lib/services/server/index.js +127 -0
- package/lib/services/server/koa.js +64 -0
- package/lib/services/server/middleware.js +122 -0
- package/lib/services/server/policy.js +32 -0
- package/lib/services/server/register-middlewares.js +110 -0
- package/lib/services/server/register-routes.js +106 -0
- package/lib/services/server/routing.js +120 -0
- package/lib/services/webhook-runner.js +1 -1
- package/lib/utils/ee.js +3 -3
- package/lib/utils/get-dirs.js +17 -0
- package/lib/utils/index.js +2 -0
- package/lib/utils/signals.js +24 -0
- package/lib/utils/update-notifier/index.js +2 -1
- package/package.json +94 -97
- package/lib/commands/generate.js +0 -76
- package/lib/core/app-configuration/load-functions.js +0 -28
- package/lib/core-api/index.js +0 -39
- package/lib/load/check-reserved-filename.js +0 -10
- package/lib/load/load-config-files.js +0 -22
- package/lib/load/require-file-parse.js +0 -15
- package/lib/middlewares/boom/defaults.json +0 -5
- package/lib/middlewares/boom/index.js +0 -147
- package/lib/middlewares/cors/index.js +0 -66
- package/lib/middlewares/cron/defaults.json +0 -5
- package/lib/middlewares/cron/index.js +0 -43
- package/lib/middlewares/favicon/defaults.json +0 -7
- package/lib/middlewares/favicon/index.js +0 -32
- package/lib/middlewares/gzip/defaults.json +0 -6
- package/lib/middlewares/gzip/index.js +0 -19
- package/lib/middlewares/helmet/defaults.json +0 -18
- package/lib/middlewares/helmet/index.js +0 -9
- package/lib/middlewares/ip/defaults.json +0 -7
- package/lib/middlewares/ip/index.js +0 -25
- package/lib/middlewares/language/defaults.json +0 -9
- package/lib/middlewares/language/index.js +0 -40
- package/lib/middlewares/logger/defaults.json +0 -5
- package/lib/middlewares/logger/index.js +0 -37
- package/lib/middlewares/parser/defaults.json +0 -11
- package/lib/middlewares/parser/index.js +0 -71
- package/lib/middlewares/poweredBy/defaults.json +0 -5
- package/lib/middlewares/poweredBy/index.js +0 -16
- package/lib/middlewares/public/defaults.json +0 -8
- package/lib/middlewares/responseTime/defaults.json +0 -5
- package/lib/middlewares/responseTime/index.js +0 -25
- package/lib/middlewares/responses/defaults.json +0 -5
- package/lib/middlewares/responses/index.js +0 -18
- package/lib/middlewares/router/defaults.json +0 -7
- package/lib/middlewares/router/index.js +0 -58
- package/lib/middlewares/router/utils/composeEndpoint.js +0 -177
- package/lib/utils/get-prefixed-dependencies.js +0 -7
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { join } = require('path');
|
|
4
|
+
const fse = require('fs-extra');
|
|
5
|
+
const { merge } = require('lodash/fp');
|
|
6
|
+
const loadConfigFile = require('../../app-configuration/load-config-file');
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Return user defined plugins' config
|
|
10
|
+
* first load config from `config/plugins.js`
|
|
11
|
+
* and then merge config from `config/env/{env}/plugins.js`
|
|
12
|
+
* @return {Promise<{}>}
|
|
13
|
+
*/
|
|
14
|
+
const getUserPluginsConfig = async () => {
|
|
15
|
+
const globalUserConfigPath = join(strapi.dirs.config, 'plugins.js');
|
|
16
|
+
const currentEnvUserConfigPath = join(
|
|
17
|
+
strapi.dirs.config,
|
|
18
|
+
'env',
|
|
19
|
+
process.env.NODE_ENV,
|
|
20
|
+
'plugins.js'
|
|
21
|
+
);
|
|
22
|
+
let config = {};
|
|
23
|
+
|
|
24
|
+
// assign global user config if exists
|
|
25
|
+
if (await fse.pathExists(globalUserConfigPath)) {
|
|
26
|
+
config = loadConfigFile(globalUserConfigPath);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// and merge user config by environment if exists
|
|
30
|
+
if (await fse.pathExists(currentEnvUserConfigPath)) {
|
|
31
|
+
config = merge(config, loadConfigFile(currentEnvUserConfigPath));
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
return config;
|
|
35
|
+
};
|
|
36
|
+
|
|
37
|
+
module.exports = getUserPluginsConfig;
|
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
const { join
|
|
4
|
-
const
|
|
3
|
+
const { join } = require('path');
|
|
4
|
+
const fse = require('fs-extra');
|
|
5
5
|
const { defaultsDeep, getOr, get } = require('lodash/fp');
|
|
6
6
|
const { env } = require('@strapi/utils');
|
|
7
7
|
const loadConfigFile = require('../../app-configuration/load-config-file');
|
|
8
8
|
const loadFiles = require('../../../load/load-files');
|
|
9
9
|
const getEnabledPlugins = require('./get-enabled-plugins');
|
|
10
|
+
const getUserPluginsConfig = require('./get-user-plugins-config');
|
|
10
11
|
|
|
11
12
|
const defaultPlugin = {
|
|
12
|
-
bootstrap
|
|
13
|
-
destroy
|
|
14
|
-
register
|
|
13
|
+
bootstrap() {},
|
|
14
|
+
destroy() {},
|
|
15
|
+
register() {},
|
|
15
16
|
config: {
|
|
16
17
|
default: {},
|
|
17
|
-
validator
|
|
18
|
+
validator() {},
|
|
18
19
|
},
|
|
19
20
|
routes: [],
|
|
20
21
|
controllers: {},
|
|
@@ -25,8 +26,8 @@ const defaultPlugin = {
|
|
|
25
26
|
};
|
|
26
27
|
|
|
27
28
|
const applyUserExtension = async plugins => {
|
|
28
|
-
const extensionsDir =
|
|
29
|
-
if (!
|
|
29
|
+
const extensionsDir = strapi.dirs.extensions;
|
|
30
|
+
if (!(await fse.pathExists(extensionsDir))) {
|
|
30
31
|
return;
|
|
31
32
|
}
|
|
32
33
|
|
|
@@ -39,7 +40,11 @@ const applyUserExtension = async plugins => {
|
|
|
39
40
|
for (const ctName in plugin.contentTypes) {
|
|
40
41
|
const extendedSchema = get([pluginName, 'content-types', ctName, 'schema'], extendedSchemas);
|
|
41
42
|
if (extendedSchema) {
|
|
42
|
-
plugin.contentTypes[ctName].schema =
|
|
43
|
+
plugin.contentTypes[ctName].schema = Object.assign(
|
|
44
|
+
{},
|
|
45
|
+
plugin.contentTypes[ctName].schema,
|
|
46
|
+
extendedSchema
|
|
47
|
+
);
|
|
43
48
|
}
|
|
44
49
|
}
|
|
45
50
|
// second: execute strapi-server extension
|
|
@@ -61,11 +66,8 @@ const formatContentTypes = plugins => {
|
|
|
61
66
|
}
|
|
62
67
|
};
|
|
63
68
|
|
|
64
|
-
const applyUserConfig = plugins => {
|
|
65
|
-
const
|
|
66
|
-
const userPluginsConfig = existsSync(userPluginConfigPath)
|
|
67
|
-
? loadConfigFile(userPluginConfigPath)
|
|
68
|
-
: {};
|
|
69
|
+
const applyUserConfig = async plugins => {
|
|
70
|
+
const userPluginsConfig = await getUserPluginsConfig();
|
|
69
71
|
|
|
70
72
|
for (const pluginName in plugins) {
|
|
71
73
|
const plugin = plugins[pluginName];
|
|
@@ -87,15 +89,27 @@ const applyUserConfig = plugins => {
|
|
|
87
89
|
|
|
88
90
|
const loadPlugins = async strapi => {
|
|
89
91
|
const plugins = {};
|
|
92
|
+
|
|
90
93
|
const enabledPlugins = await getEnabledPlugins(strapi);
|
|
91
94
|
|
|
95
|
+
strapi.config.set('enabledPlugins', enabledPlugins);
|
|
96
|
+
|
|
92
97
|
for (const pluginName in enabledPlugins) {
|
|
93
98
|
const enabledPlugin = enabledPlugins[pluginName];
|
|
94
|
-
|
|
99
|
+
|
|
100
|
+
const serverEntrypointPath = join(enabledPlugin.pathToPlugin, 'strapi-server.js');
|
|
101
|
+
|
|
102
|
+
// only load plugins with a server entrypoint
|
|
103
|
+
if (!(await fse.pathExists(serverEntrypointPath))) {
|
|
104
|
+
continue;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
const pluginServer = loadConfigFile(serverEntrypointPath);
|
|
95
108
|
plugins[pluginName] = defaultsDeep(defaultPlugin, pluginServer);
|
|
96
109
|
}
|
|
110
|
+
|
|
97
111
|
// TODO: validate plugin format
|
|
98
|
-
applyUserConfig(plugins);
|
|
112
|
+
await applyUserConfig(plugins);
|
|
99
113
|
await applyUserExtension(plugins);
|
|
100
114
|
formatContentTypes(plugins);
|
|
101
115
|
|
|
@@ -5,7 +5,7 @@ const fse = require('fs-extra');
|
|
|
5
5
|
|
|
6
6
|
// TODO:: allow folders with index.js inside for bigger policies
|
|
7
7
|
module.exports = async function loadPolicies(strapi) {
|
|
8
|
-
const dir =
|
|
8
|
+
const dir = strapi.dirs.policies;
|
|
9
9
|
|
|
10
10
|
if (!(await fse.pathExists(dir))) {
|
|
11
11
|
return;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { resolve } = require('path');
|
|
4
|
+
const { statSync, existsSync } = require('fs');
|
|
5
|
+
const { yup } = require('@strapi/utils');
|
|
6
|
+
|
|
7
|
+
const srcSchema = yup
|
|
8
|
+
.object()
|
|
9
|
+
.shape({
|
|
10
|
+
bootstrap: yup.mixed().isFunction(),
|
|
11
|
+
register: yup.mixed().isFunction(),
|
|
12
|
+
destroy: yup.mixed().isFunction(),
|
|
13
|
+
})
|
|
14
|
+
.noUnknown();
|
|
15
|
+
|
|
16
|
+
const validateSrcIndex = srcIndex => {
|
|
17
|
+
return srcSchema.validateSync(srcIndex, { strict: true, abortEarly: false });
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
module.exports = strapi => {
|
|
21
|
+
if (!existsSync(strapi.dirs.src)) {
|
|
22
|
+
throw new Error('Missing src folder. Please create one at `./src`');
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
const pathToSrcIndex = resolve(strapi.dirs.src, 'index.js');
|
|
26
|
+
if (!existsSync(pathToSrcIndex) || statSync(pathToSrcIndex).isDirectory()) {
|
|
27
|
+
return {};
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
const srcIndex = require(pathToSrcIndex);
|
|
31
|
+
|
|
32
|
+
try {
|
|
33
|
+
validateSrcIndex(srcIndex);
|
|
34
|
+
} catch (e) {
|
|
35
|
+
strapi.stopWithError({ message: `Invalid file \`./src/index.js\`: ${e.message}` });
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
return srcIndex;
|
|
39
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { has } = require('lodash/fp');
|
|
4
|
+
|
|
5
|
+
const apisRegistry = strapi => {
|
|
6
|
+
const apis = {};
|
|
7
|
+
|
|
8
|
+
return {
|
|
9
|
+
get(name) {
|
|
10
|
+
return apis[name];
|
|
11
|
+
},
|
|
12
|
+
getAll() {
|
|
13
|
+
return apis;
|
|
14
|
+
},
|
|
15
|
+
add(apiName, apiConfig) {
|
|
16
|
+
if (has(apiName, apis)) {
|
|
17
|
+
throw new Error(`API ${apiName} has already been registered.`);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
const api = strapi.container.get('modules').add(`api::${apiName}`, apiConfig);
|
|
21
|
+
|
|
22
|
+
apis[apiName] = api;
|
|
23
|
+
|
|
24
|
+
return apis[apiName];
|
|
25
|
+
},
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
module.exports = apisRegistry;
|
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
const { pickBy, has } = require('lodash/fp');
|
|
4
4
|
const { createContentType } = require('../domain/content-type');
|
|
5
|
-
const { addNamespace } = require('../utils');
|
|
5
|
+
const { addNamespace, hasNamespace } = require('../utils');
|
|
6
6
|
|
|
7
7
|
const validateKeySameToSingularName = contentTypes => {
|
|
8
8
|
for (const ctName in contentTypes) {
|
|
9
9
|
const contentType = contentTypes[ctName];
|
|
10
|
+
|
|
10
11
|
if (ctName !== contentType.schema.info.singularName) {
|
|
11
12
|
throw new Error(
|
|
12
13
|
`The key of the content-type should be the same as its singularName. Found ${ctName} and ${contentType.schema.info.singularName}.`
|
|
@@ -19,29 +20,77 @@ const contentTypesRegistry = () => {
|
|
|
19
20
|
const contentTypes = {};
|
|
20
21
|
|
|
21
22
|
return {
|
|
22
|
-
|
|
23
|
-
|
|
23
|
+
/**
|
|
24
|
+
* Returns this list of registered contentTypes uids
|
|
25
|
+
* @returns {string[]}
|
|
26
|
+
*/
|
|
27
|
+
keys() {
|
|
28
|
+
return Object.keys(contentTypes);
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Returns the instance of a contentType. Instantiate the contentType if not already done
|
|
33
|
+
* @param {string} uid
|
|
34
|
+
* @returns
|
|
35
|
+
*/
|
|
36
|
+
get(uid) {
|
|
37
|
+
return contentTypes[uid];
|
|
24
38
|
},
|
|
25
|
-
getAll(prefix = '') {
|
|
26
|
-
if (!prefix) {
|
|
27
|
-
return contentTypes;
|
|
28
|
-
}
|
|
29
39
|
|
|
30
|
-
|
|
40
|
+
/**
|
|
41
|
+
* Returns a map with all the contentTypes in a namespace
|
|
42
|
+
* @param {string} namespace
|
|
43
|
+
*/
|
|
44
|
+
getAll(namespace) {
|
|
45
|
+
return pickBy((_, uid) => hasNamespace(uid, namespace))(contentTypes);
|
|
31
46
|
},
|
|
32
|
-
add(namespace, rawContentTypes) {
|
|
33
|
-
validateKeySameToSingularName(rawContentTypes);
|
|
34
47
|
|
|
35
|
-
|
|
48
|
+
/**
|
|
49
|
+
* Registers a contentType
|
|
50
|
+
* @param {string} uid
|
|
51
|
+
* @param {Object} contentType
|
|
52
|
+
*/
|
|
53
|
+
set(uid, contentType) {
|
|
54
|
+
contentTypes[uid] = contentType;
|
|
55
|
+
return this;
|
|
56
|
+
},
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* Registers a map of contentTypes for a specific namespace
|
|
60
|
+
* @param {string} namespace
|
|
61
|
+
* @param {{ [key: string]: Object }} newContentTypes
|
|
62
|
+
*/
|
|
63
|
+
add(namespace, newContentTypes) {
|
|
64
|
+
validateKeySameToSingularName(newContentTypes);
|
|
65
|
+
|
|
66
|
+
for (const rawCtName in newContentTypes) {
|
|
36
67
|
const uid = addNamespace(rawCtName, namespace);
|
|
37
68
|
|
|
38
69
|
if (has(uid, contentTypes)) {
|
|
39
70
|
throw new Error(`Content-type ${uid} has already been registered.`);
|
|
40
71
|
}
|
|
41
72
|
|
|
42
|
-
contentTypes[uid] = createContentType(uid,
|
|
73
|
+
contentTypes[uid] = createContentType(uid, newContentTypes[rawCtName]);
|
|
43
74
|
}
|
|
44
75
|
},
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Wraps a contentType to extend it
|
|
79
|
+
* @param {string} uid
|
|
80
|
+
* @param {(contentType: Object) => Object} extendFn
|
|
81
|
+
*/
|
|
82
|
+
extend(ctUID, extendFn) {
|
|
83
|
+
const currentContentType = this.get(ctUID);
|
|
84
|
+
|
|
85
|
+
if (!currentContentType) {
|
|
86
|
+
throw new Error(`Content-Type ${ctUID} doesn't exist`);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
const newContentType = extendFn(currentContentType);
|
|
90
|
+
contentTypes[ctUID] = newContentType;
|
|
91
|
+
|
|
92
|
+
return this;
|
|
93
|
+
},
|
|
45
94
|
};
|
|
46
95
|
};
|
|
47
96
|
|
|
@@ -1,18 +1,82 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const { pickBy, has } = require('lodash/fp');
|
|
4
|
-
const { addNamespace } = require('../utils');
|
|
4
|
+
const { addNamespace, hasNamespace } = require('../utils');
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
/**
|
|
7
|
+
* @typedef {import('./controllers').Controller} Controller
|
|
8
|
+
* @typedef {import('./controllers').ControllerFactory} ControllerFactory
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
const controllersRegistry = () => {
|
|
7
12
|
const controllers = {};
|
|
13
|
+
const instances = {};
|
|
8
14
|
|
|
9
15
|
return {
|
|
10
|
-
|
|
11
|
-
|
|
16
|
+
/**
|
|
17
|
+
* Returns this list of registered controllers uids
|
|
18
|
+
* @returns {string[]}
|
|
19
|
+
*/
|
|
20
|
+
keys() {
|
|
21
|
+
return Object.keys(controllers);
|
|
12
22
|
},
|
|
13
|
-
|
|
14
|
-
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* Returns the instance of a controller. Instantiate the controller if not already done
|
|
26
|
+
* @param {string} uid
|
|
27
|
+
* @returns {Controller}
|
|
28
|
+
*/
|
|
29
|
+
get(uid) {
|
|
30
|
+
if (instances[uid]) {
|
|
31
|
+
return instances[uid];
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
const controller = controllers[uid];
|
|
35
|
+
|
|
36
|
+
if (controller) {
|
|
37
|
+
instances[uid] = typeof controller === 'function' ? controller({ strapi }) : controller;
|
|
38
|
+
return instances[uid];
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Returns a map with all the controller in a namespace
|
|
44
|
+
* @param {string} namespace
|
|
45
|
+
* @returns {{ [key: string]: Controller }}
|
|
46
|
+
*/
|
|
47
|
+
getAll(namespace) {
|
|
48
|
+
const filteredControllers = pickBy((_, uid) => hasNamespace(uid, namespace))(controllers);
|
|
49
|
+
|
|
50
|
+
const map = {};
|
|
51
|
+
for (const uid in filteredControllers) {
|
|
52
|
+
Object.defineProperty(map, uid, {
|
|
53
|
+
enumerable: true,
|
|
54
|
+
get: () => {
|
|
55
|
+
return this.get(uid);
|
|
56
|
+
},
|
|
57
|
+
});
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
return map;
|
|
15
61
|
},
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Registers a controller
|
|
65
|
+
* @param {string} uid
|
|
66
|
+
* @param {Controller} controller
|
|
67
|
+
*/
|
|
68
|
+
set(uid, value) {
|
|
69
|
+
controllers[uid] = value;
|
|
70
|
+
delete instances[uid];
|
|
71
|
+
return this;
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Registers a map of controllers for a specific namespace
|
|
76
|
+
* @param {string} namespace
|
|
77
|
+
* @param {{ [key: string]: Controller|ControllerFactory }} newControllers
|
|
78
|
+
* @returns
|
|
79
|
+
*/
|
|
16
80
|
add(namespace, newControllers) {
|
|
17
81
|
for (const controllerName in newControllers) {
|
|
18
82
|
const controller = newControllers[controllerName];
|
|
@@ -23,8 +87,28 @@ const policiesRegistry = () => {
|
|
|
23
87
|
}
|
|
24
88
|
controllers[uid] = controller;
|
|
25
89
|
}
|
|
90
|
+
|
|
91
|
+
return this;
|
|
92
|
+
},
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Wraps a controller to extend it
|
|
96
|
+
* @param {string} uid
|
|
97
|
+
* @param {(controller: Controller) => Controller} extendFn
|
|
98
|
+
*/
|
|
99
|
+
extend(controllerUID, extendFn) {
|
|
100
|
+
const currentController = this.get(controllerUID);
|
|
101
|
+
|
|
102
|
+
if (!currentController) {
|
|
103
|
+
throw new Error(`Controller ${controllerUID} doesn't exist`);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
const newController = extendFn(currentController);
|
|
107
|
+
instances[controllerUID] = newController;
|
|
108
|
+
|
|
109
|
+
return this;
|
|
26
110
|
},
|
|
27
111
|
};
|
|
28
112
|
};
|
|
29
113
|
|
|
30
|
-
module.exports =
|
|
114
|
+
module.exports = controllersRegistry;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
type Handler = (context: any) => any;
|
|
3
|
+
|
|
4
|
+
type AsyncHook = {
|
|
5
|
+
handlers: Handler[];
|
|
6
|
+
register(handler: Handler): this;
|
|
7
|
+
delete(handler: Handler): this;
|
|
8
|
+
call(): Promise<void>;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
type SyncHook = {
|
|
13
|
+
get handlers(): Handler[];
|
|
14
|
+
register(handler: Handler): this;
|
|
15
|
+
delete(handler: Handler): this;
|
|
16
|
+
call(): void;
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
export type Hook = AsyncHook|SyncHook
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const { pickBy } = require('lodash/fp');
|
|
4
|
+
const { addNamespace, hasNamespace } = require('../utils');
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* @typedef {import('./hooks').Hook} Hook
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
const hooksRegistry = () => {
|
|
11
|
+
const hooks = {};
|
|
12
|
+
|
|
13
|
+
return {
|
|
14
|
+
/**
|
|
15
|
+
* Returns this list of registered hooks uids
|
|
16
|
+
* @returns {string[]}
|
|
17
|
+
*/
|
|
18
|
+
keys() {
|
|
19
|
+
return Object.keys(hooks);
|
|
20
|
+
},
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* Returns the instance of a hook.
|
|
24
|
+
* @param {string} uid
|
|
25
|
+
* @returns {Hook}
|
|
26
|
+
*/
|
|
27
|
+
get(uid) {
|
|
28
|
+
return hooks[uid];
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* Returns a map with all the hooks in a namespace
|
|
33
|
+
* @param {string} namespace
|
|
34
|
+
* @returns {{ [key: string]: Hook }}
|
|
35
|
+
*/
|
|
36
|
+
getAll(namespace) {
|
|
37
|
+
return pickBy((_, uid) => hasNamespace(uid, namespace))(hooks);
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Registers a hook
|
|
42
|
+
* @param {string} uid
|
|
43
|
+
* @param {Hook} hook
|
|
44
|
+
*/
|
|
45
|
+
set(uid, hook) {
|
|
46
|
+
hooks[uid] = hook;
|
|
47
|
+
return this;
|
|
48
|
+
},
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* Registers a map of hooks for a specific namespace
|
|
52
|
+
* @param {string} namespace
|
|
53
|
+
* @param {{ [key: string]: Hook }} newHooks
|
|
54
|
+
* @returns
|
|
55
|
+
*/
|
|
56
|
+
add(namespace, hooks) {
|
|
57
|
+
for (const hookName in hooks) {
|
|
58
|
+
const hook = hooks[hookName];
|
|
59
|
+
const uid = addNamespace(hookName, namespace);
|
|
60
|
+
|
|
61
|
+
this.set(uid, hook);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
return this;
|
|
65
|
+
},
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Wraps a hook to extend it
|
|
69
|
+
* @param {string} uid
|
|
70
|
+
* @param {(hook: Hook) => Hook} extendFn
|
|
71
|
+
*/
|
|
72
|
+
extend(uid, extendFn) {
|
|
73
|
+
const currentHook = this.get(uid);
|
|
74
|
+
|
|
75
|
+
if (!currentHook) {
|
|
76
|
+
throw new Error(`Hook ${uid} doesn't exist`);
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
const newHook = extendFn(currentHook);
|
|
80
|
+
hooks[uid] = newHook;
|
|
81
|
+
|
|
82
|
+
return this;
|
|
83
|
+
},
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
|
|
87
|
+
module.exports = hooksRegistry;
|
|
@@ -1,18 +1,59 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const { pickBy, has } = require('lodash/fp');
|
|
4
|
-
const { addNamespace } = require('../utils');
|
|
4
|
+
const { addNamespace, hasNamespace } = require('../utils');
|
|
5
5
|
|
|
6
|
+
/**
|
|
7
|
+
* @typedef {import('./middlewares').Middleware} Middleware
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
// TODO: move instantiation part here instead of in the server service
|
|
6
11
|
const middlewaresRegistry = () => {
|
|
7
12
|
const middlewares = {};
|
|
8
13
|
|
|
9
14
|
return {
|
|
10
|
-
|
|
11
|
-
|
|
15
|
+
/**
|
|
16
|
+
* Returns this list of registered middlewares uids
|
|
17
|
+
* @returns {string[]}
|
|
18
|
+
*/
|
|
19
|
+
keys() {
|
|
20
|
+
return Object.keys(middlewares);
|
|
21
|
+
},
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Returns the instance of a middleware. Instantiate the middleware if not already done
|
|
25
|
+
* @param {string} uid
|
|
26
|
+
* @returns {Middleware}
|
|
27
|
+
*/
|
|
28
|
+
get(uid) {
|
|
29
|
+
return middlewares[uid];
|
|
12
30
|
},
|
|
13
|
-
|
|
14
|
-
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Returns a map with all the middlewares in a namespace
|
|
34
|
+
* @param {string} namespace
|
|
35
|
+
* @returns {{ [key: string]: Middleware }}
|
|
36
|
+
*/
|
|
37
|
+
getAll(namespace) {
|
|
38
|
+
return pickBy((_, uid) => hasNamespace(uid, namespace))(middlewares);
|
|
15
39
|
},
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Registers a middleware
|
|
43
|
+
* @param {string} uid
|
|
44
|
+
* @param {Middleware} middleware
|
|
45
|
+
*/
|
|
46
|
+
set(uid, middleware) {
|
|
47
|
+
middlewares[uid] = middleware;
|
|
48
|
+
return this;
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Registers a map of middlewares for a specific namespace
|
|
53
|
+
* @param {string} namespace
|
|
54
|
+
* @param {{ [key: string]: Middleware }} newMiddlewares
|
|
55
|
+
* @returns
|
|
56
|
+
*/
|
|
16
57
|
add(namespace, rawMiddlewares) {
|
|
17
58
|
for (const middlewareName in rawMiddlewares) {
|
|
18
59
|
const middleware = rawMiddlewares[middlewareName];
|
|
@@ -24,6 +65,24 @@ const middlewaresRegistry = () => {
|
|
|
24
65
|
middlewares[uid] = middleware;
|
|
25
66
|
}
|
|
26
67
|
},
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Wraps a middleware to extend it
|
|
71
|
+
* @param {string} uid
|
|
72
|
+
* @param {(middleware: Middleware) => Middleware} extendFn
|
|
73
|
+
*/
|
|
74
|
+
extend(uid, extendFn) {
|
|
75
|
+
const currentMiddleware = this.get(uid);
|
|
76
|
+
|
|
77
|
+
if (!currentMiddleware) {
|
|
78
|
+
throw new Error(`Middleware ${uid} doesn't exist`);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
const newMiddleware = extendFn(currentMiddleware);
|
|
82
|
+
middlewares[uid] = newMiddleware;
|
|
83
|
+
|
|
84
|
+
return this;
|
|
85
|
+
},
|
|
27
86
|
};
|
|
28
87
|
};
|
|
29
88
|
|
|
@@ -25,17 +25,17 @@ const modulesRegistry = strapi => {
|
|
|
25
25
|
},
|
|
26
26
|
async bootstrap() {
|
|
27
27
|
for (const mod of Object.values(modules)) {
|
|
28
|
-
await mod.bootstrap(
|
|
28
|
+
await mod.bootstrap();
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
async register() {
|
|
32
32
|
for (const mod of Object.values(modules)) {
|
|
33
|
-
await mod.register(
|
|
33
|
+
await mod.register();
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
async destroy() {
|
|
37
37
|
for (const mod of Object.values(modules)) {
|
|
38
|
-
await mod.destroy(
|
|
38
|
+
await mod.destroy();
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
41
|
};
|
|
@@ -17,8 +17,8 @@ const pluginsRegistry = strapi => {
|
|
|
17
17
|
throw new Error(`Plugin ${name} has already been registered.`);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
const
|
|
21
|
-
plugins[name] =
|
|
20
|
+
const pluginModule = strapi.container.get('modules').add(`plugin::${name}`, pluginConfig);
|
|
21
|
+
plugins[name] = pluginModule;
|
|
22
22
|
|
|
23
23
|
return plugins[name];
|
|
24
24
|
},
|