iceshrimp-legacy/src/server/api/endpoints/notes.ts

133 lines
2.4 KiB
TypeScript
Raw Normal View History

2019-02-05 03:48:08 +01:00
import $ from 'cafy';
import ID, { transform } from '../../../misc/cafy-id';
import Note, { packMany } from '../../../models/note';
2018-11-02 05:47:44 +01:00
import define from '../define';
export const meta = {
desc: {
'ja-JP': '投稿を取得します。'
},
tags: ['notes'],
params: {
2018-11-01 19:32:24 +01:00
local: {
2019-02-13 08:33:07 +01:00
validator: $.optional.bool,
desc: {
'ja-JP': 'ローカルの投稿に限定するか否か'
}
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
reply: {
2019-02-13 08:33:07 +01:00
validator: $.optional.bool,
desc: {
'ja-JP': '返信に限定するか否か'
}
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
renote: {
2019-02-13 08:33:07 +01:00
validator: $.optional.bool,
desc: {
'ja-JP': 'Renoteに限定するか否か'
}
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
withFiles: {
2019-02-13 08:33:07 +01:00
validator: $.optional.bool,
desc: {
'ja-JP': 'ファイルが添付された投稿に限定するか否か'
}
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
media: {
2019-02-13 08:33:07 +01:00
validator: $.optional.bool,
2019-02-24 20:18:09 +01:00
deprecated: true,
desc: {
'ja-JP': 'ファイルが添付された投稿に限定するか否か (このパラメータは廃止予定です。代わりに withFiles を使ってください。)'
}
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
poll: {
2019-02-13 08:33:07 +01:00
validator: $.optional.bool,
desc: {
'ja-JP': 'アンケートが添付された投稿に限定するか否か'
}
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
limit: {
2019-02-13 08:33:07 +01:00
validator: $.optional.num.range(1, 100),
default: 10
2018-11-01 19:32:24 +01:00
},
2018-11-01 19:32:24 +01:00
sinceId: {
2019-02-13 08:33:07 +01:00
validator: $.optional.type(ID),
2018-11-01 19:32:24 +01:00
transform: transform,
},
2018-11-01 19:32:24 +01:00
untilId: {
2019-02-13 08:33:07 +01:00
validator: $.optional.type(ID),
2018-11-01 19:32:24 +01:00
transform: transform,
},
2019-02-24 11:42:26 +01:00
},
res: {
type: 'array',
items: {
type: 'Note',
}
},
};
2017-03-03 00:06:34 +01:00
export default define(meta, async (ps) => {
2017-03-03 20:28:38 +01:00
const sort = {
_id: -1
};
2018-05-28 18:50:01 +02:00
const query = {
2018-11-30 10:13:55 +01:00
deletedAt: null,
2019-02-15 00:38:59 +01:00
visibility: 'public',
localOnly: { $ne: true },
2018-05-28 18:50:01 +02:00
} as any;
if (ps.sinceId) {
2017-03-03 20:28:38 +01:00
sort._id = 1;
query._id = {
$gt: ps.sinceId
2017-03-03 20:28:38 +01:00
};
} else if (ps.untilId) {
2017-03-03 20:28:38 +01:00
query._id = {
$lt: ps.untilId
2017-03-03 00:06:34 +01:00
};
2017-03-03 20:28:38 +01:00
}
2017-03-03 00:06:34 +01:00
if (ps.local) {
2018-05-23 08:47:51 +02:00
query['_user.host'] = null;
}
if (ps.reply != undefined) {
query.replyId = ps.reply ? { $exists: true, $ne: null } : null;
}
if (ps.renote != undefined) {
query.renoteId = ps.renote ? { $exists: true, $ne: null } : null;
}
const withFiles = ps.withFiles != undefined ? ps.withFiles : ps.media;
2018-12-02 11:24:57 +01:00
if (withFiles) query.fileIds = { $exists: true, $ne: null };
2017-03-03 00:06:34 +01:00
if (ps.poll != undefined) {
query.poll = ps.poll ? { $exists: true, $ne: null } : null;
2017-03-03 20:28:38 +01:00
}
2017-03-03 00:06:34 +01:00
2018-03-16 19:33:36 +01:00
// TODO
//if (bot != undefined) {
2018-03-29 07:48:47 +02:00
// query.isBot = bot;
2018-03-16 19:33:36 +01:00
//}
const notes = await Note.find(query, {
limit: ps.limit,
sort: sort
});
2017-03-03 00:06:34 +01:00
return await packMany(notes);
});