budibase/packages/server/utilities/createAppPackage.js

70 lines
2.2 KiB
JavaScript
Raw Normal View History

const { resolve, join } = require("path")
const { getRuntimePackageDirectory } = require("../utilities/runtimePackages")
const injectPlugins = require("./injectedPlugins")
const { cwd } = require("process")
2019-07-09 08:29:50 +02:00
const appDefinitionPath = appPath => join(appPath, "appDefinition.json")
const pluginsPath = appPath => join(appPath, "plugins.js")
const accessLevelsPath = appPath => join(appPath, "access_levels.json")
2019-07-09 08:29:50 +02:00
const createAppPackage = (context, appPath) => {
const appDefModule = require(appDefinitionPath(appPath))
const pluginsModule = require(pluginsPath(appPath))
const accessLevels = require(accessLevelsPath(appPath))
return {
appDefinition: appDefModule,
behaviourSources: pluginsModule(context),
appPath,
accessLevels,
...publicPaths(appPath),
}
}
2019-06-25 23:48:22 +02:00
const appPackageFolder = (config, appname) =>
resolve(cwd(), config.latestPackagesFolder, appname)
2019-07-13 11:35:57 +02:00
module.exports.appPackageFolder = appPackageFolder
2019-07-13 11:35:57 +02:00
module.exports.appsFolder = config => appPackageFolder(config, "")
2019-10-11 18:14:23 +02:00
const applictionVersionPath = (context, appname, versionId) =>
join(cwd(), getRuntimePackageDirectory(context, appname, versionId))
const publicPaths = appPath => ({
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)
return publicPaths(appPath)
2019-07-16 23:14:57 +02:00
}
module.exports.applictionVersionPackage = async (
context,
appname,
versionId,
instanceKey
) => {
const pkg = createAppPackage(
context,
applictionVersionPath(context, appname, versionId)
)
pkg.appDefinition = constructHierarchy(pkg.appDefinition)
await injectPlugins(pkg, context.master, appname, instanceKey)
return pkg
2019-06-28 23:59:27 +02:00
}
module.exports.deleteCachedPackage = (context, appname, versionId) => {
const appPath = applictionVersionPath(context, appname, versionId)
delete require.cache[resolve(appDefinitionPath(appPath))]
delete require.cache[resolve(pluginsPath(appPath))]
delete require.cache[resolve(accessLevelsPath(appPath))]
}