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

184 lines
3.5 KiB
TypeScript
Raw Normal View History

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