mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-02 16:21:01 -04:00
Update gem counting script
This commit is contained in:
parent
426424103a
commit
d68746a922
1 changed files with 30 additions and 5 deletions
|
@ -1,11 +1,31 @@
|
|||
// Print out gem counts bucketed by day and amount
|
||||
// NOTE: created is a string and not an ISODate in the database
|
||||
|
||||
var match={
|
||||
|
||||
// Usage:
|
||||
// mongo <address>:<port>/<database> <script file> -u <username> -p <password>
|
||||
// Usage restricted to HoC Dates:
|
||||
// mongo <address>:<port>/<database> -eval "var startDate='2014-12-08T00:00:00.000Z', endDate='2014-12-14T00:00:00.000Z';" <script file> -u <username> -p <password>
|
||||
|
||||
var match = null;
|
||||
|
||||
if (typeof startDate !== "undefined" && startDate !== null && typeof endDate !== "undefined" && endDate !== null) {
|
||||
print("Using dates " + startDate + " to " + endDate);
|
||||
match={
|
||||
"$match" : {
|
||||
"stripe.subscriptionID" : { "$exists" : false }
|
||||
$and : [
|
||||
{"created": { $gte: startDate}},
|
||||
{"created": { $lt: endDate}},
|
||||
{"stripe.subscriptionID" : { "$exists" : false }}
|
||||
]
|
||||
}
|
||||
};
|
||||
};
|
||||
} else {
|
||||
print("No date range specified.");
|
||||
match={
|
||||
"$match" : {"stripe.subscriptionID" : { "$exists" : false }}
|
||||
};
|
||||
}
|
||||
|
||||
var proj0 = {"$project": {
|
||||
"amount": 1,
|
||||
"created": { "$concat": [{"$substr" : ["$created", 0, 4]}, "-", {"$substr" : ["$created", 5, 2]}, "-", {"$substr" : ["$created", 8, 2]}]}
|
||||
|
@ -22,5 +42,10 @@ var group={"$group" : {
|
|||
}
|
||||
}
|
||||
};
|
||||
|
||||
var sort = {$sort: { "_id.d" : -1}};
|
||||
db.payments.aggregate(match, proj0, group, sort).result.forEach( function (myDoc) { print({day: myDoc._id.d, amount: myDoc._id.m, count: myDoc.count}) })
|
||||
var cursor = db.payments.aggregate(match, proj0, group, sort);
|
||||
while (cursor.hasNext()) {
|
||||
var doc = cursor.next();
|
||||
print(doc._id.d + "\t" + doc._id.m + "\t" + doc.count);
|
||||
}
|
Loading…
Add table
Reference in a new issue