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

132 lines
2.5 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': '投稿を取得します。'
},
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,
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,
},
}
};
2017-03-03 00:06:34 +01:00
2018-11-02 05:47:44 +01:00
export default define(meta, (ps) => new Promise(async (res, rej) => {
2018-03-29 07:48:47 +02:00
// Check if both of sinceId and untilId is specified
if (ps.sinceId && ps.untilId) {
2018-03-29 07:48:47 +02:00
return rej('cannot set sinceId and untilId');
2017-03-03 20:28:38 +01:00
}
2017-03-03 00:06:34 +01:00
2017-03-03 20:28:38 +01:00
// Construct query
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
//}
2017-03-03 20:28:38 +01:00
// Issue query
2018-04-07 19:30:37 +02:00
const notes = await Note
2017-03-03 20:28:38 +01:00
.find(query, {
limit: ps.limit,
2017-03-03 20:28:38 +01:00
sort: sort
});
2017-03-03 00:06:34 +01:00
2017-03-03 20:28:38 +01:00
// Serialize
res(await packMany(notes));
2018-11-02 05:47:44 +01:00
}));