1
0
Fork 0
mirror of synced 2024-07-02 13:01:09 +12:00
budibase/packages/server/api/controllers/user.js

47 lines
1.1 KiB
JavaScript
Raw Normal View History

const CouchDB = require("../../db");
const bcrypt = require("../../utilities/bcrypt");
2020-04-08 04:25:09 +12:00
2020-04-10 03:53:48 +12:00
exports.fetch = async function(ctx) {
2020-04-25 04:28:32 +12:00
const database = new CouchDB(ctx.params.instanceId);
const data = await database.query("database/by_type", {
2020-04-10 03:53:48 +12:00
include_docs: true,
key: ["user"]
});
2020-04-09 03:57:27 +12:00
ctx.body = data.rows.map(row => row.doc);
2020-04-10 03:53:48 +12:00
};
2020-04-08 04:25:09 +12:00
2020-04-10 03:53:48 +12:00
exports.create = async function(ctx) {
2020-04-25 04:28:32 +12:00
const database = new CouchDB(ctx.params.instanceId);
const { username, password, name } = ctx.request.body;
if (!username || !password) ctx.throw(400, "Username and Password Required.");
const response = await database.post({
username,
password: await bcrypt.hash(password),
name,
type: "user"
});
2020-04-11 03:37:59 +12:00
ctx.body = {
user: {
id: response.id,
rev: response.rev,
username,
name
},
2020-04-11 03:37:59 +12:00
message: `User created successfully.`,
status: 200
}
2020-04-10 03:53:48 +12:00
};
exports.destroy = async function(ctx) {
2020-04-25 04:28:32 +12:00
const database = new CouchDB(ctx.params.instanceId);
2020-04-11 03:37:59 +12:00
const response = await database.destroy(ctx.params.userId)
ctx.body = {
...response,
message: `User deleted.`,
status: 200
}
2020-04-10 03:53:48 +12:00
};