2019-06-25 23:48:22 +02:00
|
|
|
const { join } = require("path");
|
2019-06-28 23:59:27 +02:00
|
|
|
const constructHierarchy = require("./constructHierarchy");
|
|
|
|
const { common } = require("budibase-core");
|
2019-07-05 17:56:53 +02:00
|
|
|
const { getRuntimePackageDirectory } = require("../utilities/runtimePackages");
|
2019-07-09 08:29:50 +02:00
|
|
|
const injectPlugins = require("./injectedPlugins");
|
|
|
|
|
|
|
|
const createAppPackage = (context, appPath) => {
|
2019-07-05 17:56:53 +02:00
|
|
|
|
|
|
|
const appDefModule = require(
|
|
|
|
join(appPath, "appDefinition.json"));
|
|
|
|
|
|
|
|
const pluginsModule = require(
|
|
|
|
join(appPath, "plugins.js"));
|
2019-07-07 10:03:37 +02:00
|
|
|
|
|
|
|
const accessLevels = require(
|
|
|
|
join(appPath, "access_levels.json")
|
|
|
|
);
|
2019-07-05 17:56:53 +02:00
|
|
|
|
|
|
|
return ({
|
|
|
|
appDefinition: appDefModule,
|
2019-07-09 08:29:50 +02:00
|
|
|
behaviourSources: pluginsModule(context),
|
2019-07-07 10:03:37 +02:00
|
|
|
appPath,
|
|
|
|
accessLevels
|
2019-07-05 17:56:53 +02:00
|
|
|
})
|
|
|
|
}
|
2019-06-25 23:48:22 +02:00
|
|
|
|
2019-07-09 08:29:50 +02:00
|
|
|
module.exports.masterAppPackage = (context) => {
|
|
|
|
const { config } = context;
|
|
|
|
const standardPackage = createAppPackage(context, "../appPackages/master");
|
2019-06-25 23:48:22 +02:00
|
|
|
|
|
|
|
const customizeMaster = config && config.customizeMaster
|
|
|
|
? config.customizeMaster
|
|
|
|
: a => a;
|
|
|
|
|
2019-06-28 23:59:27 +02:00
|
|
|
const appDefinition = common.$(standardPackage.appDefinition, [
|
|
|
|
customizeMaster,
|
|
|
|
constructHierarchy
|
|
|
|
]);
|
|
|
|
|
|
|
|
const plugins = require("../appPackages/master/plugins.js")
|
2019-07-09 08:29:50 +02:00
|
|
|
(context);
|
2019-06-25 23:48:22 +02:00
|
|
|
|
|
|
|
return ({
|
|
|
|
appDefinition,
|
2019-06-28 23:59:27 +02:00
|
|
|
behaviourSources: config && config.extraMasterPlugins
|
|
|
|
? {...plugins, ...config.extraMasterPlugins}
|
|
|
|
: plugins,
|
2019-06-25 23:48:22 +02:00
|
|
|
appPath: standardPackage.appPath
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-07-09 08:29:50 +02:00
|
|
|
module.exports.applictionVersionPackage = async (context, appname, versionId, instanceKey) => {
|
2019-07-05 17:56:53 +02:00
|
|
|
const pkg = createAppPackage(
|
2019-07-09 08:29:50 +02:00
|
|
|
context,
|
2019-07-05 17:56:53 +02:00
|
|
|
join("..", getRuntimePackageDirectory(appname, versionId))
|
|
|
|
);
|
|
|
|
pkg.appDefinition = constructHierarchy(pkg.appDefinition);
|
2019-07-09 08:29:50 +02:00
|
|
|
await injectPlugins(
|
|
|
|
pkg,
|
|
|
|
context.master,
|
|
|
|
appname,
|
|
|
|
instanceKey
|
|
|
|
);
|
2019-06-28 23:59:27 +02:00
|
|
|
return pkg;
|
|
|
|
}
|