summaryrefslogtreecommitdiff
path: root/src/api/endpoints/users/search.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-03-03 07:47:14 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-03-03 07:47:14 +0900
commit0926d5b6da68be6c9375addbd3cec8545185dea7 (patch)
tree7e88d0ba7a3b663844e401071a588f1d0f50e918 /src/api/endpoints/users/search.ts
parentRefactor (diff)
downloadmisskey-0926d5b6da68be6c9375addbd3cec8545185dea7.tar.gz
misskey-0926d5b6da68be6c9375addbd3cec8545185dea7.tar.bz2
misskey-0926d5b6da68be6c9375addbd3cec8545185dea7.zip
wip
Diffstat (limited to 'src/api/endpoints/users/search.ts')
-rw-r--r--src/api/endpoints/users/search.ts103
1 files changed, 103 insertions, 0 deletions
diff --git a/src/api/endpoints/users/search.ts b/src/api/endpoints/users/search.ts
new file mode 100644
index 0000000000..3fb08b0a35
--- /dev/null
+++ b/src/api/endpoints/users/search.ts
@@ -0,0 +1,103 @@
+'use strict';
+
+/**
+ * Module dependencies
+ */
+import * as mongo from 'mongodb';
+import it from '../../it';
+import User from '../../models/user';
+import serialize from '../../serializers/user';
+import config from '../../../conf';
+const escapeRegexp = require('escape-regexp');
+
+/**
+ * Search a user
+ *
+ * @param {any} params
+ * @param {any} me
+ * @return {Promise<any>}
+ */
+module.exports = (params, me) =>
+ new Promise(async (res, rej) =>
+{
+ // Get 'query' parameter
+ const [query, queryError] = it(params.query).expect.string().required().trim().validate(x => x != '').qed();
+ if (queryError) return rej('invalid query param');
+
+ // Get 'offset' parameter
+ const [offset, offsetErr] = it(params.offset).expect.number().min(0).default(0).qed();
+ if (offsetErr) return rej('invalid offset param');
+
+ // Get 'max' parameter
+ const [max, maxErr] = it(params.max).expect.number().range(1, 30).default(10).qed();
+ if (maxErr) return rej('invalid max param');
+
+ // If Elasticsearch is available, search by it
+ // 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({
+ $or: [{
+ username_lower: new RegExp(escapedQuery.toLowerCase())
+ }, {
+ name: new RegExp(escapedQuery)
+ }]
+ }, {
+ limit: max
+ });
+
+ // Serialize
+ res(await Promise.all(users.map(async user =>
+ await serialize(user, me, { detail: true }))));
+}
+
+// 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
+ }
+ });
+
+ // Serialize
+ res(await Promise.all(users.map(async user =>
+ await serialize(user, me, { detail: true }))));
+ });
+}