mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 21:13:08 +02:00
987168b863
* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
91 lines
1.5 KiB
TypeScript
91 lines
1.5 KiB
TypeScript
import $ from 'cafy';
|
|
import es from '../../../../db/elasticsearch';
|
|
import define from '../../define';
|
|
import { ApiError } from '../../error';
|
|
import { Notes } from '../../../../models';
|
|
import { In } from 'typeorm';
|
|
|
|
export const meta = {
|
|
desc: {
|
|
'ja-JP': '投稿を検索します。',
|
|
'en-US': 'Search notes.'
|
|
},
|
|
|
|
tags: ['notes'],
|
|
|
|
requireCredential: false,
|
|
|
|
params: {
|
|
query: {
|
|
validator: $.str
|
|
},
|
|
|
|
limit: {
|
|
validator: $.optional.num.range(1, 100),
|
|
default: 10
|
|
},
|
|
|
|
offset: {
|
|
validator: $.optional.num.min(0),
|
|
default: 0
|
|
}
|
|
},
|
|
|
|
res: {
|
|
type: 'array',
|
|
items: {
|
|
type: 'Note',
|
|
},
|
|
},
|
|
|
|
errors: {
|
|
searchingNotAvailable: {
|
|
message: 'Searching not available.',
|
|
code: 'SEARCHING_NOT_AVAILABLE',
|
|
id: '7ee9c119-16a1-479f-a6fd-6fab00ed946f'
|
|
}
|
|
}
|
|
};
|
|
|
|
export default define(meta, async (ps, me) => {
|
|
if (es == null) throw new ApiError(meta.errors.searchingNotAvailable);
|
|
|
|
const response = await es.search({
|
|
index: 'misskey',
|
|
type: 'note',
|
|
body: {
|
|
size: ps.limit!,
|
|
from: ps.offset,
|
|
query: {
|
|
simple_query_string: {
|
|
fields: ['text'],
|
|
query: ps.query,
|
|
default_operator: 'and'
|
|
}
|
|
},
|
|
sort: [
|
|
{ _doc: 'desc' }
|
|
]
|
|
}
|
|
});
|
|
|
|
if (response.hits.total === 0) {
|
|
return [];
|
|
}
|
|
|
|
const hits = response.hits.hits.map((hit: any) => hit.id);
|
|
|
|
if (hits.length === 0) return [];
|
|
|
|
// Fetch found notes
|
|
const notes = await Notes.find({
|
|
where: {
|
|
id: In(hits)
|
|
},
|
|
order: {
|
|
id: -1
|
|
}
|
|
});
|
|
|
|
return await Notes.packMany(notes, me);
|
|
});
|