budibase/packages/server/utilities/createAppPackage.js

96 lines
2.9 KiB
JavaScript
Raw Normal View History

2019-07-13 11:35:57 +02:00
const { resolve, join } = require("path");
2019-06-28 23:59:27 +02:00
const constructHierarchy = require("./constructHierarchy");
2019-09-10 07:14:45 +02:00
const { common } = require("@budibase/core");
const { getRuntimePackageDirectory } = require("../utilities/runtimePackages");
2019-07-09 08:29:50 +02:00
const injectPlugins = require("./injectedPlugins");
2019-07-13 11:35:57 +02:00
const { cwd } = require("process");
2019-07-09 08:29:50 +02:00
const createAppPackage = (context, appPath) => {
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")
);
return ({
appDefinition: appDefModule,
2019-07-09 08:29:50 +02:00
behaviourSources: pluginsModule(context),
2019-07-07 10:03:37 +02:00
appPath,
2019-07-16 23:14:57 +02:00
accessLevels,
...publicPaths(appPath)
});
}
2019-06-25 23:48:22 +02:00
2019-07-13 11:35:57 +02:00
const appPackageFolder = (config, appname) =>
resolve(cwd(), config.latestPackagesFolder, appname);
module.exports.appPackageFolder = appPackageFolder;
module.exports.appsFolder = (config) => appPackageFolder(config, "");
2019-07-09 08:29:50 +02:00
module.exports.masterAppPackage = (context) => {
const { config } = context;
2019-07-13 11:35:57 +02:00
const standardPackage = createAppPackage(
2019-09-12 07:10:50 +02:00
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
]);
2019-07-13 11:35:57 +02:00
const plugins = standardPackage.behaviourSources;
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-07-16 23:14:57 +02:00
appPath: standardPackage.appPath,
unauthenticatedUiPath: standardPackage.unauthenticatedUiPath,
2019-09-12 16:55:36 +02:00
mainUiPath: standardPackage.mainUiPath,
sharedPath: standardPackage.sharedPath
2019-06-25 23:48:22 +02:00
});
}
2019-07-16 23:14:57 +02:00
2019-10-11 18:14:23 +02:00
const applictionVersionPath = (context, appname, versionId) =>
2019-10-12 08:50:32 +02:00
join(cwd(), getRuntimePackageDirectory(context, appname, versionId))
2019-07-16 23:14:57 +02:00
const publicPaths = (appPath) => ({
2019-10-12 08:50:32 +02:00
mainUiPath: resolve(join(
appPath, "public", "main")),
unauthenticatedUiPath: resolve(join(
appPath, "public", "unauthenticated")),
sharedPath: resolve(join(
appPath, "public", "_shared"))
});
2019-07-16 23:14:57 +02:00
2019-10-11 18:14:23 +02:00
module.exports.applictionVersionPublicPaths = (context, appname, versionId) => {
const appPath = applictionVersionPath(context, appname, versionId);
2019-07-16 23:14:57 +02:00
return publicPaths(appPath);
}
2019-07-09 08:29:50 +02:00
module.exports.applictionVersionPackage = async (context, appname, versionId, instanceKey) => {
const pkg = createAppPackage(
2019-07-09 08:29:50 +02:00
context,
2019-10-11 18:14:23 +02:00
applictionVersionPath(context, appname, versionId)
);
2019-07-16 23:14:57 +02:00
pkg.appDefinition = constructHierarchy(pkg.appDefinition);
2019-07-09 08:29:50 +02:00
await injectPlugins(
pkg,
context.master,
appname,
2019-07-11 10:43:47 +02:00
instanceKey);
2019-06-28 23:59:27 +02:00
return pkg;
}