ephemeral groups - guests

v1.18.x
Julian Lam 11 years ago
parent 118723e185
commit c297e2f2f8

@ -7,7 +7,10 @@
db = require('./database'),
utils = require('../public/src/utils'),
filterGroups = function(groups, options) {
ephemeralGroups = ['guests'],
internals = {
filterGroups: function(groups, options) {
// Remove system, hidden, or deleted groups from this list
if (groups && !options.showAllGroups) {
return groups.filter(function (group) {
@ -20,19 +23,33 @@
} else {
return groups;
}
},
getEphemeralGroup: function(groupName, options, callback) {
Groups.exists(groupName, function(err, exists) {
if (!err && exists) {
Groups.get.apply(null, arguments);
} else {
callback(null, {
name: groupName,
description: '',
deleted: '0',
hidden: '0',
system: '1'
});
}
});
}
};
Groups.list = function(options, callback) {
db.getSetMembers('groups', function (err, groupNames) {
if (groupNames.length > 0) {
groupNames = groupNames.concat(ephemeralGroups);
async.map(groupNames, function (groupName, next) {
Groups.get(groupName, options, next);
}, function (err, groups) {
callback(err, filterGroups(groups, options));
callback(err, internals.filterGroups(groups, options));
});
} else {
callback(null, []);
}
});
};
@ -42,6 +59,7 @@
async.parallel({
base: function (next) {
if (ephemeralGroups.indexOf(groupName) === -1) {
db.getObject('group:' + groupName, function(err, groupObj) {
if (err) {
next(err);
@ -51,6 +69,9 @@
next(err, groupObj);
}
});
} else {
internals.getEphemeralGroup(groupName, options, next);
}
},
users: function (next) {
db.getSetMembers('group:' + groupName + ':members', function (err, uids) {
@ -103,7 +124,7 @@
async.map(groups, function(groupName, next) {
Groups.get(groupName, options, next);
}, function(err, groups) {
callback(err, filterGroups(groups, options));
callback(err, internals.filterGroups(groups, options));
});
});
} else {

Loading…
Cancel
Save