Sharkey/src/server/api/endpoints/users/search.ts

100 lines
2.2 KiB
TypeScript
Raw Normal View History

2016-12-29 00:49:51 +02:00
/**
* Module dependencies
*/
import * as mongo from 'mongodb';
2017-03-08 20:50:09 +02:00
import $ from 'cafy';
2018-03-29 14:32:18 +03:00
import User, { pack } from '../../../../models/user';
2018-04-02 07:15:53 +03:00
import config from '../../../../config';
2016-12-29 00:49:51 +02:00
const escapeRegexp = require('escape-regexp');
/**
* Search a user
*
2017-03-01 10:37:01 +02:00
* @param {any} params
* @param {any} me
* @return {Promise<any>}
2016-12-29 00:49:51 +02:00
*/
2017-03-03 21:28:38 +02:00
module.exports = (params, me) => new Promise(async (res, rej) => {
2016-12-29 00:49:51 +02:00
// Get 'query' parameter
2018-05-02 12:06:16 +03:00
const [query, queryError] = $.str.pipe(x => x != '').get(params.query);
2017-03-03 00:47:14 +02:00
if (queryError) return rej('invalid query param');
2016-12-29 00:49:51 +02:00
// Get 'offset' parameter
2018-05-02 12:06:16 +03:00
const [offset = 0, offsetErr] = $.num.optional().min(0).get(params.offset);
2017-03-03 00:47:14 +02:00
if (offsetErr) return rej('invalid offset param');
2016-12-29 00:49:51 +02:00
// Get 'max' parameter
2018-05-02 12:06:16 +03:00
const [max = 10, maxErr] = $.num.optional().range(1, 30).get(params.max);
2017-03-03 00:47:14 +02:00
if (maxErr) return rej('invalid max param');
2016-12-29 00:49:51 +02:00
2017-03-08 20:50:09 +02:00
// If Elasticsearch is available, search by $
2016-12-29 00:49:51 +02:00
// If not, search by MongoDB
(config.elasticsearch.enable ? byElasticsearch : byNative)
(res, rej, me, query, offset, max);
});
// Search by MongoDB
async function byNative(res, rej, me, query, offset, max) {
const escapedQuery = escapeRegexp(query);
// Search users
const users = await User
.find({
2018-06-17 10:40:18 +03:00
host: null,
2016-12-29 00:49:51 +02:00
$or: [{
2018-03-29 08:48:47 +03:00
usernameLower: new RegExp(escapedQuery.replace('@', '').toLowerCase())
2016-12-29 00:49:51 +02:00
}, {
name: new RegExp(escapedQuery)
}]
2017-02-16 04:20:41 +02:00
}, {
limit: max
2017-01-17 04:11:22 +02:00
});
2016-12-29 00:49:51 +02:00
// Serialize
res(await Promise.all(users.map(async user =>
2018-02-04 07:52:33 +02:00
await pack(user, me, { detail: true }))));
2016-12-29 00:49:51 +02:00
}
// Search by Elasticsearch
async function byElasticsearch(res, rej, me, query, offset, max) {
const es = require('../../db/elasticsearch');
es.search({
index: 'misskey',
type: 'user',
body: {
size: max,
from: offset,
query: {
simple_query_string: {
fields: ['username', 'name', 'bio'],
query: query,
default_operator: 'and'
}
}
}
}, async (error, response) => {
if (error) {
console.error(error);
return res(500);
}
if (response.hits.total === 0) {
return res([]);
}
const hits = response.hits.hits.map(hit => new mongo.ObjectID(hit._id));
const users = await User
.find({
_id: {
$in: hits
}
2017-01-17 04:11:22 +02:00
});
2016-12-29 00:49:51 +02:00
// Serialize
res(await Promise.all(users.map(async user =>
2018-02-02 01:21:30 +02:00
await pack(user, me, { detail: true }))));
2016-12-29 00:49:51 +02:00
});
}