2019-02-05 03:48:08 +01:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../../misc/cafy-id';
|
2018-04-17 07:52:28 +02:00
|
|
|
import Note from '../../../../models/note';
|
2018-10-03 17:39:11 +02:00
|
|
|
import { packMany } from '../../../../models/note';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2018-09-05 19:16:08 +02:00
|
|
|
import { countIf } from '../../../../prelude/array';
|
2019-01-15 18:30:55 +01:00
|
|
|
import fetchMeta from '../../../../misc/fetch-meta';
|
2019-01-17 09:16:08 +01:00
|
|
|
import activeUsersChart from '../../../../chart/active-users';
|
2019-02-01 01:57:51 +01:00
|
|
|
import { getHideUserIds } from '../../common/get-hide-users';
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ローカルタイムラインを取得します。'
|
|
|
|
},
|
|
|
|
|
|
|
|
params: {
|
2018-11-01 19:32:24 +01:00
|
|
|
withFiles: {
|
|
|
|
validator: $.bool.optional,
|
2018-09-05 16:55:51 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ファイルが添付された投稿に限定するか否か'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
mediaOnly: {
|
|
|
|
validator: $.bool.optional,
|
2018-09-05 16:55:51 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'ファイルが添付された投稿に限定するか否か (このパラメータは廃止予定です。代わりに withFiles を使ってください。)'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
fileType: {
|
|
|
|
validator: $.arr($.str).optional,
|
2018-09-05 21:28:22 +02:00
|
|
|
desc: {
|
|
|
|
'ja-JP': '指定された種類のファイルが添付された投稿のみを取得します'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 21:28:22 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
excludeNsfw: {
|
|
|
|
validator: $.bool.optional,
|
2018-09-25 14:09:38 +02:00
|
|
|
default: false,
|
|
|
|
desc: {
|
|
|
|
'ja-JP': 'true にすると、NSFW指定されたファイルを除外します(fileTypeが指定されている場合のみ有効)'
|
|
|
|
}
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-25 14:09:38 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
limit: {
|
|
|
|
validator: $.num.optional.range(1, 100),
|
2018-09-05 16:55:51 +02:00
|
|
|
default: 10
|
2018-11-01 19:32:24 +01:00
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
sinceId: {
|
|
|
|
validator: $.type(ID).optional,
|
|
|
|
transform: transform,
|
|
|
|
},
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
untilId: {
|
|
|
|
validator: $.type(ID).optional,
|
|
|
|
transform: transform,
|
|
|
|
},
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
sinceDate: {
|
|
|
|
validator: $.num.optional,
|
|
|
|
},
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-11-01 19:32:24 +01:00
|
|
|
untilDate: {
|
|
|
|
validator: $.num.optional,
|
|
|
|
},
|
2018-09-05 16:55:51 +02:00
|
|
|
}
|
|
|
|
};
|
2018-04-17 07:52:28 +02:00
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
2019-01-15 18:30:55 +01:00
|
|
|
const meta = await fetchMeta();
|
|
|
|
if (meta.disableLocalTimeline) {
|
|
|
|
if (user == null || (!user.isAdmin && !user.isModerator)) {
|
|
|
|
return rej('local timeline disabled');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-17 07:52:28 +02:00
|
|
|
// Check if only one of sinceId, untilId, sinceDate, untilDate specified
|
2018-09-05 19:16:08 +02:00
|
|
|
if (countIf(x => x != null, [ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate]) > 1) {
|
2018-11-02 05:47:44 +01:00
|
|
|
return rej('only one of sinceId, untilId, sinceDate, untilDate can be specified');
|
2018-04-17 07:52:28 +02:00
|
|
|
}
|
|
|
|
|
2019-02-01 01:57:51 +01:00
|
|
|
// 隠すユーザーを取得
|
|
|
|
const hideUserIds = await getHideUserIds(user);
|
2018-04-17 07:52:28 +02:00
|
|
|
|
|
|
|
//#region Construct query
|
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
|
|
|
|
|
|
|
const query = {
|
2018-10-11 22:10:40 +02:00
|
|
|
deletedAt: null,
|
|
|
|
|
2018-05-28 14:43:21 +02:00
|
|
|
// public only
|
|
|
|
visibility: 'public',
|
|
|
|
|
2019-01-20 05:14:31 +01:00
|
|
|
// リプライでない
|
2019-01-21 07:31:19 +01:00
|
|
|
//replyId: null,
|
2019-01-20 05:14:31 +01:00
|
|
|
|
2018-04-17 07:52:28 +02:00
|
|
|
// local
|
|
|
|
'_user.host': null
|
|
|
|
} as any;
|
|
|
|
|
2019-02-01 01:57:51 +01:00
|
|
|
if (hideUserIds && hideUserIds.length > 0) {
|
2018-05-28 14:59:57 +02:00
|
|
|
query.userId = {
|
2019-02-01 01:57:51 +01:00
|
|
|
$nin: hideUserIds
|
2018-05-28 14:59:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
query['_reply.userId'] = {
|
2019-02-01 01:57:51 +01:00
|
|
|
$nin: hideUserIds
|
2018-05-28 14:59:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
query['_renote.userId'] = {
|
2019-02-01 01:57:51 +01:00
|
|
|
$nin: hideUserIds
|
2018-05-28 14:59:57 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
const withFiles = ps.withFiles != null ? ps.withFiles : ps.mediaOnly;
|
|
|
|
|
2018-09-05 12:32:46 +02:00
|
|
|
if (withFiles) {
|
|
|
|
query.fileIds = { $exists: true, $ne: [] };
|
2018-06-06 23:13:57 +02:00
|
|
|
}
|
|
|
|
|
2018-09-05 21:28:22 +02:00
|
|
|
if (ps.fileType) {
|
|
|
|
query.fileIds = { $exists: true, $ne: [] };
|
|
|
|
|
|
|
|
query['_files.contentType'] = {
|
|
|
|
$in: ps.fileType
|
|
|
|
};
|
2018-09-25 14:09:38 +02:00
|
|
|
|
|
|
|
if (ps.excludeNsfw) {
|
|
|
|
query['_files.metadata.isSensitive'] = {
|
|
|
|
$ne: true
|
|
|
|
};
|
|
|
|
}
|
2018-09-05 21:28:22 +02:00
|
|
|
}
|
|
|
|
|
2018-09-05 16:55:51 +02:00
|
|
|
if (ps.sinceId) {
|
2018-04-17 07:52:28 +02:00
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
2018-09-05 16:55:51 +02:00
|
|
|
$gt: ps.sinceId
|
2018-04-17 07:52:28 +02:00
|
|
|
};
|
2018-09-05 16:55:51 +02:00
|
|
|
} else if (ps.untilId) {
|
2018-04-17 07:52:28 +02:00
|
|
|
query._id = {
|
2018-09-05 16:55:51 +02:00
|
|
|
$lt: ps.untilId
|
2018-04-17 07:52:28 +02:00
|
|
|
};
|
2018-09-05 16:55:51 +02:00
|
|
|
} else if (ps.sinceDate) {
|
2018-04-17 07:52:28 +02:00
|
|
|
sort._id = 1;
|
|
|
|
query.createdAt = {
|
2018-09-05 16:55:51 +02:00
|
|
|
$gt: new Date(ps.sinceDate)
|
2018-04-17 07:52:28 +02:00
|
|
|
};
|
2018-09-05 16:55:51 +02:00
|
|
|
} else if (ps.untilDate) {
|
2018-04-17 07:52:28 +02:00
|
|
|
query.createdAt = {
|
2018-09-05 16:55:51 +02:00
|
|
|
$lt: new Date(ps.untilDate)
|
2018-04-17 07:52:28 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
//#endregion
|
|
|
|
|
|
|
|
const timeline = await Note
|
|
|
|
.find(query, {
|
2018-09-05 16:55:51 +02:00
|
|
|
limit: ps.limit,
|
2018-04-17 07:52:28 +02:00
|
|
|
sort: sort
|
|
|
|
});
|
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
res(await packMany(timeline, user));
|
2019-01-17 09:16:08 +01:00
|
|
|
|
|
|
|
if (user) {
|
|
|
|
activeUsersChart.update(user);
|
|
|
|
}
|
2018-11-02 05:47:44 +01:00
|
|
|
}));
|