potentially fixes ubbmigrator issue https://github.com/akhoury/nodebb-plugin-ubbmigrator/issues/2
parent
62e2aa67d7
commit
46d6d7637e
@ -1,121 +1,128 @@
|
|||||||
(function () {
|
(function(Groups) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
var async = require('async'),
|
var async = require('async'),
|
||||||
User = require('./user'),
|
User = require('./user'),
|
||||||
RDB = RDB || require('./redis'),
|
RDB = RDB || require('./redis');
|
||||||
Groups = {
|
|
||||||
list: function (options, callback) {
|
Groups.list = function(options, callback) {
|
||||||
RDB.hvals('group:gid', function (err, gids) {
|
RDB.hvals('group:gid', function (err, gids) {
|
||||||
if (gids.length > 0) {
|
if (gids.length > 0) {
|
||||||
async.map(gids, function (gid, next) {
|
async.map(gids, function (gid, next) {
|
||||||
Groups.get(gid, {
|
Groups.get(gid, {
|
||||||
expand: options.expand
|
expand: options.expand
|
||||||
}, next);
|
}, next);
|
||||||
}, function (err, groups) {
|
}, function (err, groups) {
|
||||||
callback(err, groups.filter(function (group) {
|
callback(err, groups.filter(function (group) {
|
||||||
if (group.deleted === '1') {
|
if (group.deleted === '1') {
|
||||||
return false;
|
return false;
|
||||||
} else {
|
} else {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
});
|
|
||||||
} else {
|
|
||||||
callback(null, []);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
callback(null, []);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
Groups.get = function(gid, options, callback) {
|
||||||
|
async.parallel({
|
||||||
|
base: function (next) {
|
||||||
|
RDB.hgetall('gid:' + gid, next);
|
||||||
},
|
},
|
||||||
get: function (gid, options, callback) {
|
users: function (next) {
|
||||||
async.parallel({
|
RDB.smembers('gid:' + gid + ':members', function (err, uids) {
|
||||||
base: function (next) {
|
if (options.expand) {
|
||||||
RDB.hgetall('gid:' + gid, next);
|
if (err) {
|
||||||
},
|
return next(err);
|
||||||
users: function (next) {
|
}
|
||||||
RDB.smembers('gid:' + gid + ':members', function (err, uids) {
|
|
||||||
if (options.expand) {
|
async.map(uids, function (uid, next) {
|
||||||
if (err) {
|
User.getUserData(uid, next);
|
||||||
return next(err);
|
}, function (err, users) {
|
||||||
}
|
next(err, users);
|
||||||
|
|
||||||
async.map(uids, function (uid, next) {
|
|
||||||
User.getUserData(uid, next);
|
|
||||||
}, function (err, users) {
|
|
||||||
next(err, users);
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
next(err, uids);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
next(err, uids);
|
||||||
}
|
}
|
||||||
}, function (err, results) {
|
});
|
||||||
if (err) {
|
}
|
||||||
return callback(err);
|
}, function (err, results) {
|
||||||
}
|
if (err) {
|
||||||
|
return callback(err);
|
||||||
|
}
|
||||||
|
|
||||||
results.base.count = results.users.length;
|
results.base.count = results.users.length;
|
||||||
results.base.members = results.users;
|
results.base.members = results.users;
|
||||||
|
|
||||||
results.base.deletable = (results.base.gid !== '1');
|
results.base.deletable = (results.base.gid !== '1');
|
||||||
|
|
||||||
callback(err, results.base);
|
callback(err, results.base);
|
||||||
});
|
});
|
||||||
},
|
};
|
||||||
getGidFromName: function (name, callback) {
|
|
||||||
RDB.hget('group:gid', name, callback);
|
Groups.getGidFromName = function(name, callback) {
|
||||||
},
|
RDB.hget('group:gid', name, callback);
|
||||||
isMember: function (uid, gid, callback) {
|
};
|
||||||
RDB.sismember('gid:' + gid + ':members', uid, callback);
|
|
||||||
},
|
Groups.isMember = function(uid, gid, callback) {
|
||||||
exists: function (name, callback) {
|
RDB.sismember('gid:' + gid + ':members', uid, callback);
|
||||||
RDB.hexists('group:gid', name, callback);
|
};
|
||||||
},
|
|
||||||
create: function (name, description, callback) {
|
Groups.exists = function(name, callback) {
|
||||||
if (name.length === 0) {
|
RDB.hexists('group:gid', name, callback);
|
||||||
return callback(new Error('name-too-short'));
|
};
|
||||||
}
|
|
||||||
|
Groups.create = function(name, description, callback) {
|
||||||
Groups.exists(name, function (err, exists) {
|
if (name.length === 0) {
|
||||||
if (!exists) {
|
return callback(new Error('name-too-short'));
|
||||||
RDB.incr('next_gid', function (err, gid) {
|
}
|
||||||
RDB.multi()
|
|
||||||
.hset('group:gid', name, gid)
|
Groups.exists(name, function (err, exists) {
|
||||||
.hmset('gid:' + gid, {
|
if (!exists) {
|
||||||
gid: gid,
|
RDB.incr('next_gid', function (err, gid) {
|
||||||
name: name,
|
RDB.multi()
|
||||||
description: description,
|
.hset('group:gid', name, gid)
|
||||||
deleted: '0'
|
.hmset('gid:' + gid, {
|
||||||
})
|
gid: gid,
|
||||||
.exec(function (err) {
|
name: name,
|
||||||
Groups.get(gid, {}, callback);
|
description: description,
|
||||||
});
|
deleted: '0'
|
||||||
|
})
|
||||||
|
.exec(function (err) {
|
||||||
|
Groups.get(gid, {}, callback);
|
||||||
});
|
});
|
||||||
} else {
|
|
||||||
callback(new Error('group-exists'));
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
update: function (gid, values, callback) {
|
|
||||||
RDB.exists('gid:' + gid, function (err, exists) {
|
|
||||||
if (!err && exists) {
|
|
||||||
RDB.hmset('gid:' + gid, values, callback);
|
|
||||||
} else {
|
|
||||||
callback(new Error('gid-not-found'));
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
},
|
} else {
|
||||||
destroy: function (gid, callback) {
|
callback(new Error('group-exists'));
|
||||||
if (gid !== 1) {
|
|
||||||
RDB.hset('gid:' + gid, 'deleted', '1', callback);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
join: function (gid, uid, callback) {
|
|
||||||
RDB.sadd('gid:' + gid + ':members', uid, callback);
|
|
||||||
},
|
|
||||||
leave: function (gid, uid, callback) {
|
|
||||||
RDB.srem('gid:' + gid + ':members', uid, callback);
|
|
||||||
}
|
}
|
||||||
};
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
Groups.update = function(gid, values, callback) {
|
||||||
|
RDB.exists('gid:' + gid, function (err, exists) {
|
||||||
|
if (!err && exists) {
|
||||||
|
RDB.hmset('gid:' + gid, values, callback);
|
||||||
|
} else {
|
||||||
|
callback(new Error('gid-not-found'));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
Groups.destroy = function(gid, callback) {
|
||||||
|
if (gid !== 1) {
|
||||||
|
RDB.hset('gid:' + gid, 'deleted', '1', callback);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
Groups.join = function(gid, uid, callback) {
|
||||||
|
RDB.sadd('gid:' + gid + ':members', uid, callback);
|
||||||
|
};
|
||||||
|
|
||||||
|
Groups.leave = function(gid, uid, callback) {
|
||||||
|
RDB.srem('gid:' + gid + ':members', uid, callback);
|
||||||
|
};
|
||||||
|
|
||||||
module.exports = Groups;
|
}(module.exports));
|
||||||
}());
|
|
||||||
|
Loading…
Reference in New Issue