summaryrefslogtreecommitdiff
path: root/src/api/endpoints/aggregation/posts/repost.js
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/repost.js
parentwip (diff)
downloadmisskey-970843acd429e62c884c780601fae317a6a0fabb.tar.gz
misskey-970843acd429e62c884c780601fae317a6a0fabb.tar.bz2
misskey-970843acd429e62c884c780601fae317a6a0fabb.zip
done
Diffstat (limited to 'src/api/endpoints/aggregation/posts/repost.js')
-rw-r--r--src/api/endpoints/aggregation/posts/repost.js81
1 files changed, 0 insertions, 81 deletions
diff --git a/src/api/endpoints/aggregation/posts/repost.js b/src/api/endpoints/aggregation/posts/repost.js
deleted file mode 100644
index 01899ecea6..0000000000
--- a/src/api/endpoints/aggregation/posts/repost.js
+++ /dev/null
@@ -1,81 +0,0 @@
-'use strict';
-
-/**
- * Module dependencies
- */
-import * as mongo from 'mongodb';
-import Post from '../../../models/post';
-
-/**
- * Aggregate repost of a post
- *
- * @param {any} params
- * @return {Promise<any>}
- */
-module.exports = (params) =>
- new Promise(async (res, rej) =>
-{
- // Get 'post_id' parameter
- const postId = params.post_id;
- if (postId === undefined || postId === null) {
- return rej('post_id is required');
- }
-
- // Lookup post
- const post = await Post.findOne({
- _id: new mongo.ObjectID(postId)
- });
-
- if (post === null) {
- return rej('post not found');
- }
-
- const datas = await Post
- .aggregate([
- { $match: { repost_id: 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);
-});