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

35 lines
910 B
TypeScript
Raw Normal View History

2017-03-08 20:50:09 +02:00
import $ from 'cafy';
2018-06-18 03:54:53 +03:00
import User, { pack, ILocalUser } from '../../../../models/user';
2016-12-29 00:49:51 +02:00
const escapeRegexp = require('escape-regexp');
/**
* Search a user
*/
2018-07-05 20:58:29 +03:00
export default (params: any, me: ILocalUser) => 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 'max' parameter
2018-07-05 17:36:07 +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
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
2018-06-18 03:54:53 +03:00
res(await Promise.all(users.map(user => pack(user, me, { detail: true }))));
});