2018-11-01 20:32:24 +02:00
|
|
|
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
|
2018-04-17 08:52:28 +03:00
|
|
|
import Note from '../../../../models/note';
|
|
|
|
import Mute from '../../../../models/mute';
|
2018-10-03 18:39:11 +03:00
|
|
|
import { packMany } from '../../../../models/note';
|
2018-11-02 06:47:44 +02:00
|
|
|
import define from '../../define';
|
2018-09-05 20:16:08 +03:00
|
|
|
import { countIf } from '../../../../prelude/array';
|
2019-01-15 19:30:55 +02:00
|
|
|
import fetchMeta from '../../../../misc/fetch-meta';
|
2018-04-17 08:52:28 +03:00
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'グローバルタイムラインを取得します。'
|
|
|
|
},
|
|
|
|
|
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
withFiles: {
|
|
|
|
validator: $.bool.optional,
|
2018-09-05 17:55:51 +03:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ファイルが添付された投稿に限定するか否か'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
mediaOnly: {
|
|
|
|
validator: $.bool.optional,
|
2018-09-05 17:55:51 +03:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ファイルが添付された投稿に限定するか否か (このパラメータは廃止予定です。代わりに withFiles を使ってください。)'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
limit: {
|
|
|
|
validator: $.num.optional.range(1, 100),
|
2018-09-05 17:55:51 +03:00
|
|
|
default: 10
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
sinceId: {
|
|
|
|
validator: $.type(ID).optional,
|
|
|
|
transform: transform,
|
|
|
|
},
|
2018-04-17 08:52:28 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
untilId: {
|
|
|
|
validator: $.type(ID).optional,
|
|
|
|
transform: transform,
|
|
|
|
},
|
2018-04-17 08:52:28 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
sinceDate: {
|
|
|
|
validator: $.num.optional
|
|
|
|
},
|
2018-04-17 08:52:28 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
untilDate: {
|
|
|
|
validator: $.num.optional
|
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
}
|
|
|
|
};
|
2018-04-17 08:52:28 +03:00
|
|
|
|
2018-11-02 06:47:44 +02:00
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
2019-01-15 19:30:55 +02:00
|
|
|
const meta = await fetchMeta();
|
2019-01-16 07:54:14 +02:00
|
|
|
if (meta.disableGlobalTimeline) {
|
2019-01-15 19:30:55 +02:00
|
|
|
if (user == null || (!user.isAdmin && !user.isModerator)) {
|
2019-01-16 07:54:14 +02:00
|
|
|
return rej('global timeline disabled');
|
2019-01-15 19:30:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-17 08:52:28 +03:00
|
|
|
// Check if only one of sinceId, untilId, sinceDate, untilDate specified
|
2018-09-05 20:16:08 +03:00
|
|
|
if (countIf(x => x != null, [ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate]) > 1) {
|
2018-11-02 06:47:44 +02:00
|
|
|
return rej('only one of sinceId, untilId, sinceDate, untilDate can be specified');
|
2018-04-17 08:52:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// ミュートしているユーザーを取得
|
2018-05-28 15:59:57 +03:00
|
|
|
const mutedUserIds = user ? (await Mute.find({
|
2018-04-17 08:52:28 +03:00
|
|
|
muterId: user._id
|
2018-05-28 15:59:57 +03:00
|
|
|
})).map(m => m.muteeId) : null;
|
2018-04-17 08:52:28 +03:00
|
|
|
|
|
|
|
//#region Construct query
|
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
|
|
|
|
|
|
|
const query = {
|
2018-10-11 23:10:40 +03:00
|
|
|
deletedAt: null,
|
|
|
|
|
2018-05-28 15:59:57 +03:00
|
|
|
// public only
|
2018-07-15 11:50:24 +03:00
|
|
|
visibility: 'public',
|
|
|
|
|
|
|
|
replyId: null
|
2018-05-28 15:59:57 +03:00
|
|
|
} as any;
|
|
|
|
|
|
|
|
if (mutedUserIds && mutedUserIds.length > 0) {
|
|
|
|
query.userId = {
|
2018-04-17 08:52:28 +03:00
|
|
|
$nin: mutedUserIds
|
2018-05-28 15:59:57 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
query['_reply.userId'] = {
|
2018-04-17 08:52:28 +03:00
|
|
|
$nin: mutedUserIds
|
2018-05-28 15:59:57 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
query['_renote.userId'] = {
|
2018-04-17 08:52:28 +03:00
|
|
|
$nin: mutedUserIds
|
2018-05-28 15:59:57 +03:00
|
|
|
};
|
|
|
|
}
|
2018-04-17 08:52:28 +03:00
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
const withFiles = ps.withFiles != null ? ps.withFiles : ps.mediaOnly;
|
|
|
|
|
2018-09-05 13:32:46 +03:00
|
|
|
if (withFiles) {
|
|
|
|
query.fileIds = { $exists: true, $ne: [] };
|
2018-06-07 00:13:57 +03:00
|
|
|
}
|
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
if (ps.sinceId) {
|
2018-04-17 08:52:28 +03:00
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
2018-09-05 17:55:51 +03:00
|
|
|
$gt: ps.sinceId
|
2018-04-17 08:52:28 +03:00
|
|
|
};
|
2018-09-05 17:55:51 +03:00
|
|
|
} else if (ps.untilId) {
|
2018-04-17 08:52:28 +03:00
|
|
|
query._id = {
|
2018-09-05 17:55:51 +03:00
|
|
|
$lt: ps.untilId
|
2018-04-17 08:52:28 +03:00
|
|
|
};
|
2018-09-05 17:55:51 +03:00
|
|
|
} else if (ps.sinceDate) {
|
2018-04-17 08:52:28 +03:00
|
|
|
sort._id = 1;
|
|
|
|
query.createdAt = {
|
2018-09-05 17:55:51 +03:00
|
|
|
$gt: new Date(ps.sinceDate)
|
2018-04-17 08:52:28 +03:00
|
|
|
};
|
2018-09-05 17:55:51 +03:00
|
|
|
} else if (ps.untilDate) {
|
2018-04-17 08:52:28 +03:00
|
|
|
query.createdAt = {
|
2018-09-05 17:55:51 +03:00
|
|
|
$lt: new Date(ps.untilDate)
|
2018-04-17 08:52:28 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
const timeline = await Note
|
|
|
|
.find(query, {
|
2018-09-05 17:55:51 +03:00
|
|
|
limit: ps.limit,
|
2018-04-17 08:52:28 +03:00
|
|
|
sort: sort
|
|
|
|
});
|
|
|
|
|
2018-11-02 06:47:44 +02:00
|
|
|
res(await packMany(timeline, user));
|
|
|
|
}));
|