2019-02-05 04:48:08 +02:00
|
|
|
import $ from 'cafy';
|
|
|
|
import ID, { transform } from '../../../misc/cafy-id';
|
2018-10-03 18:39:11 +03:00
|
|
|
import Note, { packMany } from '../../../models/note';
|
2018-11-02 06:47:44 +02:00
|
|
|
import define from '../define';
|
2018-09-05 17:55:51 +03:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '投稿を取得します。'
|
|
|
|
},
|
|
|
|
|
2019-02-23 04:20:58 +02:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
params: {
|
2018-11-01 20:32:24 +02:00
|
|
|
local: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
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
|
|
|
reply: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
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
|
|
|
renote: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
2018-09-05 17:55:51 +03:00
|
|
|
desc: {
|
|
|
|
'ja-JP': 'Renoteに限定するか否か'
|
|
|
|
}
|
2018-11-01 20:32:24 +02:00
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
2018-11-01 20:32:24 +02:00
|
|
|
withFiles: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
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
|
|
|
media: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
2019-02-24 21:18:09 +02:00
|
|
|
deprecated: true,
|
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
|
|
|
poll: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.bool,
|
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
|
|
|
limit: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.num.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: {
|
2019-02-13 09:33:07 +02:00
|
|
|
validator: $.optional.type(ID),
|
2018-11-01 20:32:24 +02:00
|
|
|
transform: transform,
|
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
|
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,
|
|
|
|
},
|
2019-02-24 12:42:26 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'array',
|
|
|
|
items: {
|
|
|
|
type: 'Note',
|
|
|
|
}
|
|
|
|
},
|
2018-09-05 17:55:51 +03:00
|
|
|
};
|
2017-03-03 01:06:34 +02:00
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps) => {
|
2017-03-03 21:28:38 +02:00
|
|
|
const sort = {
|
|
|
|
_id: -1
|
|
|
|
};
|
2018-05-28 19:50:01 +03:00
|
|
|
const query = {
|
2018-11-30 11:13:55 +02:00
|
|
|
deletedAt: null,
|
2019-02-15 01:38:59 +02:00
|
|
|
visibility: 'public',
|
|
|
|
localOnly: { $ne: true },
|
2018-05-28 19:50:01 +03:00
|
|
|
} as any;
|
2018-09-05 17:55:51 +03:00
|
|
|
if (ps.sinceId) {
|
2017-03-03 21:28:38 +02:00
|
|
|
sort._id = 1;
|
|
|
|
query._id = {
|
2018-09-05 17:55:51 +03:00
|
|
|
$gt: ps.sinceId
|
2017-03-03 21:28:38 +02:00
|
|
|
};
|
2018-09-05 17:55:51 +03:00
|
|
|
} else if (ps.untilId) {
|
2017-03-03 21:28:38 +02:00
|
|
|
query._id = {
|
2018-09-05 17:55:51 +03:00
|
|
|
$lt: ps.untilId
|
2017-03-03 01:06:34 +02:00
|
|
|
};
|
2017-03-03 21:28:38 +02:00
|
|
|
}
|
2017-03-03 01:06:34 +02:00
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
if (ps.local) {
|
2018-05-23 09:47:51 +03:00
|
|
|
query['_user.host'] = null;
|
2018-05-23 09:25:15 +03:00
|
|
|
}
|
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
if (ps.reply != undefined) {
|
|
|
|
query.replyId = ps.reply ? { $exists: true, $ne: null } : null;
|
2017-03-19 08:23:30 +02:00
|
|
|
}
|
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
if (ps.renote != undefined) {
|
|
|
|
query.renoteId = ps.renote ? { $exists: true, $ne: null } : null;
|
2017-03-19 08:23:30 +02:00
|
|
|
}
|
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
const withFiles = ps.withFiles != undefined ? ps.withFiles : ps.media;
|
|
|
|
|
2018-12-02 12:24:57 +02:00
|
|
|
if (withFiles) query.fileIds = { $exists: true, $ne: null };
|
2017-03-03 01:06:34 +02:00
|
|
|
|
2018-09-05 17:55:51 +03:00
|
|
|
if (ps.poll != undefined) {
|
|
|
|
query.poll = ps.poll ? { $exists: true, $ne: null } : null;
|
2017-03-03 21:28:38 +02:00
|
|
|
}
|
2017-03-03 01:06:34 +02:00
|
|
|
|
2018-03-16 20:33:36 +02:00
|
|
|
// TODO
|
|
|
|
//if (bot != undefined) {
|
2018-03-29 08:48:47 +03:00
|
|
|
// query.isBot = bot;
|
2018-03-16 20:33:36 +02:00
|
|
|
//}
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
const notes = await Note.find(query, {
|
|
|
|
limit: ps.limit,
|
|
|
|
sort: sort
|
|
|
|
});
|
2017-03-03 01:06:34 +02:00
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
return await packMany(notes);
|
|
|
|
});
|