182 lines
4.9 KiB
JavaScript
Raw Normal View History

2016-08-26 14:19:03 +02:00
'use strict';
2022-02-18 20:15:46 +01:00
const path = require('path');
const execa = require('execa');
2018-03-23 12:44:17 +01:00
const _ = require('lodash');
2022-02-18 20:15:46 +01:00
const { exists } = require('fs-extra');
2021-10-20 17:30:05 +02:00
const { ValidationError } = require('@strapi/utils').errors;
const { isUsingTypeScript } = require('@strapi/typescript-utils');
// eslint-disable-next-line node/no-extraneous-require
const ee = require('@strapi/strapi/lib/utils/ee');
const {
validateUpdateProjectSettings,
validateUpdateProjectSettingsFiles,
validateUpdateProjectSettingsImagesDimensions,
} = require('../validation/project-settings');
2021-08-04 19:39:40 +02:00
const { getService } = require('../utils');
const PLUGIN_NAME_REGEX = /^[A-Za-z][A-Za-z0-9-_]+$/;
/**
* Validates a plugin name format
*/
const isValidPluginName = plugin => {
return _.isString(plugin) && !_.isEmpty(plugin) && PLUGIN_NAME_REGEX.test(plugin);
};
2016-08-26 14:19:03 +02:00
/**
* A set of functions called "actions" for `Admin`
*/
module.exports = {
// TODO very temporary to check the switch ee/ce
// When removing this we need to update the /admin/src/index.js file
// where we set the strapi.window.isEE value
async getProjectType() {
// FIXME
try {
return { data: { isEE: strapi.EE, features: ee.features.getEnabled() } };
} catch (err) {
return { data: { isEE: false, features: [] } };
}
},
async init() {
let uuid = strapi.config.get('uuid', false);
2021-07-28 15:32:21 +02:00
const hasAdmin = await getService('user').exists();
const { menuLogo } = await getService('project-settings').getProjectSettings();
2022-03-30 11:54:06 +03:00
// set to null if telemetryDisabled flag not avaialble in package.json
const telemetryDisabled = strapi.config.get('packageJsonStrapi.telemetryDisabled', null);
if (telemetryDisabled !== null && telemetryDisabled === true) {
uuid = false;
}
return {
data: {
uuid,
hasAdmin,
menuLogo: menuLogo ? menuLogo.url : null,
},
};
},
async getProjectSettings() {
return getService('project-settings').getProjectSettings();
},
async updateProjectSettings(ctx) {
const projectSettingsService = getService('project-settings');
const {
request: { files, body },
} = ctx;
await validateUpdateProjectSettings(body);
await validateUpdateProjectSettingsFiles(files);
const formatedFiles = await projectSettingsService.parseFilesData(files);
await validateUpdateProjectSettingsImagesDimensions(formatedFiles);
2022-04-04 15:09:08 +02:00
return projectSettingsService.updateProjectSettings({ ...body, ...formatedFiles });
},
2022-06-07 16:07:39 +02:00
async telemetryProperties(ctx) {
// If the telemetry is disabled, ignore the request and return early
if (strapi.telemetry.isDisabled) {
ctx.status(204);
return;
}
const useTypescriptOnServer = await isUsingTypeScript(strapi.dirs.app.root);
const useTypescriptOnAdmin = await isUsingTypeScript(
path.join(strapi.dirs.app.root, 'src', 'admin')
);
return {
data: {
useTypescriptOnServer,
useTypescriptOnAdmin,
},
};
},
async information() {
2021-09-01 19:55:16 +02:00
const currentEnvironment = strapi.config.get('environment');
const autoReload = strapi.config.get('autoReload', false);
const strapiVersion = strapi.config.get('info.strapi', null);
const nodeVersion = process.version;
const communityEdition = !strapi.EE;
2022-02-18 20:15:46 +01:00
const useYarn = await exists(path.join(process.cwd(), 'yarn.lock'));
2019-09-09 16:06:54 +02:00
return {
2022-02-18 18:53:03 +01:00
data: {
currentEnvironment,
autoReload,
strapiVersion,
nodeVersion,
communityEdition,
2022-02-18 20:15:46 +01:00
useYarn,
2022-02-18 18:53:03 +01:00
},
};
2019-09-09 16:06:54 +02:00
},
2019-07-15 19:33:07 +02:00
async installPlugin(ctx) {
2017-12-16 17:35:16 +01:00
try {
const { plugin } = ctx.request.body;
2019-12-01 23:05:58 +01:00
if (!isValidPluginName(plugin)) {
2021-10-20 17:30:05 +02:00
throw new ValidationError('Invalid plugin name');
2019-12-01 23:05:58 +01:00
}
2017-12-16 17:35:16 +01:00
strapi.reload.isWatching = false;
strapi.log.info(`Installing ${plugin}...`);
await execa('npm', ['run', 'strapi', '--', 'install', plugin]);
2017-12-16 17:35:16 +01:00
ctx.send({ ok: true });
strapi.reload();
2019-04-02 22:45:21 +02:00
} catch (err) {
2017-12-16 17:35:16 +01:00
strapi.reload.isWatching = true;
2021-10-20 17:30:05 +02:00
throw err;
2017-12-16 17:35:16 +01:00
}
},
2019-07-15 19:33:07 +02:00
async plugins(ctx) {
const enabledPlugins = strapi.config.get('enabledPlugins');
const plugins = Object.entries(enabledPlugins).map(([key, plugin]) => ({
name: plugin.info.name || key,
displayName: plugin.info.displayName || plugin.info.name || key,
description: plugin.info.description || '',
2022-02-21 16:38:15 +01:00
packageName: plugin.info.packageName,
}));
2021-08-20 13:12:37 +02:00
ctx.send({ plugins });
},
2019-07-15 19:33:07 +02:00
async uninstallPlugin(ctx) {
try {
const { plugin } = ctx.params;
2019-12-01 23:05:58 +01:00
if (!isValidPluginName(plugin)) {
2021-10-20 17:30:05 +02:00
throw new ValidationError('Invalid plugin name');
2019-12-01 23:05:58 +01:00
}
2017-11-02 17:05:37 +01:00
strapi.reload.isWatching = false;
strapi.log.info(`Uninstalling ${plugin}...`);
await execa('npm', ['run', 'strapi', '--', 'uninstall', plugin, '-d']);
2017-11-02 17:05:37 +01:00
ctx.send({ ok: true });
2017-11-02 17:05:37 +01:00
strapi.reload();
2019-04-02 22:45:21 +02:00
} catch (err) {
2017-11-02 17:05:37 +01:00
strapi.reload.isWatching = true;
2021-10-20 17:30:05 +02:00
throw err;
}
2019-04-02 22:45:21 +02:00
},
2016-08-26 14:19:03 +02:00
};