2019-02-05 02:48:08 +00:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
2018-07-11 05:03:21 +00:00
|
|
|
import Note from '../../../../models/note';
|
|
|
|
import { getFriends } from '../../common/get-friends';
|
2018-10-03 15:39:11 +00:00
|
|
|
import { packMany } from '../../../../models/note';
|
2018-11-02 04:47:44 +00:00
|
|
|
import define from '../../define';
|
2019-01-15 17:30:55 +00:00
|
|
|
import fetchMeta from '../../../../misc/fetch-meta';
|
2019-02-07 19:31:33 +00:00
|
|
|
import activeUsersChart from '../../../../services/chart/active-users';
|
2019-02-01 00:57:51 +00:00
|
|
|
import { getHideUserIds } from '../../common/get-hide-users';
|
2019-02-22 02:46:58 +00:00
|
|
|
import { ApiError } from '../../error';
|
2018-07-11 05:03:21 +00:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
2018-08-28 21:59:43 +00:00
|
|
|
'ja-JP': 'ハイブリッドタイムラインを取得します。'
|
2018-07-11 05:03:21 +00:00
|
|
|
},
|
|
|
|
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2018-07-11 05:03:21 +00:00
|
|
|
params: {
|
2018-11-01 18:32:24 +00:00
|
|
|
limit: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-07-11 05:03:21 +00:00
|
|
|
default: 10,
|
|
|
|
desc: {
|
2018-08-28 21:59:43 +00:00
|
|
|
'ja-JP': '最大数'
|
2018-07-11 05:03:21 +00:00
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
sinceId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 18:32:24 +00:00
|
|
|
transform: transform,
|
2018-07-11 05:03:21 +00:00
|
|
|
desc: {
|
2018-08-28 21:59:43 +00:00
|
|
|
'ja-JP': '指定すると、この投稿を基点としてより新しい投稿を取得します'
|
2018-07-11 05:03:21 +00:00
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
untilId: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 18:32:24 +00:00
|
|
|
transform: transform,
|
2018-07-11 05:03:21 +00:00
|
|
|
desc: {
|
2018-08-28 21:59:43 +00:00
|
|
|
'ja-JP': '指定すると、この投稿を基点としてより古い投稿を取得します'
|
2018-07-11 05:03:21 +00:00
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
sinceDate: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num,
|
2018-07-11 05:03:21 +00:00
|
|
|
desc: {
|
2018-08-28 21:59:43 +00:00
|
|
|
'ja-JP': '指定した時間を基点としてより新しい投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
2018-07-11 05:03:21 +00:00
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
untilDate: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.num,
|
2018-07-11 05:03:21 +00:00
|
|
|
desc: {
|
2018-08-28 21:59:43 +00:00
|
|
|
'ja-JP': '指定した時間を基点としてより古い投稿を取得します。数値は、1970年1月1日 00:00:00 UTC から指定した日時までの経過時間をミリ秒単位で表します。'
|
2018-07-11 05:03:21 +00:00
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
includeMyRenotes: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-07-11 05:03:21 +00:00
|
|
|
default: true,
|
|
|
|
desc: {
|
2018-08-28 21:59:43 +00:00
|
|
|
'ja-JP': '自分の行ったRenoteを含めるかどうか'
|
2018-07-11 05:03:21 +00:00
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
includeRenotedMyNotes: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-07-11 05:03:21 +00:00
|
|
|
default: true,
|
|
|
|
desc: {
|
2018-08-28 21:59:43 +00:00
|
|
|
'ja-JP': 'Renoteされた自分の投稿を含めるかどうか'
|
2018-07-11 05:03:21 +00:00
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
includeLocalRenotes: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-08-16 14:59:22 +00:00
|
|
|
default: true,
|
|
|
|
desc: {
|
2018-08-28 21:59:43 +00:00
|
|
|
'ja-JP': 'Renoteされたローカルの投稿を含めるかどうか'
|
2018-08-16 14:59:22 +00:00
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-08-16 14:59:22 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
withFiles: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2018-07-11 05:03:21 +00:00
|
|
|
desc: {
|
2018-09-05 14:55:51 +00:00
|
|
|
'ja-JP': 'true にすると、ファイルが添付された投稿だけ取得します'
|
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2018-09-05 14:55:51 +00:00
|
|
|
|
2018-11-01 18:32:24 +00:00
|
|
|
mediaOnly: {
|
2019-02-13 07:33:07 +00:00
|
|
|
validator: $.optional.bool,
|
2019-02-24 19:18:09 +00:00
|
|
|
deprecated: true,
|
2018-09-05 14:55:51 +00:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'true にすると、ファイルが添付された投稿だけ取得します (このパラメータは廃止予定です。代わりに withFiles を使ってください。)'
|
2018-07-11 05:03:21 +00:00
|
|
|
}
|
2018-11-01 18:32:24 +00:00
|
|
|
},
|
2019-02-22 02:46:58 +00:00
|
|
|
},
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2019-02-23 02:20:58 +00:00
|
|
|
res: {
|
|
|
|
type: 'array',
|
|
|
|
items: {
|
|
|
|
type: 'Note',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
errors: {
|
|
|
|
stlDisabled: {
|
|
|
|
message: 'Social timeline has been disabled.',
|
|
|
|
code: 'STL_DISABLED',
|
|
|
|
id: '620763f4-f621-4533-ab33-0577a1a3c342'
|
|
|
|
},
|
2019-01-15 17:30:55 +00:00
|
|
|
}
|
2019-02-22 02:46:58 +00:00
|
|
|
};
|
2019-01-15 17:30:55 +00:00
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, async (ps, user) => {
|
|
|
|
const m = await fetchMeta();
|
|
|
|
if (m.disableLocalTimeline && !user.isAdmin && !user.isModerator) {
|
|
|
|
throw new ApiError(meta.errors.stlDisabled);
|
2018-07-11 05:03:21 +00:00
|
|
|
}
|
|
|
|
|
2019-02-01 00:57:51 +00:00
|
|
|
const [followings, hideUserIds] = await Promise.all([
|
2018-07-11 05:03:21 +00:00
|
|
|
// フォローを取得
|
|
|
|
// Fetch following
|
2018-07-21 02:03:32 +00:00
|
|
|
getFriends(user._id, true, false),
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2019-02-01 00:57:51 +00:00
|
|
|
// 隠すユーザーを取得
|
|
|
|
getHideUserIds(user)
|
2018-07-11 05:03:21 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
//#region Construct query
|
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
|
|
|
|
2019-01-20 03:25:00 +00:00
|
|
|
const followQuery = followings.map(f => ({
|
2018-07-11 05:03:21 +00:00
|
|
|
userId: f.id,
|
|
|
|
|
2019-01-21 06:31:19 +00:00
|
|
|
/*// リプライは含めない(ただし投稿者自身の投稿へのリプライ、自分の投稿へのリプライ、自分のリプライは含める)
|
2018-07-11 05:03:21 +00:00
|
|
|
$or: [{
|
|
|
|
// リプライでない
|
|
|
|
replyId: null
|
|
|
|
}, { // または
|
|
|
|
// リプライだが返信先が投稿者自身の投稿
|
|
|
|
$expr: {
|
|
|
|
$eq: ['$_reply.userId', '$userId']
|
|
|
|
}
|
|
|
|
}, { // または
|
|
|
|
// リプライだが返信先が自分(フォロワー)の投稿
|
|
|
|
'_reply.userId': user._id
|
|
|
|
}, { // または
|
|
|
|
// 自分(フォロワー)が送信したリプライ
|
|
|
|
userId: user._id
|
2019-01-21 06:31:19 +00:00
|
|
|
}]*/
|
2019-01-20 03:25:00 +00:00
|
|
|
}));
|
2018-07-11 05:03:21 +00:00
|
|
|
|
2019-01-08 12:02:00 +00:00
|
|
|
const visibleQuery = user == null ? [{
|
2019-01-20 14:55:32 +00:00
|
|
|
visibility: { $in: ['public', 'home'] }
|
2019-01-08 12:02:00 +00:00
|
|
|
}] : [{
|
2019-01-20 14:55:32 +00:00
|
|
|
visibility: { $in: ['public', 'home', 'followers'] }
|
2019-01-08 12:02:00 +00:00
|
|
|
}, {
|
|
|
|
// myself (for specified/private)
|
|
|
|
userId: user._id
|
|
|
|
}, {
|
|
|
|
// to me (for specified)
|
|
|
|
visibleUserIds: { $in: [ user._id ] }
|
|
|
|
}];
|
|
|
|
|
2018-07-11 05:03:21 +00:00
|
|
|
const query = {
|
|
|
|
$and: [{
|
2018-10-11 20:10:40 +00:00
|
|
|
deletedAt: null,
|
|
|
|
|
2018-07-11 05:03:21 +00:00
|
|
|
$or: [{
|
2019-01-08 12:02:00 +00:00
|
|
|
$and: [{
|
|
|
|
// フォローしている人の投稿
|
|
|
|
$or: followQuery
|
|
|
|
}, {
|
|
|
|
// visible for me
|
|
|
|
$or: visibleQuery
|
|
|
|
}]
|
2018-07-11 05:03:21 +00:00
|
|
|
}, {
|
2018-07-13 15:36:39 +00:00
|
|
|
// public only
|
|
|
|
visibility: 'public',
|
|
|
|
|
2019-01-20 04:14:31 +00:00
|
|
|
// リプライでない
|
2019-01-21 06:31:19 +00:00
|
|
|
//replyId: null,
|
2019-01-20 04:14:31 +00:00
|
|
|
|
2018-07-11 05:03:21 +00:00
|
|
|
// local
|
|
|
|
'_user.host': null
|
|
|
|
}],
|
|
|
|
|
2019-02-01 00:57:51 +00:00
|
|
|
// hide
|
2018-07-11 05:03:21 +00:00
|
|
|
userId: {
|
2019-02-01 00:57:51 +00:00
|
|
|
$nin: hideUserIds
|
2018-07-11 05:03:21 +00:00
|
|
|
},
|
|
|
|
'_reply.userId': {
|
2019-02-01 00:57:51 +00:00
|
|
|
$nin: hideUserIds
|
2018-07-11 05:03:21 +00:00
|
|
|
},
|
|
|
|
'_renote.userId': {
|
2019-02-01 00:57:51 +00:00
|
|
|
$nin: hideUserIds
|
2018-07-11 05:03:21 +00:00
|
|
|
},
|
|
|
|
}]
|
|
|
|
} as any;
|
|
|
|
|
|
|
|
// MongoDBではトップレベルで否定ができないため、De Morganの法則を利用してクエリします。
|
|
|
|
// つまり、「『自分の投稿かつRenote』ではない」を「『自分の投稿ではない』または『Renoteではない』」と表現します。
|
|
|
|
// for details: https://en.wikipedia.org/wiki/De_Morgan%27s_laws
|
|
|
|
|
|
|
|
if (ps.includeMyRenotes === false) {
|
|
|
|
query.$and.push({
|
|
|
|
$or: [{
|
|
|
|
userId: { $ne: user._id }
|
|
|
|
}, {
|
|
|
|
renoteId: null
|
|
|
|
}, {
|
|
|
|
text: { $ne: null }
|
|
|
|
}, {
|
2018-09-05 10:32:46 +00:00
|
|
|
fileIds: { $ne: [] }
|
2018-07-11 05:03:21 +00:00
|
|
|
}, {
|
|
|
|
poll: { $ne: null }
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.includeRenotedMyNotes === false) {
|
|
|
|
query.$and.push({
|
|
|
|
$or: [{
|
|
|
|
'_renote.userId': { $ne: user._id }
|
|
|
|
}, {
|
|
|
|
renoteId: null
|
|
|
|
}, {
|
|
|
|
text: { $ne: null }
|
|
|
|
}, {
|
2018-09-05 10:32:46 +00:00
|
|
|
fileIds: { $ne: [] }
|
2018-07-11 05:03:21 +00:00
|
|
|
}, {
|
|
|
|
poll: { $ne: null }
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-08-16 14:59:22 +00:00
|
|
|
if (ps.includeLocalRenotes === false) {
|
|
|
|
query.$and.push({
|
|
|
|
$or: [{
|
|
|
|
'_renote.user.host': { $ne: null }
|
|
|
|
}, {
|
|
|
|
renoteId: null
|
|
|
|
}, {
|
|
|
|
text: { $ne: null }
|
|
|
|
}, {
|
2018-09-05 10:32:46 +00:00
|
|
|
fileIds: { $ne: [] }
|
2018-08-16 14:59:22 +00:00
|
|
|
}, {
|
|
|
|
poll: { $ne: null }
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-09-05 14:55:51 +00:00
|
|
|
if (ps.withFiles || ps.mediaOnly) {
|
2018-07-11 05:03:21 +00:00
|
|
|
query.$and.push({
|
2018-09-05 10:32:46 +00:00
|
|
|
fileIds: { $exists: true, $ne: [] }
|
2018-07-11 05:03:21 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ps.sinceId) {
|
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
|
|
|
$gt: ps.sinceId
|
|
|
|
};
|
|
|
|
} else if (ps.untilId) {
|
|
|
|
query._id = {
|
|
|
|
$lt: ps.untilId
|
|
|
|
};
|
|
|
|
} else if (ps.sinceDate) {
|
|
|
|
sort._id = 1;
|
|
|
|
query.createdAt = {
|
|
|
|
$gt: new Date(ps.sinceDate)
|
|
|
|
};
|
|
|
|
} else if (ps.untilDate) {
|
|
|
|
query.createdAt = {
|
|
|
|
$lt: new Date(ps.untilDate)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
const timeline = await Note.find(query, {
|
|
|
|
limit: ps.limit,
|
|
|
|
sort: sort
|
|
|
|
});
|
2019-01-17 08:16:08 +00:00
|
|
|
|
|
|
|
activeUsersChart.update(user);
|
2019-02-22 02:46:58 +00:00
|
|
|
|
|
|
|
return await packMany(timeline, user);
|
|
|
|
});
|