budibase/packages/server/middleware/controllers/application.js

35 lines
956 B
JavaScript
Raw Normal View History

2020-04-07 18:25:09 +02:00
const couchdb = require("../../db");
const {
getPackageForBuilder,
} = require("../../utilities/builder")
2020-04-07 18:25:09 +02:00
2020-04-09 17:53:48 +02:00
exports.fetch = async function(ctx) {
const clientDb = couchdb.db.use(`client-${ctx.params.clientId}`);
const body = await clientDb.view("client", "by_type", {
include_docs: true,
key: ["app"]
});
2020-04-08 17:57:27 +02:00
ctx.body = body.rows.map(row => row.doc);
2020-04-09 17:53:48 +02:00
};
2020-04-07 18:25:09 +02:00
exports.fetchAppPackage = async function(ctx) {
const clientDb = couchdb.db.use(`client-${ctx.params.clientId}`);
const application = await clientDb.get(ctx.params.applicationId);
ctx.body = await getPackageForBuilder(ctx.config, application);
}
2020-04-09 17:53:48 +02:00
exports.create = async function(ctx) {
const clientDb = couchdb.db.use(`client-${ctx.params.clientId}`);
const { id, rev } = await clientDb.insert({
type: "app",
instances: [],
...ctx.request.body,
});
2020-04-09 17:53:48 +02:00
ctx.body = {
id,
rev,
message: `Application ${ctx.request.body.name} created successfully`
}
};