1
0
Fork 0
mirror of synced 2024-06-30 20:10:54 +12:00
budibase/packages/server/utilities/runtimePackages.js
2020-02-03 09:24:25 +00:00

35 lines
1.2 KiB
JavaScript

const { join } = require("path")
const { isString, last } = require("lodash/fp")
const { common } = require("@budibase/core")
const runtimePackagesDirectory = "./runtime_apps"
const LATEST_VERSIONID = "##LATEST##"
const { $, splitKey } = common
const getRuntimeAppsDirectory = appName =>
join(runtimePackagesDirectory, appName)
const getLatestDirectory = (appContext, appname) =>
join(appContext.config.latestPackagesFolder, appname)
module.exports.LATEST_VERSIONID = LATEST_VERSIONID
module.exports.runtimePackagesDirectory = runtimePackagesDirectory
module.exports.getRuntimePackageDirectory = (appContext, appName, versionId) =>
versionId === LATEST_VERSIONID
? getLatestDirectory(appContext, appName)
: join(getRuntimeAppsDirectory(appName), versionId)
module.exports.getRuntimeAppsDirectory = getRuntimeAppsDirectory
// the point of this in mainly to support running in dev
// i.e. if no "versions" are in use, then it will route
// to the latest package
module.exports.determineVersionId = version => {
let versionKey = isString(version) ? version : null
if (!versionKey && version && version.key) versionKey = version.key
return versionKey ? $(versionKey, [splitKey, last]) : LATEST_VERSIONID
}