mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 16:46:31 +00:00
6e3595c0be
* fix: require resolve * fix: error * fix: skip realpath * fix: fs.realpath
103 lines
3.4 KiB
JavaScript
103 lines
3.4 KiB
JavaScript
const { dirname, resolve } = require('path');
|
|
const { realpath, readFile, writeFile, readdir, symlink, unlink, mkdir, stat } = require('fs').promises;
|
|
|
|
async function getStoragePluginNames(target) {
|
|
const plugins = [];
|
|
const items = await readdir(target);
|
|
for (const item of items) {
|
|
if (item.startsWith('@')) {
|
|
const children = await getStoragePluginNames(resolve(target, item));
|
|
plugins.push(
|
|
...children.map((child) => {
|
|
return `${item}/${child}`;
|
|
}),
|
|
);
|
|
} else if (await fsExists(resolve(target, item, 'package.json'))) {
|
|
plugins.push(item);
|
|
}
|
|
}
|
|
return plugins;
|
|
}
|
|
|
|
async function fsExists(path) {
|
|
try {
|
|
await stat(path);
|
|
return true;
|
|
} catch (error) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
exports.fsExists = fsExists;
|
|
|
|
async function createStoragePluginSymLink(pluginName) {
|
|
const storagePluginsPath = resolve(process.cwd(), 'storage/plugins');
|
|
const nodeModulesPath = process.env.NODE_MODULES_PATH; // resolve(dirname(require.resolve('@nocobase/server/package.json')), 'node_modules');
|
|
// const nodeModulesPath = resolve(process.cwd(), 'node_modules');
|
|
try {
|
|
if (pluginName.startsWith('@')) {
|
|
const [orgName] = pluginName.split('/');
|
|
if (!(await fsExists(resolve(nodeModulesPath, orgName)))) {
|
|
await mkdir(resolve(nodeModulesPath, orgName), { recursive: true });
|
|
}
|
|
}
|
|
const link = resolve(nodeModulesPath, pluginName);
|
|
if (await fsExists(link)) {
|
|
await unlink(link);
|
|
}
|
|
await symlink(resolve(storagePluginsPath, pluginName), link, 'dir');
|
|
} catch (error) {
|
|
console.error(error);
|
|
}
|
|
}
|
|
|
|
exports.createStoragePluginSymLink = createStoragePluginSymLink;
|
|
|
|
async function createStoragePluginsSymlink() {
|
|
const storagePluginsPath = resolve(process.cwd(), 'storage/plugins');
|
|
if (!(await fsExists(storagePluginsPath))) {
|
|
return;
|
|
}
|
|
const pluginNames = await getStoragePluginNames(storagePluginsPath);
|
|
await Promise.all(pluginNames.map((pluginName) => createStoragePluginSymLink(pluginName)));
|
|
}
|
|
|
|
exports.createStoragePluginsSymlink = createStoragePluginsSymlink;
|
|
|
|
async function createDevPluginSymLink(pluginName) {
|
|
const packagePluginsPath = resolve(process.cwd(), 'packages/plugins');
|
|
const nodeModulesPath = process.env.NODE_MODULES_PATH; // resolve(dirname(require.resolve('@nocobase/server/package.json')), 'node_modules');
|
|
try {
|
|
if (pluginName.startsWith('@')) {
|
|
const [orgName] = pluginName.split('/');
|
|
if (!(await fsExists(resolve(nodeModulesPath, orgName)))) {
|
|
await mkdir(resolve(nodeModulesPath, orgName), { recursive: true });
|
|
}
|
|
}
|
|
const link = resolve(nodeModulesPath, pluginName);
|
|
if (await fsExists(link)) {
|
|
const real = await realpath(link);
|
|
if (real === resolve(packagePluginsPath, pluginName)) {
|
|
return;
|
|
}
|
|
await unlink(link);
|
|
}
|
|
await symlink(resolve(packagePluginsPath, pluginName), link, 'dir');
|
|
} catch (error) {
|
|
console.error(error);
|
|
}
|
|
}
|
|
|
|
exports.createDevPluginSymLink = createDevPluginSymLink;
|
|
|
|
async function createDevPluginsSymlink() {
|
|
const storagePluginsPath = resolve(process.cwd(), 'packages/plugins');
|
|
if (!(await fsExists(storagePluginsPath))) {
|
|
return;
|
|
}
|
|
const pluginNames = await getStoragePluginNames(storagePluginsPath);
|
|
await Promise.all(pluginNames.map((pluginName) => createDevPluginSymLink(pluginName)));
|
|
}
|
|
|
|
exports.createDevPluginsSymlink = createDevPluginsSymlink;
|