2018-07-04 06:21:30 +02:00
|
|
|
import $ from 'cafy';
|
|
|
|
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';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { Notes } from '../../../../models';
|
|
|
|
import { In } from 'typeorm';
|
2019-04-23 15:35:26 +02:00
|
|
|
import { types, bool } from '../../../../misc/schema';
|
2019-04-25 00:46:39 +02:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
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.'
|
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['notes'],
|
|
|
|
|
2018-11-02 04:49:08 +01:00
|
|
|
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-04-25 00:46:39 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
host: {
|
|
|
|
validator: $.optional.nullable.str,
|
|
|
|
default: undefined
|
|
|
|
},
|
|
|
|
|
|
|
|
userId: {
|
|
|
|
validator: $.optional.nullable.type(ID),
|
|
|
|
default: null
|
|
|
|
},
|
2019-02-22 03:46:58 +01:00
|
|
|
},
|
|
|
|
|
2019-02-23 03:20:58 +01:00
|
|
|
res: {
|
2019-04-23 15:35:26 +02:00
|
|
|
type: types.array,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
2019-02-23 03:20:58 +01:00
|
|
|
items: {
|
2019-04-23 15:35:26 +02:00
|
|
|
type: types.object,
|
|
|
|
optional: bool.false, nullable: bool.false,
|
|
|
|
ref: 'Note',
|
|
|
|
}
|
2019-02-23 03:20:58 +01:00
|
|
|
},
|
|
|
|
|
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-04-25 00:46:39 +02:00
|
|
|
const userQuery = ps.userId != null ? [{
|
|
|
|
term: {
|
|
|
|
userId: ps.userId
|
|
|
|
}
|
|
|
|
}] : [];
|
|
|
|
|
|
|
|
const hostQuery = ps.userId == null ?
|
|
|
|
ps.host === null ? [{
|
|
|
|
bool: {
|
|
|
|
must_not: {
|
|
|
|
exists: {
|
|
|
|
field: 'userHost'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}] : ps.host !== undefined ? [{
|
|
|
|
term: {
|
|
|
|
userHost: ps.host
|
|
|
|
}
|
|
|
|
}] : []
|
|
|
|
: [];
|
|
|
|
|
|
|
|
const result = await es.search({
|
|
|
|
index: 'misskey_note',
|
2018-07-04 06:21:30 +02:00
|
|
|
body: {
|
2019-04-12 18:43:22 +02:00
|
|
|
size: ps.limit!,
|
2018-11-02 04:49:08 +01:00
|
|
|
from: ps.offset,
|
2018-07-04 06:21:30 +02:00
|
|
|
query: {
|
2019-04-25 00:46:39 +02:00
|
|
|
bool: {
|
|
|
|
must: [{
|
|
|
|
simple_query_string: {
|
|
|
|
fields: ['text'],
|
|
|
|
query: ps.query.toLowerCase(),
|
|
|
|
default_operator: 'and'
|
|
|
|
},
|
|
|
|
}, ...hostQuery, ...userQuery]
|
2018-07-04 06:21:30 +02:00
|
|
|
}
|
|
|
|
},
|
2019-04-25 00:46:39 +02:00
|
|
|
sort: [{
|
|
|
|
_doc: 'desc'
|
|
|
|
}]
|
2018-07-04 06:21:30 +02:00
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|
2018-07-04 06:21:30 +02:00
|
|
|
|
2019-04-25 00:46:39 +02:00
|
|
|
const hits = result.body.hits.hits.map((hit: any) => hit._id);
|
2019-04-07 14:50:36 +02:00
|
|
|
|
|
|
|
if (hits.length === 0) return [];
|
2018-07-04 06:21:30 +02:00
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
// Fetch found notes
|
2019-04-07 14:50:36 +02:00
|
|
|
const notes = await Notes.find({
|
|
|
|
where: {
|
|
|
|
id: In(hits)
|
|
|
|
},
|
|
|
|
order: {
|
|
|
|
id: -1
|
2019-02-22 03:46:58 +01:00
|
|
|
}
|
2018-07-04 06:21:30 +02:00
|
|
|
});
|
2019-02-22 03:46:58 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
return await Notes.packMany(notes, me);
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|