mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
43 lines
1 KiB
JavaScript
43 lines
1 KiB
JavaScript
// Print out school user counts
|
|
|
|
// Usage:
|
|
// mongo <address>:<port>/<database> <script file> -u <username> -p <password>
|
|
|
|
|
|
var scriptStartTime = new Date();
|
|
|
|
var cursor = db.users.find({
|
|
$and: [
|
|
{anonymous: false},
|
|
{schoolName: {$exists: true}},
|
|
{schoolName: {$ne: ''}}
|
|
]
|
|
}, {schoolName: 1});
|
|
|
|
var schoolCountMap = {};
|
|
while (cursor.hasNext()) {
|
|
var doc = cursor.next();
|
|
if (!schoolCountMap[doc.schoolName]) schoolCountMap[doc.schoolName] = 0;
|
|
schoolCountMap[doc.schoolName]++;
|
|
}
|
|
|
|
var schoolCounts = [];
|
|
for (var schoolName in schoolCountMap) {
|
|
schoolCounts.push({schoolName: schoolName, count: schoolCountMap[schoolName]});
|
|
}
|
|
schoolCounts.sort(function(a, b) {
|
|
if (a.count > b.count) return -1;
|
|
else if (a.count === b.count) return 0;
|
|
return 1;
|
|
});
|
|
|
|
for (var i = 0; i < schoolCounts.length; i++) {
|
|
if (schoolCounts[i].count >= 10)
|
|
print(schoolCounts[i].count, schoolCounts[i].schoolName);
|
|
}
|
|
|
|
log("Script runtime: " + (new Date() - scriptStartTime));
|
|
|
|
function log(str) {
|
|
print(new Date().toISOString() + " " + str);
|
|
}
|