1
0
Fork 0
mirror of synced 2024-06-28 11:00:55 +12:00
budibase/packages/server/src/api/controllers/templates.js

28 lines
818 B
JavaScript
Raw Normal View History

2020-09-29 05:04:08 +13:00
const fetch = require("node-fetch")
const { downloadTemplate } = require("../../utilities/fileSystem")
2020-09-29 05:04:08 +13:00
// development flag, can be used to test against templates exported locally
2020-09-29 05:04:08 +13:00
const DEFAULT_TEMPLATES_BUCKET =
"prod-budi-templates.s3-eu-west-1.amazonaws.com"
exports.fetch = async function(ctx) {
const { type = "app" } = ctx.query
const response = await fetch(
`https://${DEFAULT_TEMPLATES_BUCKET}/manifest.json`
)
const json = await response.json()
ctx.body = Object.values(json.templates[type])
2020-09-29 05:04:08 +13:00
}
// can't currently test this, have to ignore from coverage
/* istanbul ignore next */
2020-09-29 05:04:08 +13:00
exports.downloadTemplate = async function(ctx) {
const { type, name } = ctx.params
await downloadTemplate(type, name)
2020-09-29 05:04:08 +13:00
ctx.body = {
message: `template ${type}:${name} downloaded successfully.`,
}
}