2017-03-08 19:50:09 +01:00
|
|
|
import $ from 'cafy';
|
2018-11-02 05:49:09 +01:00
|
|
|
import User, { pack } from '../../../models/user';
|
2018-11-02 05:47:44 +01:00
|
|
|
import define from '../define';
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-11-02 04:49:08 +01:00
|
|
|
export const meta = {
|
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
limit: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.range(1, 100),
|
2018-11-02 04:49:08 +01:00
|
|
|
default: 10
|
|
|
|
},
|
|
|
|
|
|
|
|
offset: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.num.min(0),
|
2018-11-02 04:49:08 +01:00
|
|
|
default: 0
|
|
|
|
},
|
2017-03-03 20:28:38 +01:00
|
|
|
|
2018-11-02 04:49:08 +01:00
|
|
|
sort: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.str.or([
|
2018-11-23 00:01:14 +01:00
|
|
|
'+follower',
|
|
|
|
'-follower',
|
|
|
|
'+createdAt',
|
|
|
|
'-createdAt',
|
|
|
|
'+updatedAt',
|
|
|
|
'-updatedAt',
|
|
|
|
]),
|
|
|
|
},
|
|
|
|
|
2019-02-15 22:50:58 +01:00
|
|
|
state: {
|
|
|
|
validator: $.optional.str.or([
|
|
|
|
'all',
|
|
|
|
'admin',
|
|
|
|
'moderator',
|
|
|
|
'adminOrModerator',
|
|
|
|
'verified',
|
|
|
|
'alive'
|
|
|
|
]),
|
|
|
|
default: 'all'
|
|
|
|
},
|
|
|
|
|
2018-11-23 00:01:14 +01:00
|
|
|
origin: {
|
2019-02-13 08:33:07 +01:00
|
|
|
validator: $.optional.str.or([
|
2018-11-23 00:01:14 +01:00
|
|
|
'combined',
|
|
|
|
'local',
|
|
|
|
'remote',
|
|
|
|
]),
|
|
|
|
default: 'local'
|
2018-11-02 04:49:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2017-03-03 20:28:38 +01:00
|
|
|
|
2018-11-02 05:47:44 +01:00
|
|
|
export default define(meta, (ps, me) => new Promise(async (res, rej) => {
|
2018-03-17 15:01:17 +01:00
|
|
|
let _sort;
|
2018-11-02 04:49:08 +01:00
|
|
|
if (ps.sort) {
|
|
|
|
if (ps.sort == '+follower') {
|
2018-03-17 15:01:17 +01:00
|
|
|
_sort = {
|
2018-03-29 07:48:47 +02:00
|
|
|
followersCount: -1
|
2018-03-17 15:01:17 +01:00
|
|
|
};
|
2018-11-02 04:49:08 +01:00
|
|
|
} else if (ps.sort == '-follower') {
|
2018-03-17 15:01:17 +01:00
|
|
|
_sort = {
|
2018-03-29 07:48:47 +02:00
|
|
|
followersCount: 1
|
2018-03-17 15:01:17 +01:00
|
|
|
};
|
2018-11-23 00:01:14 +01: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 15:01:17 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
_sort = {
|
|
|
|
_id: -1
|
2017-03-03 20:28:38 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-02-15 22:50:58 +01:00
|
|
|
const q = {
|
|
|
|
$and: []
|
|
|
|
} as any;
|
|
|
|
|
|
|
|
// state
|
|
|
|
q.$and.push(
|
|
|
|
ps.state == 'admin' ? { isAdmin: true } :
|
|
|
|
ps.state == 'moderator' ? { isModerator: true } :
|
|
|
|
ps.state == 'adminOrModerator' ? {
|
|
|
|
$or: [{
|
|
|
|
isAdmin: true
|
|
|
|
}, {
|
|
|
|
isModerator: true
|
|
|
|
}]
|
|
|
|
} :
|
|
|
|
ps.state == 'verified' ? { isVerified: true } :
|
|
|
|
ps.state == 'alive' ? { updatedAt: { $gt: new Date(Date.now() - (1000 * 60 * 60 * 24 * 5)) } } :
|
|
|
|
{}
|
|
|
|
);
|
|
|
|
|
|
|
|
// origin
|
|
|
|
q.$and.push(
|
2018-11-23 00:01:14 +01:00
|
|
|
ps.origin == 'local' ? { host: null } :
|
|
|
|
ps.origin == 'remote' ? { host: { $ne: null } } :
|
2019-02-15 22:50:58 +01:00
|
|
|
{}
|
|
|
|
);
|
2018-11-23 00:01:14 +01:00
|
|
|
|
2017-03-03 20:28:38 +01:00
|
|
|
const users = await User
|
2018-11-23 00:01:14 +01:00
|
|
|
.find(q, {
|
2018-11-02 04:49:08 +01:00
|
|
|
limit: ps.limit,
|
2018-03-17 15:01:17 +01:00
|
|
|
sort: _sort,
|
2018-11-02 04:49:08 +01:00
|
|
|
skip: ps.offset
|
2017-03-03 20:28:38 +01:00
|
|
|
});
|
|
|
|
|
2018-11-23 00:01:14 +01:00
|
|
|
res(await Promise.all(users.map(user => pack(user, me, { detail: true }))));
|
2018-11-02 05:47:44 +01:00
|
|
|
}));
|