2017-03-08 12:50:09 -06:00
|
|
|
import $ from 'cafy';
|
2018-11-01 23:49:09 -05:00
|
|
|
import User, { pack } from '../../../models/user';
|
2018-11-01 23:47:44 -05:00
|
|
|
import define from '../define';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2018-11-01 22:49:08 -05:00
|
|
|
export const meta = {
|
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
|
|
|
validator: $.num.optional.range(1, 100),
|
|
|
|
default: 10
|
|
|
|
},
|
|
|
|
|
|
|
|
offset: {
|
|
|
|
validator: $.num.optional.min(0),
|
|
|
|
default: 0
|
|
|
|
},
|
2017-03-03 13:28:38 -06:00
|
|
|
|
2018-11-01 22:49:08 -05:00
|
|
|
sort: {
|
2018-11-22 17:01:14 -06:00
|
|
|
validator: $.str.optional.or([
|
|
|
|
'+follower',
|
|
|
|
'-follower',
|
|
|
|
'+createdAt',
|
|
|
|
'-createdAt',
|
|
|
|
'+updatedAt',
|
|
|
|
'-updatedAt',
|
|
|
|
]),
|
|
|
|
},
|
|
|
|
|
|
|
|
origin: {
|
|
|
|
validator: $.str.optional.or([
|
|
|
|
'combined',
|
|
|
|
'local',
|
|
|
|
'remote',
|
|
|
|
]),
|
|
|
|
default: 'local'
|
2018-11-01 22:49:08 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2017-03-03 13:28:38 -06:00
|
|
|
|
2018-11-01 23:47:44 -05:00
|
|
|
export default define(meta, (ps, me) => new Promise(async (res, rej) => {
|
2018-03-17 09:01:17 -05:00
|
|
|
let _sort;
|
2018-11-01 22:49:08 -05:00
|
|
|
if (ps.sort) {
|
|
|
|
if (ps.sort == '+follower') {
|
2018-03-17 09:01:17 -05:00
|
|
|
_sort = {
|
2018-03-29 00:48:47 -05:00
|
|
|
followersCount: -1
|
2018-03-17 09:01:17 -05:00
|
|
|
};
|
2018-11-01 22:49:08 -05:00
|
|
|
} else if (ps.sort == '-follower') {
|
2018-03-17 09:01:17 -05:00
|
|
|
_sort = {
|
2018-03-29 00:48:47 -05:00
|
|
|
followersCount: 1
|
2018-03-17 09:01:17 -05:00
|
|
|
};
|
2018-11-22 17:01:14 -06:00
|
|
|
} else if (ps.sort == '+createdAt') {
|
|
|
|
_sort = {
|
|
|
|
createdAt: -1
|
|
|
|
};
|
|
|
|
} else if (ps.sort == '+updatedAt') {
|
|
|
|
_sort = {
|
|
|
|
updatedAt: -1
|
|
|
|
};
|
|
|
|
} else if (ps.sort == '-createdAt') {
|
|
|
|
_sort = {
|
|
|
|
createdAt: 1
|
|
|
|
};
|
|
|
|
} else if (ps.sort == '-updatedAt') {
|
|
|
|
_sort = {
|
|
|
|
updatedAt: 1
|
|
|
|
};
|
2018-03-17 09:01:17 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_sort = {
|
|
|
|
_id: -1
|
2017-03-03 13:28:38 -06:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-11-22 17:01:14 -06:00
|
|
|
const q =
|
|
|
|
ps.origin == 'local' ? { host: null } :
|
|
|
|
ps.origin == 'remote' ? { host: { $ne: null } } :
|
|
|
|
{};
|
|
|
|
|
2017-03-03 13:28:38 -06:00
|
|
|
const users = await User
|
2018-11-22 17:01:14 -06:00
|
|
|
.find(q, {
|
2018-11-01 22:49:08 -05:00
|
|
|
limit: ps.limit,
|
2018-03-17 09:01:17 -05:00
|
|
|
sort: _sort,
|
2018-11-01 22:49:08 -05:00
|
|
|
skip: ps.offset
|
2017-03-03 13:28:38 -06:00
|
|
|
});
|
|
|
|
|
2018-11-22 17:01:14 -06:00
|
|
|
res(await Promise.all(users.map(user => pack(user, me, { detail: true }))));
|
2018-11-01 23:47:44 -05:00
|
|
|
}));
|