2017-02-14 01:18:07 +01:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Public node modules.
|
2017-06-08 17:16:20 +01:00
|
|
|
const path = require('path');
|
2018-05-04 17:52:04 +02:00
|
|
|
const fs = require('fs-extra');
|
|
|
|
const _ = require('lodash');
|
2017-02-14 01:18:07 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This `before` function is run before generating targets.
|
|
|
|
* Validate, configure defaults, get extra dependencies, etc.
|
|
|
|
*
|
|
|
|
* @param {Object} scope
|
|
|
|
* @param {Function} cb
|
|
|
|
*/
|
|
|
|
|
|
|
|
module.exports = (scope, cb) => {
|
|
|
|
if (!scope.rootPath || !scope.id) {
|
|
|
|
return cb.invalid('Usage: `$ strapi generate:plugin pluginName`');
|
|
|
|
}
|
|
|
|
|
|
|
|
// `scope.args` are the raw command line arguments.
|
|
|
|
_.defaults(scope, {
|
2019-05-02 17:51:58 +02:00
|
|
|
id: _.trim(_.deburr(scope.id)),
|
2017-02-14 01:18:07 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// Determine default values based on the available scope.
|
|
|
|
_.defaults(scope, {
|
|
|
|
globalID: _.upperFirst(_.camelCase(scope.id)),
|
2019-05-02 17:51:58 +02:00
|
|
|
ext: '.js',
|
2017-02-14 01:18:07 +01:00
|
|
|
});
|
|
|
|
|
2017-06-08 17:16:20 +01:00
|
|
|
// Plugin info.
|
|
|
|
_.defaults(scope, {
|
|
|
|
name: scope.args.name || scope.id,
|
|
|
|
author: scope.author || 'A Strapi developer',
|
|
|
|
email: scope.email || '',
|
2019-05-02 17:51:58 +02:00
|
|
|
year: new Date().getFullYear(),
|
|
|
|
license: 'MIT',
|
2017-06-08 17:16:20 +01:00
|
|
|
});
|
2017-02-14 01:18:07 +01:00
|
|
|
|
|
|
|
// Take another pass to take advantage of the defaults absorbed in previous passes.
|
|
|
|
_.defaults(scope, {
|
2019-05-02 17:51:58 +02:00
|
|
|
filename: `${scope.globalID}${scope.ext}`,
|
2017-02-14 01:18:07 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
// Humanize output.
|
|
|
|
_.defaults(scope, {
|
2017-06-06 14:43:32 +02:00
|
|
|
humanizeId: scope.id.toLowerCase(),
|
2019-05-02 17:51:58 +02:00
|
|
|
humanizedPath: '`./plugins`',
|
2017-02-14 01:18:07 +01:00
|
|
|
});
|
|
|
|
|
2019-05-02 17:51:58 +02:00
|
|
|
const pluginDir = path.resolve(scope.rootPath, 'plugins');
|
|
|
|
fs.ensureDirSync(pluginDir);
|
|
|
|
|
2017-02-14 01:18:07 +01:00
|
|
|
// Trigger callback with no error to proceed.
|
|
|
|
return cb.success();
|
|
|
|
};
|