budibase/packages/server/api/controllers/model.js

67 lines
1.6 KiB
JavaScript
Raw Normal View History

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