1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00
budibase/packages/server/src/api/controllers/screen.js

60 lines
1.4 KiB
JavaScript
Raw Normal View History

2020-11-02 04:32:54 +13:00
const CouchDB = require("../../db")
2020-11-04 05:27:28 +13:00
const { getScreenParams, generateScreenID } = require("../../db/utils")
const { AccessController } = require("../../utilities/security/accessLevels")
exports.fetch = async ctx => {
const appId = ctx.user.appId
const db = new CouchDB(appId)
2020-11-04 05:27:28 +13:00
const screens = (
await db.allDocs(
getScreenParams(null, {
include_docs: true,
})
)
).rows.map(element => element.doc)
ctx.body = await new AccessController(appId).checkScreensAccess(
screens,
ctx.user.accessLevel._id
2020-11-04 05:27:28 +13:00
)
}
exports.find = async ctx => {
const appId = ctx.user.appId
const db = new CouchDB(appId)
2020-11-02 04:32:54 +13:00
const screens = await db.allDocs(
getScreenParams(ctx.params.pageId, {
include_docs: true,
})
)
ctx.body = await new AccessController(appId).checkScreensAccess(
screens,
ctx.user.accessLevel._id
)
2020-11-02 04:32:54 +13:00
}
exports.save = async ctx => {
2020-11-04 05:27:28 +13:00
const appId = ctx.user.appId
const db = new CouchDB(appId)
const screen = ctx.request.body
if (!screen._id) {
screen._id = generateScreenID(ctx.params.pageId)
2020-11-04 05:27:28 +13:00
}
delete screen._css
2020-11-04 05:27:28 +13:00
const response = await db.put(screen)
ctx.message = `Screen ${screen.name} saved.`
ctx.body = response
}
exports.destroy = async ctx => {
2020-11-04 05:27:28 +13:00
const db = new CouchDB(ctx.user.appId)
await db.remove(ctx.params.screenId, ctx.params.revId)
ctx.message = "Screen deleted successfully"
ctx.status = 200
}