1
0
Fork 0
mirror of synced 2024-07-04 14:01:27 +12:00
budibase/packages/server/middleware/controllers/view.js

32 lines
831 B
JavaScript
Raw Normal View History

const CouchDB = require("../../db");
2020-04-10 03:53:48 +12:00
const controller = {
fetch: async ctx => {
2020-04-25 04:28:32 +12:00
const db = new CouchDB(ctx.params.instanceId);
2020-04-14 03:22:30 +12:00
const designDoc = await db.get("_design/database");
ctx.body = designDoc.views;
2020-04-10 03:53:48 +12:00
},
create: async ctx => {
2020-04-25 04:28:32 +12:00
const db = new CouchDB(ctx.params.instanceId);
2020-04-14 03:22:30 +12:00
const { name, ...viewDefinition } = ctx.request.body;
const designDoc = await db.get("_design/database");
designDoc.views = {
...designDoc.views,
[name]: viewDefinition
};
const newView = await db.put(designDoc);
2020-04-14 03:22:30 +12:00
ctx.body = {
...newView,
message: `View ${name} created successfully.`,
status: 200,
}
2020-04-10 03:53:48 +12:00
},
destroy: async ctx => {
2020-04-25 04:28:32 +12:00
const db = new CouchDB(ctx.params.instanceId);
ctx.body = await db.destroy(ctx.params.userId)
2020-04-10 03:53:48 +12:00
}
}
module.exports = controller;