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

35 lines
910 B
TypeScript
Raw Normal View History

2017-03-09 03:50:09 +09:00
import $ from 'cafy';
2018-06-18 09:54:53 +09:00
import User, { pack, ILocalUser } from '../../../../models/user';
2016-12-29 07:49:51 +09:00
const escapeRegexp = require('escape-regexp');
/**
* Search a user
*/
2018-07-06 02:58:29 +09:00
export default (params: any, me: ILocalUser) => new Promise(async (res, rej) => {
2016-12-29 07:49:51 +09:00
// Get 'query' parameter
2018-05-02 18:06:16 +09:00
const [query, queryError] = $.str.pipe(x => x != '').get(params.query);
2017-03-03 07:47:14 +09:00
if (queryError) return rej('invalid query param');
2016-12-29 07:49:51 +09:00
// Get 'max' parameter
2018-07-05 23:36:07 +09:00
const [max = 10, maxErr] = $.num.optional.range(1, 30).get(params.max);
2017-03-03 07:47:14 +09:00
if (maxErr) return rej('invalid max param');
2016-12-29 07:49:51 +09:00
const escapedQuery = escapeRegexp(query);
// Search users
const users = await User
.find({
2018-06-17 16:40:18 +09:00
host: null,
2016-12-29 07:49:51 +09:00
$or: [{
2018-03-29 14:48:47 +09:00
usernameLower: new RegExp(escapedQuery.replace('@', '').toLowerCase())
2016-12-29 07:49:51 +09:00
}, {
name: new RegExp(escapedQuery)
}]
2017-02-16 11:20:41 +09:00
}, {
limit: max
2017-01-17 11:11:22 +09:00
});
2016-12-29 07:49:51 +09:00
// Serialize
2018-06-18 09:54:53 +09:00
res(await Promise.all(users.map(user => pack(user, me, { detail: true }))));
});