1
0
Fork 0
mirror of synced 2024-07-13 02:05:54 +12:00
budibase/packages/server/utilities/createAppPackage.js

73 lines
2.1 KiB
JavaScript
Raw Normal View History

2019-07-13 21:35:57 +12:00
const { resolve, join } = require("path");
2019-06-29 09:59:27 +12:00
const constructHierarchy = require("./constructHierarchy");
const { common } = require("budibase-core");
const { getRuntimePackageDirectory } = require("../utilities/runtimePackages");
2019-07-09 18:29:50 +12:00
const injectPlugins = require("./injectedPlugins");
2019-07-13 21:35:57 +12:00
const { cwd } = require("process");
2019-07-09 18:29:50 +12:00
const createAppPackage = (context, appPath) => {
const appDefModule = require(
join(appPath, "appDefinition.json"));
const pluginsModule = require(
join(appPath, "plugins.js"));
2019-07-07 20:03:37 +12:00
const accessLevels = require(
join(appPath, "access_levels.json")
);
return ({
appDefinition: appDefModule,
2019-07-09 18:29:50 +12:00
behaviourSources: pluginsModule(context),
2019-07-07 20:03:37 +12:00
appPath,
accessLevels
})
}
2019-06-26 09:48:22 +12:00
2019-07-13 21:35:57 +12:00
const appPackageFolder = (config, appname) =>
resolve(cwd(), config.latestPackagesFolder, appname);
module.exports.appPackageFolder = appPackageFolder;
module.exports.appsFolder = (config) => appPackageFolder(config, "");
2019-07-09 18:29:50 +12:00
module.exports.masterAppPackage = (context) => {
const { config } = context;
2019-07-13 21:35:57 +12:00
const standardPackage = createAppPackage(
context, "../appPackages/master");
2019-06-26 09:48:22 +12:00
const customizeMaster = config && config.customizeMaster
? config.customizeMaster
: a => a;
2019-06-29 09:59:27 +12:00
const appDefinition = common.$(standardPackage.appDefinition, [
customizeMaster,
constructHierarchy
]);
2019-07-13 21:35:57 +12:00
const plugins = standardPackage.behaviourSources;
2019-06-26 09:48:22 +12:00
return ({
appDefinition,
2019-06-29 09:59:27 +12:00
behaviourSources: config && config.extraMasterPlugins
? {...plugins, ...config.extraMasterPlugins}
: plugins,
2019-06-26 09:48:22 +12:00
appPath: standardPackage.appPath
});
}
2019-07-09 18:29:50 +12:00
module.exports.applictionVersionPackage = async (context, appname, versionId, instanceKey) => {
const pkg = createAppPackage(
2019-07-09 18:29:50 +12:00
context,
join("..", getRuntimePackageDirectory(appname, versionId))
);
pkg.appDefinition = constructHierarchy(pkg.appDefinition);
2019-07-09 18:29:50 +12:00
await injectPlugins(
pkg,
context.master,
appname,
2019-07-11 20:43:47 +12:00
instanceKey);
2019-06-29 09:59:27 +12:00
return pkg;
}