157 lines
3.2 KiB
TypeScript
157 lines
3.2 KiB
TypeScript
import $ from 'cafy'; import ID, { transform } from '../../../../misc/cafy-id';
|
|
import Note from '../../../../models/note';
|
|
import Mute from '../../../../models/mute';
|
|
import { packMany } from '../../../../models/note';
|
|
import define from '../../define';
|
|
import { countIf } from '../../../../prelude/array';
|
|
|
|
export const meta = {
|
|
desc: {
|
|
'ja-JP': 'ローカルタイムラインを取得します。'
|
|
},
|
|
|
|
params: {
|
|
withFiles: {
|
|
validator: $.bool.optional,
|
|
desc: {
|
|
'ja-JP': 'ファイルが添付された投稿に限定するか否か'
|
|
}
|
|
},
|
|
|
|
mediaOnly: {
|
|
validator: $.bool.optional,
|
|
desc: {
|
|
'ja-JP': 'ファイルが添付された投稿に限定するか否か (このパラメータは廃止予定です。代わりに withFiles を使ってください。)'
|
|
}
|
|
},
|
|
|
|
fileType: {
|
|
validator: $.arr($.str).optional,
|
|
desc: {
|
|
'ja-JP': '指定された種類のファイルが添付された投稿のみを取得します'
|
|
}
|
|
},
|
|
|
|
excludeNsfw: {
|
|
validator: $.bool.optional,
|
|
default: false,
|
|
desc: {
|
|
'ja-JP': 'true にすると、NSFW指定されたファイルを除外します(fileTypeが指定されている場合のみ有効)'
|
|
}
|
|
},
|
|
|
|
limit: {
|
|
validator: $.num.optional.range(1, 100),
|
|
default: 10
|
|
},
|
|
|
|
sinceId: {
|
|
validator: $.type(ID).optional,
|
|
transform: transform,
|
|
},
|
|
|
|
untilId: {
|
|
validator: $.type(ID).optional,
|
|
transform: transform,
|
|
},
|
|
|
|
sinceDate: {
|
|
validator: $.num.optional,
|
|
},
|
|
|
|
untilDate: {
|
|
validator: $.num.optional,
|
|
},
|
|
}
|
|
};
|
|
|
|
export default define(meta, (ps, user) => new Promise(async (res, rej) => {
|
|
// Check if only one of sinceId, untilId, sinceDate, untilDate specified
|
|
if (countIf(x => x != null, [ps.sinceId, ps.untilId, ps.sinceDate, ps.untilDate]) > 1) {
|
|
return rej('only one of sinceId, untilId, sinceDate, untilDate can be specified');
|
|
}
|
|
|
|
// ミュートしているユーザーを取得
|
|
const mutedUserIds = user ? (await Mute.find({
|
|
muterId: user._id
|
|
})).map(m => m.muteeId) : null;
|
|
|
|
//#region Construct query
|
|
const sort = {
|
|
_id: -1
|
|
};
|
|
|
|
const query = {
|
|
deletedAt: null,
|
|
|
|
// public only
|
|
visibility: 'public',
|
|
|
|
// local
|
|
'_user.host': null
|
|
} as any;
|
|
|
|
if (mutedUserIds && mutedUserIds.length > 0) {
|
|
query.userId = {
|
|
$nin: mutedUserIds
|
|
};
|
|
|
|
query['_reply.userId'] = {
|
|
$nin: mutedUserIds
|
|
};
|
|
|
|
query['_renote.userId'] = {
|
|
$nin: mutedUserIds
|
|
};
|
|
}
|
|
|
|
const withFiles = ps.withFiles != null ? ps.withFiles : ps.mediaOnly;
|
|
|
|
if (withFiles) {
|
|
query.fileIds = { $exists: true, $ne: [] };
|
|
}
|
|
|
|
if (ps.fileType) {
|
|
query.fileIds = { $exists: true, $ne: [] };
|
|
|
|
query['_files.contentType'] = {
|
|
$in: ps.fileType
|
|
};
|
|
|
|
if (ps.excludeNsfw) {
|
|
query['_files.metadata.isSensitive'] = {
|
|
$ne: true
|
|
};
|
|
}
|
|
}
|
|
|
|
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
|
|
});
|
|
|
|
res(await packMany(timeline, user));
|
|
}));
|