You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/src/groups/ownership.js

40 lines
1.2 KiB
JavaScript

'use strict';
const db = require('../database');
const plugins = require('../plugins');
module.exports = function (Groups) {
Groups.ownership = {};
Groups.ownership.isOwner = async function (uid, groupName) {
if (!(parseInt(uid, 10) > 0)) {
return false;
}
return await db.isSetMember(`group:${groupName}:owners`, uid);
};
Groups.ownership.isOwners = async function (uids, groupName) {
if (!Array.isArray(uids)) {
return [];
}
return await db.isSetMembers(`group:${groupName}:owners`, uids);
};
Groups.ownership.grant = async function (toUid, groupName) {
await db.setAdd(`group:${groupName}:owners`, toUid);
plugins.hooks.fire('action:group.grantOwnership', { uid: toUid, groupName: groupName });
};
Groups.ownership.rescind = async function (toUid, groupName) {
// If the owners set only contains one member (and toUid is that member), error out!
const numOwners = await db.setCount(`group:${groupName}:owners`);
const isOwner = await db.isSortedSetMember(`group:${groupName}:owners`);
if (numOwners <= 1 && isOwner) {
throw new Error('[[error:group-needs-owner]]');
}
await db.setRemove(`group:${groupName}:owners`, toUid);
plugins.hooks.fire('action:group.rescindOwnership', { uid: toUid, groupName: groupName });
};
};