summaryrefslogtreecommitdiff
path: root/src/api/endpoints/aggregation/posts/reply.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-03-03 19:52:36 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-03-03 19:52:36 +0900
commit970843acd429e62c884c780601fae317a6a0fabb (patch)
tree03a5d532d5b30758311d9069519d24f23bc209c7 /src/api/endpoints/aggregation/posts/reply.ts
parentwip (diff)
downloadsharkey-970843acd429e62c884c780601fae317a6a0fabb.tar.gz
sharkey-970843acd429e62c884c780601fae317a6a0fabb.tar.bz2
sharkey-970843acd429e62c884c780601fae317a6a0fabb.zip
done
Diffstat (limited to 'src/api/endpoints/aggregation/posts/reply.ts')
-rw-r--r--src/api/endpoints/aggregation/posts/reply.ts79
1 files changed, 79 insertions, 0 deletions
diff --git a/src/api/endpoints/aggregation/posts/reply.ts b/src/api/endpoints/aggregation/posts/reply.ts
new file mode 100644
index 0000000000..1f936bbc2f
--- /dev/null
+++ b/src/api/endpoints/aggregation/posts/reply.ts
@@ -0,0 +1,79 @@
+'use strict';
+
+/**
+ * Module dependencies
+ */
+import it from '../../../it';
+import Post from '../../../models/post';
+
+/**
+ * Aggregate reply of a post
+ *
+ * @param {any} params
+ * @return {Promise<any>}
+ */
+module.exports = (params) =>
+ new Promise(async (res, rej) =>
+{
+ // Get 'post_id' parameter
+ const [postId, postIdErr] = it(params.post_id).expect.id().required().qed();
+ if (postIdErr) return rej('invalid post_id param');
+
+ // Lookup post
+ const post = await Post.findOne({
+ _id: postId
+ });
+
+ if (post === null) {
+ return rej('post not found');
+ }
+
+ const datas = await Post
+ .aggregate([
+ { $match: { reply_to: post._id } },
+ { $project: {
+ created_at: { $add: ['$created_at', 9 * 60 * 60 * 1000] } // Convert into JST
+ }},
+ { $project: {
+ date: {
+ year: { $year: '$created_at' },
+ month: { $month: '$created_at' },
+ day: { $dayOfMonth: '$created_at' }
+ }
+ }},
+ { $group: {
+ _id: '$date',
+ count: { $sum: 1 }
+ }}
+ ]);
+
+ datas.forEach(data => {
+ data.date = data._id;
+ delete data._id;
+ });
+
+ const graph = [];
+
+ for (let i = 0; i < 30; i++) {
+ let day = new Date(new Date().setDate(new Date().getDate() - i));
+
+ const data = datas.filter(d =>
+ d.date.year == day.getFullYear() && d.date.month == day.getMonth() + 1 && d.date.day == day.getDate()
+ )[0];
+
+ if (data) {
+ graph.push(data)
+ } else {
+ graph.push({
+ date: {
+ year: day.getFullYear(),
+ month: day.getMonth() + 1, // In JavaScript, month is zero-based.
+ day: day.getDate()
+ },
+ count: 0
+ })
+ };
+ }
+
+ res(graph);
+});