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-04-07 14:50:36 +02:00
|
|
|
import { Notes } from '../../../../models';
|
|
|
|
import { In } from 'typeorm';
|
2019-04-25 00:46:39 +02:00
|
|
|
import { ID } from '../../../../misc/cafy-id';
|
2019-08-09 06:04:35 +02:00
|
|
|
import config from '../../../../config';
|
2020-01-29 20:37:25 +01:00
|
|
|
import { makePaginationQuery } from '../../common/make-pagination-query';
|
|
|
|
import { generateVisibilityQuery } from '../../common/generate-visibility-query';
|
2020-07-28 02:38:41 +02:00
|
|
|
import { generateMutedUserQuery } from '../../common/generate-muted-user-query';
|
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'],
|
|
|
|
|
2020-02-15 13:33:32 +01:00
|
|
|
requireCredential: false as const,
|
2018-11-02 04:49:08 +01:00
|
|
|
|
|
|
|
params: {
|
|
|
|
query: {
|
|
|
|
validator: $.str
|
|
|
|
},
|
2018-07-04 06:21:30 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
sinceId: {
|
|
|
|
validator: $.optional.type(ID),
|
|
|
|
},
|
|
|
|
|
|
|
|
untilId: {
|
|
|
|
validator: $.optional.type(ID),
|
|
|
|
},
|
|
|
|
|
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
|
|
|
|
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-06-27 11:04:09 +02:00
|
|
|
type: 'array' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-02-23 03:20:58 +01:00
|
|
|
items: {
|
2019-06-27 11:04:09 +02:00
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2019-04-23 15:35:26 +02:00
|
|
|
ref: 'Note',
|
|
|
|
}
|
2019-02-23 03:20:58 +01:00
|
|
|
},
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
errors: {
|
2018-11-02 04:49:08 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-02-22 03:46:58 +01:00
|
|
|
export default define(meta, async (ps, me) => {
|
2020-01-29 20:37:25 +01:00
|
|
|
if (es == null) {
|
|
|
|
const query = makePaginationQuery(Notes.createQueryBuilder('note'), ps.sinceId, ps.untilId)
|
|
|
|
.andWhere('note.text ILIKE :q', { q: `%${ps.query}%` })
|
|
|
|
.leftJoinAndSelect('note.user', 'user');
|
2018-07-19 01:24:03 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
generateVisibilityQuery(query, me);
|
2020-07-28 02:38:41 +02:00
|
|
|
if (me) generateMutedUserQuery(query, me);
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
const notes = await query.take(ps.limit!).getMany();
|
|
|
|
|
|
|
|
return await Notes.packMany(notes, me);
|
|
|
|
} else {
|
|
|
|
const userQuery = ps.userId != null ? [{
|
2019-04-25 00:46:39 +02:00
|
|
|
term: {
|
2020-01-29 20:37:25 +01:00
|
|
|
userId: ps.userId
|
2019-04-25 00:46:39 +02:00
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}] : [];
|
|
|
|
|
|
|
|
const hostQuery = ps.userId == null ?
|
|
|
|
ps.host === null ? [{
|
2019-04-25 00:46:39 +02:00
|
|
|
bool: {
|
2020-01-29 20:37:25 +01:00
|
|
|
must_not: {
|
|
|
|
exists: {
|
|
|
|
field: 'userHost'
|
|
|
|
}
|
|
|
|
}
|
2018-07-04 06:21:30 +02:00
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}] : ps.host !== undefined ? [{
|
|
|
|
term: {
|
|
|
|
userHost: ps.host
|
|
|
|
}
|
|
|
|
}] : []
|
|
|
|
: [];
|
|
|
|
|
|
|
|
const result = await es.search({
|
|
|
|
index: config.elasticsearch.index || 'misskey_note',
|
|
|
|
body: {
|
|
|
|
size: ps.limit!,
|
|
|
|
from: ps.offset,
|
|
|
|
query: {
|
|
|
|
bool: {
|
|
|
|
must: [{
|
|
|
|
simple_query_string: {
|
|
|
|
fields: ['text'],
|
|
|
|
query: ps.query.toLowerCase(),
|
|
|
|
default_operator: 'and'
|
|
|
|
},
|
|
|
|
}, ...hostQuery, ...userQuery]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
sort: [{
|
|
|
|
_doc: 'desc'
|
|
|
|
}]
|
|
|
|
}
|
|
|
|
});
|
2018-07-04 06:21:30 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
const hits = result.body.hits.hits.map((hit: any) => hit._id);
|
2019-04-07 14:50:36 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
if (hits.length === 0) return [];
|
2018-07-04 06:21:30 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
// Fetch found notes
|
|
|
|
const notes = await Notes.find({
|
|
|
|
where: {
|
|
|
|
id: In(hits)
|
|
|
|
},
|
|
|
|
order: {
|
|
|
|
id: -1
|
|
|
|
}
|
|
|
|
});
|
2019-02-22 03:46:58 +01:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
return await Notes.packMany(notes, me);
|
|
|
|
}
|
2019-02-22 03:46:58 +01:00
|
|
|
});
|