1
0
Fork 0
mirror of synced 2024-07-02 13:01:09 +12:00
budibase/packages/server/utilities/runtimePackages.js

35 lines
1.2 KiB
JavaScript
Raw Normal View History

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
2019-06-29 09:59:27 +12:00
const getRuntimeAppsDirectory = appName =>
join(runtimePackagesDirectory, appName)
2019-07-02 09:49:13 +12:00
const getLatestDirectory = (appContext, appname) =>
join(appContext.config.latestPackagesFolder, appname)
2019-10-12 05:14:23 +13:00
module.exports.LATEST_VERSIONID = LATEST_VERSIONID
2019-10-12 05:14:23 +13:00
module.exports.runtimePackagesDirectory = runtimePackagesDirectory
2019-06-29 09:59:27 +12:00
module.exports.getRuntimePackageDirectory = (appContext, appName, versionId) =>
versionId === LATEST_VERSIONID
2019-10-12 05:14:23 +13:00
? getLatestDirectory(appContext, appName)
: join(getRuntimeAppsDirectory(appName), versionId)
2019-07-02 09:49:13 +12:00
module.exports.getRuntimeAppsDirectory = getRuntimeAppsDirectory
2019-10-12 05:14:23 +13:00
// 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
}