egirlskey/src/server/api/endpoints/notes/local-timeline.ts

172 lines
3.5 KiB
TypeScript
Raw Normal View History

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