2018-07-04 06:21:30 +02:00
|
|
|
import $ from 'cafy';
|
|
|
|
import * as mongo from 'mongodb';
|
|
|
|
import Note from '../../../../models/note';
|
2018-10-03 17:39:11 +02:00
|
|
|
import { packMany } from '../../../../models/note';
|
2018-07-04 06:21:30 +02:00
|
|
|
import es from '../../../../db/elasticsearch';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../../define';
|
2019-02-22 03:46:58 +01:00
|
|
|
import { ApiError } from '../../error';
|
2018-07-04 06:21:30 +02:00
|
|
|
|
2018-11-02 04:49:08 +01:00
|
|
|
export const meta = {
|
|
|
|
desc: {
|
|
|
|
'ja-JP': '投稿を検索します。',
|
|
|
|
'en-US': 'Search notes.'
|
|
|
|
},
|
|
|
|
|
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
query: {
|
|
|
|
validator: $.str
|
|
|
|
},
|
2018-07-04 06:21:30 +02:00
|
|
|
|
2018-11-02 04:49:08 +01:00
|
|
|
limit: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-11-02 04:49:08 +01:00
|
|
|
default: 10
|
|
|
|
},
|
2018-07-04 06:21:30 +02:00
|
|
|
|
2018-11-02 04:49:08 +01:00
|
|
|
offset: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.min(0),
|
2018-11-02 04:49:08 +01:00
|
|
|
default: 0
|
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
searchingNotAvailable: {
|
|
|
|
message: 'Searching not available.',
|
|
|
|
code: 'SEARCHING_NOT_AVAILABLE',
|
|
|
|
id: '7ee9c119-16a1-479f-a6fd-6fab00ed946f'
|
|
|
|
}
|
2018-11-02 04:49:08 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, me) => {
|
|
|
|
if (es == null) throw new ApiError(meta.errors.searchingNotAvailable);
|
2018-07-19 01:24:03 +02:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
const response = await es.search({
|
2018-07-04 06:21:30 +02:00
|
|
|
index: 'misskey',
|
|
|
|
type: 'note',
|
|
|
|
body: {
|
2018-11-02 04:49:08 +01:00
|
|
|
size: ps.limit,
|
|
|
|
from: ps.offset,
|
2018-07-04 06:21:30 +02:00
|
|
|
query: {
|
|
|
|
simple_query_string: {
|
|
|
|
fields: ['text'],
|
2018-11-02 04:49:08 +01:00
|
|
|
query: ps.query,
|
2018-07-04 06:21:30 +02:00
|
|
|
default_operator: 'and'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
sort: [
|
|
|
|
{ _doc: 'desc' }
|
|
|
|
]
|
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|
2018-07-04 06:21:30 +02:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
if (response.hits.total === 0) {
|
|
|
|
return [];
|
|
|
|
}
|
2018-07-04 06:21:30 +02:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
const hits = response.hits.hits.map(hit => new mongo.ObjectID(hit._id));
|
2018-07-04 06:21:30 +02:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
// Fetch found notes
|
|
|
|
const notes = await Note.find({
|
|
|
|
_id: {
|
|
|
|
$in: hits
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
sort: {
|
|
|
|
_id: -1
|
|
|
|
}
|
2018-07-04 06:21:30 +02:00
|
|
|
});
|
2019-02-22 03:46:58 +01:00
|
|
|
|
|
|
|
return await packMany(notes, me);
|
|
|
|
});
|