1
0
Fork 0
mirror of synced 2024-08-01 19:31:49 +12:00
budibase/packages/server/api/controllers/model.js

67 lines
1.6 KiB
JavaScript
Raw Normal View History

2020-05-07 21:53:34 +12:00
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) {
2020-05-07 21:53:34 +12:00
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,
2020-05-07 21:53:34 +12:00
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) {
2020-05-07 21:53:34 +12:00
const db = new CouchDB(ctx.params.instanceId)
const newModel = await db.post({
type: "model",
2020-05-07 21:53:34 +12:00
...ctx.request.body,
})
2020-05-07 21:53:34 +12:00
const designDoc = await db.get("_design/database")
2020-04-13 22:47:53 +12: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 21:53:34 +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,
2020-05-07 21:53:34 +12:00
...ctx.request.body,
},
2020-04-13 22:47:53 +12:00
}
2020-04-09 03:57:27 +12:00
}
2020-05-07 21:53:34 +12:00
exports.update = async function(ctx) {}
2020-04-10 03:53:48 +12:00
exports.destroy = async function(ctx) {
2020-04-25 04:28:32 +12:00
const db = new CouchDB(ctx.params.instanceId)
2020-05-07 21:53:34 +12: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 21:53:34 +12:00
const records = await db.query(`database/${modelViewId}`)
await db.bulkDocs(
records.rows.map(record => ({ id: record.id, _deleted: true }))
2020-05-07 21:53:34 +12:00
)
// delete the "all" view
2020-05-07 21:53:34 +12:00
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.`,
2020-05-07 21:53:34 +12:00
status: 200,
2020-04-14 03:46:28 +12:00
}
2020-04-10 03:53:48 +12:00
}