mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-25 01:46:14 -04:00
176 lines
4.8 KiB
JavaScript
176 lines
4.8 KiB
JavaScript
'use strict';
|
|
/**
|
|
* The Group Manager provides functions to manage groups in the database
|
|
*/
|
|
|
|
/*
|
|
* 2011 Peter 'Pita' Martischka (Primary Technology Ltd)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS-IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
const CustomError = require('../utils/customError');
|
|
const randomString = require('../../static/js/pad_utils').randomString;
|
|
const db = require('./DB');
|
|
const padManager = require('./PadManager');
|
|
const sessionManager = require('./SessionManager');
|
|
|
|
exports.listAllGroups = async () => {
|
|
let groups = await db.get('groups');
|
|
groups = groups || {};
|
|
|
|
const groupIDs = Object.keys(groups);
|
|
return {groupIDs};
|
|
};
|
|
|
|
exports.deleteGroup = async (groupID) => {
|
|
const group = await db.get(`group:${groupID}`);
|
|
|
|
// ensure group exists
|
|
if (group == null) {
|
|
// group does not exist
|
|
throw new CustomError('groupID does not exist', 'apierror');
|
|
}
|
|
|
|
// iterate through all pads of this group and delete them (in parallel)
|
|
await Promise.all(Object.keys(group.pads)
|
|
.map((padID) => padManager.getPad(padID)
|
|
.then((pad) => pad.remove())
|
|
));
|
|
|
|
// iterate through group2sessions and delete all sessions
|
|
const group2sessions = await db.get(`group2sessions:${groupID}`);
|
|
const sessions = group2sessions ? group2sessions.sessionIDs : {};
|
|
|
|
// loop through all sessions and delete them (in parallel)
|
|
await Promise.all(Object.keys(sessions).map((session) => sessionManager.deleteSession(session)));
|
|
|
|
// remove group and group2sessions entry
|
|
await db.remove(`group2sessions:${groupID}`);
|
|
await db.remove(`group:${groupID}`);
|
|
|
|
// unlist the group
|
|
let groups = await exports.listAllGroups();
|
|
groups = groups ? groups.groupIDs : [];
|
|
|
|
const index = groups.indexOf(groupID);
|
|
|
|
if (index === -1) {
|
|
// it's not listed
|
|
|
|
return;
|
|
}
|
|
|
|
// remove from the list
|
|
groups.splice(index, 1);
|
|
|
|
// regenerate group list
|
|
const newGroups = {};
|
|
groups.forEach((group) => newGroups[group] = 1);
|
|
await db.set('groups', newGroups);
|
|
};
|
|
|
|
exports.doesGroupExist = async (groupID) => {
|
|
// try to get the group entry
|
|
const group = await db.get(`group:${groupID}`);
|
|
|
|
return (group != null);
|
|
};
|
|
|
|
exports.createGroup = async () => {
|
|
// search for non existing groupID
|
|
const groupID = `g.${randomString(16)}`;
|
|
|
|
// create the group
|
|
await db.set(`group:${groupID}`, {pads: {}});
|
|
|
|
// list the group
|
|
let groups = await exports.listAllGroups();
|
|
groups = groups ? groups.groupIDs : [];
|
|
groups.push(groupID);
|
|
|
|
// regenerate group list
|
|
const newGroups = {};
|
|
groups.forEach((group) => newGroups[group] = 1);
|
|
await db.set('groups', newGroups);
|
|
|
|
return {groupID};
|
|
};
|
|
|
|
exports.createGroupIfNotExistsFor = async (groupMapper) => {
|
|
// ensure mapper is optional
|
|
if (typeof groupMapper !== 'string') {
|
|
throw new CustomError('groupMapper is not a string', 'apierror');
|
|
}
|
|
|
|
// try to get a group for this mapper
|
|
const groupID = await db.get(`mapper2group:${groupMapper}`);
|
|
|
|
if (groupID) {
|
|
// there is a group for this mapper
|
|
const exists = await exports.doesGroupExist(groupID);
|
|
|
|
if (exists) return {groupID};
|
|
}
|
|
|
|
// hah, the returned group doesn't exist, let's create one
|
|
const result = await exports.createGroup();
|
|
|
|
// create the mapper entry for this group
|
|
await db.set(`mapper2group:${groupMapper}`, result.groupID);
|
|
|
|
return result;
|
|
};
|
|
|
|
exports.createGroupPad = async (groupID, padName, text) => {
|
|
// create the padID
|
|
const padID = `${groupID}$${padName}`;
|
|
|
|
// ensure group exists
|
|
const groupExists = await exports.doesGroupExist(groupID);
|
|
|
|
if (!groupExists) {
|
|
throw new CustomError('groupID does not exist', 'apierror');
|
|
}
|
|
|
|
// ensure pad doesn't exist already
|
|
const padExists = await padManager.doesPadExists(padID);
|
|
|
|
if (padExists) {
|
|
// pad exists already
|
|
throw new CustomError('padName does already exist', 'apierror');
|
|
}
|
|
|
|
// create the pad
|
|
await padManager.getPad(padID, text);
|
|
|
|
// create an entry in the group for this pad
|
|
await db.setSub(`group:${groupID}`, ['pads', padID], 1);
|
|
|
|
return {padID};
|
|
};
|
|
|
|
exports.listPads = async (groupID) => {
|
|
const exists = await exports.doesGroupExist(groupID);
|
|
|
|
// ensure the group exists
|
|
if (!exists) {
|
|
throw new CustomError('groupID does not exist', 'apierror');
|
|
}
|
|
|
|
// group exists, let's get the pads
|
|
const result = await db.getSub(`group:${groupID}`, ['pads']);
|
|
const padIDs = Object.keys(result);
|
|
|
|
return {padIDs};
|
|
};
|