38 lines
965 B
JavaScript
38 lines
965 B
JavaScript
import { Router } from "express";
|
|
export const router = Router({ mergeParams: true });
|
|
|
|
/**
|
|
* GET - get specific group
|
|
* request:
|
|
* - groupname: name of group to get
|
|
* responses:
|
|
* - 200: {auth: true, group: Object}
|
|
* - 401: {auth: false}
|
|
*/
|
|
router.get("/:groupname", async (req, res) => {
|
|
const params = {
|
|
groupname: req.params.groupname
|
|
};
|
|
// check auth
|
|
const auth = await global.utils.checkAuth(req.cookies, res);
|
|
if (!auth) {
|
|
return;
|
|
}
|
|
|
|
// attempt to parse group from groupname
|
|
const groupObj = global.utils.getGroupObjFromGroupname(params.groupname);
|
|
if (groupObj === null) {
|
|
res.status(400).send({ auth: true, error:`Groupname ${params.groupname} does not match format gid-realm or gid.` });
|
|
}
|
|
|
|
// get group
|
|
const g = await global.access.getGroup(groupObj, req.cookies);
|
|
if (g.ok !== true) {
|
|
res.status(g.status).send({ auth:true, error:g });
|
|
return;
|
|
}
|
|
const group = g.group;
|
|
|
|
res.status(200).send({ auth:true, group });
|
|
});
|