1
0
Fork 0
mirror of synced 2024-07-12 17:56:07 +12:00
budibase/packages/server/middleware/controllers/model.js

68 lines
1.6 KiB
JavaScript
Raw Normal View History

const CouchDB = require("../../db");
2020-04-09 03:57:27 +12:00
2020-04-13 22:47:53 +12:00
exports.fetch = async function(ctx) {
const db = new CouchDB(ctx.params.instanceId);
const body = await db.query("database/by_type", {
2020-04-13 22:47:53 +12:00
include_docs: true,
key: ["model"]
});
ctx.body = body.rows.map(row => row.doc);
2020-04-13 22:47:53 +12:00
}
2020-04-10 03:53:48 +12:00
exports.create = async function(ctx) {
const db = new CouchDB(ctx.params.instanceId);
const newModel = await db.post({
type: "model",
...ctx.request.body
});
2020-04-13 22:47:53 +12:00
const designDoc = await db.get("_design/database");
designDoc.views = {
...designDoc.views,
[`all_${newModel.id}`]: {
map: `function(doc) {
if (doc.modelId === "${newModel.id}") {
emit(doc[doc.key], doc._id);
}
}`
2020-04-13 22:47:53 +12:00
}
};
await db.put(designDoc);
2020-04-13 22:47:53 +12:00
ctx.body = {
message: `Model ${ctx.request.body.name} created successfully.`,
status: 200,
model: {
_id: newModel.id,
_rev: newModel.rev,
...ctx.request.body
}
2020-04-13 22:47:53 +12:00
}
2020-04-09 03:57:27 +12:00
}
2020-04-10 03:53:48 +12:00
exports.update = async function(ctx) {
}
exports.destroy = async function(ctx) {
const db = new CouchDB(ctx.params.instanceId)
const model = await db.remove(ctx.params.modelId, ctx.params.revId);
const modelViewId = `all_${model.id}`
// Delete all records for that model
const records = await db.query(`database/${modelViewId}`);
await db.bulkDocs(
records.rows.map(record => ({ id: record.id, _deleted: true }))
);
// delete the "all" view
const designDoc = await db.get("_design/database");
delete designDoc.views[modelViewId];
await db.put(designDoc);
2020-04-14 03:46:28 +12:00
ctx.body = {
message: `Model ${model.id} deleted.`,
status: 200
}
2020-04-10 03:53:48 +12:00
}